package
0.0.0-20190227035732-d56806e5335b
Repository: https://github.com/dcos/dcos-metrics.git
Documentation: pkg.go.dev

# README

Datadog Plugin for DC/OS Metrics

This plugin sends all metrics collected by the dcos-metrics service to DataDog.

Installation & Usage

Refer to the quickstart documentation for instructions on installing and using this plugin.

Building this plugin (requires a Golang environment)

  1. go get -u github.com/dcos/dcos-metrics
  2. cd $(go env GOPATH)/src/github.com/dcos/dcos-metrics
  3. make && make plugins

The resulting binary (dcos-metrics-datadog-standalone-plugin), which will be built to the build/plugins directory wth the dcos-metrics version appended to its filename, can then be installed on each node in the cluster.

# Structs

DDMetric represents a collection of data points that we might send or receive on one single metric line.
DDResult represents the result from a DataDog API Query.
DDSeries represents a collection of data points we get when we query for timeseries data.

# Type aliases

DDDataPoint is a tuple of [UNIX timestamp, value].