Statsd
Overview
로그 수집 데몬 statsd 내용 정리
Basic
Data Types
statsd 서버는 30초의 간격을 두고 graphite로 데이터를 전송한다. 그리고 graphite 에서는 평균 averaged bucket 에 저장된지 1분이 된 데이터만을 저장하므로, graph 로 나타나는 데이터는 보통 1분이 지난 데이터라고 할 수 있다.
Counters
Counters type 은 가장 기본적인 데이터 타입이다. 초당 발생한 이벤트의 갯수를 나타내는데 사용되며, Graphite 에서는 보통 분당 발생한 이벤트 갯수를 나타내는데 사용된다.
See also
- https://github.com/etsy/statsd/wiki - statsd official wiki.
- https://tedwon.atlassian.net/wiki/spaces/SE/pages/1213199/StatsD+Graphite+Technical+Analysis+Report+for+Analytics+Purpose - StatsD & Graphite Technical Analysis Report for Analytics Purpose
- http://blog.goguardian.com/nerds/monitoring-applications-with-statsd - Monitoring Applications with StatsD
- https://www.digitalocean.com/community/tutorials/how-to-configure-statsd-to-collect-arbitrary-stats-for-graphite-on-ubuntu-14-04 - How To Configure StatsD to Collect Arbitrary Stats for Graphite on Ubuntu 14.04