Skip to content

daime/docker-statsd-console

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

11 Commits
 
 
 
 
 
 
 
 

Repository files navigation

docker-statsd-console

All metrics are flushed to console in a flush interval.

This project has been built for development and testing purposes. It ensures an interface 8125/udp to write metrics and an interface 8126/tcp to read metrics.

Requirements

Docker

Development

Clone the repo

$ git clone git@github.com:daime/docker-statsd-console.git
$ cd docker-statsd-console

Build and run the container

$ make

Write and read sample metrics

DOCKER_HOST has to be changed by the address where your docker host is running

1. Write

$ echo "docker.statsd.console.rocks:1|c" | nc -u -w0 DOCKER_HOST 8125

2. Read

$ echo "counters" | nc DOCKER_HOST 8126