mirror of
https://github.com/ClusterCockpit/cc-metric-collector.git
synced 2024-11-12 21:17:25 +01:00
31 lines
642 B
Go
31 lines
642 B
Go
package sinks
|
|
|
|
import (
|
|
"time"
|
|
)
|
|
|
|
type SinkConfig struct {
|
|
Host string `json:"host"`
|
|
Port string `json:"port"`
|
|
Database string `json:"database"`
|
|
User string `json:"user"`
|
|
Password string `json:"password"`
|
|
Organization string `json:"organization"`
|
|
Type string `json:"type"`
|
|
}
|
|
|
|
type Sink struct {
|
|
host string
|
|
port string
|
|
user string
|
|
password string
|
|
database string
|
|
organization string
|
|
}
|
|
|
|
type SinkFuncs interface {
|
|
Init(config SinkConfig) error
|
|
Write(measurement string, tags map[string]string, fields map[string]interface{}, t time.Time) error
|
|
Close()
|
|
}
|