Wavefront by VMware
The wavefront
adapter collects metrics and makes them available to Wavefront by VMware.
This adapter supports the .
Configuration format for the wavefront
adapter.
Field | Type | Description |
---|---|---|
direct | Params.WavefrontDirect (oneof) | The credentials for direct ingestion. |
proxy |
| The credentials for ingestion via a Wavefront Proxy. |
flushInterval | google.protobuf.Duration | The metrics flush interval. |
source | string | The source tag for all metrics handled by this adapter. |
prefix | string | The prefix to prepend all metrics handled by the adapter. |
metrics |
| The set of metrics to publish to Wavefront. |
logs | The log configuration. |
Params.Logs
Describes the logging configuration.
Field | Type | Description |
---|---|---|
level | string |
Params.MetricInfo
Describes how a metric should be represented on Wavefront.
Describes a sample as in the rcrowley/go-metrics library.
Field | Type | Description |
---|---|---|
expDecay |
| Definition of an exponentially decaying sample. |
uniform | Params.MetricInfo.Sample.Uniform (oneof) | Definition of a uniform sample. |
Params.MetricInfo.Sample.ExpDecay
Describes an exponentially decaying sample.
Field | Type | Description |
---|---|---|
reservoirSize | The reservoir size. | |
alpha | double | The alpha. |
Params.MetricInfo.Sample.Uniform
Describes metric types as in .
Name | Description |
---|---|
UNKNOWN | Reserved for unknown metric types. |
GAUGE | Represents a gauge metric type. |
COUNTER | Represents a counter metric type. |
DELTA_COUNTER | Represents a delta counter metric type. |
HISTOGRAM | Represents a histogram metric type. |
Params.WavefrontDirect
Describes Wavefront Server credentials.
Field | Type | Description |
---|---|---|
server | string | The Wavefront server URL. Ex: |
token | string | The Wavefront API token. |
Params.WavefrontProxy
Describes Wavefront Proxy credentials.