-
Notifications
You must be signed in to change notification settings - Fork 1.3k
/
Copy pathcollector.go
117 lines (101 loc) · 3.35 KB
/
collector.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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
/*
*
* k6 - a next-generation load testing tool
* Copyright (C) 2019 Load Impact
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License as
* published by the Free Software Foundation, either version 3 of the
* License, or (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Affero General Public License for more details.
*
* You should have received a copy of the GNU Affero General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*
*/
package datadog
import (
"time"
"github.com/sirupsen/logrus"
"gopkg.in/guregu/null.v3"
"github.com/loadimpact/k6/lib/types"
"github.com/loadimpact/k6/stats"
"github.com/loadimpact/k6/stats/statsd/common"
)
type tagHandler stats.TagSet
func (t tagHandler) processTags(tags map[string]string) []string {
var res []string
for key, value := range tags {
if value != "" && !t[key] {
res = append(res, key+":"+value)
}
}
return res
}
// Config defines the Datadog configuration.
type Config struct {
Addr null.String `json:"addr,omitempty" envconfig:"K6_DATADOG_ADDR"`
BufferSize null.Int `json:"bufferSize,omitempty" envconfig:"K6_DATADOG_BUFFER_SIZE"`
Namespace null.String `json:"namespace,omitempty" envconfig:"K6_DATADOG_NAMESPACE"`
PushInterval types.NullDuration `json:"pushInterval,omitempty" envconfig:"K6_DATADOG_PUSH_INTERVAL"`
TagBlacklist stats.TagSet `json:"tagBlacklist,omitempty" envconfig:"K6_DATADOG_TAG_BLACKLIST"`
}
// GetAddr returns the address of the DogStatsD service.
func (c Config) GetAddr() null.String {
return c.Addr
}
// GetBufferSize returns the size of the commands buffer.
func (c Config) GetBufferSize() null.Int {
return c.BufferSize
}
// GetNamespace returns the namespace prepended to all statsd calls.
func (c Config) GetNamespace() null.String {
return c.Namespace
}
// GetPushInterval returns the time interval between outgoing data batches.
func (c Config) GetPushInterval() types.NullDuration {
return c.PushInterval
}
var _ common.Config = &Config{}
// Apply saves config non-zero config values from the passed config in the receiver.
func (c Config) Apply(cfg Config) Config {
if cfg.Addr.Valid {
c.Addr = cfg.Addr
}
if cfg.BufferSize.Valid {
c.BufferSize = cfg.BufferSize
}
if cfg.Namespace.Valid {
c.Namespace = cfg.Namespace
}
if cfg.PushInterval.Valid {
c.PushInterval = cfg.PushInterval
}
if cfg.TagBlacklist != nil {
c.TagBlacklist = cfg.TagBlacklist
}
return c
}
// NewConfig creates a new Config instance with default values for some fields.
func NewConfig() Config {
return Config{
Addr: null.NewString("localhost:8125", false),
BufferSize: null.NewInt(20, false),
Namespace: null.NewString("k6.", false),
PushInterval: types.NewNullDuration(1*time.Second, false),
TagBlacklist: stats.TagSet{},
}
}
// New creates a new Datadog connector client
func New(logger logrus.FieldLogger, conf Config) (*common.Collector, error) {
return &common.Collector{
Config: conf,
Type: "datadog",
ProcessTags: tagHandler(conf.TagBlacklist).processTags,
Logger: logger,
}, nil
}