コード例 #1
0
ファイル: nerve_httpd.go プロジェクト: Yelp/fullerite
func (c *NerveHTTPD) emitHTTPDMetric(service util.NerveService, port int) {
	metrics := getNerveHTTPDMetrics(c, service, port)
	for _, metric := range metrics {
		c.Channel() <- metric
	}
	c.Channel() <- metric.Sentinel()
}
コード例 #2
0
ファイル: handler_test.go プロジェクト: Yelp/fullerite
func TestSentinelFlushing(t *testing.T) {
	base := BaseHandler{}
	base.log = l.WithField("testing", "basehandler_flush")
	base.interval = 100
	base.maxBufferSize = 100
	base.channel = make(chan metric.Metric)
	base.collectorEndpoints = map[string]CollectorEnd{
		"collector1": CollectorEnd{make(chan metric.Metric), 100},
	}

	emitFunc := func(metrics []metric.Metric) bool {
		assert.Equal(t, 2, len(metrics))
		return true
	}

	go base.run(emitFunc)
	base.CollectorEndpoints()["collector1"].Channel <- metric.New("testMetric")
	base.CollectorEndpoints()["collector1"].Channel <- metric.New("testMetric1")
	// emit sentinel value to trigger flush
	base.CollectorEndpoints()["collector1"].Channel <- metric.Sentinel()
	time.Sleep(1 * time.Second)
	assert.Equal(t, uint64(2), atomic.LoadUint64(&base.metricsSent))
	assert.Equal(t, uint64(0), atomic.LoadUint64(&base.metricsDropped))

	// send more metrics
	base.CollectorEndpoints()["collector1"].Channel <- metric.New("testMetric")
	base.CollectorEndpoints()["collector1"].Channel <- metric.New("testMetric1")
	// emit sentinel value to trigger flush
	base.CollectorEndpoints()["collector1"].Channel <- metric.Sentinel()
	time.Sleep(1 * time.Second)
	assert.Equal(t, uint64(4), atomic.LoadUint64(&base.metricsSent))
	assert.Equal(t, uint64(0), atomic.LoadUint64(&base.metricsDropped))
	assert.Equal(t, uint64(2), atomic.LoadUint64(&base.totalEmissions))

	// This is just to stop goroutines that have been started before
	base.channel <- metric.Metric{}
	base.CollectorEndpoints()["collector1"].Channel <- metric.Metric{}
}