As of Sept 2019, this library has been officially forked by Appoptics. You should use the official version instead of this repo for any new projects.
This repo is only for backwards-compatibility with existing projects; any contributions should now be made to the officialy-maintained version.
This is a reporter for the go-metrics library which posts the metrics to AppOptics/Librato. It is forked from go-metrics-librato and was originally part of the go-metrics
library itself.
This library supports tagged metrics only; source-based metrics have been deprecated by Librato. The original go-metrics-librato library can be used if you need to upload source-based metrics instead.
import "github.com/ysamlan/go-metrics-appoptics" go appoptics.AppOptics(metrics.DefaultRegistry, 10*time.Second, // interval for uploads "token", // AppOptics API token map[string]string{ "hostname": "localhost", // tags }, []float64{0.95}, // percentiles to send time.Millisecond, // time units for timers "myservicename.", // prefix on reported metric names nil, // (optional) go-metrics runtime.* stats upload whitelist )
Metric Name Prefix: This reporter supports a prefix
argument when initializing. All uploaded metrics will have that prefix prepended to their names. Use ""
if you don't want this behavior.
Tags: Tags passed during the initialization are attached to all this reporter's measurements to AppOptics.
Selective runtime metric uploading: If you're using go-metrics' CaptureRuntimeMemStats
feature, it's great and automates collecting a lot of useful data. Unfortunately, it also adds 30 metrics, which can eat up a lot of metric hours with AppOptics. The runtimeMetricsWhiteleist
parameter lets you cherry-pick which metrics actually get uploaded, without needing to manually collect them yourself. See the source for possible values. Pass nil
to allow all, and an empty slice to disable uploads for all runtime.
metrics.
Tags are attached at the batch level, not to the individual metrics/measurements within the batch. You can work around this by using a different Registry and appoptics.AppOptics goroutine for metrics that need different tags. See #1 for potential approaches for fixing this.
Migrating fromrcrowley/go-metrics
/ mihasya/go-metrics-librato
implementation
To get the same behavior you're used to from the original Librato reporter (only with tags instead of sources):
"github.com/ysamlan/go-metrics-appoptics"
librato.Librato
to appoptics.AppOptics
appoptics.AppOptics
function call (the updated AppOptics API only requires the token)string
into a map[string]string
for tags - e.g. a source "myhostname"
could become the tag map[string]string{"host":"myhostname"}
).""
for the metric name prefix.nil
for the runtime-metric-name whitelist (allow-all).RetroSearch is an open source project built by @garambo | Open a GitHub Issue
Search and Browse the WWW like it's 1997 | Search results from DuckDuckGo
HTML:
3.2
| Encoding:
UTF-8
| Version:
0.7.4