ing
This commit is contained in:
parent
bd183fd1fc
commit
dd81439795
7
config/external/external.go
vendored
7
config/external/external.go
vendored
|
@ -1,7 +1,8 @@
|
|||
package external
|
||||
|
||||
type External struct {
|
||||
GRPC *GRPC `json:"grpc,omitempty"`
|
||||
Kafka *Kafka `json:"kafka,omitempty"`
|
||||
Redis *Redis `json:"redis,omitempty"`
|
||||
GRPC *GRPC `json:"grpc,omitempty"`
|
||||
Kafka *Kafka `json:"kafka,omitempty"`
|
||||
Redis *Redis `json:"redis,omitempty"`
|
||||
InfluxDB *InfluxDB `json:"influxDB,omitempty"`
|
||||
}
|
||||
|
|
23
config/external/influxdb.go
vendored
Normal file
23
config/external/influxdb.go
vendored
Normal file
|
@ -0,0 +1,23 @@
|
|||
package external
|
||||
|
||||
import "time"
|
||||
|
||||
type InfluxDB struct {
|
||||
HTTPConfigs map[string]*InfluxDBHTTPConfig `json:"httpConfigs" yaml:"httpConfigs" toml:"httpConfigs"`
|
||||
BatchPointsConfigs map[string]*InfluxDBBatchPointsConfig `json:"batchPointsConfigs" yaml:"batchPointsConfigs" toml:"batchPointsConfigs"`
|
||||
}
|
||||
|
||||
type InfluxDBHTTPConfig struct {
|
||||
Address string `json:"address" yaml:"address" toml:"address"`
|
||||
Username string `json:"username" yaml:"username" toml:"username"`
|
||||
Password string `json:"password" yaml:"password" toml:"password"`
|
||||
UserAgent string `json:"userAgent" yaml:"userAgent" toml:"userAgent"`
|
||||
Timeout time.Duration `json:"timeout" yaml:"timeout" toml:"timeout"`
|
||||
}
|
||||
|
||||
type InfluxDBBatchPointsConfig struct {
|
||||
Precision string `json:"precision" yaml:"precision" toml:"precision"`
|
||||
Database string `json:"database" yaml:"database" toml:"database"`
|
||||
RetentionPolicy string `json:"retentionPolicy" yaml:"retentionPolicy" toml:"retentionPolicy"`
|
||||
WriteConsistency string `json:"writeConsistency" yaml:"writeConsistency" toml:"writeConsistency"`
|
||||
}
|
Loading…
Reference in New Issue
Block a user