mirror of
https://github.com/ClusterCockpit/cc-metric-collector.git
synced 2024-11-10 04:27:25 +01:00
Add tags in lexical order as required by AddTag()
This commit is contained in:
parent
9e73849081
commit
c472029c2d
@ -44,13 +44,19 @@ type HttpSinkConfig struct {
|
|||||||
|
|
||||||
type HttpSink struct {
|
type HttpSink struct {
|
||||||
sink
|
sink
|
||||||
client *http.Client
|
client *http.Client
|
||||||
|
// influx line protocol encoder
|
||||||
encoder influx.Encoder
|
encoder influx.Encoder
|
||||||
// Flush() runs in another goroutine, so this encoderLock has to protect the encoder
|
// Flush() runs in another goroutine and accesses the influx line protocol encoder,
|
||||||
|
// so this encoderLock has to protect the encoder
|
||||||
encoderLock sync.Mutex
|
encoderLock sync.Mutex
|
||||||
timerLock sync.Mutex
|
|
||||||
flushTimer *time.Timer
|
// timer to run Flush()
|
||||||
config HttpSinkConfig
|
flushTimer *time.Timer
|
||||||
|
// Lock to assure that only one timer is running at a time
|
||||||
|
timerLock sync.Mutex
|
||||||
|
|
||||||
|
config HttpSinkConfig
|
||||||
}
|
}
|
||||||
|
|
||||||
// Write sends metric m as http message
|
// Write sends metric m as http message
|
||||||
@ -62,18 +68,24 @@ func (s *HttpSink) Write(m lp.CCMetric) error {
|
|||||||
// Encode measurement name
|
// Encode measurement name
|
||||||
s.encoder.StartLine(m.Name())
|
s.encoder.StartLine(m.Name())
|
||||||
|
|
||||||
// Encode tags
|
// copy tags and meta data which should be used as tags
|
||||||
|
tags := make(map[string]string)
|
||||||
|
keys := make([]string, 0)
|
||||||
for key, value := range m.Tags() {
|
for key, value := range m.Tags() {
|
||||||
s.encoder.AddTag(key, value)
|
keys = append(keys, key)
|
||||||
|
tags[key] = value
|
||||||
|
}
|
||||||
|
for _, key := range s.config.MetaAsTags {
|
||||||
|
if value, ok := m.GetMeta(key); ok {
|
||||||
|
keys = append(keys, key)
|
||||||
|
tags[key] = value
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
// Encode metadata as tags
|
// Encode tags
|
||||||
for key, use_meta_as_tag := range s.meta_as_tags {
|
slices.Sort(keys)
|
||||||
if use_meta_as_tag {
|
for _, key := range keys {
|
||||||
if val, ok := m.GetMeta(key); ok {
|
s.encoder.AddTag(key, tags[key])
|
||||||
s.encoder.AddTag(key, val)
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
// Encode fields
|
// Encode fields
|
||||||
@ -234,11 +246,8 @@ func NewHttpSink(name string, config json.RawMessage) (Sink, error) {
|
|||||||
cclog.ComponentDebug(s.name, "flushDelay", t)
|
cclog.ComponentDebug(s.name, "flushDelay", t)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
// Create lookup map to use meta infos as tags in the output metric
|
|
||||||
s.meta_as_tags = make(map[string]bool)
|
// Create http client
|
||||||
for _, k := range s.config.MetaAsTags {
|
|
||||||
s.meta_as_tags[k] = true
|
|
||||||
}
|
|
||||||
s.client = &http.Client{
|
s.client = &http.Client{
|
||||||
Transport: &http.Transport{
|
Transport: &http.Transport{
|
||||||
MaxIdleConns: 1, // We will only ever talk to one host.
|
MaxIdleConns: 1, // We will only ever talk to one host.
|
||||||
@ -246,6 +255,9 @@ func NewHttpSink(name string, config json.RawMessage) (Sink, error) {
|
|||||||
},
|
},
|
||||||
Timeout: s.config.timeout,
|
Timeout: s.config.timeout,
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// Configure influx line protocol encoder
|
||||||
s.encoder.SetPrecision(influx.Second)
|
s.encoder.SetPrecision(influx.Second)
|
||||||
|
|
||||||
return s, nil
|
return s, nil
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user