2013-02-07 02:38:01 -08:00
|
|
|
// Copyright 2013 Prometheus Team
|
2012-11-28 09:52:04 -08:00
|
|
|
// 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.
|
|
|
|
|
2013-06-25 05:02:27 -07:00
|
|
|
package metric
|
|
|
|
|
|
|
|
import (
|
|
|
|
clientmodel "github.com/prometheus/client_golang/model"
|
|
|
|
)
|
2012-11-28 09:52:04 -08:00
|
|
|
|
2013-02-08 09:03:26 -08:00
|
|
|
type LabelPair struct {
|
2013-06-25 05:02:27 -07:00
|
|
|
Name clientmodel.LabelName
|
|
|
|
Value clientmodel.LabelValue
|
|
|
|
}
|
|
|
|
|
|
|
|
func (l *LabelPair) Equal(o *LabelPair) bool {
|
|
|
|
switch {
|
|
|
|
case l.Name != o.Name:
|
|
|
|
return false
|
|
|
|
case l.Value != o.Value:
|
|
|
|
return false
|
|
|
|
default:
|
|
|
|
return true
|
|
|
|
}
|
2013-02-08 09:03:26 -08:00
|
|
|
}
|
|
|
|
|
2013-06-25 05:02:27 -07:00
|
|
|
type LabelPairs []*LabelPair
|
2013-02-08 09:03:26 -08:00
|
|
|
|
|
|
|
func (l LabelPairs) Len() int {
|
|
|
|
return len(l)
|
|
|
|
}
|
|
|
|
|
2013-05-15 22:38:31 -07:00
|
|
|
func (l LabelPairs) Less(i, j int) bool {
|
2013-06-25 05:02:27 -07:00
|
|
|
switch {
|
|
|
|
case l[i].Name > l[j].Name:
|
|
|
|
return false
|
|
|
|
case l[i].Name < l[j].Name:
|
2013-03-06 17:16:39 -08:00
|
|
|
return true
|
2013-06-25 05:02:27 -07:00
|
|
|
case l[i].Value > l[j].Value:
|
|
|
|
return false
|
|
|
|
case l[i].Value < l[j].Value:
|
2013-03-06 17:16:39 -08:00
|
|
|
return true
|
2013-06-25 05:02:27 -07:00
|
|
|
default:
|
|
|
|
return false
|
2013-03-06 17:16:39 -08:00
|
|
|
}
|
2013-02-08 09:03:26 -08:00
|
|
|
}
|
|
|
|
|
|
|
|
func (l LabelPairs) Swap(i, j int) {
|
|
|
|
l[i], l[j] = l[j], l[i]
|
2012-11-28 09:52:04 -08:00
|
|
|
}
|