
Grafana Agent
Channel | Revision | Published | Runs on |
---|---|---|---|
1/stable | 493 | 08 Jul 2025 | |
1/stable | 489 | 08 Jul 2025 | |
1/stable | 491 | 08 Jul 2025 | |
1/stable | 490 | 08 Jul 2025 | |
1/stable | 492 | 08 Jul 2025 | |
1/stable | 488 | 08 Jul 2025 | |
1/candidate | 493 | 26 Jun 2025 | |
1/candidate | 489 | 26 Jun 2025 | |
1/candidate | 491 | 26 Jun 2025 | |
1/candidate | 490 | 26 Jun 2025 | |
1/candidate | 492 | 26 Jun 2025 | |
1/candidate | 488 | 26 Jun 2025 | |
1/beta | 493 | 10 Jun 2025 | |
1/beta | 489 | 10 Jun 2025 | |
1/beta | 491 | 10 Jun 2025 | |
1/beta | 490 | 10 Jun 2025 | |
1/beta | 492 | 10 Jun 2025 | |
1/beta | 488 | 10 Jun 2025 | |
1/edge | 493 | 14 May 2025 | |
1/edge | 492 | 14 May 2025 | |
1/edge | 491 | 14 May 2025 | |
1/edge | 490 | 14 May 2025 | |
1/edge | 489 | 14 May 2025 | |
1/edge | 488 | 14 May 2025 | |
2/edge | 559 | 25 Jun 2025 | |
2/edge | 558 | 25 Jun 2025 | |
2/edge | 557 | 25 Jun 2025 | |
2/edge | 556 | 25 Jun 2025 | |
2/edge | 555 | 25 Jun 2025 | |
2/edge | 554 | 25 Jun 2025 |
juju deploy grafana-agent --channel 1/stable
Deploy universal operators easily with Juju, the Universal Operator Lifecycle Manager.
Platform:
The grafana-agent
charm has two limitations:
- Only one instance of the charm should be related to each application.
- Only one instance should run per machine.
Failing to enforce these constraints can lead to configuration conflicts and errors.
When applications allow multiple relations with different instances of grafana-agent
(e.g., ga-one
and ga-two
), or several instances of grafana-agent
are running in the same machine, several issues can arise:
-
Single service and config file: Even if multiple
grafana-agent
charms are related, only one service and one configuration file are installed on the machine, overwritten by all related charms. -
Conflicting confinement settings: If different
grafana-agent
instances use different confinement types (classic
vsstrict
), the snap will apply only one type, potentially causing inconsistencies. -
Errors when removing relations: Removing a relation may uninstall the
grafana-agent
snap entirely, leaving other related charms in an error state as they attempt to manage a service that no longer exists.
More information about this, can be found in this post.
Recommended Implementation and Safeguards
-
Applications should use a
limit
in theirmetadata.yaml
/charmcraft.yaml
to restrict relations to only one instance ofgrafana-agent
.cos-agent: interface: cos_agent limit: 1
-
Ensure that only one
grafana-agent
instance runs per machine to avoid configuration conflicts and unexpected behaviour. -
Two probes (in
draft
state right now) can be executed in order to verify whether only onegrafana-agent
is related to a charm or only onegrafana-agent
deployed in a machine:juju export-bundle | ./probe_bundle.py juju status --format=yaml | ./probe_status.py
Following these practices ensures stable and predictable deployments in production environments.