-
Notifications
You must be signed in to change notification settings - Fork 2.4k
/
factory.go
158 lines (143 loc) · 4.5 KB
/
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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
// Copyright The OpenTelemetry Authors
// SPDX-License-Identifier: Apache-2.0
package fileexporter // import "github.com/open-telemetry/opentelemetry-collector-contrib/exporter/fileexporter"
import (
"context"
"io"
"os"
"go.opentelemetry.io/collector/component"
"go.opentelemetry.io/collector/consumer"
"go.opentelemetry.io/collector/exporter"
"go.opentelemetry.io/collector/exporter/exporterhelper"
"gopkg.in/natefinch/lumberjack.v2"
"github.com/open-telemetry/opentelemetry-collector-contrib/exporter/fileexporter/internal/metadata"
"github.com/open-telemetry/opentelemetry-collector-contrib/internal/sharedcomponent"
)
const (
// the number of old log files to retain
defaultMaxBackups = 100
// the format of encoded telemetry data
formatTypeJSON = "json"
formatTypeProto = "proto"
// the type of compression codec
compressionZSTD = "zstd"
)
// NewFactory creates a factory for OTLP exporter.
func NewFactory() exporter.Factory {
return exporter.NewFactory(
metadata.Type,
createDefaultConfig,
exporter.WithTraces(createTracesExporter, metadata.TracesStability),
exporter.WithMetrics(createMetricsExporter, metadata.MetricsStability),
exporter.WithLogs(createLogsExporter, metadata.LogsStability))
}
func createDefaultConfig() component.Config {
return &Config{
FormatType: formatTypeJSON,
Rotation: &Rotation{MaxBackups: defaultMaxBackups},
}
}
func createTracesExporter(
ctx context.Context,
set exporter.CreateSettings,
cfg component.Config,
) (exporter.Traces, error) {
conf := cfg.(*Config)
writer, err := buildFileWriter(conf)
if err != nil {
return nil, err
}
fe := exporters.GetOrAdd(cfg, func() component.Component {
return newFileExporter(conf, writer)
})
return exporterhelper.NewTracesExporter(
ctx,
set,
cfg,
fe.Unwrap().(*fileExporter).consumeTraces,
exporterhelper.WithStart(fe.Start),
exporterhelper.WithShutdown(fe.Shutdown),
exporterhelper.WithCapabilities(consumer.Capabilities{MutatesData: false}),
)
}
func createMetricsExporter(
ctx context.Context,
set exporter.CreateSettings,
cfg component.Config,
) (exporter.Metrics, error) {
conf := cfg.(*Config)
writer, err := buildFileWriter(conf)
if err != nil {
return nil, err
}
fe := exporters.GetOrAdd(cfg, func() component.Component {
return newFileExporter(conf, writer)
})
return exporterhelper.NewMetricsExporter(
ctx,
set,
cfg,
fe.Unwrap().(*fileExporter).consumeMetrics,
exporterhelper.WithStart(fe.Start),
exporterhelper.WithShutdown(fe.Shutdown),
exporterhelper.WithCapabilities(consumer.Capabilities{MutatesData: false}),
)
}
func createLogsExporter(
ctx context.Context,
set exporter.CreateSettings,
cfg component.Config,
) (exporter.Logs, error) {
conf := cfg.(*Config)
writer, err := buildFileWriter(conf)
if err != nil {
return nil, err
}
fe := exporters.GetOrAdd(cfg, func() component.Component {
return newFileExporter(conf, writer)
})
return exporterhelper.NewLogsExporter(
ctx,
set,
cfg,
fe.Unwrap().(*fileExporter).consumeLogs,
exporterhelper.WithStart(fe.Start),
exporterhelper.WithShutdown(fe.Shutdown),
exporterhelper.WithCapabilities(consumer.Capabilities{MutatesData: false}),
)
}
func newFileExporter(conf *Config, writer io.WriteCloser) *fileExporter {
return &fileExporter{
path: conf.Path,
formatType: conf.FormatType,
file: writer,
tracesMarshaler: tracesMarshalers[conf.FormatType],
metricsMarshaler: metricsMarshalers[conf.FormatType],
logsMarshaler: logsMarshalers[conf.FormatType],
exporter: buildExportFunc(conf),
compression: conf.Compression,
compressor: buildCompressor(conf.Compression),
flushInterval: conf.FlushInterval,
}
}
func buildFileWriter(cfg *Config) (io.WriteCloser, error) {
if cfg.Rotation == nil {
f, err := os.OpenFile(cfg.Path, os.O_RDWR|os.O_CREATE|os.O_TRUNC, 0600)
if err != nil {
return nil, err
}
return newBufferedWriteCloser(f), nil
}
return &lumberjack.Logger{
Filename: cfg.Path,
MaxSize: cfg.Rotation.MaxMegabytes,
MaxAge: cfg.Rotation.MaxDays,
MaxBackups: cfg.Rotation.MaxBackups,
LocalTime: cfg.Rotation.LocalTime,
}, nil
}
// This is the map of already created File exporters for particular configurations.
// We maintain this map because the Factory is asked trace and metric receivers separately
// when it gets CreateTracesReceiver() and CreateMetricsReceiver() but they must not
// create separate objects, they must use one Receiver object per configuration.
var exporters = sharedcomponent.NewSharedComponents()