Skip to content
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
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ apiVersion: v2
name: prometheus-yet-another-cloudwatch-exporter
description: Yace - Yet Another CloudWatch Exporter
type: application
version: 0.40.2
version: 0.40.3
appVersion: "v0.62.1"
home: https://github.com/prometheus-community/helm-charts
sources:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,9 @@ spec:
{{- if .Values.serviceMonitor.metricRelabelings }}
metricRelabelings:
{{ toYaml .Values.serviceMonitor.metricRelabelings | indent 6 }}
{{- end }}
{{- if .Values.serviceMonitor.sampleLimit }}
sampleLimit: {{ .Values.serviceMonitor.sampleLimit }}
{{- end }}
jobLabel: {{ template "yet-another-cloudwatch-exporter.fullname" . }}
namespaceSelector:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -160,6 +160,8 @@ serviceMonitor:
# relabelings: []
# Set metricRelabelings for the ServiceMonitor, use to apply to samples for ingestion
# metricRelabelings: []
# Set sampleLimit for the ServiceMonitor, defines per-scrape limit on number of scraped samples that will be accepted
# sampleLimit: 0
#
# Example - note the Kubernetes convention of camelCase instead of Prometheus' snake_case
# metricRelabelings:
Expand Down