diff options
| author | Maxime Petazzoni <maxime.petazzoni@bulix.org> | 2018-01-17 09:09:13 -0800 |
|---|---|---|
| committer | Yang Song <songy23@users.noreply.github.com> | 2018-01-17 09:09:13 -0800 |
| commit | 64d05837e565b336865a82a570115d752b88c1ef (patch) | |
| tree | 8104cf62a22a676681c7bda7f101bb783c727660 /README.md | |
| parent | 7bfe9254e25099bf188067929931c76e7e2996b8 (diff) | |
| download | platform_external_opencensus-java-64d05837e565b336865a82a570115d752b88c1ef.tar.gz platform_external_opencensus-java-64d05837e565b336865a82a570115d752b88c1ef.tar.bz2 platform_external_opencensus-java-64d05837e565b336865a82a570115d752b88c1ef.zip | |
SignalFx stats exporter (#903)
* SignalFx stats exporter
This commit implements a stats exporter that sends stats as metrics to
SignalFx (https://signalfx.com). It is modeled on the Stackdriver stats
exporter in that it uses a background worker thread that periodically
inspects all the views and constructs datapoints to send to SignalFx for
their corresponding metric timeseries (identified by the view name as
metric name, and tag key/value pairs as dimensions).
* Review feedback (squash me)
* More review feedback (squash me)
* Use a configuration builder pattern (squash me)
* Fixes for checker framework compliance (squash me)
* Review feedback (squash me)
* Remove support for AggregationWindow.Interval (squash me)
Diffstat (limited to 'README.md')
| -rw-r--r-- | README.md | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -111,6 +111,7 @@ runtime 'io.opencensus:opencensus-impl:0.10.1' #### Stats exporters * [Stackdriver][StatsExporterStackdriver] +* [SignalFx][StatsExporterSignalFx] ### How to setup debugging Z-Pages? @@ -133,3 +134,4 @@ see this [link](https://github.com/census-instrumentation/opencensus-java/tree/m [TraceExporterStackdriver]: https://github.com/census-instrumentation/opencensus-java/tree/master/exporters/trace/stackdriver#quickstart [TraceExporterZipkin]: https://github.com/census-instrumentation/opencensus-java/tree/master/exporters/trace/zipkin#quickstart [StatsExporterStackdriver]: https://github.com/census-instrumentation/opencensus-java/tree/master/exporters/stats/stackdriver#quickstart +[StatsExporterSignalFx]: https://github.com/census-instrumentation/opencensus-java/tree/master/exporters/stats/signalfx#quickstart |
