forked from open-telemetry/opentelemetry-collector-contrib
-
Notifications
You must be signed in to change notification settings - Fork 0
/
factory_windows_test.go
38 lines (30 loc) · 870 Bytes
/
factory_windows_test.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
// Copyright The OpenTelemetry Authors
// SPDX-License-Identifier: Apache-2.0
//go:build windows
package windowsperfcountersreceiver
import (
"context"
"testing"
"github.com/stretchr/testify/assert"
"go.opentelemetry.io/collector/consumer/consumertest"
)
func TestCreateMetricsReceiver(t *testing.T) {
factory := NewFactory()
cfg := factory.CreateDefaultConfig()
cfg.(*Config).PerfCounters = []ObjectConfig{
{
Object: "object",
Counters: []CounterConfig{{Name: "counter", MetricRep: MetricRep{Name: "metric"}}},
},
}
cfg.(*Config).MetricMetaData = map[string]MetricConfig{
"metric": {
Description: "desc",
Unit: "1",
Gauge: GaugeMetric{},
},
}
mReceiver, err := factory.CreateMetricsReceiver(context.Background(), creationParams, cfg, consumertest.NewNop())
assert.NoError(t, err)
assert.NotNil(t, mReceiver)
}