59 lines
1.5 KiB
Go
59 lines
1.5 KiB
Go
// Copyright The OpenTelemetry Authors
|
|
//
|
|
// Licensed under the Apache License, Version 2.0 (the "License");
|
|
// you may not use this file except in compliance with the License.
|
|
// You may obtain a copy of the License at
|
|
//
|
|
// http://www.apache.org/licenses/LICENSE-2.0
|
|
//
|
|
// Unless required by applicable law or agreed to in writing, software
|
|
// distributed under the License is distributed on an "AS IS" BASIS,
|
|
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
// See the License for the specific language governing permissions and
|
|
// limitations under the License.
|
|
|
|
package fluentforwardreceiver
|
|
|
|
import (
|
|
"context"
|
|
|
|
"go.opentelemetry.io/collector/component"
|
|
"go.opentelemetry.io/collector/config/configmodels"
|
|
"go.opentelemetry.io/collector/consumer"
|
|
"go.opentelemetry.io/collector/receiver/receiverhelper"
|
|
)
|
|
|
|
// This file implements factory for SignalFx receiver.
|
|
|
|
const (
|
|
// The value of "type" key in configuration.
|
|
typeStr = "fluentforward"
|
|
)
|
|
|
|
func NewFactory() component.ReceiverFactory {
|
|
return receiverhelper.NewFactory(
|
|
typeStr,
|
|
createDefaultConfig,
|
|
receiverhelper.WithLogs(createLogsReceiver))
|
|
}
|
|
|
|
func createDefaultConfig() configmodels.Receiver {
|
|
return &Config{
|
|
ReceiverSettings: configmodels.ReceiverSettings{
|
|
TypeVal: typeStr,
|
|
NameVal: typeStr,
|
|
},
|
|
}
|
|
}
|
|
|
|
func createLogsReceiver(
|
|
_ context.Context,
|
|
params component.ReceiverCreateParams,
|
|
cfg configmodels.Receiver,
|
|
consumer consumer.Logs,
|
|
) (component.LogsReceiver, error) {
|
|
|
|
rCfg := cfg.(*Config)
|
|
return newFluentReceiver(params.Logger, rCfg, consumer)
|
|
}
|