Upgrade to Pro — share decks privately, control downloads, hide ads and more …

Statsd and Graphite

Jeremy Quinton
October 02, 2015
450

Statsd and Graphite

Application metrics are extremely important but are often hard to gather as our PHP Applications differ significantly. Using StatsD and Graphite we can gather metrics from our applications no matter what their shape or form. In this talk I will discuss how you can use Statsd to send various metrics of your PHP applications to Graphite. StatsD is a simple NodeJS daemon for easy stats aggregation and makes it simple to plot application metrics on a graph in Graphite. Using the metrics that are gathered its possible to get an overview of what is happening with our applications in near realtime which is extremely useful. Graphite additionally allows us to produce easy understandable graphs and dashboards which once analysed can be used to improve our PHP applications. My talk will cover everything from setting up StatsD and Graphite to how you gather the metrics from within your PHP applications. After the talk developers should be confident enough to go away and implement these technologies in their applications.

Jeremy Quinton

October 02, 2015
Tweet

Transcript

  1. twitter - @jeremyquinton Developer - PHP since 2003 Open Source

    Enthusiast Devops Evangelist Infrastructure and Architecture
  2. Go Live to production Majority of our traffic in a

    3 month period with big spike at the end Load Testing Building the app series of sprints - Lead time traffic
  3. Multiple deployments with frequent changes Go Live to production Majority

    of our traffic in a 3 month period with big spike at the end Load Testing Building the app series of sprints - Lead time traffic
  4. Multiple deployments with frequent changes Go Live to production Majority

    of our traffic in a 3 month period with big spike at the end Load Testing Building the app series of sprints - Lead time traffic No Application metrics
  5. Flickr “The more stuff we can measure, the better our

    understanding of how different parts of the website work with each other gets” Flickr - http://code.flickr.net/2008/10/27/counting-timing/
  6. Etsy “If Engineering at Etsy has a religion, it’s the

    Church of Graphs. If it moves, we track it. Sometimes we’ll draw a graph of something that isn’t moving yet, just in case it decides to make a run for it.” Etsy - http://codeascraft.com/2011/02/15/measure-anything-measure-everything/
  7. “Application metrics are usually the hardest, yet most important, of

    the three.” In general, we tend to measure at three levels: 
 - network, machine, and application Etsy Etsy - http://codeascraft.com/2011/02/15/measure-anything-measure-everything/ “They’re very specific to your business, and they change as your applications change”
  8. “Measurement is the first step that leads to control and

    eventually to improvement. If you can’t measure something, you can’t understand it. If you can’t understand it, you can’t control it. If you can’t control it, you can’t improve it.” ― H. James Harrington
  9. “We decided to make it ridiculously simple for any engineer

    to get anything they can count or time into a graph with almost no effort” Etsy
  10. Types of Application Metrics • Counting How many emails did

    we send in the last 10 minutes? How many users logging into the system in the last 5 minutes? How many calls have we made to a particular api?
  11. Over the wire accounts.authentication.login.attempted:1|c <?php $connection = new Domnikl\Statsd\Connection\UdpSocket('localhost', 8125);


    Example Counting Metric Metric name Count value Metric type echo -n “accounts.authentication.login.attempted:1|c” | nc -4u -w1 localhost 8125 // simple count - Answering the question how many logins have been attempted
 $statsd->increment(“accounts.authentication.login.attempted”); $statsd = new Domnikl\Statsd\Client($connection);
  12. StatsD Sample config { "backends": [ "./backends/graphite" ], "graphite": {

    legacyNamespace: false }, "graphiteHost": "127.0.0.1", "graphitePort": 2003, "port": 8125, "flushInterval": 10000, "debug" : true, "dumpMessages" : “true” }
  13. StatsD flush interval default every 10s Half a System Application

    <?php 
 … $statsd->increment(“accounts.authentication.login.attempted”); accounts.authentication.login.attempted:1|c 23 2.3 stats.counters.accounts.authentication.login.attempted.rate stats.counters.accounts.authentication.login.attempted.count Added by StatsD Legacy namespace = false
  14. Namespacing Metrics https://github.com/etsy/statsd/blob/master/docs/namespacing.md http://matt.aimonetti.net/posts/2013/06/26/practical-guide-to-graphite-monitoring/ <namespace>.<instrumented section>.<target (noun)>.<action (past tense verb)>

    accounts.authentication.login.attempted
 accounts.authentication.login.succeeded
 accounts.authentication.login.failed <product>.<environment>.<subcomponet>.<metric> emailvision.production.api.sendEmailResponseTime
  15. Application StatsD UDP Connection Graphite Carbon Whisper Wep app metrics

    being flushed to back-end Grafana TCP Connection
  16. Whisper • Fixed-size database, similar in design to Round Robin

    Database. archive n archive 2 metadata archive 1 1392589140 25 1392589150 17 1392589160 34 1392589170 68 Example time series data https://github.com/graphite-project/graphite-web/blob/master/docs/whisper.rst
  17. storage-schemas.conf Whisper http://graphite.readthedocs.org/en/latest/config-carbon.html#storage-schemas-conf [stats] pattern = ^stats.* stats.counters.accounts.authentication.login.attempted.count metadata archive

    1 10s:6h Frequency History retentions = 10s:6h 1m:7d archive 2 ,1m:7d, archive n 10m:5y 10m:5y • Lowest retention must be the same as the default flush interval for StatsD.
 • Whenever metrics are old enough to leave an archive they get aggregated.
  18. Whisper storage-aggregation.conf http://graphite.readthedocs.org/en/latest/config-carbon.html#storage-aggregation-conf [count] pattern = \.count$ aggregationMethod = sum

    • Aggregation methods include average,sum,min,max https://github.com/etsy/statsd/blob/master/docs/graphite.md • Default config to get statsD working with Graphite
  19. Application StatsD flush interval default every 10s Graphite Carbon Whisper

    Wep app carbon.conf storage-schema.conf Full System <?php 
 … $statsd->increment(“accounts.authentication.login.attempted”); storage-aggregation.conf accounts.authentication.login.attempted:1|c Grafana
  20. <?php public function authenticate(…) { …….. $statsd->increment(“accounts.authentication.login.attempted”); if(password_verify($password, $hash) {

    …….. $statsd->increment(“accounts.authentication.login.success”); } else { ……. $statsd->increment(“accounts.authentication.login.failed”) } } Counting Metrics continued
  21. Timing $statsd->startTiming(“emailvision.production.api.sendEmailResponseTime"); // code which connects and sends email $statsd->endTiming("emailvision.production.api.sendEmailResponseTime");

    $statsd->timing("emailvision.production.api.sendEmailResponseTime", 320); emailvision.production.api.sendEmailResponseTime:320|ms
  22. Timing metrics under the hood Mean - 209 = sum(values)/number

    of values Lower - 200 Upper - 217 • StatsD does a lot of aggregation for us. Set of data for a 10s period - 200,210,208,207,212,217 • One timing metric produces 9 data buckets. stats.timers.emailvision.production.api.sendEmailResponseTime.lower stats.timers.emailvision.production.api.sendEmailResponseTime.mean stats.timers.emailvision.production.api.sendEmailResponseTime.upper stats.timers.emailvision.production.api.sendEmailResponseTime.mean_90 stats.timers.emailvision.production.api.sendEmailResponseTime.median stats.timers.emailvision.production.api.sendEmailResponseTime.std stats.timers.emailvision.production.api.sendEmailResponseTime.sum stats.timers.emailvision.production.api.sendEmailResponseTime.sum_90 stats.timers.emailvision.production.api.sendEmailResponseTime.upper_90
  23. input { file { path => "/var/log/apache/access.log" type => "apache-access"

    } } Sample logstash config http://logstash.net/docs/1.4.2/tutorials/metrics-from-logs https://github.com/elastic/logstash/blob/v1.4.2/patterns/grok-patterns filter { grok { type => "apache-access" pattern => "%{COMBINEDAPACHELOG}" } } output { statsd { # Count one hit every event by response increment => "apache.response.%{response}" } } COMBINEDAPACHELOG ……. %{NUMBER:response} …… Apache log line - 127.0.0.1 - [10/Oct/2000:13:55:36 -0700] "GET /apache_pb.gif HTTP/1.0" 200 2326
  24. Graphite Powerful function library http://graphite.readthedocs.org/en/latest/functions.html • Timeshift (compare today’s quantity

    of logins vs those from last weeks) • asPercent (compare one metric as a percent of another failed/attempted logins)
  25. StatsD Pluggable back-end amqp-backend ganglia-backend librato-backend socket.io-backend statsd-backend mongo-backend mysql-backend

    datadog-backend opentsdb backend influxdb backend monitis backend instrumental backend hosted graphite backend statsd aggregation backend zabbix-backend https://github.com/etsy/statsd/wiki/Backends
  26. Wrapping up • Measure all the things. • Uses StatsD

    to collect metrics and graph it with graphite. • Better understanding of your applications. • Improve your applications.