Sign inSign up

gengmao/docker-graphite-statsd

By gengmao

Updated over 11 years ago

Image
0

280

gengmao/docker-graphite-statsd repository overview

Docker Hub

Docker Image for Graphite & Statsd

This is forked from https://github.com/hopsoft/docker-graphite-statsd, and with https://github.com/hopsoft/docker-graphite-statsd/pull/27 merged.

Get Graphite & Statsd running instantly

Graphite & Statsd can be complex to setup. This image will have you running & collecting stats in just a few minutes.

Quick Start

sudo docker run -d \
  --name graphite \
  -p 80:80 \
  -p 2003:2003 \
  -p 8125:8125/udp \
  gengmao/graphite-statsd

This starts a Docker container named: graphite

That's it, you're done ... almost.

Includes the following components
Mapped Ports
HostContainerService
8080nginx
20032003carbon
81258125statsd
Mounted Volumes
HostContainerNotes
DOCKER ASSIGNED/etc/nginxnginx config
DOCKER ASSIGNED/opt/statsdstatsd config
DOCKER ASSIGNED/etc/logrotate.dlogrotate config
DOCKER ASSIGNED/opt/graphite/confgraphite config
DOCKER ASSIGNED/opt/graphite/storagegraphite storage
DOCKER ASSIGNED/var/loglog files
Base Image

Built using Phusion's base image.

  • All Graphite related processes are run as daemons & monitored with runit.
  • Includes additional services such as logrotate.

Start Using Graphite & Statsd

Send Some Stats

Let's fake some stats with a random counter to prove things are working.

while true
do
  echo -n "example.statsd.counter.changed:$(((RANDOM % 10) + 1))|c" | nc -w 1 -u localhost 8125
done
<CTL-C>
Visualize the Data

Open Graphite in a browser at http://localhost/dashboard.

Secure the Django Admin

Update the default Django admin user account. The default is insecure.

First login at: http://localhost/account/login Then update the root user's profile at: http://localhost/admin/auth/user/1/

Change the Configuration

Read up on Graphite's post-install tasks. Focus on the storage-schemas.conf

  1. Stop the container docker stop graphite.
  2. Find the configuration files on the host by inspecting the container docker inspect graphite.
  3. Update the desired config files.
  4. Restart the container docker start graphite.

Note: If you change settings in /opt/graphite/conf/storage-schemas.conf be sure to delete the old whisper files under /opt/graphite/storage/whisper/.


Important: Ensure your Statsd flush interval is at least as long as the highest-resolution retention. For example, if /opt/statsd/config.js looks like this.

flushInterval: 10000

Ensure that storage-schemas.conf retentions are no finer grained than 10 seconds.

[all]
pattern = .*
retentions = 5s:12h # WRONG
retentions = 10s:12h # OK
retentions = 60s:12h # OK

A Note on Disk Space

If running this image on cloud infrastructure such as AWS, you should consider mounting /opt/graphite/storage & /var/log on a larger volume.

  1. Configure the host to mount a large EBS volume.

  2. Specify the volume mounts when starting the container.

    sudo docker run -d \
      --name graphite \
      -v /ebs_vol/graphite/storage:/opt/graphite/storage \
      -v /ebs_vol/log:/var/log \
      -p 80:80 \
      -p 2003:2003 \
      -p 8125:8125/udp \
      gengmao/graphite-statsd
    

Additional Reading

Contributors

Build the image yourself.

OSX
  1. git clone https://github.com/gengmao/docker-graphite-statsd.git
  2. cd docker-graphite-statsd
  3. vagrant up
  4. vagrant ssh
  5. sudo docker build -t gengmao/graphite-statsd /vagrant

Note: Pay attention to the forwarded ports in the Vagrantfile.

Linux
  1. git clone https://github.com/gengmao/docker-graphite-statsd.git
  2. sudo docker build -t gengmao/graphite-statsd ./docker-graphite-statsd

Tag summary

Content type

Image

Digest

sha256:c9195a9f6

Size

288.5 MB

Last updated

over 11 years ago

docker pull gengmao/docker-graphite-statsd