Skip to content

Commit

Permalink
Update perfectscale-agent chart with new package version v1.0.16
Browse files Browse the repository at this point in the history
  • Loading branch information
github-actions committed Jan 8, 2024
1 parent d8c98bd commit 07ff719
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions charts/perfectscale-agent/templates/prometheus-rule.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ spec:
runbook: "Please, contact PerfectScale support"
summary: "{{ $fullName }} high kube-state-metrics scraping error rate"
expr: |
(increase(psc_exporter_ksm_scraping_errors_total[5m]) / increase(psc_exporter_ksm_instances_scraped[5m])) > 0.3
(increase(psc_exporter_ksm_scraping_errors_total[10m]) / avg_over_time(psc_exporter_ksm_instances_scraped[10m])) > 0.3
labels:
{{- if .Values.prometheusRule.team }}
team: {{ .Values.prometheusRule.team }}
Expand All @@ -35,7 +35,7 @@ spec:
runbook: "Please, contact PerfectScale support"
summary: "{{ $fullName }} high cAdvisor scraping error rate"
expr: |
(increase(psc_exporter_cadvisor_scraping_errors_total[{{ .Values.prometheusRule.cAdvisorScraping.timeRange }}]) / increase(psc_exporter_cadvisor_instances_scraped[{{ .Values.prometheusRule.cAdvisorScraping.timeRange }}])) > {{ .Values.prometheusRule.cAdvisorScraping.threshold }}
(increase(psc_exporter_cadvisor_scraping_errors_total[{{ .Values.prometheusRule.cAdvisorScraping.timeRange }}]) / avg_over_time(psc_exporter_cadvisor_instances_scraped[{{ .Values.prometheusRule.cAdvisorScraping.timeRange }}])) > {{ .Values.prometheusRule.cAdvisorScraping.threshold }}
labels:
{{- if .Values.prometheusRule.team }}
team: {{ .Values.prometheusRule.team }}
Expand Down
2 changes: 1 addition & 1 deletion charts/perfectscale-agent/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ replicaCount: 1
image:
repository: public.ecr.aws/perfectscale-io/psc-exporter
pullPolicy: Always
tag: "v1.0.15"
tag: "v1.0.16"
settings:
deployKubeStateMetrics: true
serviceId: "psc-exporter"
Expand Down

0 comments on commit 07ff719

Please sign in to comment.