config.go 402 B

12345678910111213
  1. // Copyright The OpenTelemetry Authors
  2. // SPDX-License-Identifier: Apache-2.0
  3. package influxdbreceiver // import "github.com/open-telemetry/opentelemetry-collector-contrib/receiver/influxdbreceiver"
  4. import (
  5. "go.opentelemetry.io/collector/config/confighttp"
  6. )
  7. // Config defines configuration for the InfluxDB receiver.
  8. type Config struct {
  9. confighttp.HTTPServerSettings `mapstructure:",squash"`
  10. }