ITRS StatsD Client
Project description
itrsstatsd
Python module for publishing custom metrics to an ITRS StatsD server.
The module is part of the Orchestrated Netprobe solution for collecting metrics in orchestrated environments. See the docs for complete details.
Requirements
- Python 3.7
Installation
The module is available via PyPI:
pip3 install itrsstatsd
Module Documentation
How to get and use a statsd API handle:
pydoc3 itrsstatsd
API documentation:
pydoc3 itrsstatsd.api
Units of measure documentation:
pydoc3 itrsstatsd.units
Getting Started
from itrsstatsd import build_statsd
from itrsstatsd.units import Unit
from itrsstatsd.severity import Severity
# Create an instance of the client that sends to localhost:8125
statsd = build_statsd()
# Optionally add dimension(s) to all metrics
statsd.default_dimensions(app_name="pyapp")
# Record some metrics
statsd.increment("failed_logins")
statsd.gauge("cache_size", 52.5, Unit.Megabytes)
statsd.timer("query_time", 56)
statsd.event("event_name_1", "event_message", Severity.INFO)
statsd.attribute("attr_name_1", "A1")
Refer to the pydoc for complete usage details.
Change Log
v2.0.0 (2020-04-01)
New Features:
- C2-76: Added event and attribute support
- C2-124: Added new units of measure
v1.4.0 (2019-12-20)
New Features:
-
C2-92: StatsD configuration via environment variables
This introduces the following changes:
- Breaking:
STATSD_SERVERandSTATSD_PORTenvironment variables now have precedence over the hostname and port configured in code. - New
STATSD_PROTOCOLenvironment variable which can be set totcporudpand overrides the protocol configured in code. - New
STATSD_DISABLE_PLATFORM_DIMENSIONSenvironment variable which, iftrue, will prevent the platform-specific dimensions from being added to each metric. This overrides the value configured in code. - Custom dimensions can be configured via
STATSD_DIMENSION_*environment variable(s).
- Breaking:
Resolved:
- C2-98: StatsD client blocks when connecting to server via TCP
v1.3.0 (2019-09-11)
New Features:
- License changed to BSD 3-Clause
- C2-77: Nano and micro resolution in timer metrics
Resolved:
- C2-78: Statsd client sends malformed message with sample rate
v1.2.0 (2019-08-23)
New Features:
- C2-72: Discard oldest metrics when sending queue full
v1.1.0 (2019-08-23)
New Features:
- C2-69: Statsd over TCP
v1.0.0 (2019-08-15)
First version.
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file itrsstatsd-2.0.0.tar.gz.
File metadata
- Download URL: itrsstatsd-2.0.0.tar.gz
- Upload date:
- Size: 10.0 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/1.13.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/45.1.0 requests-toolbelt/0.9.1 tqdm/4.35.0 CPython/3.7.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
4ec70a78c92c31ee9c401ecf9f68e57845e266c898b092365522dca32fc50c3d
|
|
| MD5 |
3b44c0902108c3b5b184e7183b6b3530
|
|
| BLAKE2b-256 |
d5f9004ea2c68ed27966e23fb1275daf57a094383e8bd8a26de574606a338d28
|
File details
Details for the file itrsstatsd-2.0.0-py3-none-any.whl.
File metadata
- Download URL: itrsstatsd-2.0.0-py3-none-any.whl
- Upload date:
- Size: 12.7 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/1.13.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/45.1.0 requests-toolbelt/0.9.1 tqdm/4.35.0 CPython/3.7.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
6ded0e12cf2fb69a5b973fa8e972e28777b8e3a2da8cbd9ae9d9859e403b6084
|
|
| MD5 |
29f12775651673bd8ff90d589eb9051b
|
|
| BLAKE2b-256 |
f4ec4fcfce0b7fa33080f34d6ac27cac887219dc7e217d65ddace9d4fab909a4
|