From 60644e5f4e28b58b5c806f527303c197d2b7f412 Mon Sep 17 00:00:00 2001 From: cburroughs Date: Fri, 6 Feb 2015 13:53:57 -0500 Subject: [PATCH] remove README files for migrated modules --- diskfree/README.mkdn | 12 ----- diskstat/README.mkdn | 37 ---------------- memcached/README.mkdn | 11 ----- network/multi_interface/README.mkdn | 68 ----------------------------- network/netstats/README.mkdn | 34 --------------- nfsstats/README.mkdn | 18 -------- redis-gmond/README.md | 35 --------------- riak/README.mkdn | 34 --------------- ssl/entropy/README.mkdn | 33 -------------- system/cpu_stats/README.mkdn | 36 --------------- system/mem_stats/README.mkdn | 38 ---------------- system/vm_stats/README.mkdn | 35 --------------- varnish/README.mkdn | 18 -------- 13 files changed, 409 deletions(-) delete mode 100644 diskfree/README.mkdn delete mode 100644 diskstat/README.mkdn delete mode 100644 memcached/README.mkdn delete mode 100644 network/multi_interface/README.mkdn delete mode 100644 network/netstats/README.mkdn delete mode 100644 nfsstats/README.mkdn delete mode 100644 redis-gmond/README.md delete mode 100644 riak/README.mkdn delete mode 100644 ssl/entropy/README.mkdn delete mode 100644 system/cpu_stats/README.mkdn delete mode 100644 system/mem_stats/README.mkdn delete mode 100644 system/vm_stats/README.mkdn delete mode 100644 varnish/README.mkdn diff --git a/diskfree/README.mkdn b/diskfree/README.mkdn deleted file mode 100644 index 63946826..00000000 --- a/diskfree/README.mkdn +++ /dev/null @@ -1,12 +0,0 @@ -diskfree -=============== - -Python module for ganglia 3.1. - -This module reads a list of mountpoints from the "mounts" parameter (probably -/proc/mounts) and creates a "disk_free_(absolute|percent)_*" metric for each -mountpoint it finds. - -## AUTHOR - -Author: Michael T. Conigliaro <mike [at] conigliaro [dot] org> diff --git a/diskstat/README.mkdn b/diskstat/README.mkdn deleted file mode 100644 index fb440b9a..00000000 --- a/diskstat/README.mkdn +++ /dev/null @@ -1,37 +0,0 @@ -diskstat -=============== - -python module for ganglia 3.1. - -"diskstat" report disk stat metrics to ganglia. - -This module can monitor multiple disk block devices including specific partitions instead of the entire device. - -## Metrics - * diskstat_XXX_io_time - * diskstat_XXX_read_kbytes_per_sec - * diskstat_XXX_read_time - * diskstat_XXX_reads - * diskstat_XXX_reads_merged - * diskstat_XXX_weighted_io_time - * diskstat_XXX_write_kbytes_per_sec - * diskstat_XXX_write_time - * diskstat_XXX_writes - * diskstat_XXX_writes_merged - -## Params - * devices (The disk block device(s) to monitor. Example: "sda1 sda2") - -## NOTES - This module has the option of explicitly setting which devices - to check using the "devices" option in your configuration. You - can monitor specific partitions instead of the entire device. - Example value: "sda1 sda2". - Example value: "sda sdb sdc". - -## Example Graphs - * Available in the examples directory. - -## AUTHOR - -Jamie Isaacs diff --git a/memcached/README.mkdn b/memcached/README.mkdn deleted file mode 100644 index 81b1aad6..00000000 --- a/memcached/README.mkdn +++ /dev/null @@ -1,11 +0,0 @@ -memcached -=============== - -python module for ganglia 3.1. - -This module sends metrics on memcached protocol "stats". - -## AUTHOR - -HIROSE Masaaki - diff --git a/network/multi_interface/README.mkdn b/network/multi_interface/README.mkdn deleted file mode 100644 index 1bcc7ffb..00000000 --- a/network/multi_interface/README.mkdn +++ /dev/null @@ -1,68 +0,0 @@ -multi_interface -=============== - -Python module for ganglia 3.1+ - -This module allows you to collect per network interface network stats. Out -of the box Ganglia provides only aggregate network metrics. This module will -give you rx (receive) and tx (transmit) stats for every interface it encounters -e.g. - -value for rx_bytes_lo is 21847.3723 -value for rx_pkts_lo is 17.5771 -value for rx_errs_lo is 0.0000 -value for rx_drops_lo is 0.0000 -value for tx_bytes_lo is 21847.3723 -value for tx_pkts_lo is 17.5771 -value for tx_errs_lo is 0.0000 -value for tx_drops_lo is 0.0000 -value for rx_bytes_eth0 is 0.0000 -value for rx_pkts_eth0 is 0.0000 -value for rx_errs_eth0 is 0.0000 -value for rx_drops_eth0 is 0.0000 -value for tx_bytes_eth0 is 0.0000 -value for tx_pkts_eth0 is 0.0000 -value for tx_errs_eth0 is 0.0000 -value for tx_drops_eth0 is 0.0000 -value for rx_bytes_eth1 is 0.0000 -value for rx_pkts_eth1 is 0.0000 -value for rx_errs_eth1 is 0.0000 -value for rx_drops_eth1 is 0.0000 -value for tx_bytes_eth1 is 0.0000 -value for tx_pkts_eth1 is 0.0000 -value for tx_errs_eth1 is 0.0000 -value for tx_drops_eth1 is 0.0000 - -You can run the multi_interface.py script by hand to see all of the metrics. - -In addition this script can be used to override "default" bytes_in, bytes_out, pkts_in and pkts_out -metrics. To do that you will need to - -* set send_aggregate_bytes_packets to True in multi_interface.pyconf -* Uncomment bytes_in, bytes_out metrics to be sent in in multi_interface.pyconf -* Comment out those same metrics you uncommented in step above in gmond.conf so they don't override - each other - - -Install -=============== - -Copy multi_interface.py from python_modules to your python modules directory e.g. - -/usr/lib64/ganglia/python_modules - -and multi_interface.pyconf to - -/etc/ganglia/conf.d/ - -Restart Gmond and you are done. If you want only specific interfaces add a space -delimited list of interfaces in multi_interface.pyconf e.g. - - param interfaces { - value = "eth0 eth2" - } - - -## AUTHOR - -Author: Vladimir Vuksan https://github.com/vvuksan diff --git a/network/netstats/README.mkdn b/network/netstats/README.mkdn deleted file mode 100644 index d5a656d2..00000000 --- a/network/netstats/README.mkdn +++ /dev/null @@ -1,34 +0,0 @@ -netstats -=============== - -Python module for ganglia 3.1. - -This module allows you to collect network stats. These values that are collected from - -/proc/net/netstat - - -Install -=============== - -Copy netstats.py from python_modules to your python modules directory e.g. - -/usr/lib64/ganglia/python_modules - -and netstats.pyconf to - -/etc/ganglia/conf.d/ - -If you would like only specific metrics emitted you will need to comment out the name_match section - - metric { - name = "vm_numa_interleave" - title = "NUMA interleave" - value_threshold = 1.0 - } - -Restart Gmond and you are done. - -## AUTHOR - -Author: Vladimir Vuksan https://github.com/vvuksan diff --git a/nfsstats/README.mkdn b/nfsstats/README.mkdn deleted file mode 100644 index 08422b8e..00000000 --- a/nfsstats/README.mkdn +++ /dev/null @@ -1,18 +0,0 @@ -nfsstats -======== - -Python module for ganglia 3.1. - -This module reads NFS client and server statistics out of /proc and -creates a nfs_v3_* and nfsd_v3_* metric for each. - -Originally based on Vladimir Vuksan's perl scripts, this version differs -in the following significant respects: - -1) it is written as a python plugin -2) the code is structured in a way intended to make it easy to repurpose - the code for extracting other information out of /proc - -## AUTHOR - -Author: Alexis Huxley <ahuxley [at] gmx [dot] net> diff --git a/redis-gmond/README.md b/redis-gmond/README.md deleted file mode 100644 index eb1bcfa7..00000000 --- a/redis-gmond/README.md +++ /dev/null @@ -1,35 +0,0 @@ -ganglia-redis(7) -- Redis in Ganglia -==================================== - -## SYNOPSIS - -Place `redis.py` and `redis.pyconf` in the appropriate directories and restart `gmond`(1). - -## DESCRIPTION - -Redis plugin for Ganglia that exposes most of the counters in the Redis `INFO` command to Ganglia for all your graphing needs. The metrics it comes with are pretty rudimentary but they get the job done. - -## FILES - -* `/etc/ganglia/conf.d/modpython.conf`: - Configures Ganglia for Python plugins. -* `/usr/lib/ganglia/python_modules/redis.py`: - Redis plugin. -* `/etc/ganglia/conf.d/redis.pyconf`: - Redis plugin configuration. - -## THEME SONG - -The Arcade Fire - "Wake Up" - -## AUTHOR - -Richard Crowley - -## SEE ALSO - -`gmond`(1), the Ganglia monitor. - -The Redis `INFO` command is described at . - -The original blog post on this plugin is at . Gil Raphaelli's MySQL plugin, on which this one is based can be found at . diff --git a/riak/README.mkdn b/riak/README.mkdn deleted file mode 100644 index d3f0de75..00000000 --- a/riak/README.mkdn +++ /dev/null @@ -1,34 +0,0 @@ -riak -=============== - -a python module for ganglia 3.1. - -[Riak](https://wiki.basho.com/display/RIAK/Riak) is a Dynamo-inspired -key/value store. - -This module collects metrics from the JSON stats interface of riak, available -at http://localhost:8098/stats. The statistics-aggregator must be enabled in -your riak configuration for this to work: - - {riak_kv, [ - - %% ... - - {riak_kv_stat, true}, - - %% ... - - ]}, - -You'll want to edit the url key in riak.conf to point at the interface your -riak install is listening on: - - param url { - value = "http://10.0.1.123:8098/stats" - } - - -## AUTHOR - -Jesse Newland - diff --git a/ssl/entropy/README.mkdn b/ssl/entropy/README.mkdn deleted file mode 100644 index aef1aaad..00000000 --- a/ssl/entropy/README.mkdn +++ /dev/null @@ -1,33 +0,0 @@ -entropy -=============== - -Python module for ganglia 3.1. - -This module allows you to collect available entropy on your system. Why is -entropy important. - -[http://www.chrissearle.org/node/326] - - There are two random number sources on linux - /dev/random and /dev/urandom. - /dev/random will block if there is nothing left in the entropy bit bucket. - /dev/urandom uses the same bucket - but will not block - (it can reuse the pool of bits). - -Therefore if you are running SSL on the box you want to know this. - -Install -=============== - -Copy entropy.py from python_modules to your python modules directory e.g. - -/usr/lib64/ganglia/python_modules - -and entropy.pyconf to - -/etc/ganglia/conf.d/ - -Restart Gmond and you should be set. - -## AUTHOR - -Author: Vladimir Vuksan https://github.com/vvuksan diff --git a/system/cpu_stats/README.mkdn b/system/cpu_stats/README.mkdn deleted file mode 100644 index fa6f022c..00000000 --- a/system/cpu_stats/README.mkdn +++ /dev/null @@ -1,36 +0,0 @@ -cpu_stats -=============== - -Python module for ganglia 3.1. - -This module allows you to collect CPU stats that have been left out of stock -Ganglia gmond. - -/proc/meminfo - - -Install -=============== - -Copy cpu_stats.py from python_modules to your python modules directory e.g. - -/usr/lib64/ganglia/python_modules - -and cpu_stats.pyconf to - -/etc/ganglia/conf.d/ - -Restart Gmond and you should be set. If you would like only specific metrics -instead of all replace the name_match stanza with entries like these - - metric { - name = "procs_blocked" - title = "Blocked processes" - value_threshold = 1.0 - } - -Restart Gmond and you are done. - -## AUTHOR - -Author: Vladimir Vuksan https://github.com/vvuksan diff --git a/system/mem_stats/README.mkdn b/system/mem_stats/README.mkdn deleted file mode 100644 index 9b10e31d..00000000 --- a/system/mem_stats/README.mkdn +++ /dev/null @@ -1,38 +0,0 @@ -mem_stats -=============== - -Python module for ganglia 3.1. - -This module allows you to collect memory metrics that have been left out of stock -Ganglia gmond. For example I have it memory dirty and memory writeback. These -are values that are collected from - -/proc/meminfo - - -Install -=============== - -Copy mem_stats.py from python_modules to your python modules directory e.g. - -/usr/lib64/ganglia/python_modules - -and mem_stats.pyconf to - -/etc/ganglia/conf.d/ - -Restart Gmond and you should be set. If you would like additional memory stats collected -look through mem_stats.py for the metric you want then add it to mem_stats.pyconf e.g. -if you wanted to keep track of unevictable memory you would add - - metric { - name = "mem_unevictable" - title = "Unevictable memory" - value_threshold = 1.0 - } - -Restart Gmond and you are done. - -## AUTHOR - -Author: Vladimir Vuksan https://github.com/vvuksan diff --git a/system/vm_stats/README.mkdn b/system/vm_stats/README.mkdn deleted file mode 100644 index 4253c155..00000000 --- a/system/vm_stats/README.mkdn +++ /dev/null @@ -1,35 +0,0 @@ -vm_stats -=============== - -Python module for ganglia 3.1. - -This module allows you to collect VM metrics. -are values that are collected from - -/proc/vmstat - - -Install -=============== - -Copy vm_stats.py from python_modules to your python modules directory e.g. - -/usr/lib64/ganglia/python_modules - -and vm_stats.pyconf to - -/etc/ganglia/conf.d/ - -If you would like only specific metrics emitted you will need to comment out the name_match section - - metric { - name = "vm_numa_interleave" - title = "NUMA interleave" - value_threshold = 1.0 - } - -Restart Gmond and you are done. - -## AUTHOR - -Author: Vladimir Vuksan https://github.com/vvuksan diff --git a/varnish/README.mkdn b/varnish/README.mkdn deleted file mode 100644 index 92fe7981..00000000 --- a/varnish/README.mkdn +++ /dev/null @@ -1,18 +0,0 @@ -varnish -=============== - -Python module for ganglia 3.1. - -This module parses output from the varnishstat command and creates "varnish_*" -metrics: - - * Client Requests per second - * Backend Requests per second - * Cache Hit Ratio - * Objects in Cache - * Allocated Storage - * Worker Threads - -## AUTHOR - -Author: Michael T. Conigliaro <mike [at] conigliaro [dot] org>