{"id":13584513,"url":"https://github.com/rfmoz/grafana-dashboards","last_synced_at":"2025-04-09T21:12:29.602Z","repository":{"id":40369164,"uuid":"88019222","full_name":"rfmoz/grafana-dashboards","owner":"rfmoz","description":"Grafana dashboards","archived":false,"fork":false,"pushed_at":"2025-01-18T11:36:57.000Z","size":542,"stargazers_count":1313,"open_issues_count":34,"forks_count":457,"subscribers_count":35,"default_branch":"master","last_synced_at":"2025-04-09T21:12:24.330Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":null,"has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"apache-2.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/rfmoz.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"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}},"created_at":"2017-04-12T06:48:46.000Z","updated_at":"2025-04-09T12:42:47.000Z","dependencies_parsed_at":"2023-12-28T10:41:55.754Z","dependency_job_id":"b80b2247-9668-4649-a4de-805965d2d822","html_url":"https://github.com/rfmoz/grafana-dashboards","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/rfmoz%2Fgrafana-dashboards","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/rfmoz%2Fgrafana-dashboards/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/rfmoz%2Fgrafana-dashboards/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/rfmoz%2Fgrafana-dashboards/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/rfmoz","download_url":"https://codeload.github.com/rfmoz/grafana-dashboards/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":248111973,"owners_count":21049578,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","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":[],"created_at":"2024-08-01T15:04:18.958Z","updated_at":"2025-04-09T21:12:29.582Z","avatar_url":"https://github.com/rfmoz.png","language":null,"funding_links":[],"categories":["Others"],"sub_categories":[],"readme":"# Grafana Dashboards\n\n## Node Exporter Full\n\n- For node_exporter\n- Monitor Linux system.\n\nOnly requires the default job_name: node, add as many targets as you need in `/etc/prometheus/prometheus.yml`.\n\n```yaml\n  - job_name: node\n    static_configs:\n      - targets: ['localhost:9100']\n```\n\nRecommended for prometheus-node-exporter the arguments `--collector.systemd` and `--collector.processes` because the graph uses some of their metrics.\n\n\u003e - `timeInterval` in the Grafana data source has to be set accordingly to the \u003e `scrape_interval` configured in Prometheus. You can do this by navigating to connections \u003e Data sources \u003e Prometheus and set Scrape Interval under Interval behaviour. When using provisioning, this is set with the attribute jsonData.timeInterval.\n\u003e - For prometheus-node-exporter v.0.16 or older, use `node-exporter-full-old.\u003e json`\n\u003e - Thanks to the [PCP project](http://pcp.io) for document the values reported \u003e by the kernel in `/proc` (in their `/pmdas/linux/help` src file mainly).\n\n\n\n## Node Exporter FreeBSD\n\n- For node_exporter in FreeBSD system\n- Monitor FreeBSD system.\n\nOnly requires a configured target under any `job_name`.\n\n\n\n## Haproxy Full _(deprecated)_\n\n- For haproxy_exporter\n- Monitor Haproxy service.\n\nOnly requires a configured target under any `job_name`.\n\n\n\n## Haproxy 2 Full\n\n- For Haproxy compiled with Prometheus support\n- Monitor Haproxy service direct.\n\nOnly requires a configured target under any `job_name`.\n\n\n\n## Apache Full\n\n- Monitor Apache service.\n\n\u003e  Moved to https://github.com/grafana/jsonnet-libs\n\n\n\n## NFS Full\n\n- For node_exporter\n- Monitor all NFS and NFSd exported values.\n\nCheck that the process was started with the arguments `--collector.nfs` and `--collector.nfsd`.\n\nThe same as Node Exporter Full. Only requires the default `job_name: node`, add as many targets as you need in `/etc/prometheus/prometheus.yml`.\n\n\n\n## BIND 9 Full\n\n- For [prometheus-bind-exporter](https://github.com/prometheus-community/bind_exporter)\n- Monitor BIND 9 service. \n \nRequired configuration in `/etc/bind/named.conf.options`:\n\n```c++\nstatistics-channels {\n  inet 127.0.0.1 port 8053 allow { 127.0.0.1; };\n};\n```\n\nOn Grafana, it only requires a configured target under any `job_name`. For example:\n\n```yaml\n  - job_name: 'bind'\n    static_configs:\n        - targets:\n           - server_hostname:9000\n```\n\n\n\n## Unbound Full\n\n- For [unbound_exporter](https://github.com/letsencrypt/unbound_exporter)\n- Monitor Unbound DNS service. \n \nRequired configuration in `/etc/unbound/unbound.conf`:\n\n```server:\n        extended-statistics: yes\n\nremote-control:\n        control-enable: yes\n        control-interface: /run/unbound.ctl\n```\n\nOn Grafana, it only requires a configured target under any `job_name`. For example:\n\n```yaml\n  - job_name: 'unbound'\n    static_configs:\n        - targets:\n           - server_hostname:9167\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Frfmoz%2Fgrafana-dashboards","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Frfmoz%2Fgrafana-dashboards","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Frfmoz%2Fgrafana-dashboards/lists"}