%docentities; ]> &adminguide;
Overview The module provides the ability to send commands to statsd (you can use InfluxDB too) with different kind of information. It provides native integration with statsd (https://github.com/etsy/statsd/) and graphite (http://graphite.wikidot.com/). The module does not have any special dependency, it does a direct socket connection to Graphite.
Parameters
<varname>ip</varname>(string) Statsd server ip Set ip parameter ... modparam("statsd", "ip", "127.0.0.1") ...
<varname>port</varname>(string) Statsd server ip Set ip parameter ... modparam("statsd", "port", "8125") ...
Functions
<function moreinfo="none">statsd_set(key, value)</function> Sets count the number of unique values passed to a key. If that method is called multiple times with the same userid in the same sample period, that userid will only be counted once. This function can be used in ALL ROUTES. <function>statsd_set</function> usage ... failure_route[tryagain] { ... statsd_set("customerFailure", 1); ... } ...
<function moreinfo="none">statsd_gauge(key, value)</function> Gauges are a constant data type. They are not subject to averaging, and they don’t change unless you change them. That is, once you set a gauge value, it will be a flat line on the graph until you change it again. Gauges are useful for things that are already averaged, or don’t need to reset periodically This function can be used in ALL ROUTES. The statsd server collects gauges under the stats.gauges prefix. <function>statsd_set</function> usage route [gauge_method]{ statsd_gauge("method"+$rm, "+1"); statsd_gauge("customer_credit"+$var(customer),"$var(customer_credit)"); }
<function moreinfo="none">statsd_start(key)</function> statsd start set a avp with the key name, and when you use statsd_stop(key), module will send to statsd the difference in milliseconds. this is useful to know the time of a sql query, or how many time take your replies. this function can be used in all routes. the statsd server collects all timers under the stats.timers prefix, and will calculate the lower bound, mean, 90th percentile, upper bound, and count of each timer for each period (by the time you see it in graphite, that’s usually per minute). <function>statsd_start</function> usage ... statsd_start("long_mysql_query"); sql_query("ca", "select sleep(0.2)", "ra"); statsd_stop("long_mysql_query"); ...
<function moreinfo="none">statsd_stop(key)</function> statsd_stop(key) get the avp string with the key and calculate the difference from the start time. When finish app send the milliseconds to statsd. This function can be used in all routes. <function>statsd_stop</function> usage ... statsd_start("long_mysql_query"); sql_query("ca", "select sleep(0.2)", "ra"); statsd_stop("long_mysql_query"); ...
<function moreinfo="none">statsd_incr(key)</function> Increment a counter This function can be used in all routes. <function>statsd_incr</function> usage ... if(geoip_match("$si", "src")){ statsd_incr("country."+$(gip(src=>cc))); } ...
<function moreinfo="none">statsd_decr(key)</function> Decrement a counter This function can be used in all routes. <function>statsd_decr</function> usage ... if (t_check_status("408")) { statsd_decr("kamailio.successfulCalls"); statsd_incr("kamailio.reply.busy"); } ...