cc-metric-collector/receivers
Thomas Gruber ea5b3bdbd6
Use receiver names from config (#34)
* Use common configuration format of 'receiver_name' -> 'receiver_config'

* Adjust receiver configuration files
2022-02-21 12:45:08 +01:00
..
metricReceiver.go Use receiver names from config (#34) 2022-02-21 12:45:08 +01:00
natsReceiver.go Use receiver names from config (#34) 2022-02-21 12:45:08 +01:00
README.md Modularize the whole thing (#16) 2022-01-25 15:37:43 +01:00
receiveManager.go Use receiver names from config (#34) 2022-02-21 12:45:08 +01:00

CCMetric receivers

This folder contains the ReceiveManager and receiver implementations for the cc-metric-collector.

Configuration

The configuration file for the receivers is a list of configurations. The type field in each specifies which receiver to initialize.

[
  {
    "type": "nats",
    "address": "nats://my-url",
    "port" : "4222",
    "database": "testcluster"
  }
]

Type nats

{
  "type": "nats",
  "address": "<nats-URI or hostname>",
  "port" : "<portnumber>",
  "database": "<subscribe topic>"
}

The nats receiver subscribes to the topic database and listens on address and port for metrics in the InfluxDB line protocol.

Contributing own receivers

A receiver contains three functions and is derived from the type Receiver (in metricReceiver.go):

  • Init(config ReceiverConfig) error
  • Start() error
  • Close()
  • Name() string
  • SetSink(sink chan ccMetric.CCMetric)

The data structures should be set up in Init() like opening a file or server connection. The Start() function should either start a go routine or issue some other asynchronous mechanism for receiving metrics. The Close() function should tear down anything created in Init().

Finally, the receiver needs to be registered in the receiveManager.go. There is a list of receivers called AvailableReceivers which is a map (receiver_type_string -> pointer to Receiver interface). Add a new entry with a descriptive name and the new receiver.