2022-01-25 15:37:43 +01:00
|
|
|
package metricRouter
|
|
|
|
|
|
|
|
import (
|
|
|
|
"encoding/json"
|
|
|
|
"os"
|
|
|
|
"sync"
|
|
|
|
"time"
|
|
|
|
|
2022-01-26 11:38:43 +01:00
|
|
|
cclog "github.com/ClusterCockpit/cc-metric-collector/internal/ccLogger"
|
|
|
|
|
2022-01-25 15:37:43 +01:00
|
|
|
lp "github.com/ClusterCockpit/cc-metric-collector/internal/ccMetric"
|
|
|
|
mct "github.com/ClusterCockpit/cc-metric-collector/internal/multiChanTicker"
|
|
|
|
"gopkg.in/Knetic/govaluate.v2"
|
|
|
|
)
|
|
|
|
|
2022-01-26 11:38:43 +01:00
|
|
|
// Metric router tag configuration
|
2022-01-25 15:37:43 +01:00
|
|
|
type metricRouterTagConfig struct {
|
2022-01-26 11:38:43 +01:00
|
|
|
Key string `json:"key"` // Tag name
|
|
|
|
Value string `json:"value"` // Tag value
|
|
|
|
Condition string `json:"if"` // Condition for adding or removing corresponding tag
|
2022-01-25 15:37:43 +01:00
|
|
|
}
|
|
|
|
|
2022-01-26 11:38:43 +01:00
|
|
|
// Metric router configuration
|
2022-01-25 15:37:43 +01:00
|
|
|
type metricRouterConfig struct {
|
2022-01-26 11:38:43 +01:00
|
|
|
AddTags []metricRouterTagConfig `json:"add_tags"` // List of tags that are added when the condition is met
|
|
|
|
DelTags []metricRouterTagConfig `json:"delete_tags"` // List of tags that are removed when the condition is met
|
2022-01-28 15:16:58 +01:00
|
|
|
IntervalStamp bool `json:"interval_timestamp"` // Update timestamp periodically by ticker each interval?
|
2022-01-25 15:37:43 +01:00
|
|
|
}
|
|
|
|
|
2022-01-28 15:16:58 +01:00
|
|
|
// Metric router data structure
|
2022-01-25 15:37:43 +01:00
|
|
|
type metricRouter struct {
|
2022-01-28 15:16:58 +01:00
|
|
|
coll_input chan lp.CCMetric // Input channel from CollectorManager
|
|
|
|
recv_input chan lp.CCMetric // Input channel from ReceiveManager
|
|
|
|
outputs []chan lp.CCMetric // List of all output channels
|
|
|
|
done chan bool // channel to finish / stop metric router
|
|
|
|
wg *sync.WaitGroup // wait group for all goroutines in cc-metric-collector
|
|
|
|
timestamp time.Time // timestamp periodically updated by ticker each interval
|
|
|
|
timerdone chan bool // channel to finish / stop timestamp updater
|
|
|
|
ticker mct.MultiChanTicker // periodically ticking once each interval
|
|
|
|
config metricRouterConfig // json encoded config for metric router
|
2022-01-25 15:37:43 +01:00
|
|
|
}
|
|
|
|
|
2022-01-26 11:38:43 +01:00
|
|
|
// MetricRouter access functions
|
2022-01-25 15:37:43 +01:00
|
|
|
type MetricRouter interface {
|
|
|
|
Init(ticker mct.MultiChanTicker, wg *sync.WaitGroup, routerConfigFile string) error
|
2022-01-26 17:08:53 +01:00
|
|
|
AddCollectorInput(input chan lp.CCMetric)
|
|
|
|
AddReceiverInput(input chan lp.CCMetric)
|
2022-01-25 15:37:43 +01:00
|
|
|
AddOutput(output chan lp.CCMetric)
|
|
|
|
Start()
|
|
|
|
Close()
|
|
|
|
}
|
|
|
|
|
2022-01-26 11:38:43 +01:00
|
|
|
// Init initializes a metric router by setting up:
|
|
|
|
// * input and output channels
|
|
|
|
// * done channel
|
|
|
|
// * wait group synchronization (from variable wg)
|
|
|
|
// * ticker (from variable ticker)
|
|
|
|
// * configuration (read from config file in variable routerConfigFile)
|
2022-01-25 15:37:43 +01:00
|
|
|
func (r *metricRouter) Init(ticker mct.MultiChanTicker, wg *sync.WaitGroup, routerConfigFile string) error {
|
|
|
|
r.outputs = make([]chan lp.CCMetric, 0)
|
|
|
|
r.done = make(chan bool)
|
|
|
|
r.wg = wg
|
|
|
|
r.ticker = ticker
|
2022-01-28 15:16:58 +01:00
|
|
|
|
|
|
|
// Read metric router config file
|
2022-01-25 15:37:43 +01:00
|
|
|
configFile, err := os.Open(routerConfigFile)
|
|
|
|
if err != nil {
|
2022-01-25 17:43:10 +01:00
|
|
|
cclog.ComponentError("MetricRouter", err.Error())
|
2022-01-25 15:37:43 +01:00
|
|
|
return err
|
|
|
|
}
|
|
|
|
defer configFile.Close()
|
|
|
|
jsonParser := json.NewDecoder(configFile)
|
|
|
|
err = jsonParser.Decode(&r.config)
|
|
|
|
if err != nil {
|
2022-01-25 17:43:10 +01:00
|
|
|
cclog.ComponentError("MetricRouter", err.Error())
|
2022-01-25 15:37:43 +01:00
|
|
|
return err
|
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2022-01-26 11:38:43 +01:00
|
|
|
// StartTimer starts a timer which updates timestamp periodically
|
2022-01-25 15:37:43 +01:00
|
|
|
func (r *metricRouter) StartTimer() {
|
|
|
|
m := make(chan time.Time)
|
|
|
|
r.ticker.AddChannel(m)
|
2022-01-26 17:08:53 +01:00
|
|
|
r.timerdone = make(chan bool)
|
2022-01-27 20:45:22 +01:00
|
|
|
|
|
|
|
r.wg.Add(1)
|
2022-01-25 15:37:43 +01:00
|
|
|
go func() {
|
2022-01-27 20:45:22 +01:00
|
|
|
defer r.wg.Done()
|
2022-01-25 15:37:43 +01:00
|
|
|
for {
|
2022-01-26 17:08:53 +01:00
|
|
|
select {
|
|
|
|
case <-r.timerdone:
|
|
|
|
cclog.ComponentDebug("MetricRouter", "TIMER DONE")
|
|
|
|
return
|
|
|
|
case t := <-m:
|
|
|
|
r.timestamp = t
|
|
|
|
}
|
2022-01-25 15:37:43 +01:00
|
|
|
}
|
|
|
|
}()
|
2022-01-26 17:08:53 +01:00
|
|
|
cclog.ComponentDebug("MetricRouter", "TIMER START")
|
2022-01-25 15:37:43 +01:00
|
|
|
}
|
|
|
|
|
2022-01-28 15:16:58 +01:00
|
|
|
// EvalCondition evaluates condition cond for metric data from point
|
|
|
|
func (r *metricRouter) EvalCondition(cond string, point lp.CCMetric) (bool, error) {
|
|
|
|
expression, err := govaluate.NewEvaluableExpression(cond)
|
2022-01-25 15:37:43 +01:00
|
|
|
if err != nil {
|
2022-01-28 15:16:58 +01:00
|
|
|
cclog.ComponentDebug("MetricRouter", cond, " = ", err.Error())
|
2022-01-25 15:37:43 +01:00
|
|
|
return false, err
|
|
|
|
}
|
2022-01-26 11:38:43 +01:00
|
|
|
|
|
|
|
// Add metric name, tags, meta data, fields and timestamp to the parameter list
|
2022-01-25 15:37:43 +01:00
|
|
|
params := make(map[string]interface{})
|
|
|
|
params["name"] = point.Name()
|
|
|
|
for _, t := range point.TagList() {
|
|
|
|
params[t.Key] = t.Value
|
|
|
|
}
|
|
|
|
for _, m := range point.MetaList() {
|
|
|
|
params[m.Key] = m.Value
|
|
|
|
}
|
|
|
|
for _, f := range point.FieldList() {
|
|
|
|
params[f.Key] = f.Value
|
|
|
|
}
|
|
|
|
params["timestamp"] = point.Time()
|
|
|
|
|
2022-01-26 11:38:43 +01:00
|
|
|
// evaluate condition
|
2022-01-25 15:37:43 +01:00
|
|
|
result, err := expression.Evaluate(params)
|
|
|
|
if err != nil {
|
2022-01-28 15:16:58 +01:00
|
|
|
cclog.ComponentDebug("MetricRouter", cond, " = ", err.Error())
|
2022-01-25 15:37:43 +01:00
|
|
|
return false, err
|
|
|
|
}
|
|
|
|
return bool(result.(bool)), err
|
|
|
|
}
|
|
|
|
|
2022-01-26 11:38:43 +01:00
|
|
|
// DoAddTags adds a tag when condition is fullfiled
|
2022-01-25 15:37:43 +01:00
|
|
|
func (r *metricRouter) DoAddTags(point lp.CCMetric) {
|
|
|
|
for _, m := range r.config.AddTags {
|
|
|
|
var conditionMatches bool
|
|
|
|
|
|
|
|
if m.Condition == "*" {
|
|
|
|
conditionMatches = true
|
|
|
|
} else {
|
|
|
|
var err error
|
|
|
|
conditionMatches, err = r.EvalCondition(m.Condition, point)
|
|
|
|
if err != nil {
|
2022-01-25 17:43:10 +01:00
|
|
|
cclog.ComponentError("MetricRouter", err.Error())
|
2022-01-25 15:37:43 +01:00
|
|
|
conditionMatches = false
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if conditionMatches {
|
|
|
|
point.AddTag(m.Key, m.Value)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-01-26 11:38:43 +01:00
|
|
|
// DoDelTags removes a tag when condition is fullfiled
|
2022-01-25 15:37:43 +01:00
|
|
|
func (r *metricRouter) DoDelTags(point lp.CCMetric) {
|
|
|
|
for _, m := range r.config.DelTags {
|
|
|
|
var conditionMatches bool
|
|
|
|
|
|
|
|
if m.Condition == "*" {
|
|
|
|
conditionMatches = true
|
|
|
|
} else {
|
|
|
|
var err error
|
|
|
|
conditionMatches, err = r.EvalCondition(m.Condition, point)
|
|
|
|
if err != nil {
|
2022-01-25 17:43:10 +01:00
|
|
|
cclog.ComponentError("MetricRouter", err.Error())
|
2022-01-25 15:37:43 +01:00
|
|
|
conditionMatches = false
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if conditionMatches {
|
|
|
|
point.RemoveTag(m.Key)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-01-26 11:38:43 +01:00
|
|
|
// Start starts the metric router
|
2022-01-25 15:37:43 +01:00
|
|
|
func (r *metricRouter) Start() {
|
2022-01-28 15:16:58 +01:00
|
|
|
|
|
|
|
// start timer if configured
|
2022-01-25 15:37:43 +01:00
|
|
|
r.timestamp = time.Now()
|
|
|
|
if r.config.IntervalStamp {
|
|
|
|
r.StartTimer()
|
|
|
|
}
|
2022-01-28 15:16:58 +01:00
|
|
|
|
|
|
|
// Router manager is done
|
2022-01-26 17:08:53 +01:00
|
|
|
done := func() {
|
|
|
|
cclog.ComponentDebug("MetricRouter", "DONE")
|
|
|
|
}
|
2022-01-28 15:16:58 +01:00
|
|
|
|
|
|
|
// Forward takes a received metric, adds or deletes tags
|
|
|
|
// and forwards it to the output channels
|
2022-01-26 17:08:53 +01:00
|
|
|
forward := func(point lp.CCMetric) {
|
|
|
|
cclog.ComponentDebug("MetricRouter", "FORWARD", point)
|
|
|
|
r.DoAddTags(point)
|
|
|
|
r.DoDelTags(point)
|
|
|
|
for _, o := range r.outputs {
|
|
|
|
o <- point
|
|
|
|
}
|
|
|
|
}
|
2022-01-27 20:45:22 +01:00
|
|
|
|
|
|
|
r.wg.Add(1)
|
2022-01-25 15:37:43 +01:00
|
|
|
go func() {
|
2022-01-27 20:45:22 +01:00
|
|
|
defer r.wg.Done()
|
2022-01-25 15:37:43 +01:00
|
|
|
for {
|
|
|
|
select {
|
|
|
|
case <-r.done:
|
2022-01-26 17:08:53 +01:00
|
|
|
done()
|
|
|
|
return
|
2022-01-28 15:16:58 +01:00
|
|
|
|
2022-01-26 17:08:53 +01:00
|
|
|
case p := <-r.coll_input:
|
2022-01-28 15:16:58 +01:00
|
|
|
// receive from metric collector
|
2022-01-26 17:08:53 +01:00
|
|
|
if r.config.IntervalStamp {
|
|
|
|
p.SetTime(r.timestamp)
|
|
|
|
}
|
|
|
|
forward(p)
|
2022-01-28 15:16:58 +01:00
|
|
|
|
2022-01-26 17:08:53 +01:00
|
|
|
case p := <-r.recv_input:
|
2022-01-28 15:16:58 +01:00
|
|
|
// receive from receive manager
|
2022-01-26 17:08:53 +01:00
|
|
|
if r.config.IntervalStamp {
|
|
|
|
p.SetTime(r.timestamp)
|
2022-01-25 15:37:43 +01:00
|
|
|
}
|
2022-01-26 17:08:53 +01:00
|
|
|
forward(p)
|
2022-01-25 15:37:43 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}()
|
2022-01-25 17:43:10 +01:00
|
|
|
cclog.ComponentDebug("MetricRouter", "STARTED")
|
2022-01-25 15:37:43 +01:00
|
|
|
}
|
|
|
|
|
2022-01-28 15:16:58 +01:00
|
|
|
// AddCollectorInput adds a channel between metric collector and metric router
|
2022-01-26 17:08:53 +01:00
|
|
|
func (r *metricRouter) AddCollectorInput(input chan lp.CCMetric) {
|
|
|
|
r.coll_input = input
|
|
|
|
}
|
|
|
|
|
2022-01-28 15:16:58 +01:00
|
|
|
// AddReceiverInput adds a channel between metric receiver and metric router
|
2022-01-26 17:08:53 +01:00
|
|
|
func (r *metricRouter) AddReceiverInput(input chan lp.CCMetric) {
|
|
|
|
r.recv_input = input
|
2022-01-25 15:37:43 +01:00
|
|
|
}
|
|
|
|
|
2022-01-26 12:08:40 +01:00
|
|
|
// AddOutput adds a output channel to the metric router
|
2022-01-25 15:37:43 +01:00
|
|
|
func (r *metricRouter) AddOutput(output chan lp.CCMetric) {
|
|
|
|
r.outputs = append(r.outputs, output)
|
|
|
|
}
|
|
|
|
|
2022-01-26 12:08:40 +01:00
|
|
|
// Close finishes / stops the metric router
|
2022-01-25 15:37:43 +01:00
|
|
|
func (r *metricRouter) Close() {
|
2022-01-27 17:43:00 +01:00
|
|
|
cclog.ComponentDebug("MetricRouter", "CLOSE")
|
|
|
|
r.done <- true
|
2022-01-26 17:08:53 +01:00
|
|
|
if r.config.IntervalStamp {
|
|
|
|
cclog.ComponentDebug("MetricRouter", "TIMER CLOSE")
|
2022-01-27 17:43:00 +01:00
|
|
|
r.timerdone <- true
|
2022-01-26 17:08:53 +01:00
|
|
|
}
|
2022-01-25 15:37:43 +01:00
|
|
|
}
|
|
|
|
|
2022-01-26 12:08:40 +01:00
|
|
|
// New creates a new initialized metric router
|
2022-01-25 15:37:43 +01:00
|
|
|
func New(ticker mct.MultiChanTicker, wg *sync.WaitGroup, routerConfigFile string) (MetricRouter, error) {
|
|
|
|
r := new(metricRouter)
|
|
|
|
err := r.Init(ticker, wg, routerConfigFile)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
return r, err
|
|
|
|
}
|