{"id":37140809,"url":"https://github.com/jaxxstorm/graphping","last_synced_at":"2026-01-14T16:30:17.258Z","repository":{"id":57560476,"uuid":"79141547","full_name":"jaxxstorm/graphping","owner":"jaxxstorm","description":"Ping a list of endpoints and write the results to statsd","archived":true,"fork":false,"pushed_at":"2018-04-10T15:57:28.000Z","size":19,"stargazers_count":42,"open_issues_count":4,"forks_count":3,"subscribers_count":2,"default_branch":"master","last_synced_at":"2024-07-17T00:47:14.791Z","etag":null,"topics":["network-graph","network-monitoring","network-visualization","ping","smokeping","statsd"],"latest_commit_sha":null,"homepage":null,"language":"Go","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/jaxxstorm.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}},"created_at":"2017-01-16T17:21:45.000Z","updated_at":"2023-02-08T21:22:45.000Z","dependencies_parsed_at":"2022-08-30T15:10:53.479Z","dependency_job_id":null,"html_url":"https://github.com/jaxxstorm/graphping","commit_stats":null,"previous_names":[],"tags_count":1,"template":false,"template_full_name":null,"purl":"pkg:github/jaxxstorm/graphping","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jaxxstorm%2Fgraphping","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jaxxstorm%2Fgraphping/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jaxxstorm%2Fgraphping/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jaxxstorm%2Fgraphping/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/jaxxstorm","download_url":"https://codeload.github.com/jaxxstorm/graphping/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jaxxstorm%2Fgraphping/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28425946,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-01-14T15:24:48.085Z","status":"ssl_error","status_checked_at":"2026-01-14T15:23:41.940Z","response_time":107,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.6:443 state=error: 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":["network-graph","network-monitoring","network-visualization","ping","smokeping","statsd"],"created_at":"2026-01-14T16:30:12.908Z","updated_at":"2026-01-14T16:30:17.251Z","avatar_url":"https://github.com/jaxxstorm.png","language":"Go","funding_links":[],"categories":[],"sub_categories":[],"readme":"# graphping\n\n## Description\n\nGraphping is a tool to ping a list of endpoints and send the results to [statsd](https://github.com/etsy/statsd)\n\nIt allows you to create graphs of latency in a similar manner to [smokeping](http://oss.oetiker.ch/smokeping/)\n\n![](http://i.imgur.com/fEuGmTn.png)\n\nGraphping is written in Go and takes advantages of many of Go's features:\n\n  - Built in concurrency\n  - Fast\n  - Easy to build/install\n\n\n## Usage\n\nGraphping requires a few options to run. Here's the basic usage:\n\n```\nNAME:\n   graph-ping - Ping a list of endpoints and send the resulting metrics to statsd\n\nUSAGE:\n   main [global options] command [command options] [arguments...]\n\nVERSION:\n   0.1\n\nAUTHOR(S):\n   Lee Briggs\n\nCOMMANDS:\n     help, h  Shows a list of commands or help for one command\n\nGLOBAL OPTIONS:\n   --config-file value, -c value  Path to configuration file\n   --statsd value, -s value       Address of statsd listener\n   --verbose                      Output metrics in logs\n   --help, -h                     show help\n   --version, -v                  print the version\n```\n\n### Config File\n\nGraphping requires a config file declaring the endpoints you wish to ping. The config format is [hcl](https://github.com/hashicorp/hcl) meaning you can either provide a human readable HCL config file or a JSON config file. An example HCL file looks like this:\n\n```\ninterval = 10 # A global interval. Can be overwritten per target group\nprefix = \"graphping\" # A global prefix for statsd metrics\n\n\n# Declare a target group with a name\ntarget_group \"search_engines\" {\n  # a custom ping interval for this group\n  interval = 2\n  # A prefix for the statsd metric for this group\n  prefix = \"search\"\n  # A name for the target. This becomes the statsd metric\n  target \"google\" {\n    address = \"www.google.co.uk\"\n  }\n  target \"bing\" {\n    address = \"www.bing.com\"\n  }\n}\n\n# You can specify multiple target groups\ntarget_group \"news_sites\" {\n  prefix = \"uk\"\n  target \"bbc\" {\n    address = \"www.bbc.co.uk\"\n  }\n}\n```\n\n### StatsD Listenser\n\nYou need to specify the address of the statsd listener you want to send metrics to. This is in string format, including port number.\n\nFor example:\n\n```\ngraphping -c /path/to/config/file.hcl -s 127.0.0.1:8125\n```\n\n## Building\n\nThe project uses [glide](https://glide.sh) for dependencies. So:\n\nInstall it into your [gopath](https://github.com/golang/go/wiki/GOPATH) and then run `glide install`\n\nFrom here, you can build it:\n\n```\ngo build main.go\n```\n\n## Important Notes\n\n* I am still learning Go, so there may be some absolute nonsense in here. Pull requests are very welcome\n\n## Acknowledgements\n\n* Thanks to my colleague @cspargo for his initial idea and the first prototype of the code\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fjaxxstorm%2Fgraphping","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fjaxxstorm%2Fgraphping","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fjaxxstorm%2Fgraphping/lists"}