Coder Social home page Coder Social logo

statsd-csharp-client's Introduction

C# Statsd Client

Statsd s = new Statsd(new StatsdUDP(HOSTNAME,PORT));

//All the standard Statsd message types

s.Send<Statsd.Counting>("counter",1); //counter had one hit
s.Send<Statsd.Timing>("timer",5); //timer had one hit of 5ms
s.Send<Statsd.Gauge>("gauge",5); //gauge had one hit of value 5

//All types have sample rate, which will be included in the message for Statsd own stats crunching

s.Send<Statsd.Counting>("counter",1,1/10); //counter had one hit, this will be sent 10% of times it is called

//You can add combinations of messages which will be sent in one go;

s.Add<Statsd.Counting>("counter",1);
s.Add<Statsd.Timer>("timer",5,1/10);
s.Send(); //message will contain counter and will contain timer 10% of the times

//All previous commands will be flushed after any Send
//Any Adds will be ignored if using a Send directly

//Optional naming conventions
//environment named 'env'
//application named 'app'
//hostname named 'host'

string name = Naming.withEnvironmentApplicationAndHostname("stat"); //== "env.app.stat.host"
string anotherName  = Naming.withEnvironmentAndApplication("stat"); //== "env.app.stat"

//You can use Actions to time responses

s.Send(()=>DoMagic(),"timer",1/10); //time the response time for DoMagic
s.Send(()=>DoMagic(),"timer"); //same with no sample rate
s.Add(()=>DoMagic(),"timer"); //you can just add it too..

statsd-csharp-client's People

Contributors

darrellmozingo avatar goncalopereira avatar

Watchers

 avatar  avatar  avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.