-
Notifications
You must be signed in to change notification settings - Fork 1
/
factory.go
37 lines (33 loc) · 953 Bytes
/
factory.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
package opentelemetrygithubactionsjunitreceiver
import (
"context"
"go.opentelemetry.io/collector/component"
"go.opentelemetry.io/collector/config/confighttp"
"go.opentelemetry.io/collector/consumer"
"go.opentelemetry.io/collector/receiver"
)
func createDefaultConfig() component.Config {
return &Config{
ServerConfig: confighttp.ServerConfig{
Endpoint: "localhost:33333",
},
Path: "/githubactionsjunit",
}
}
func createTracerReceiver(
_ context.Context,
params receiver.CreateSettings,
rConf component.Config,
nextConsumer consumer.Traces,
) (receiver.Traces, error) {
cfg := rConf.(*Config)
return newTracesReceiver(cfg, params, nextConsumer)
}
// NewFactory creates a factory for githubactionslogsreceiver.
func NewFactory() receiver.Factory {
return receiver.NewFactory(
component.MustNewType("githubactionsjunit"),
createDefaultConfig,
receiver.WithTraces(createTracerReceiver, component.StabilityLevelAlpha),
)
}