{"id":14984449,"url":"https://github.com/geerlingguy/ansible-role-node_exporter","last_synced_at":"2026-03-15T15:46:26.809Z","repository":{"id":37982475,"uuid":"266242107","full_name":"geerlingguy/ansible-role-node_exporter","owner":"geerlingguy","description":"Ansible role - Node exporter","archived":false,"fork":false,"pushed_at":"2025-11-28T04:12:22.000Z","size":42,"stargazers_count":136,"open_issues_count":3,"forks_count":78,"subscribers_count":2,"default_branch":"master","last_synced_at":"2025-11-30T15:44:15.140Z","etag":null,"topics":["ansible","ansible-role","monitoring","node-exporter","prometheus"],"latest_commit_sha":null,"homepage":"https://galaxy.ansible.com/geerlingguy/node_exporter","language":"Jinja","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/geerlingguy.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":".github/FUNDING.yml","license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null},"funding":{"github":"geerlingguy","patreon":"geerlingguy"}},"created_at":"2020-05-23T01:39:54.000Z","updated_at":"2025-11-28T04:12:26.000Z","dependencies_parsed_at":"2025-05-24T09:05:24.058Z","dependency_job_id":"a9c0a429-93f5-4443-ac43-d824a88d40d7","html_url":"https://github.com/geerlingguy/ansible-role-node_exporter","commit_stats":{"total_commits":39,"total_committers":12,"mean_commits":3.25,"dds":0.4358974358974359,"last_synced_commit":"752fee01e1382d2361d833ed615537cb9227a7ce"},"previous_names":[],"tags_count":9,"template":false,"template_full_name":null,"purl":"pkg:github/geerlingguy/ansible-role-node_exporter","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/geerlingguy%2Fansible-role-node_exporter","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/geerlingguy%2Fansible-role-node_exporter/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/geerlingguy%2Fansible-role-node_exporter/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/geerlingguy%2Fansible-role-node_exporter/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/geerlingguy","download_url":"https://codeload.github.com/geerlingguy/ansible-role-node_exporter/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/geerlingguy%2Fansible-role-node_exporter/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":30545544,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-03-15T15:03:43.933Z","status":"ssl_error","status_checked_at":"2026-03-15T15:03:37.630Z","response_time":61,"last_error":"SSL_read: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["ansible","ansible-role","monitoring","node-exporter","prometheus"],"created_at":"2024-09-24T14:09:04.838Z","updated_at":"2026-03-15T15:46:26.776Z","avatar_url":"https://github.com/geerlingguy.png","language":"Jinja","funding_links":["https://github.com/sponsors/geerlingguy","https://patreon.com/geerlingguy"],"categories":[],"sub_categories":[],"readme":"# Ansible Role: Node exporter\n\n[![CI](https://github.com/geerlingguy/ansible-role-node_exporter/actions/workflows/ci.yml/badge.svg)](https://github.com/geerlingguy/ansible-role-node_exporter/actions/workflows/ci.yml)\n\nThis role installs Prometheus' [Node exporter](https://github.com/prometheus/node_exporter) on Linux hosts, and configures a systemd unit file so the service can run and be controlled by systemd.\n\n**Note**: If you're running in a Kubernetes cluster, you could run Node exporter as a DaemonSet in the cluster, instead of installing it on individual nodes.\n\n## Requirements\n\nN/A\n\n## Role Variables\n\nAvailable variables are listed below, along with default values (see `defaults/main.yml`):\n\n    node_exporter_version: '0.18.1'\n\nThe version of Node exporter to install. Available releases can be found on the [tags](https://github.com/prometheus/node_exporter/tags) listing in the Node exporter repository. Drop the `v` off the tag.\n\nIf you change the version, the `node_exporter` binary will be replaced with the updated version, and the service will be restarted.\n\n    node_exporter_arch: 'amd64'\n    node_exporter_download_url: https://github.com/prometheus/node_exporter/releases/download/v{{ node_exporter_version }}/node_exporter-{{ node_exporter_version }}.linux-{{ node_exporter_arch }}.tar.gz\n\nThe architecture and download URL for Node exporter. If you're on a Raspberry Pi running Raspbian, you may need to override the `arch` value with `armv7`.\n\n    node_exporter_bin_path: /usr/local/bin/node_exporter\n\nThe path where the `node_exporter` binary will be installed.\n\n    node_exporter_host: 'localhost'\n    node_exporter_port: 9100\n\nHost and port on which node exporter will listen.\n\n    node_exporter_options: ''\n\nAny additional options to pass to `node_exporter` when it starts, e.g. `--no-collector.wifi` if you want to ignore any WiFi data.\n\n    node_exporter_state: started\n    node_exporter_enabled: true\n\nControls for the `node_exporter` service.\n\n## Dependencies\n\nNone.\n\n## Example Playbook\n\n    - hosts: all\n      roles:\n        - role: geerlingguy.node_exporter\n\n## License\n\nMIT / BSD\n\n## Author Information\n\nThis role was created in 2020 by [Jeff Geerling](https://www.jeffgeerling.com/), author of [Ansible for DevOps](https://www.ansiblefordevops.com/).\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fgeerlingguy%2Fansible-role-node_exporter","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fgeerlingguy%2Fansible-role-node_exporter","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fgeerlingguy%2Fansible-role-node_exporter/lists"}