Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/voxoz/mtx
✏ MTX: Metrics Client
https://github.com/voxoz/mtx
Last synced: 2 months ago
JSON representation
✏ MTX: Metrics Client
- Host: GitHub
- URL: https://github.com/voxoz/mtx
- Owner: voxoz
- License: other
- Created: 2015-04-24T09:37:06.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2015-08-29T01:43:57.000Z (over 9 years ago)
- Last Synced: 2024-04-14T04:10:14.071Z (9 months ago)
- Language: Erlang
- Homepage: http://synrc.github.io/mtx
- Size: 180 KB
- Stars: 19
- Watchers: 4
- Forks: 4
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
- freaking_awesome_elixir - Erlang - MTX supports front-end API for tracking Histogram, Meter, Counter, Gauge, Timing keys. (Statistics)
- fucking-awesome-elixir - mtx - MTX supports front-end API for tracking Histogram, Meter, Counter, Gauge, Timing keys. (Statistics)
- awesome-elixir - mtx - MTX supports front-end API for tracking Histogram, Meter, Counter, Gauge, Timing keys. (Statistics)
README
Metrics Protocol
================MTX supports front-end API for tracking Historgram, Meter,
Counter, Gauge, Timing keys. Metrics protocols support various API backends:* DataDog
* New Relic
* LibratoNewRelic and Librato will come later, sticked with Etsy statsd.
Usage
-----```erlang
mtx:decrement("test.decrement", 1, 0.5).
mtx:increment("test.increment", 1, 0.5).
mtx:gauge("test.gauge", 333, 1.0).
mtx:timing("test.timing", 5, 0.5).
```Credits
-------* Maxim Sokhatsky
* Vladimir KirillovOM A HUM