2015-07-16 05:02:07 -07:00
|
|
|
package marathon
|
|
|
|
|
|
|
|
import (
|
2015-08-14 05:24:31 -07:00
|
|
|
clientmodel "github.com/prometheus/client_golang/model"
|
2015-07-16 05:02:07 -07:00
|
|
|
)
|
|
|
|
|
|
|
|
const (
|
2015-08-14 05:24:31 -07:00
|
|
|
// metaLabelPrefix is the meta prefix used for all meta labels in this discovery.
|
|
|
|
metaLabelPrefix = clientmodel.MetaLabelPrefix + "marathon_"
|
|
|
|
// appLabelPrefix is the prefix for the application labels.
|
|
|
|
appLabelPrefix = metaLabelPrefix + "app_label_"
|
2015-07-16 05:02:07 -07:00
|
|
|
|
2015-08-17 06:05:06 -07:00
|
|
|
// appLabel is used for the name of the app in Marathon.
|
2015-08-14 05:24:31 -07:00
|
|
|
appLabel clientmodel.LabelName = metaLabelPrefix + "app"
|
2015-08-17 06:05:06 -07:00
|
|
|
// imageLabel is the label that is used for the docker image running the service.
|
2015-08-14 05:24:31 -07:00
|
|
|
imageLabel clientmodel.LabelName = metaLabelPrefix + "image"
|
2015-08-17 06:05:06 -07:00
|
|
|
// taskLabel contains the mesos task name of the app instance.
|
2015-08-14 05:24:31 -07:00
|
|
|
taskLabel clientmodel.LabelName = metaLabelPrefix + "task"
|
2015-07-16 05:02:07 -07:00
|
|
|
)
|