Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/grafana/synthetic-monitoring-agent
Synthetic Monitoring Agent
https://github.com/grafana/synthetic-monitoring-agent
blackbox-exporter golang grafana grafana-synthetic-monitoring hacktoberfest k6 monitoring prometheus synthetic-monitoring
Last synced: 27 days ago
JSON representation
Synthetic Monitoring Agent
- Host: GitHub
- URL: https://github.com/grafana/synthetic-monitoring-agent
- Owner: grafana
- License: apache-2.0
- Created: 2020-02-11T21:24:40.000Z (over 4 years ago)
- Default Branch: main
- Last Pushed: 2024-09-27T15:42:30.000Z (about 1 month ago)
- Last Synced: 2024-09-28T15:01:32.190Z (about 1 month ago)
- Topics: blackbox-exporter, golang, grafana, grafana-synthetic-monitoring, hacktoberfest, k6, monitoring, prometheus, synthetic-monitoring
- Language: Go
- Homepage: https://grafana.com/docs/grafana-cloud/how-do-i/synthetic-monitoring/
- Size: 10.4 MB
- Stars: 159
- Watchers: 135
- Forks: 24
- Open Issues: 58
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE
- Code of conduct: CODE_OF_CONDUCT.md
- Codeowners: CODEOWNERS
- Security: SECURITY.md
Awesome Lists containing this project
- awesome-repositories - grafana/synthetic-monitoring-agent - Synthetic Monitoring Agent (Go)
README
[![Build Status](https://drone.grafana.net/api/badges/grafana/synthetic-monitoring-agent/status.svg)](https://drone.grafana.net/grafana/synthetic-monitoring-agent)
[![go.mod Go version](https://img.shields.io/github/go-mod/go-version/grafana/synthetic-monitoring-agent.svg)](https://github.com/grafana/synthetic-monitoring-agent)
[![Go Report Card](https://goreportcard.com/badge/github.com/grafana/synthetic-monitoring-agent)](https://goreportcard.com/report/github.com/grafana/synthetic-monitoring-agent)
[![Go Reference](https://pkg.go.dev/badge/github.com/grafana/synthetic-monitoring-agent.svg)](https://pkg.go.dev/github.com/grafana/synthetic-monitoring-agent)
[![License](https://img.shields.io/github/license/grafana/synthetic-monitoring-agent)](https://opensource.org/licenses/Apache-2.0)Synthetic Monitoring Agent
==========================
This is the 'worker' for Grafana's [Synthetic Monitoring application](https://github.com/grafana/synthetic-monitoring-app). The agent provides probe functionality and executes network [checks](https://github.com/grafana/synthetic-monitoring-app/blob/main/README.md#check-types) for monitoring remote targets.Please [install](https://grafana.com/grafana/plugins/grafana-synthetic-monitoring-app/installation) Synthetic Monitoring
in your Grafana Cloud or local Grafana instance before setting up your own private probe. You may need to generate a [new API key](https://grafana.com/profile/api-keys) to initialize the app.Probes
------
Probes run [checks](https://github.com/grafana/synthetic-monitoring-app/blob/main/README.md#check-types) from
distributed locations around the world and send the resulting metrics and events directly to
[Grafana Cloud](https://grafana.com/products/cloud/) Prometheus and Loki services.You can select 1 or more **public** probes to run checks from or [run your own **private** probes](https://grafana.com/docs/grafana-cloud/synthetic-monitoring/private-probes/)
from any environment you choose.Run your own private probe
---------------------
![Add Probe](img/screenshot-probes.png)Please refer to [Private Probe docs](https://grafana.com/docs/grafana-cloud/synthetic-monitoring/private-probes/) for details.
See [examples/kubernetes](./examples/kubernetes) for the documentation and example yaml files
Docker Images
-------------
We release 2 versions of the [Docker image](https://hub.docker.com/r/grafana/synthetic-monitoring-agent) for the agent, depending on whether or not Chromium is installed in the environment for use in browser checks.Variants with the browser installed are tagged with the suffix `*-browser`. These images are substantially larger and shouldn't be used unless you need the browser functionality to keep memory requirements minimal.
These are built using the same multi-stage Dockerfile, so be aware that `Docker build` scripts failing to specify a build target will produce the larger image every time.
* Without chromium: `docker build --target release .`
* With chromium: `docker build .` or `docker build --target with-browser .`Signals
-------The agent traps the following signals:
* SIGTERM: The agent tries to clean up and shut down in an orderly
manner.
* SIGUSR1: The agent disconnects from the API but keeps running checks.
After 1 minute elapses, the agent will try to reconnect to the API and
keep trying until it succeeds or it's killed. One possible use case is
upgrading a running agent with a newer version: after SIGUSR1 is sent,
the agent disconnects, allowing another agent to connect in its place.
If the new agent fails to connect, the old agent will reconnect and
take it from there.
You can also use `/disconnect` endpoint to send SIGUSR1 to process.Readiness
---------You can use the `/ready` endpoint to check if probe has been able to
connect to the API and is ready to start processing checks. A status
code of 200 signals that the agent is ready. If the agent is not yet
ready, the response has a status code of 503.Used in conjunction with the USR1 signal or `/disconnect` endpoint,
you can use this mechanism to ask a running agent to disconnect from the API,
and poll the `/ready` entrypoint in order to determine if the
new agent has been able to connect already.