lp:~mk-fraggod/txstatsd/txstatsd
Created by
Mike Kazantsev
and last modified
- Get this branch:
- bzr branch lp:~mk-fraggod/txstatsd/txstatsd
Only
Mike Kazantsev
can upload to this branch. If you are
Mike Kazantsev
please log in for upload directions.
Branch merges
Propose for merging
- txStatsD Developers: Pending requested
-
Diff: 6367 lines (+6061/-0) (has conflicts)56 files modified.bzrignore (+2/-0)
LICENSE (+20/-0)
MANIFEST.in (+5/-0)
README (+21/-0)
example-stats-client.tac (+52/-0)
requirements.txt (+7/-0)
setup.py (+67/-0)
statsd.tac (+8/-0)
twisted/plugins/derive_plugin.py (+69/-0)
twisted/plugins/distinct_plugin.py (+20/-0)
twisted/plugins/txstatsd_plugin.py (+22/-0)
txstatsd.conf-example (+26/-0)
txstatsd/client.py (+165/-0)
txstatsd/itxstatsd.py (+54/-0)
txstatsd/metrics/countermetric.py (+67/-0)
txstatsd/metrics/distinctmetric.py (+150/-0)
txstatsd/metrics/extendedmetrics.py (+53/-0)
txstatsd/metrics/gaugemetric.py (+43/-0)
txstatsd/metrics/histogrammetric.py (+209/-0)
txstatsd/metrics/imetrics.py (+18/-0)
txstatsd/metrics/metermetric.py (+103/-0)
txstatsd/metrics/metric.py (+47/-0)
txstatsd/metrics/metrics.py (+140/-0)
txstatsd/metrics/timermetric.py (+161/-0)
txstatsd/process.py (+217/-0)
txstatsd/report.py (+64/-0)
txstatsd/server/configurableprocessor.py (+108/-0)
txstatsd/server/httpinfo.py (+60/-0)
txstatsd/server/loggingprocessor.py (+36/-0)
txstatsd/server/processor.py (+371/-0)
txstatsd/server/protocol.py (+63/-0)
txstatsd/server/router.py (+308/-0)
txstatsd/service.py (+340/-0)
txstatsd/stats/ewma.py (+70/-0)
txstatsd/stats/exponentiallydecayingsample.py (+124/-0)
txstatsd/stats/uniformsample.py (+45/-0)
txstatsd/tests/helper.py (+18/-0)
txstatsd/tests/metrics/__init__.py (+2/-0)
txstatsd/tests/metrics/test_derive.py (+77/-0)
txstatsd/tests/metrics/test_distinct.py (+94/-0)
txstatsd/tests/metrics/test_histogrammetric.py (+91/-0)
txstatsd/tests/metrics/test_timermetric.py (+139/-0)
txstatsd/tests/stats/test_ewma.py (+315/-0)
txstatsd/tests/stats/test_exponentiallydecayingsample.py (+84/-0)
txstatsd/tests/stats/test_uniformsample.py (+32/-0)
txstatsd/tests/test_client.py (+93/-0)
txstatsd/tests/test_configurableprocessor.py (+152/-0)
txstatsd/tests/test_httpinfo.py (+128/-0)
txstatsd/tests/test_loggingprocessor.py (+64/-0)
txstatsd/tests/test_metrics.py (+120/-0)
txstatsd/tests/test_process.py (+322/-0)
txstatsd/tests/test_processor.py (+406/-0)
txstatsd/tests/test_report.py (+84/-0)
txstatsd/tests/test_router.py (+218/-0)
txstatsd/tests/test_service.py (+286/-0)
txstatsd/version.py (+1/-0)
Branch information
Recent revisions
- 80. By Mike Kazantsev
-
Updated derive_plugin to use "dx" key, to avoid conflict with existing distinct_plugin
- 76. By Sidnei da Silva
-
[r=beuno] Add dup flag to rewrite/
set_metric_ type targets, so it yields the original message in addition to the rewritten one. - 73. By Lucio Torre
-
[r=sidnei] Reduce number of datapoints generated from timers. Timers now also measure rate.
Branch metadata
- Branch format:
- Branch format 7
- Repository format:
- Bazaar repository format 2a (needs bzr 1.16 or later)
- Stacked on:
- lp:txstatsd