mirror of
https://github.com/helm/charts.git
synced 2026-08-23 06:17:18 +00:00
* Add stackdriver-exporter Stackdriver-exporter gathers metrics from Google Cloud projects and presents them for Prometheus to gather. * Update URL * Switch to lowerCamelCase across the chart * Use Helm 2.8 _helpers.tpl as a foundation. * Fix chart label
41 lines
807 B
YAML
41 lines
807 B
YAML
# Number of exporters to run
|
|
replicaCount: 1
|
|
|
|
# Restart policy for container
|
|
restartPolicy: Always
|
|
|
|
image:
|
|
repository: frodenas/stackdriver-exporter
|
|
tag: v0.5.1
|
|
pullPolicy: IfNotPresent
|
|
|
|
resources: {}
|
|
# requests:
|
|
# cpu: 100m
|
|
# memory: 128Mi
|
|
# limits:
|
|
# cpu: 100m
|
|
# memory: 128Mi
|
|
|
|
service:
|
|
type: ClusterIP
|
|
httpPort: 9255
|
|
annotations: {}
|
|
|
|
stackdriver:
|
|
# The Google Project ID to gather metrics for
|
|
projectId: "FALSE"
|
|
metrics:
|
|
# The prefixes to gather metrics for, we default to just CPU metrics.
|
|
typePrefixes: 'compute.googleapis.com/instance/cpu'
|
|
# The frequency to request
|
|
interval: '5m'
|
|
# How far into the past to offset
|
|
offset: '0s'
|
|
|
|
web:
|
|
# Port to listen on
|
|
listenAddress: ':9255'
|
|
# Path under which to expose metrics.
|
|
path: /metrics
|