Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[prometheus-stackdriver-exporter] bump version and support new 0.17.0 flags #5002

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions charts/prometheus-stackdriver-exporter/Chart.yaml
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
apiVersion: v1
description: Stackdriver exporter for Prometheus
name: prometheus-stackdriver-exporter
version: 4.6.2
appVersion: v0.16.0
version: 4.7.0
appVersion: v0.17.0
home: https://www.stackdriver.com/
sources:
- https://github.com/prometheus-community/stackdriver_exporter
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -73,10 +73,22 @@ spec:
mountPath: /etc/secrets/service-account/
{{- end}}
args:
{{- if .Values.stackdriver.projectIds }}
{{- range .Values.stackdriver.projectIds }}
- --google.project-ids={{ . }}
{{- end }}
{{- else }}
- --google.project-id={{ .Values.stackdriver.projectId }}
{{- end }}
- --monitoring.metrics-interval={{ .Values.stackdriver.metrics.interval }}
- --monitoring.metrics-offset={{ .Values.stackdriver.metrics.offset }}
{{- if .Values.stackdriver.metrics.prefixes }}
{{- range .Values.stackdriver.metrics.prefixes }}
- --monitoring.metrics-prefixes={{ . }}
{{- end }}
{{- else }}
- --monitoring.metrics-type-prefixes={{ .Values.stackdriver.metrics.typePrefixes | replace " " "" }}
{{- end }}
{{- range .Values.stackdriver.metrics.filters }}
- --monitoring.filters={{ . }}
{{- end }}
Expand Down
10 changes: 8 additions & 2 deletions charts/prometheus-stackdriver-exporter/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -48,8 +48,11 @@ secret:
labels: {}

stackdriver:
# The Google Project ID to gather metrics for
# DEPRECATED - The Google Project ID to gather metrics for
projectId: "FALSE"
# The Google Project IDs to gather metrics for (requires 0.17.0+)
projectIds: []
# - "google-project-id"
# An existing secret which contains credentials.json
serviceAccountSecret: ""
# Provide custom key for the existing secret to load credentials.json from
Expand All @@ -69,8 +72,11 @@ stackdriver:
# Drop metrics from attached projects and fetch `project_id` only
dropDelegatedProjects: false
metrics:
# The prefixes to gather metrics for, we default to just CPU metrics.
# DEPRECATED - The prefixes to gather metrics for, we default to just CPU metrics.
typePrefixes: 'compute.googleapis.com/instance/cpu'
# The prefixes to gather metrics for (requires 0.17.0+)
prefixes: []
# - 'compute.googleapis.com/instance/cpu'
# The filters to refine the metrics query by using Filter objects that Google provides.
# Filter objects: project, group.id, resource.type, resource.labels.[KEY], metric.type, metric.labels.[KEY]
# https://cloud.google.com/monitoring/api/v3/filters
Expand Down