Last active
March 31, 2022 11:30
-
-
Save aliellis/3714d9c9510fa547e41156c1e1d639de to your computer and use it in GitHub Desktop.
Hooking up Ganglia to Grafana (all services on a single EMR cluster, different boxes TBC)
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Edit the gmetad.conf file of Ganglia to include the following values: | |
| carbon_server: "localhost" | |
| carbon_port: 3000 | |
| carbon_protocol udp | |
| carbon_timeout 500 | |
| Edit the influxdb.conf file of InfuxDB to include the following values: | |
| bind-address = ":8090" <- this should be at the top otherwise we get errors | |
| [[graphite]] | |
| enabled = true | |
| database = "graphite" <- name of influxDB database | |
| bind-address = ":3000" | |
| protocol = "udp" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment