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
2 changes: 1 addition & 1 deletion charts/synthetic-monitoring-agent/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -14,4 +14,4 @@ name: synthetic-monitoring-agent
sources:
- https://github.com/grafana/synthetic-monitoring-agent
type: application
version: 1.1.0
version: 1.1.1
3 changes: 2 additions & 1 deletion charts/synthetic-monitoring-agent/README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# synthetic-monitoring-agent

![Version: 1.1.0](https://img.shields.io/badge/Version-1.1.0-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: v0.38.3](https://img.shields.io/badge/AppVersion-v0.38.3-informational?style=flat-square)
![Version: 1.1.1](https://img.shields.io/badge/Version-1.1.1-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: v0.38.3](https://img.shields.io/badge/AppVersion-v0.38.3-informational?style=flat-square)

Grafana's Synthetic Monitoring application. The agent provides probe functionality and executes network checks for monitoring remote targets.

Expand All @@ -27,6 +27,7 @@ Grafana's Synthetic Monitoring application. The agent provides probe functionali
| agent.apiToken | string | `""` | API token from Grafana Cloud when secret is created by the chart. |
| agent.debug | bool | `false` | Enable / disable debug logging on the agent. |
| agent.enableDisconnect | bool | `false` | Enable / disable the HTTP /disconnect endpoint |
| agent.features | list | `[]` | Enable various feature gates such as adhoc, k6, traceroute See https://grafana.com/docs/grafana-cloud/testing/synthetic-monitoring/set-up/set-up-private-probes/#available-feature-flags |
| agent.verbose | bool | `false` | Enable / disable verbose logging on the agent. |
| autoscaling.enabled | bool | `false` | Enable autoscaling |
| autoscaling.maxReplicas | int | `3` | Maximum autoscaling replicas |
Expand Down
4 changes: 4 additions & 0 deletions charts/synthetic-monitoring-agent/templates/deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -61,6 +61,10 @@ spec:
- -verbose
{{- end }}
env:
{{- with .Values.agent.features }}
- name: FEATURES
value: {{ join "," . | quote }}
{{- end }}
- name: API_SERVER
value: {{ .Values.agent.apiServerAddress | quote }}
- name: API_TOKEN
Expand Down
3 changes: 3 additions & 0 deletions charts/synthetic-monitoring-agent/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,9 @@ agent:
enableDisconnect: false
# -- Enable / disable verbose logging on the agent.
verbose: false
# -- Enable various feature gates such as adhoc, k6, traceroute
# See https://grafana.com/docs/grafana-cloud/testing/synthetic-monitoring/set-up/set-up-private-probes/#available-feature-flags
features: []

# -- Number of replicas to use; ignored if `autoscaling.enabled` is set to `true`.
replicaCount: 1
Expand Down
Loading