2013-07-16 15:03:56 +00:00
|
|
|
// Copyright 2013 Prometheus Team
|
|
|
|
// 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-07-17 15:45:01 +00:00
|
|
|
package manager
|
2013-07-16 15:03:56 +00:00
|
|
|
|
|
|
|
import (
|
|
|
|
"fmt"
|
|
|
|
"hash/fnv"
|
|
|
|
"sort"
|
|
|
|
)
|
|
|
|
|
2013-07-26 10:40:53 +00:00
|
|
|
const eventNameLabel = "name"
|
2013-07-23 08:40:23 +00:00
|
|
|
|
2013-07-18 12:49:37 +00:00
|
|
|
type EventFingerprint uint64
|
|
|
|
|
2013-07-23 08:40:23 +00:00
|
|
|
type EventLabels map[string]string
|
|
|
|
type EventPayload map[string]string
|
|
|
|
|
2013-07-16 15:03:56 +00:00
|
|
|
// Event models an action triggered by Prometheus.
|
|
|
|
type Event struct {
|
|
|
|
// Label value pairs for purpose of aggregation, matching, and disposition
|
|
|
|
// dispatching. This must minimally include a "name" label.
|
2013-07-23 08:40:23 +00:00
|
|
|
Labels EventLabels
|
2013-07-18 12:49:37 +00:00
|
|
|
// Extra key/value information which is not used for aggregation.
|
2013-07-23 08:40:23 +00:00
|
|
|
Payload EventPayload
|
|
|
|
}
|
|
|
|
|
|
|
|
func (e Event) Name() string {
|
|
|
|
// BUG: ensure in a proper place that all events have a name?
|
|
|
|
return e.Labels[eventNameLabel]
|
2013-07-16 15:03:56 +00:00
|
|
|
}
|
|
|
|
|
2013-07-18 12:49:37 +00:00
|
|
|
func (e Event) Fingerprint() EventFingerprint {
|
2013-07-16 15:03:56 +00:00
|
|
|
keys := []string{}
|
|
|
|
|
2013-07-18 12:49:37 +00:00
|
|
|
for k := range e.Labels {
|
2013-07-16 15:03:56 +00:00
|
|
|
keys = append(keys, k)
|
|
|
|
}
|
|
|
|
|
|
|
|
sort.Strings(keys)
|
|
|
|
|
|
|
|
summer := fnv.New64a()
|
|
|
|
|
2013-07-30 11:12:24 +00:00
|
|
|
separator := string([]byte{0})
|
2013-07-16 15:03:56 +00:00
|
|
|
for _, k := range keys {
|
2013-07-30 11:12:24 +00:00
|
|
|
fmt.Fprintf(summer, "%s%s%s%s", k, separator, e.Labels[k], separator)
|
2013-07-16 15:03:56 +00:00
|
|
|
}
|
|
|
|
|
2013-07-18 12:49:37 +00:00
|
|
|
return EventFingerprint(summer.Sum64())
|
2013-07-16 15:03:56 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
type Events []*Event
|