Skip to content

HTTPS clone URL

Subversion checkout URL

You can clone with
or
.
Download ZIP
A cpp client for the Etsy StatsD server.
C++ CMake Makefile
Branch: master

Fetching latest commit…

Cannot retrieve the latest commit at this time

Failed to load latest commit information.
include
src
test
.gitignore
.travis.yml
CMakeLists.txt
LICENSE.md
Makefile
README.md

README.md

StatsD client cpp Build Status

A cpp client for the Etsy StatsD server.

Install

$ make && make install

Test

$ make test

Usage

#include <statsd.hpp>

int main(int argc, char const *argv[])
{
    statsd::open("127.0.0.1", 8125);

    statsd::timing("test.site.homepage.load", 1500);

    statsd::increment("test.server.http.error.404");

    statsd::decrement("test.server.http.error.404");

    statsd::count("test.site.auth.success", 4);

    statsd::gauge("a.gauge.node", 8);

    statsd::set("a.graphite.set", 12);

    statsd::close();

    return 0;
}

Documentation

see the statsd.hpp

License

statsd-cpp is licensed under the MIT license.

Something went wrong with that request. Please try again.