Documentation Index
Fetch the curated documentation index at: https://grafana_com_website/llms.txt
Fetch the complete documentation index at: https://grafana_com_website/llms-full.txt
Use this file to discover all available pages before exploring further.
STOP! If you are an AI agent or LLM, read this before continuing. This is the HTML version of a Grafana documentation page. Always request the Markdown version instead - HTML wastes context. Get this page as Markdown: /docs/grafana-cloud/send-data/alloy/set-up/install/ansible.md (append .md) or send Accept: text/markdown to /docs/grafana-cloud/send-data/alloy/set-up/install/ansible/. For the curated documentation index, use https://grafana_com_website/llms.txt. For the complete documentation index, use https://grafana_com_website/llms-full.txt.
Install or uninstall Grafana Alloy using Ansible
You can use the Grafana Ansible Collection to install and manage Alloy on Linux hosts.
Before you begin
- These steps assume you already have a working Ansible setup and an inventory.
- You can add the tasks below to any role.
Steps
To add Alloy to a host:
Create a file named
alloy.ymland add the following:YAML- name: Install Alloy hosts: all become: true tasks: - name: Install Alloy ansible.builtin.include_role: name: grafana.grafana.alloy vars: alloy_config: | prometheus.scrape "default" { targets = [{"__address__" = "localhost:12345"}] forward_to = [prometheus.remote_write.prom.receiver] } prometheus.remote_write "prom" { endpoint { url = "<YOUR_PROMETHEUS_PUSH_ENDPOINT>" } }This snippet has a sample configuration to collect and send Alloy metrics to Prometheus
Replace the following:
<YOUR_PROMETHEUS_PUSH_ENDPOINT>: The Remote write endpoint of your Prometheus Instance.
Run the Ansible playbook. Open a terminal window and run the following command from the Ansible playbook directory.
shellansible-playbook alloy.yml
Validate
To verify that the Alloy service on the target machine is active and running, open a terminal window and run the following command:
sudo systemctl status alloy.serviceIf the service is active and running, the output should look similar to this:
alloy.service - Grafana Alloy
Loaded: loaded (/etc/systemd/system/alloy.service; enabled; vendor preset: enabled)
Active: active (running) since Wed 2022-07-20 09:56:15 UTC; 36s ago
Main PID: 3176 (alloy-linux-amd)
Tasks: 8 (limit: 515)
Memory: 92.5M
CPU: 380ms
CGroup: /system.slice/alloy.service
└─3176 /usr/local/bin/alloy-linux-amd64 --config.file=/etc/grafana-cloud/alloy-config.yamlNext steps
Was this page helpful?
Related resources from Grafana Labs


