2018-09-11 20:01:08 +00:00
|
|
|
package splunkmetric
|
|
|
|
|
|
|
|
import (
|
|
|
|
"encoding/json"
|
|
|
|
"fmt"
|
|
|
|
"log"
|
|
|
|
|
|
|
|
"github.com/influxdata/telegraf"
|
|
|
|
)
|
|
|
|
|
|
|
|
type serializer struct {
|
2019-11-18 20:38:34 +00:00
|
|
|
HecRouting bool
|
|
|
|
SplunkmetricMultiMetric bool
|
2018-09-11 20:01:08 +00:00
|
|
|
}
|
|
|
|
|
2019-11-18 20:38:34 +00:00
|
|
|
type CommonTags struct {
|
|
|
|
Time float64
|
|
|
|
Host string
|
|
|
|
Index string
|
|
|
|
Source string
|
|
|
|
Fields map[string]interface{}
|
|
|
|
}
|
|
|
|
|
|
|
|
type HECTimeSeries struct {
|
|
|
|
Time float64 `json:"time"`
|
|
|
|
Event string `json:"event"`
|
|
|
|
Host string `json:"host,omitempty"`
|
|
|
|
Index string `json:"index,omitempty"`
|
|
|
|
Source string `json:"source,omitempty"`
|
|
|
|
Fields map[string]interface{} `json:"fields"`
|
|
|
|
}
|
|
|
|
|
|
|
|
// NewSerializer Setup our new serializer
|
|
|
|
func NewSerializer(splunkmetric_hec_routing bool, splunkmetric_multimetric bool) (*serializer, error) {
|
|
|
|
/* Define output params */
|
2018-09-11 20:01:08 +00:00
|
|
|
s := &serializer{
|
2019-11-18 20:38:34 +00:00
|
|
|
HecRouting: splunkmetric_hec_routing,
|
|
|
|
SplunkmetricMultiMetric: splunkmetric_multimetric,
|
2018-09-11 20:01:08 +00:00
|
|
|
}
|
|
|
|
return s, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func (s *serializer) Serialize(metric telegraf.Metric) ([]byte, error) {
|
|
|
|
|
|
|
|
m, err := s.createObject(metric)
|
|
|
|
if err != nil {
|
|
|
|
return nil, fmt.Errorf("D! [serializer.splunkmetric] Dropping invalid metric: %s", metric.Name())
|
|
|
|
}
|
|
|
|
|
|
|
|
return m, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func (s *serializer) SerializeBatch(metrics []telegraf.Metric) ([]byte, error) {
|
|
|
|
|
|
|
|
var serialized []byte
|
|
|
|
|
|
|
|
for _, metric := range metrics {
|
|
|
|
m, err := s.createObject(metric)
|
|
|
|
if err != nil {
|
|
|
|
return nil, fmt.Errorf("D! [serializer.splunkmetric] Dropping invalid metric: %s", metric.Name())
|
|
|
|
} else if m != nil {
|
|
|
|
serialized = append(serialized, m...)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return serialized, nil
|
|
|
|
}
|
|
|
|
|
2019-11-18 20:38:34 +00:00
|
|
|
func (s *serializer) createMulti(metric telegraf.Metric, dataGroup HECTimeSeries, commonTags CommonTags) (metricGroup []byte, err error) {
|
|
|
|
/* When splunkmetric_multimetric is true, then we can write out multiple name=value pairs as part of the same
|
|
|
|
** event payload. This only works when the time, host, and dimensions are the same for every name=value pair
|
|
|
|
** in the timeseries data.
|
|
|
|
**
|
|
|
|
** The format for multimetric data is 'metric_name:nameOfMetric = valueOfMetric'
|
|
|
|
*/
|
|
|
|
var metricJSON []byte
|
|
|
|
|
|
|
|
// Set the event data from the commonTags above.
|
|
|
|
dataGroup.Event = "metric"
|
|
|
|
dataGroup.Time = commonTags.Time
|
|
|
|
dataGroup.Host = commonTags.Host
|
|
|
|
dataGroup.Index = commonTags.Index
|
|
|
|
dataGroup.Source = commonTags.Source
|
|
|
|
dataGroup.Fields = commonTags.Fields
|
|
|
|
|
2020-05-14 07:41:58 +00:00
|
|
|
// Stuff the metric data into the structure.
|
2019-11-18 20:38:34 +00:00
|
|
|
for _, field := range metric.FieldList() {
|
|
|
|
value, valid := verifyValue(field.Value)
|
2018-09-11 20:01:08 +00:00
|
|
|
|
2019-11-18 20:38:34 +00:00
|
|
|
if !valid {
|
|
|
|
log.Printf("D! Can not parse value: %v for key: %v", field.Value, field.Key)
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
|
|
|
|
dataGroup.Fields["metric_name:"+metric.Name()+"."+field.Key] = value
|
2018-09-11 20:01:08 +00:00
|
|
|
}
|
|
|
|
|
2019-11-18 20:38:34 +00:00
|
|
|
// Manage the rest of the event details based upon HEC routing rules
|
|
|
|
switch s.HecRouting {
|
|
|
|
case true:
|
|
|
|
// Output the data as a fields array and host,index,time,source overrides for the HEC.
|
|
|
|
metricJSON, err = json.Marshal(dataGroup)
|
|
|
|
default:
|
2020-05-14 07:41:58 +00:00
|
|
|
// Just output the data and the time, useful for file based outputs
|
2019-11-18 20:38:34 +00:00
|
|
|
dataGroup.Fields["time"] = dataGroup.Time
|
|
|
|
metricJSON, err = json.Marshal(dataGroup.Fields)
|
|
|
|
}
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
// Let the JSON fall through to the return below
|
|
|
|
metricGroup = metricJSON
|
|
|
|
|
|
|
|
return metricGroup, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func (s *serializer) createSingle(metric telegraf.Metric, dataGroup HECTimeSeries, commonTags CommonTags) (metricGroup []byte, err error) {
|
2020-05-14 07:41:58 +00:00
|
|
|
/* The default mode is to generate one JSON entity per metric (required for pre-8.0 Splunks)
|
2019-11-18 20:38:34 +00:00
|
|
|
**
|
|
|
|
** The format for single metric is 'nameOfMetric = valueOfMetric'
|
|
|
|
*/
|
|
|
|
|
|
|
|
var metricJSON []byte
|
2018-09-11 20:01:08 +00:00
|
|
|
|
|
|
|
for _, field := range metric.FieldList() {
|
|
|
|
|
2018-11-22 01:43:42 +00:00
|
|
|
value, valid := verifyValue(field.Value)
|
|
|
|
|
|
|
|
if !valid {
|
2018-09-11 20:01:08 +00:00
|
|
|
log.Printf("D! Can not parse value: %v for key: %v", field.Value, field.Key)
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
|
|
|
|
dataGroup.Event = "metric"
|
2019-11-18 20:38:34 +00:00
|
|
|
|
|
|
|
dataGroup.Time = commonTags.Time
|
|
|
|
|
|
|
|
// Apply the common tags from above to every record.
|
|
|
|
dataGroup.Host = commonTags.Host
|
|
|
|
dataGroup.Index = commonTags.Index
|
|
|
|
dataGroup.Source = commonTags.Source
|
|
|
|
dataGroup.Fields = commonTags.Fields
|
|
|
|
|
|
|
|
dataGroup.Fields["metric_name"] = metric.Name() + "." + field.Key
|
|
|
|
dataGroup.Fields["_value"] = value
|
2018-09-11 20:01:08 +00:00
|
|
|
|
|
|
|
switch s.HecRouting {
|
|
|
|
case true:
|
|
|
|
// Output the data as a fields array and host,index,time,source overrides for the HEC.
|
2019-11-18 20:38:34 +00:00
|
|
|
metricJSON, err = json.Marshal(dataGroup)
|
2018-09-11 20:01:08 +00:00
|
|
|
default:
|
2020-05-14 07:41:58 +00:00
|
|
|
// Just output the data and the time, useful for file based outputs
|
2018-09-11 20:01:08 +00:00
|
|
|
dataGroup.Fields["time"] = dataGroup.Time
|
2019-11-18 20:38:34 +00:00
|
|
|
metricJSON, err = json.Marshal(dataGroup.Fields)
|
2018-09-11 20:01:08 +00:00
|
|
|
}
|
|
|
|
|
2019-11-18 20:38:34 +00:00
|
|
|
metricGroup = append(metricGroup, metricJSON...)
|
2018-09-11 20:01:08 +00:00
|
|
|
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return metricGroup, nil
|
|
|
|
}
|
|
|
|
|
2019-11-18 20:38:34 +00:00
|
|
|
func (s *serializer) createObject(metric telegraf.Metric) (metricGroup []byte, err error) {
|
|
|
|
|
|
|
|
/* Splunk supports one metric json object, and does _not_ support an array of JSON objects.
|
|
|
|
** Splunk has the following required names for the metric store:
|
|
|
|
** metric_name: The name of the metric
|
|
|
|
** _value: The value for the metric
|
|
|
|
** time: The timestamp for the metric
|
|
|
|
** All other index fields become dimensions.
|
|
|
|
*/
|
|
|
|
|
|
|
|
dataGroup := HECTimeSeries{}
|
|
|
|
|
|
|
|
// The tags are common to all events in this timeseries
|
|
|
|
commonTags := CommonTags{}
|
|
|
|
|
2020-05-04 23:21:32 +00:00
|
|
|
commonTags.Fields = map[string]interface{}{}
|
2019-11-18 20:38:34 +00:00
|
|
|
|
|
|
|
// Break tags out into key(n)=value(t) pairs
|
|
|
|
for n, t := range metric.Tags() {
|
|
|
|
if n == "host" {
|
|
|
|
commonTags.Host = t
|
|
|
|
} else if n == "index" {
|
|
|
|
commonTags.Index = t
|
|
|
|
} else if n == "source" {
|
|
|
|
commonTags.Source = t
|
|
|
|
} else {
|
|
|
|
commonTags.Fields[n] = t
|
|
|
|
}
|
|
|
|
}
|
|
|
|
commonTags.Time = float64(metric.Time().UnixNano()) / float64(1000000000)
|
|
|
|
switch s.SplunkmetricMultiMetric {
|
|
|
|
case true:
|
|
|
|
metricGroup, _ = s.createMulti(metric, dataGroup, commonTags)
|
|
|
|
default:
|
|
|
|
metricGroup, _ = s.createSingle(metric, dataGroup, commonTags)
|
|
|
|
}
|
|
|
|
|
|
|
|
// Return the metric group regardless of if it's multimetric or single metric.
|
|
|
|
return metricGroup, nil
|
|
|
|
}
|
|
|
|
|
2018-11-22 01:43:42 +00:00
|
|
|
func verifyValue(v interface{}) (value interface{}, valid bool) {
|
2018-09-11 20:01:08 +00:00
|
|
|
switch v.(type) {
|
|
|
|
case string:
|
2018-11-22 01:43:42 +00:00
|
|
|
valid = false
|
|
|
|
value = v
|
|
|
|
case bool:
|
|
|
|
if v == bool(true) {
|
|
|
|
// Store 1 for a "true" value
|
|
|
|
valid = true
|
|
|
|
value = 1
|
|
|
|
} else {
|
|
|
|
// Otherwise store 0
|
|
|
|
valid = true
|
|
|
|
value = 0
|
|
|
|
}
|
|
|
|
default:
|
|
|
|
valid = true
|
|
|
|
value = v
|
2018-09-11 20:01:08 +00:00
|
|
|
}
|
2018-11-22 01:43:42 +00:00
|
|
|
return value, valid
|
2018-09-11 20:01:08 +00:00
|
|
|
}
|