mirror of
https://github.com/ClusterCockpit/cc-metric-collector.git
synced 2024-12-26 07:29:04 +01:00
1.5 KiB
1.5 KiB
nats
sink
The nats
sink publishes all metrics into a NATS network. The publishing key is the database name provided in the configuration file
Configuration structure
{
"<name>": {
"type": "nats",
"database" : "mymetrics",
"host": "dbhost.example.com",
"port": "4222",
"user": "exampleuser",
"password" : "examplepw",
"nkey_file": "/path/to/nkey_file",
"flush_delay": "10s",
"precision": "s",
"process_messages" : {
"see" : "docs of message processor for valid fields"
},
"meta_as_tags" : []
}
}
type
: makes the sink annats
sinkdatabase
: All metrics are published with this subjecthost
: Hostname of the NATS serverport
: Port number (as string) of the NATS serveruser
: Username for basic authenticationpassword
: Password for basic authenticationnkey_file
: Path to credentials file with NKEYflush_delay
: Maximum time until metrics are sent out (default '5s')precision
: Precision of the timestamp. Valid values are 's', 'ms', 'us' and 'ns'. (default is 's')process_messages
: Process messages with given rules before progressing or dropping, see here (optional)meta_as_tags
: print all meta information as tags in the output (deprecated, optional)
Using nats
sink for communication with cc-metric-store
The cc-metric-store only accepts metrics with a timestamp precision in seconds, so it is required to use "precision": "s"
.