2022-02-03 16:52:55 +01:00
|
|
|
package metricAggregator
|
2022-01-30 15:03:21 +01:00
|
|
|
|
|
|
|
import (
|
|
|
|
"context"
|
|
|
|
"fmt"
|
2022-02-01 18:27:59 +01:00
|
|
|
"math"
|
2022-01-30 15:03:21 +01:00
|
|
|
"os"
|
|
|
|
"strings"
|
2022-02-16 14:30:11 +01:00
|
|
|
"sync"
|
2022-01-30 15:03:21 +01:00
|
|
|
"time"
|
|
|
|
|
2022-10-10 11:53:11 +02:00
|
|
|
cclog "github.com/ClusterCockpit/cc-metric-collector/pkg/ccLogger"
|
2022-01-30 15:03:21 +01:00
|
|
|
|
2024-07-13 02:23:58 +02:00
|
|
|
lp "github.com/ClusterCockpit/cc-energy-manager/pkg/cc-message"
|
2022-10-10 11:53:11 +02:00
|
|
|
topo "github.com/ClusterCockpit/cc-metric-collector/pkg/ccTopology"
|
2022-01-30 15:03:21 +01:00
|
|
|
|
|
|
|
"github.com/PaesslerAG/gval"
|
|
|
|
)
|
|
|
|
|
2022-02-03 16:52:55 +01:00
|
|
|
type MetricAggregatorIntervalConfig struct {
|
2022-01-30 15:03:21 +01:00
|
|
|
Name string `json:"name"` // Metric name for the new metric
|
|
|
|
Function string `json:"function"` // Function to apply on the metric
|
|
|
|
Condition string `json:"if"` // Condition for applying function
|
|
|
|
Tags map[string]string `json:"tags"` // Tags for the new metric
|
|
|
|
Meta map[string]string `json:"meta"` // Meta information for the new metric
|
|
|
|
gvalCond gval.Evaluable
|
|
|
|
gvalFunc gval.Evaluable
|
|
|
|
}
|
|
|
|
|
|
|
|
type metricAggregator struct {
|
2022-02-03 16:52:55 +01:00
|
|
|
functions []*MetricAggregatorIntervalConfig
|
2022-01-30 15:03:21 +01:00
|
|
|
constants map[string]interface{}
|
|
|
|
language gval.Language
|
2024-07-13 02:23:58 +02:00
|
|
|
output chan lp.CCMessage
|
2022-01-30 15:03:21 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
type MetricAggregator interface {
|
|
|
|
AddAggregation(name, function, condition string, tags, meta map[string]string) error
|
|
|
|
DeleteAggregation(name string) error
|
2024-07-13 02:23:58 +02:00
|
|
|
Init(output chan lp.CCMessage) error
|
|
|
|
Eval(starttime time.Time, endtime time.Time, metrics []lp.CCMessage)
|
2022-01-30 15:03:21 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
var metricCacheLanguage = gval.NewLanguage(
|
|
|
|
gval.Base(),
|
|
|
|
gval.Function("sum", sumfunc),
|
|
|
|
gval.Function("min", minfunc),
|
|
|
|
gval.Function("avg", avgfunc),
|
|
|
|
gval.Function("mean", avgfunc),
|
|
|
|
gval.Function("max", maxfunc),
|
|
|
|
gval.Function("len", lenfunc),
|
|
|
|
gval.Function("median", medianfunc),
|
|
|
|
gval.InfixOperator("in", infunc),
|
|
|
|
gval.Function("match", matchfunc),
|
|
|
|
gval.Function("getCpuCore", getCpuCoreFunc),
|
|
|
|
gval.Function("getCpuSocket", getCpuSocketFunc),
|
|
|
|
gval.Function("getCpuNuma", getCpuNumaDomainFunc),
|
|
|
|
gval.Function("getCpuDie", getCpuDieFunc),
|
|
|
|
gval.Function("getSockCpuList", getCpuListOfSocketFunc),
|
|
|
|
gval.Function("getNumaCpuList", getCpuListOfNumaDomainFunc),
|
|
|
|
gval.Function("getDieCpuList", getCpuListOfDieFunc),
|
|
|
|
gval.Function("getCoreCpuList", getCpuListOfCoreFunc),
|
|
|
|
gval.Function("getCpuList", getCpuListOfNode),
|
|
|
|
gval.Function("getCpuListOfType", getCpuListOfType),
|
|
|
|
)
|
2022-02-16 08:40:57 +01:00
|
|
|
var language gval.Language = gval.NewLanguage(
|
|
|
|
gval.Full(),
|
|
|
|
metricCacheLanguage,
|
|
|
|
)
|
2022-02-16 14:30:11 +01:00
|
|
|
var evaluables = struct {
|
|
|
|
mapping map[string]gval.Evaluable
|
|
|
|
mutex sync.Mutex
|
|
|
|
}{
|
|
|
|
mapping: make(map[string]gval.Evaluable),
|
|
|
|
}
|
2022-01-30 15:03:21 +01:00
|
|
|
|
2024-07-13 02:23:58 +02:00
|
|
|
func (c *metricAggregator) Init(output chan lp.CCMessage) error {
|
2022-01-30 15:03:21 +01:00
|
|
|
c.output = output
|
2022-02-03 16:52:55 +01:00
|
|
|
c.functions = make([]*MetricAggregatorIntervalConfig, 0)
|
2022-01-30 15:03:21 +01:00
|
|
|
c.constants = make(map[string]interface{})
|
|
|
|
|
|
|
|
// add constants like hostname, numSockets, ... to constants list
|
|
|
|
// Set hostname
|
|
|
|
hostname, err := os.Hostname()
|
|
|
|
if err != nil {
|
|
|
|
cclog.Error(err.Error())
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
// Drop domain part of host name
|
|
|
|
c.constants["hostname"] = strings.SplitN(hostname, `.`, 2)[0]
|
|
|
|
cinfo := topo.CpuInfo()
|
|
|
|
c.constants["numHWThreads"] = cinfo.NumHWthreads
|
|
|
|
c.constants["numSockets"] = cinfo.NumSockets
|
|
|
|
c.constants["numNumaDomains"] = cinfo.NumNumaDomains
|
|
|
|
c.constants["numDies"] = cinfo.NumDies
|
|
|
|
c.constants["smtWidth"] = cinfo.SMTWidth
|
|
|
|
|
|
|
|
c.language = gval.NewLanguage(
|
2022-02-01 18:27:59 +01:00
|
|
|
gval.Full(),
|
2022-01-30 15:03:21 +01:00
|
|
|
metricCacheLanguage,
|
|
|
|
)
|
|
|
|
|
|
|
|
// Example aggregation function
|
|
|
|
// var f metricCacheFunctionConfig
|
|
|
|
// f.Name = "temp_cores_avg"
|
|
|
|
// //f.Condition = `"temp_core_" in name`
|
|
|
|
// f.Condition = `match("temp_core_%d+", metric.Name())`
|
|
|
|
// f.Function = `avg(values)`
|
|
|
|
// f.Tags = map[string]string{"type": "node"}
|
|
|
|
// f.Meta = map[string]string{"group": "IPMI", "unit": "degC", "source": "TempCollector"}
|
|
|
|
// c.functions = append(c.functions, &f)
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2024-07-13 02:23:58 +02:00
|
|
|
func (c *metricAggregator) Eval(starttime time.Time, endtime time.Time, metrics []lp.CCMessage) {
|
2022-01-30 15:03:21 +01:00
|
|
|
vars := make(map[string]interface{})
|
|
|
|
for k, v := range c.constants {
|
|
|
|
vars[k] = v
|
|
|
|
}
|
|
|
|
vars["starttime"] = starttime
|
|
|
|
vars["endtime"] = endtime
|
|
|
|
for _, f := range c.functions {
|
|
|
|
cclog.ComponentDebug("MetricCache", "COLLECT", f.Name, "COND", f.Condition)
|
2023-08-29 14:12:49 +02:00
|
|
|
var valuesFloat64 []float64
|
|
|
|
var valuesFloat32 []float32
|
|
|
|
var valuesInt []int
|
|
|
|
var valuesInt32 []int32
|
|
|
|
var valuesInt64 []int64
|
|
|
|
var valuesBool []bool
|
2024-07-13 02:23:58 +02:00
|
|
|
matches := make([]lp.CCMessage, 0)
|
2022-01-30 15:03:21 +01:00
|
|
|
for _, m := range metrics {
|
|
|
|
vars["metric"] = m
|
|
|
|
//value, err := gval.Evaluate(f.Condition, vars, c.language)
|
|
|
|
value, err := f.gvalCond.EvalBool(context.Background(), vars)
|
|
|
|
if err != nil {
|
|
|
|
cclog.ComponentError("MetricCache", "COLLECT", f.Name, "COND", f.Condition, ":", err.Error())
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
if value {
|
|
|
|
v, valid := m.GetField("value")
|
|
|
|
if valid {
|
|
|
|
switch x := v.(type) {
|
|
|
|
case float64:
|
2023-08-29 14:12:49 +02:00
|
|
|
valuesFloat64 = append(valuesFloat64, x)
|
2022-01-30 15:03:21 +01:00
|
|
|
case float32:
|
2023-08-29 14:12:49 +02:00
|
|
|
valuesFloat32 = append(valuesFloat32, x)
|
2022-01-30 15:03:21 +01:00
|
|
|
case int:
|
2023-08-29 14:12:49 +02:00
|
|
|
valuesInt = append(valuesInt, x)
|
|
|
|
case int32:
|
|
|
|
valuesInt32 = append(valuesInt32, x)
|
2022-01-30 15:03:21 +01:00
|
|
|
case int64:
|
2023-08-29 14:12:49 +02:00
|
|
|
valuesInt64 = append(valuesInt64, x)
|
2022-01-30 15:03:21 +01:00
|
|
|
case bool:
|
2023-08-29 14:12:49 +02:00
|
|
|
valuesBool = append(valuesBool, x)
|
2022-01-30 15:03:21 +01:00
|
|
|
default:
|
|
|
|
cclog.ComponentError("MetricCache", "COLLECT ADD VALUE", v, "FAILED")
|
|
|
|
}
|
|
|
|
}
|
|
|
|
matches = append(matches, m)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
delete(vars, "metric")
|
2023-08-29 14:12:49 +02:00
|
|
|
|
|
|
|
// Check, that only values of one type were collected
|
|
|
|
countValueTypes := 0
|
|
|
|
if len(valuesFloat64) > 0 {
|
|
|
|
countValueTypes += 1
|
|
|
|
}
|
|
|
|
if len(valuesFloat32) > 0 {
|
|
|
|
countValueTypes += 1
|
|
|
|
}
|
|
|
|
if len(valuesInt) > 0 {
|
|
|
|
countValueTypes += 1
|
|
|
|
}
|
|
|
|
if len(valuesInt32) > 0 {
|
|
|
|
countValueTypes += 1
|
|
|
|
}
|
|
|
|
if len(valuesInt64) > 0 {
|
|
|
|
countValueTypes += 1
|
|
|
|
}
|
|
|
|
if len(valuesBool) > 0 {
|
|
|
|
countValueTypes += 1
|
|
|
|
}
|
|
|
|
if countValueTypes > 1 {
|
|
|
|
cclog.ComponentError("MetricCache", "Collected values of different types")
|
|
|
|
}
|
|
|
|
|
|
|
|
var len_values int
|
|
|
|
switch {
|
|
|
|
case len(valuesFloat64) > 0:
|
|
|
|
vars["values"] = valuesFloat64
|
|
|
|
len_values = len(valuesFloat64)
|
|
|
|
case len(valuesFloat32) > 0:
|
|
|
|
vars["values"] = valuesFloat32
|
|
|
|
len_values = len(valuesFloat32)
|
|
|
|
case len(valuesInt) > 0:
|
|
|
|
vars["values"] = valuesInt
|
|
|
|
len_values = len(valuesInt)
|
|
|
|
case len(valuesInt32) > 0:
|
|
|
|
vars["values"] = valuesInt32
|
|
|
|
len_values = len(valuesInt32)
|
|
|
|
case len(valuesInt64) > 0:
|
|
|
|
vars["values"] = valuesInt64
|
|
|
|
len_values = len(valuesInt64)
|
|
|
|
case len(valuesBool) > 0:
|
|
|
|
vars["values"] = valuesBool
|
|
|
|
len_values = len(valuesBool)
|
|
|
|
}
|
|
|
|
cclog.ComponentDebug("MetricCache", "EVALUATE", f.Name, "METRICS", len_values, "CALC", f.Function)
|
|
|
|
|
2022-01-30 15:03:21 +01:00
|
|
|
vars["metrics"] = matches
|
2023-08-29 14:12:49 +02:00
|
|
|
if len_values > 0 {
|
2022-01-30 15:03:21 +01:00
|
|
|
value, err := gval.Evaluate(f.Function, vars, c.language)
|
|
|
|
if err != nil {
|
2023-08-29 14:12:49 +02:00
|
|
|
cclog.ComponentError("MetricCache", "EVALUATE", f.Name, "METRICS", len_values, "CALC", f.Function, ":", err.Error())
|
2022-01-30 15:03:21 +01:00
|
|
|
break
|
|
|
|
}
|
|
|
|
|
2024-07-13 02:23:58 +02:00
|
|
|
copy_tags := func(tags map[string]string, metrics []lp.CCMessage) map[string]string {
|
2022-01-30 15:03:21 +01:00
|
|
|
out := make(map[string]string)
|
|
|
|
for key, value := range tags {
|
|
|
|
switch value {
|
|
|
|
case "<copy>":
|
|
|
|
for _, m := range metrics {
|
|
|
|
v, err := m.GetTag(key)
|
|
|
|
if err {
|
|
|
|
out[key] = v
|
|
|
|
}
|
|
|
|
}
|
|
|
|
default:
|
|
|
|
out[key] = value
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return out
|
|
|
|
}
|
2024-07-13 02:23:58 +02:00
|
|
|
copy_meta := func(meta map[string]string, metrics []lp.CCMessage) map[string]string {
|
2022-01-30 15:03:21 +01:00
|
|
|
out := make(map[string]string)
|
|
|
|
for key, value := range meta {
|
|
|
|
switch value {
|
|
|
|
case "<copy>":
|
|
|
|
for _, m := range metrics {
|
|
|
|
v, err := m.GetMeta(key)
|
|
|
|
if err {
|
|
|
|
out[key] = v
|
|
|
|
}
|
|
|
|
}
|
|
|
|
default:
|
|
|
|
out[key] = value
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return out
|
|
|
|
}
|
|
|
|
tags := copy_tags(f.Tags, matches)
|
|
|
|
meta := copy_meta(f.Meta, matches)
|
|
|
|
|
2024-07-13 02:23:58 +02:00
|
|
|
var m lp.CCMessage
|
2022-01-30 15:03:21 +01:00
|
|
|
switch t := value.(type) {
|
|
|
|
case float64:
|
2024-07-13 02:23:58 +02:00
|
|
|
m, err = lp.NewMessage(f.Name, tags, meta, map[string]interface{}{"value": t}, starttime)
|
2022-01-30 15:03:21 +01:00
|
|
|
case float32:
|
2024-07-13 02:23:58 +02:00
|
|
|
m, err = lp.NewMessage(f.Name, tags, meta, map[string]interface{}{"value": t}, starttime)
|
2022-01-30 15:03:21 +01:00
|
|
|
case int:
|
2024-07-13 02:23:58 +02:00
|
|
|
m, err = lp.NewMessage(f.Name, tags, meta, map[string]interface{}{"value": t}, starttime)
|
2022-01-30 15:03:21 +01:00
|
|
|
case int64:
|
2024-07-13 02:23:58 +02:00
|
|
|
m, err = lp.NewMessage(f.Name, tags, meta, map[string]interface{}{"value": t}, starttime)
|
2022-01-30 15:03:21 +01:00
|
|
|
case string:
|
2024-07-13 02:23:58 +02:00
|
|
|
m, err = lp.NewMessage(f.Name, tags, meta, map[string]interface{}{"value": t}, starttime)
|
2022-01-30 15:03:21 +01:00
|
|
|
default:
|
|
|
|
cclog.ComponentError("MetricCache", "Gval returned invalid type", t, "skipping metric", f.Name)
|
|
|
|
}
|
|
|
|
if err != nil {
|
|
|
|
cclog.ComponentError("MetricCache", "Cannot create metric from Gval result", value, ":", err.Error())
|
|
|
|
}
|
|
|
|
cclog.ComponentDebug("MetricCache", "SEND", m)
|
|
|
|
select {
|
|
|
|
case c.output <- m:
|
|
|
|
default:
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func (c *metricAggregator) AddAggregation(name, function, condition string, tags, meta map[string]string) error {
|
|
|
|
// Since "" cannot be used inside of JSON strings, we use '' and replace them here because gval does not like ''
|
|
|
|
// but wants ""
|
|
|
|
newfunc := strings.ReplaceAll(function, "'", "\"")
|
|
|
|
newcond := strings.ReplaceAll(condition, "'", "\"")
|
|
|
|
gvalCond, err := gval.Full(metricCacheLanguage).NewEvaluable(newcond)
|
|
|
|
if err != nil {
|
|
|
|
cclog.ComponentError("MetricAggregator", "Cannot add aggregation, invalid if condition", newcond, ":", err.Error())
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
gvalFunc, err := gval.Full(metricCacheLanguage).NewEvaluable(newfunc)
|
|
|
|
if err != nil {
|
|
|
|
cclog.ComponentError("MetricAggregator", "Cannot add aggregation, invalid function condition", newfunc, ":", err.Error())
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
for _, agg := range c.functions {
|
|
|
|
if agg.Name == name {
|
|
|
|
agg.Name = name
|
|
|
|
agg.Condition = newcond
|
|
|
|
agg.Function = newfunc
|
|
|
|
agg.Tags = tags
|
|
|
|
agg.Meta = meta
|
|
|
|
agg.gvalCond = gvalCond
|
|
|
|
agg.gvalFunc = gvalFunc
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
}
|
2022-02-15 13:51:46 +01:00
|
|
|
agg := &MetricAggregatorIntervalConfig{
|
|
|
|
Name: name,
|
|
|
|
Condition: newcond,
|
|
|
|
gvalCond: gvalCond,
|
|
|
|
Function: newfunc,
|
|
|
|
gvalFunc: gvalFunc,
|
|
|
|
Tags: tags,
|
|
|
|
Meta: meta,
|
|
|
|
}
|
|
|
|
c.functions = append(c.functions, agg)
|
2022-01-30 15:03:21 +01:00
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func (c *metricAggregator) DeleteAggregation(name string) error {
|
|
|
|
for i, agg := range c.functions {
|
|
|
|
if agg.Name == name {
|
|
|
|
copy(c.functions[i:], c.functions[i+1:])
|
|
|
|
c.functions[len(c.functions)-1] = nil
|
|
|
|
c.functions = c.functions[:len(c.functions)-1]
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return fmt.Errorf("no aggregation for metric name %s", name)
|
|
|
|
}
|
|
|
|
|
|
|
|
func (c *metricAggregator) AddConstant(name string, value interface{}) {
|
|
|
|
c.constants[name] = value
|
|
|
|
}
|
|
|
|
|
|
|
|
func (c *metricAggregator) DelConstant(name string) {
|
|
|
|
delete(c.constants, name)
|
|
|
|
}
|
|
|
|
|
|
|
|
func (c *metricAggregator) AddFunction(name string, function func(args ...interface{}) (interface{}, error)) {
|
|
|
|
c.language = gval.NewLanguage(c.language, gval.Function(name, function))
|
|
|
|
}
|
|
|
|
|
2022-02-01 18:27:59 +01:00
|
|
|
func EvalBoolCondition(condition string, params map[string]interface{}) (bool, error) {
|
2022-02-16 14:30:11 +01:00
|
|
|
evaluables.mutex.Lock()
|
|
|
|
evaluable, ok := evaluables.mapping[condition]
|
|
|
|
evaluables.mutex.Unlock()
|
|
|
|
if !ok {
|
2022-02-16 13:59:32 +01:00
|
|
|
newcond :=
|
2022-02-15 13:35:24 +01:00
|
|
|
strings.ReplaceAll(
|
2022-02-16 13:59:32 +01:00
|
|
|
strings.ReplaceAll(
|
|
|
|
condition, "'", "\""), "%", "\\")
|
|
|
|
var err error
|
|
|
|
evaluable, err = language.NewEvaluable(newcond)
|
|
|
|
if err != nil {
|
|
|
|
return false, err
|
|
|
|
}
|
2022-02-16 14:30:11 +01:00
|
|
|
evaluables.mutex.Lock()
|
|
|
|
evaluables.mapping[condition] = evaluable
|
|
|
|
evaluables.mutex.Unlock()
|
2022-02-01 18:27:59 +01:00
|
|
|
}
|
2022-02-16 13:59:32 +01:00
|
|
|
value, err := evaluable.EvalBool(context.Background(), params)
|
|
|
|
return value, err
|
2022-02-01 18:27:59 +01:00
|
|
|
}
|
|
|
|
|
Merge develop into main (#109)
* Add cpu_used (all-cpu_idle) to CpustatCollector
* Update to line-protocol/v2
* Update runonce.yml with Golang 1.20
* Update fsnotify in LIKWID Collector
* Use not a pointer to line-protocol.Encoder
* Simplify Makefile
* Use only as many arguments as required
* Allow sum function to handle non float types
* Allow values to be a slice of type float64, float32, int, int64, int32, bool
* Use generic function to simplify code
* Add missing case for type []int32
* Use generic function to compute minimum
* Use generic function to compute maximum
* Use generic function to compute average
* Add error value to sumAnyType
* Use generic function to compute median
* For older versions of go slices is not part of the installation
* Remove old entries from go.sum
* Use simpler sort function
* Compute metrics ib_total and ib_total_pkts
* Add aggregated metrics.
Add missing units
* Update likwidMetric.go
Fixes a potential bug when `fsnotify.NewWatcher()` fails with an error
* Completly avoid memory allocations in infinibandMetric read()
* Fixed initialization: Initalization and measurements should run in the same thread
* Add safe.directory to Release action
* Fix path after installation to /usr/bin after installation
* ioutil.ReadFile is deprecated: As of Go 1.16, this function simply calls os.ReadFile
* Switch to package slices from the golang 1.21 default library
* Read file line by line
* Read file line by line
* Read file line by line
* Use CamelCase
* Use CamelCase
* Fix function getNumaDomain, it always returned 0
* Avoid type conversion by using Atoi
Avoid copying structs by using pointer access
Increase readability with CamelCase variable names
* Add caching
* Cache CpuData
* Cleanup
* Use init function to initalize cache structure to avoid multi threading problems
* Reuse information from /proc/cpuinfo
* Avoid slice cloning. Directly use the cache
* Add DieList
* Add NumaDomainList and SMTList
* Cleanup
* Add comment
* Lookup core ID from /sys/devices/system/cpu, /proc/cpuinfo is not portable
* Lookup all information from /sys/devices/system/cpu, /proc/cpuinfo is not portable
* Correctly handle lists from /sys
* Add Simultaneous Multithreading siblings
* Replace deprecated thread_siblings_list by core_cpus_list
* Reduce number of required slices
* Allow to send total values per core, socket and node
* Send all metrics with same time stamp
calcEventsetMetrics does only computiation, counter measurement is done before
* Input parameters should be float64 when evaluating to float64
* Send all metrics with same time stamp
calcGlobalMetrics does only computiation, counter measurement is done before
* Remove unused variable gmresults
* Add comments
* Updated go packages
* Add build with golang 1.21
* Switch to checkout action version 4
* Switch to setup-go action version 4
* Add workflow_dispatch to allow manual run of workflow
* Add workflow_dispatch to allow manual run of workflow
* Add release build jobs to runonce.yml
* Switch to golang 1.20 for RHEL based distributions
* Use dnf to download golang
* Remove golang versions before 1.20
* Upgrade Ubuntu focal -> jammy
* Pipe golang tar package directly to tar
* Update golang version
* Fix Ubuntu version number
* Add links to ipmi and redfish receivers
* Fix http server addr format
* github.com/influxdata/line-protocol -> github.com/influxdata/line-protocol/v2/lineprotocol
* Corrected spelling
* Add some comments
* github.com/influxdata/line-protocol -> github.com/influxdata/line-protocol/v2/lineprotocol
* Allow other fields not only field "value"
* Add some basic debugging documentation
* Add some basic debugging documentation
* Use a lock for the flush timer
* Add tags in lexical order as required by AddTag()
* Only access meta data, when it gets used as tag
* Use slice to store lexialicly orderd key value pairs
* Increase golang version requirement to 1.20.
* Avoid package cmp to allow builds with golang v1.20
* Fix: Error NVML library not found did crash
cc-metric-collector with "SIGSEGV: segmentation violation"
* Add config option idle_timeout
* Add basic authentication support
* Add basic authentication support
* Avoid unneccessary memory allocations
* Add documentation for send_*_total values
* Use generic package maps to clone maps
* Reuse flush timer
* Add Influx client options
* Reuse ccTopology functionality
* Do not store unused topology information
* Add batch_size config
* Cleanup
* Use stype and stype-id for the NIC in NetstatCollector
* Wait for concurrent flush operations to finish
* Be more verbose in error messages
* Reverted previous changes.
Made the code to complex without much advantages
* Use line protocol encoder
* Go pkg update
* Stop flush timer, when immediatelly flushing
* Fix: Corrected unlock access to batch slice
* Add config option to specify whether to use GZip compression in influx write requests
* Add asynchron send of encoder metrics
* Use DefaultServeMux instead of github.com/gorilla/mux
* Add config option for HTTP keep-alives
* Be more strict, when parsing json
* Add config option for HTTP request timeout and Retry interval
* Allow more then one background send operation
* Fix %sysusers_create_package args (#108)
%sysusers_create_package requires two arguments. See: https://github.com/systemd/systemd/blob/main/src/rpm/macros.systemd.in#L165
* Add nfsiostat to list of collectors
---------
Co-authored-by: Holger Obermaier <40787752+ho-ob@users.noreply.github.com>
Co-authored-by: Holger Obermaier <holgerob@gmx.de>
Co-authored-by: Obihörnchen <obihoernchende@gmail.com>
2023-12-04 12:21:26 +01:00
|
|
|
func EvalFloat64Condition(condition string, params map[string]float64) (float64, error) {
|
2022-02-16 14:30:11 +01:00
|
|
|
evaluables.mutex.Lock()
|
|
|
|
evaluable, ok := evaluables.mapping[condition]
|
|
|
|
evaluables.mutex.Unlock()
|
|
|
|
if !ok {
|
2022-02-16 13:59:32 +01:00
|
|
|
newcond :=
|
|
|
|
strings.ReplaceAll(
|
|
|
|
strings.ReplaceAll(
|
|
|
|
condition, "'", "\""), "%", "\\")
|
|
|
|
var err error
|
|
|
|
evaluable, err = language.NewEvaluable(newcond)
|
|
|
|
if err != nil {
|
|
|
|
return math.NaN(), err
|
2022-02-01 18:27:59 +01:00
|
|
|
}
|
2022-02-16 14:30:11 +01:00
|
|
|
evaluables.mutex.Lock()
|
|
|
|
evaluables.mapping[condition] = evaluable
|
|
|
|
evaluables.mutex.Unlock()
|
2022-02-01 18:27:59 +01:00
|
|
|
}
|
2022-02-16 13:59:32 +01:00
|
|
|
value, err := evaluable.EvalFloat64(context.Background(), params)
|
|
|
|
return value, err
|
2022-02-01 18:27:59 +01:00
|
|
|
}
|
|
|
|
|
2024-07-13 02:23:58 +02:00
|
|
|
func NewAggregator(output chan lp.CCMessage) (MetricAggregator, error) {
|
2022-01-30 15:03:21 +01:00
|
|
|
a := new(metricAggregator)
|
|
|
|
err := a.Init(output)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
return a, err
|
|
|
|
}
|