58de9c8b6f
This makes the exporter expose a dnsmasq_exporter_build_info metric, which not only allows you to see what version you're running, but also allows you to dynamically select the job label in a Gragana dashboard - making the dashboards more portable. To make sure the the build_info metric is correctly populated, I've added a promu build spec, allowing the exporter to be build with promu, the tool we use to build Prometheus and various exporters. Signed-off-by: Tom Wilkie <tom.wilkie@gmail.com>
18 lines
659 B
YAML
18 lines
659 B
YAML
go:
|
|
# Whenever the Go version is updated here,
|
|
# .circle/config.yml should also be updated.
|
|
version: 1.15
|
|
repository:
|
|
path: github.com/google/dnsmasq_exporter
|
|
build:
|
|
binaries:
|
|
- name: dnsmasq_exporter
|
|
path: ./
|
|
flags: -a -tags netgo
|
|
ldflags: |
|
|
-X github.com/prometheus/common/version.Version={{.Version}}
|
|
-X github.com/prometheus/common/version.Revision={{.Revision}}
|
|
-X github.com/prometheus/common/version.Branch={{.Branch}}
|
|
-X github.com/prometheus/common/version.BuildUser={{user}}@{{host}}
|
|
-X github.com/prometheus/common/version.BuildDate={{date "20060102-15:04:05"}}
|