mirror of
https://github.com/ClusterCockpit/cc-metric-collector.git
synced 2025-11-06 19:23:48 +01:00
760 B
760 B
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",
"meta_as_tags" : [],
}
}
type: makes the sink annatssinkdatabase: 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 authenticationmeta_as_tags: print all meta information as tags in the output (optional)