2022-01-25 15:37:43 +01:00
# CCMetric sinks
2021-03-27 13:39:43 +01:00
2022-01-25 15:37:43 +01:00
This folder contains the SinkManager and sink implementations for the cc-metric-collector.
2021-03-27 13:39:43 +01:00
2022-02-04 18:12:24 +01:00
# Available sinks:
- [`stdout` ](./stdoutSink.md ): Print all metrics to `stdout` , `stderr` or a file
- [`http` ](./httpSink.md ): Send metrics to an HTTP server as POST requests
- [`influxdb` ](./influxSink.md ): Send metrics to an [InfluxDB ](https://www.influxdata.com/products/influxdb/ ) database
- [`nats` ](./natsSink.md ): Publish metrics to the [NATS ](https://nats.io/ ) network overlay system
- [`ganglia` ](./gangliaSink.md ): Publish metrics in the [Ganglia Monitoring System ](http://ganglia.info/ )
2022-01-25 15:37:43 +01:00
# Configuration
2021-03-27 13:39:43 +01:00
2022-01-25 15:37:43 +01:00
The configuration file for the sinks is a list of configurations. The `type` field in each specifies which sink to initialize.
2021-11-26 14:10:22 +01:00
```json
2022-01-25 15:37:43 +01:00
[
2022-02-04 18:12:24 +01:00
"mystdout" : {
2022-01-25 15:37:43 +01:00
"type" : "stdout",
"meta_as_tags" : false
},
2022-02-04 18:12:24 +01:00
"metricstore" : {
2022-01-25 15:37:43 +01:00
"type" : "http",
"host" : "localhost",
"port" : "4123",
"database" : "ccmetric",
"password" : "< jwt token > "
2021-11-26 14:10:22 +01:00
}
2022-01-25 15:37:43 +01:00
]
```
2021-11-26 14:10:22 +01:00
2022-01-25 15:37:43 +01:00
2022-02-04 18:12:24 +01:00
# Contributing own sinks
A sink contains four functions and is derived from the type `sink` :
* `Init(config json.RawMessage) error`
* `Write(point CCMetric) error`
* `Flush() error`
* `Close()`
2021-11-26 14:10:22 +01:00
2022-02-04 18:12:24 +01:00
The data structures should be set up in `Init()` like opening a file or server connection. The `Write()` function writes/sends the data. For non-blocking sinks, the `Flush()` method tells the sink to drain its internal buffers. The `Close()` function should tear down anything created in `Init()` .
2022-01-25 15:37:43 +01:00
2022-02-04 18:12:24 +01:00
Finally, the sink needs to be registered in the `sinkManager.go` . There is a list of sinks called `AvailableSinks` which is a map (`sink_type_string` -> `pointer to sink interface` ). Add a new entry with a descriptive name and the new sink.
2022-01-25 15:37:43 +01:00
2022-02-04 18:12:24 +01:00
## Sample sink
2022-01-25 15:37:43 +01:00
2022-02-04 18:12:24 +01:00
```go
package sinks
2022-01-25 15:37:43 +01:00
2022-02-04 18:12:24 +01:00
import (
"encoding/json"
"log"
lp "github.com/ClusterCockpit/cc-metric-collector/internal/ccMetric"
)
2022-01-25 15:37:43 +01:00
2022-02-04 18:12:24 +01:00
type SampleSinkConfig struct {
defaultSinkConfig // defines JSON tags for 'name' and 'meta_as_tags'
2022-01-25 15:37:43 +01:00
}
2021-11-26 14:10:22 +01:00
2022-02-04 18:12:24 +01:00
type SampleSink struct {
sink // declarate 'name' and 'meta_as_tags'
config StdoutSinkConfig // entry point to the SampleSinkConfig
}
2021-11-26 14:10:22 +01:00
2022-02-04 18:12:24 +01:00
// Initialize the sink by giving it a name and reading in the config JSON
func (s *SampleSink) Init(config json.RawMessage) error {
s.name = "SampleSink" // Always specify a name here
// Read in the config JSON
if len(config) > 0 {
err := json.Unmarshal(config, & s.config)
if err != nil {
return err
}
}
return nil
}
2021-11-26 15:56:52 +01:00
2022-02-04 18:12:24 +01:00
// Code to submit a single CCMetric to the sink
func (s *SampleSink) Write(point lp.CCMetric) error {
log.Print(point)
return nil
}
2021-11-26 15:56:52 +01:00
2022-02-04 18:12:24 +01:00
// If the sink uses batched sends internally, you can tell to flush its buffers
func (s *SampleSink) Flush() error {
return nil
}
2021-11-26 15:56:52 +01:00
2022-02-04 18:12:24 +01:00
// Close sink: close network connection, close files, close libraries, ...
func (s *SampleSink) Close() {}
```