forked from elastic/beats
-
Notifications
You must be signed in to change notification settings - Fork 0
/
config.go
35 lines (29 loc) · 816 Bytes
/
config.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
package partition
import (
"fmt"
"time"
"github.com/elastic/beats/libbeat/outputs"
)
type connConfig struct {
Retries int `config:"retries" validate:"min=0"`
Backoff time.Duration `config:"backoff" validate:"min=0"`
TLS *outputs.TLSConfig `config:"ssl"`
Username string `config:"username"`
Password string `config:"password"`
ClientID string `config:"client_id"`
Topics []string `config:"topics"`
}
var defaultConfig = connConfig{
Retries: 3,
Backoff: 250 * time.Millisecond,
TLS: nil,
Username: "",
Password: "",
ClientID: "metricbeat",
}
func (c *connConfig) Validate() error {
if c.Username != "" && c.Password == "" {
return fmt.Errorf("password must be set when username is configured")
}
return nil
}