summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authortrbs <trbs@trbs.net>2013-09-17 00:57:41 +0200
committertrbs <trbs@trbs.net>2013-09-17 00:57:41 +0200
commitaad3c697e0b11a6343ff18f69084e56925b2b355 (patch)
tree3a1625a023afce42a08001ca58724bc681e0c54c /docs
parentda0005cb30fac365c7bc3a9ab9a4824e1a9c3a49 (diff)
downloadpystatsd-aad3c697e0b11a6343ff18f69084e56925b2b355.tar.gz
add maxudpsize option
allows to control the maximum udp packet size. when pipelining a lot of metrics within a controlled network or to 127.0.0.1 it can be desirable to lower the number of udp packets by sending larger onces. the documentation reflects that this option is not for the faint hearted, should not be used on the internet and should be handled with extreme care.
Diffstat (limited to 'docs')
-rw-r--r--docs/configure.rst12
1 files changed, 11 insertions, 1 deletions
diff --git a/docs/configure.rst b/docs/configure.rst
index de95fbe..37354a1 100644
--- a/docs/configure.rst
+++ b/docs/configure.rst
@@ -26,7 +26,8 @@ They, and their defaults, are::
statsd = StatsClient(host='localhost',
port=8125,
- prefix=None)
+ prefix=None,
+ maxudpsize=512)
``host`` is the host running the statsd server. It will support any kind
of name or IP address you might use.
@@ -50,6 +51,13 @@ will produce two different stats, ``foo.baz`` and ``bar.baz``. Without
the ``prefix`` argument, or with the same ``prefix``, two
``StatsClient`` instances will update the same stats.
+``maxudpsize`` specifies the maximum packet size statsd will use. This is
+an advanced options and should not be changed unless you know what you are
+doing. Larger values then the default of 512 are generally deemed unsafe for use
+on the internet. On a controlled local network or when the statsd server is
+running on 127.0.0.1 larger values can decrease the number of UDP packets when
+pipelining many metrics. Use with care!
+
In Django
=========
@@ -63,6 +71,7 @@ Here are the settings and their defaults::
STATSD_HOST = 'localhost'
STATSD_PORT = 8125
STATSD_PREFIX = None
+ STATSD_MAXUDPSIZE = 512
You can use the default ``StatsClient`` simply::
@@ -86,6 +95,7 @@ You can set these variables in the environment::
STATSD_HOST
STATSD_PORT
STATSD_PREFIX
+ STATSD_MAXUDPSIZE
and then in your Python application, you can simply do::