Graphping

Send ping statistics for multiple hosts to Graphite
Alternatives To Graphping
Project NameStarsDownloadsRepos Using ThisPackages Using ThisMost Recent CommitTotal ReleasesLatest ReleaseOpen IssuesLicenseLanguage
Graphite Fabric181
7 years ago2Nginx
fabric-graphite is a fabric script to install Graphite and all dependencies on a debian-based host (with optional vagrant support)
Docker Graphite82
5 years ago7Nginx
Graphite + Carbon in a docker image
Jmx2graphite77
6 months ago7mitJava
JMX to Graphite every x seconds in one command line (Docker based) (also come in Java Agent flavour)
Graphite Stresser32
7 years agoJava
A stress testing tool for Graphite
Graphite Dashgen29
8 years ago7November 10, 2014mitPython
Graphite-dashgen automates the creation of Graphite dashboards
Diamond Dockercontainercollector28
6 years ago5Python
A diamond collector for docker containers
Cadvisor Collectd22
5 years ago1apache-2.0Python
Host and Container metrics using CAdvisor and Collectd
Splunk_graphite17
5 years ago1otherPython
Graphite Output for Splunk App - Enables Graphite Output for Splunk Searches, Events and Alerts.
Mysql Stats To Graphite16
9 years ago2gpl-2.0Python
Graphping14
3 years ago1apache-2.0Python
Send ping statistics for multiple hosts to Graphite
Alternatives To Graphping
Select To Compare


Alternative Project Comparisons
Readme

graphping

Send ping statistics for multiple hosts to Graphite

Description

This Python program takes a list of hostnames to collect ping statistics for. It uses the 'fping' program to do the real work, and send the results to Graphite. By default, it detaches itself from the console and continues to run in the background.

Until stopped, the program starts an 'fping' for all the given targets and sends 30 ICMP ping packets. The results (min, max, average and mean ping round-trip times, as well as packet loss percentage) are sent to a Graphite server, which by default should be running on localhost:2003. It then sleeps until the next minute on the system clock before it starts another 'fping'. This way, you get one measurement per minute. This is not configurable at this time.

By default, it uses 'ping' as a prefix for the metric name in Graphite, followed by the hostname, with dots replaced by underscores. So for a host named 'host.domain.tld', you would get the following metrics in Graphite, all of which are gauges:

  • ping.host_domain_tld.avgrtt
  • ping.host_domain_tld.minrtt
  • ping.host_domain_tld.medianrtt
  • ping.host_domain_tld.maxrtt
  • ping.host_domain_tld.packetloss

Requirements

The program uses regular expressions to get useful numbers from the fping ouput, so it depends on specific formatting of the output. The following fping programs are known to be compatible:

  • version 3.4 on RHEL 6.4
  • version 3.2 on Debian Wheezy

The output should look like this (for 2 hosts, 3 packets per host):

www.github.io  : [0], 84 bytes, 4.26 ms (4.26 avg, 0% loss)
www.google.com : [0], 84 bytes, 8.35 ms (8.35 avg, 0% loss)
www.github.io  : [1], 84 bytes, 3.25 ms (3.75 avg, 0% loss)
www.google.com : [1], 84 bytes, 7.84 ms (8.09 avg, 0% loss)
www.github.io  : [2], 84 bytes, 3.32 ms (3.61 avg, 0% loss)
www.google.com : [2], 84 bytes, 7.86 ms (8.01 avg, 0% loss)

www.github.io  : xmt/rcv/%loss = 3/3/0%, min/avg/max = 3.25/3.61/4.26
www.google.com : xmt/rcv/%loss = 3/3/0%, min/avg/max = 7.84/8.01/8.35

Configuration

Set up a Carbon/Whisper retention schema for the ping statistics, keeping one sample per minute for some time, and optionally some aggregations:

[ping]
pattern = ^ping\.
retentions = 1m:1d,5m:31d,60m:366d

At the top of the script, there are some configurable items:

# number of ping packets to send
packets = 30

# Graphite
g_host = 'localhost'
g_port = 2003
g_prefix = 'ping'

# System
fping = '/usr/sbin/fping'
logfile = '/tmp/ping-graphite.log'

If you want to run the program in the foreground instead of daemonized, search the program for a line that says

self.daemonize = True

and change the value to False.

Usage

./graphping <target> [<target> ...]

License

Graphping is licensed under the Apache License, version 2.0. A copy of the license can be found in the 'COPYING' file and on the web.

Popular Graphite Projects
Popular Hosts Projects
Popular Operations Categories

Get A Weekly Email With Trending Projects For These Categories
No Spam. Unsubscribe easily at any time.
Python
Hosts
Statistics
Debian
Ping
Graphite