Wavefront is a high-performance streaming analytics platform for monitoring and optimizing your environment and applications.
This chart will deploy the Prometheus Storage Adapter and the Wavefront Proxy to your Kubernetes cluster.
If not already done, create a namespace to install this chart
kubectl create namespace prom-adapter
helm install prom-adapter wavefront/prometheus-storage-adapter --namespace prom-adapter \
--set wavefront.wavefront.url=https://<YOUR_CLUSTER>.wavefront.com \
--set wavefront.wavefront.token=<YOUR_API_TOKEN>
helm install wavefront/prometheus-storage-adapter --name prom-adapter --namespace prom-adapter \
--set wavefront.wavefront.url=https://<YOUR_CLUSTER>.wavefront.com \
--set wavefront.wavefront.token=<YOUR_API_TOKEN>
The values.yaml file contains information about all configuration options for this chart.
The options wavefront.wavefront.url
and wavefront.wavefront.token
are required if the proxy is deployed as part of this chart (defaults to true).
The following tables lists the configurable parameters of the Wavefront chart and their default values.
Parameter | Description | Default |
---|---|---|
wavefront.wavefront.url |
Wavefront URL for your cluster | https://YOUR_CLUSTER.wavefront.com |
wavefront.wavefront.token |
Wavefront API Token | YOUR_API_TOKEN |
image.repository |
storage adapter image registry and name | wavefronthq/prometheus-storage-adapter |
image.tag |
storage adapter image tag | {TAG_NAME} |
image.pullPolicy |
storage adapter image pull policy | IfNotPresent |
proxy.enabled |
Setup and enable Wavefront proxy to send metrics through | true |
adapter.listenPort |
Metrics under this prefix are exposed via the custom metrics API | 1234 |
adapter.proxyHost |
Non-default Wavefront proxy address to use, should only be set when proxy.enabled is false | nil |
adapter.proxyPort |
The Wavefront proxy port | 2878 |
adapter.enableDebug |
Whether to enable debug logging | false |
adapter.prefix |
Prefix for metric names. If omitted, no prefix is added. | nil |
adapter.tags |
A comma separated list of tags to be added to each point tag. Specified as "tag1=value1,tag2=value2..." | nil |