dm03514

Results 13 issues of dm03514

The goal of this is to add a contrib pacakge which allows for extensions/addons for NSQD. The idea was to make the contrib as separate from NSQD as possible. To...

feature

[Dogstatsd](http://docs.datadoghq.com/guides/dogstatsd/) is a superset of statsd which supports tagging metrics. Tagging metrics allow for more generic metric names with specific values being differentiated by tags. For example in the [`message_count`](https://github.com/nsqio/nsq/blob/master/nsqd/statsd.go#L81)...

feature
question
request

**Is your feature request related to a problem? Please describe.** Greetings! I just started using opencensus in go. The quality and framework was super easy to use, the primitives are...

feature-request

I tried to disable mongo probe data on a super simple web app but noticed mongo probe data was still being surfaced: ``` appmetrics.disable('mongo'); monitoring.on('mongo', (data) => { console.log('mongo'); console.log(data);...

Greetings, I am trying to get adoption for appmetrics and it would be extremely helpfu to be able to disable gc collection through the `appmetrics.disable('gc')` call. This is all brand...

👋 Hello, I was wondering if there was any way you'd be open to allowing a span to be created with an already existing SpanContext? I have a unique use...

just exposed the `parse` method as a public static function. Created a test for it as well

# HTTP Handler - Non-Synchronized Counter ```go counter := 0 go func() { http.Handle("/", http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) { counter = counter + 1 # line 28 fmt.Printf("handling request: %d\n",...