2015-08-17 17:49:10 +00:00
|
|
|
// Copyright 2015 The Prometheus Authors
|
|
|
|
// Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
// you may not use this file except in compliance with the License.
|
|
|
|
// You may obtain a copy of the License at
|
|
|
|
//
|
|
|
|
// http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
//
|
|
|
|
// Unless required by applicable law or agreed to in writing, software
|
|
|
|
// distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
// See the License for the specific language governing permissions and
|
|
|
|
// limitations under the License.
|
|
|
|
|
2015-07-16 12:02:07 +00:00
|
|
|
package marathon
|
|
|
|
|
|
|
|
import (
|
2015-08-20 15:18:46 +00:00
|
|
|
"github.com/prometheus/common/model"
|
2015-07-16 12:02:07 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
const (
|
2015-08-14 12:24:31 +00:00
|
|
|
// metaLabelPrefix is the meta prefix used for all meta labels in this discovery.
|
2015-08-20 15:18:46 +00:00
|
|
|
metaLabelPrefix = model.MetaLabelPrefix + "marathon_"
|
2015-08-14 12:24:31 +00:00
|
|
|
// appLabelPrefix is the prefix for the application labels.
|
|
|
|
appLabelPrefix = metaLabelPrefix + "app_label_"
|
2015-07-16 12:02:07 +00:00
|
|
|
|
2015-08-17 13:05:06 +00:00
|
|
|
// appLabel is used for the name of the app in Marathon.
|
2015-08-20 15:18:46 +00:00
|
|
|
appLabel model.LabelName = metaLabelPrefix + "app"
|
2015-08-17 13:05:06 +00:00
|
|
|
// imageLabel is the label that is used for the docker image running the service.
|
2015-08-20 15:18:46 +00:00
|
|
|
imageLabel model.LabelName = metaLabelPrefix + "image"
|
2015-08-17 13:05:06 +00:00
|
|
|
// taskLabel contains the mesos task name of the app instance.
|
2015-08-20 15:18:46 +00:00
|
|
|
taskLabel model.LabelName = metaLabelPrefix + "task"
|
2015-07-16 12:02:07 +00:00
|
|
|
)
|