Skip to content

Instantly share code, notes, and snippets.

@rkhmelyuk
Created February 18, 2018 02:31
Show Gist options
  • Save rkhmelyuk/857a2aa3a58c35df40363c4cbf1be0a3 to your computer and use it in GitHub Desktop.
Save rkhmelyuk/857a2aa3a58c35df40363c4cbf1be0a3 to your computer and use it in GitHub Desktop.
publish graphite metrics
// publish metrics every minute to graphite at 'graphite.mycompany.com:2003'
// 'application_name' is a prefix for this application metrics
addr, _ := net.ResolveTCPAddr("tcp", "graphite.mycompany.com:2003")
go graphite.Graphite(metrics.DefaultRegistry, 1*time.Minute, "application_name", addr)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment