mirror of
https://github.com/ClusterCockpit/cc-metric-collector.git
synced 2024-11-10 04:27:25 +01:00
ea5b3bdbd6
* Use common configuration format of 'receiver_name' -> 'receiver_config' * Adjust receiver configuration files
43 lines
780 B
Go
43 lines
780 B
Go
package receivers
|
|
|
|
import (
|
|
// "time"
|
|
"encoding/json"
|
|
|
|
lp "github.com/ClusterCockpit/cc-metric-collector/internal/ccMetric"
|
|
)
|
|
|
|
type defaultReceiverConfig struct {
|
|
Type string `json:"type"`
|
|
}
|
|
|
|
type ReceiverConfig struct {
|
|
Addr string `json:"address"`
|
|
Port string `json:"port"`
|
|
Database string `json:"database"`
|
|
Organization string `json:"organization,omitempty"`
|
|
Type string `json:"type"`
|
|
}
|
|
|
|
type receiver struct {
|
|
typename string
|
|
name string
|
|
sink chan lp.CCMetric
|
|
}
|
|
|
|
type Receiver interface {
|
|
Init(name string, config json.RawMessage) error
|
|
Start()
|
|
Close()
|
|
Name() string
|
|
SetSink(sink chan lp.CCMetric)
|
|
}
|
|
|
|
func (r *receiver) Name() string {
|
|
return r.name
|
|
}
|
|
|
|
func (r *receiver) SetSink(sink chan lp.CCMetric) {
|
|
r.sink = sink
|
|
}
|