Skip to content

Commit 77c34a2

Browse files
authored
Merge pull request #1 from simplifi/default_tags
Add ability to set default tags
2 parents 8333c9a + dc22161 commit 77c34a2

File tree

3 files changed

+14
-4
lines changed

3 files changed

+14
-4
lines changed

README.md

+3
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,8 @@ The latest version of Anemometer can be found on the [Releases](https://github.c
3737
```yaml
3838
statsd:
3939
address: 127.0.0.1:8125
40+
tags:
41+
- environment:production
4042
monitors:
4143
- name: airflow-dag-disabled
4244
database:
@@ -65,6 +67,7 @@ monitors:
6567
### `statsd`
6668
This is where you tell Anemometer where to send StatsD metrics
6769
- `address` - The address:port on which StatsD is listening (usually `127.0.0.1:8125`)
70+
- `tags` - Default tags to send with every metric, optional
6871

6972
### `monitors`
7073
This is where you tell Anemometer about the monitor(s) configuration

pkg/anemometer/config/config.go

+2-1
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,8 @@ type Config struct {
3535

3636
// StatsdConfig holds statsd specific configuration
3737
type StatsdConfig struct {
38-
Address string `mapstructure:"address"`
38+
Address string `mapstructure:"address"`
39+
Tags []string `mapstructure:"tags"`
3940
}
4041

4142
// DatabaseConfig holds database connection specific configuration

pkg/anemometer/monitor/monitor.go

+9-3
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,10 @@ func New(statsdConfig config.StatsdConfig, monitorConfig config.MonitorConfig) (
3131
return nil, err
3232
}
3333

34-
statsdClient, err := createStatsdClient(statsdConfig.Address)
34+
statsdClient, err := createStatsdClient(
35+
statsdConfig.Address,
36+
statsdConfig.Tags,
37+
)
3538
if err != nil {
3639
return nil, err
3740
}
@@ -62,8 +65,11 @@ func createDBConn(dbType string, dbURI string) (*sql.DB, error) {
6265
return conn, nil
6366
}
6467

65-
func createStatsdClient(address string) (*statsd.Client, error) {
66-
client, err := statsd.New(address)
68+
func createStatsdClient(address string, tags []string) (*statsd.Client, error) {
69+
client, err := statsd.New(
70+
address,
71+
statsd.WithTags(tags),
72+
)
6773
if err != nil {
6874
return nil, err
6975
}

0 commit comments

Comments
 (0)