aboutsummaryrefslogtreecommitdiffstats
path: root/README.md
diff options
context:
space:
mode:
authorMaxime Petazzoni <maxime.petazzoni@bulix.org>2018-01-17 09:09:13 -0800
committerYang Song <songy23@users.noreply.github.com>2018-01-17 09:09:13 -0800
commit64d05837e565b336865a82a570115d752b88c1ef (patch)
tree8104cf62a22a676681c7bda7f101bb783c727660 /README.md
parent7bfe9254e25099bf188067929931c76e7e2996b8 (diff)
downloadplatform_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.md2
1 files changed, 2 insertions, 0 deletions
diff --git a/README.md b/README.md
index 4ff38894..69f680a8 100644
--- a/README.md
+++ b/README.md
@@ -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