cc-metric-collector/receivers
2023-09-20 17:33:08 +02:00
..
httpReceiver.go Add basic authentication support 2023-09-20 17:33:08 +02:00
httpReceiver.md Add basic authentication support 2023-09-20 17:33:08 +02:00
ipmiReceiver.go
ipmiReceiver.md
metricReceiver.go
natsReceiver.go
natsReceiver.md Add some basic debugging documentation 2023-09-18 16:51:37 +02:00
prometheusReceiver.go
prometheusReceiver.md
README.md
receiveManager.go
redfishReceiver.go
redfishReceiver.md
sampleReceiver.go

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.

{
  "myreceivername" : {
    "type": "receiver-type",
    <receiver-specific configuration>
  }
}

This allows to specify

Available receivers

  • nats: Receive metrics from the NATS network
  • prometheus: Scrape data from a Prometheus client
  • http: Listen for HTTP Post requests transporting metrics in InfluxDB line protocol
  • ipmi: Read IPMI sensor readings
  • redfish Use the Redfish (specification) to query thermal and power metrics

Contributing own receivers

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

For an example, check the sample receiver