opentelemetry-collector/cmd/otelcol/main.go

58 lines
1.6 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.
// Program otelcol is the OpenTelemetry Collector that collects stats
// and traces and exports to a configured backend.
package main
import (
"fmt"
"log"
"go.opentelemetry.io/collector/component"
"go.opentelemetry.io/collector/internal/version"
"go.opentelemetry.io/collector/service"
"go.opentelemetry.io/collector/service/defaultcomponents"
)
func main() {
factories, err := defaultcomponents.Components()
if err != nil {
log.Fatalf("failed to build default components: %v", err)
}
info := component.BuildInfo{
Command: "otelcol",
Description: "OpenTelemetry Collector",
Version: version.Version,
}
if err := run(service.CollectorSettings{BuildInfo: info, Factories: factories}); err != nil {
log.Fatal(err)
}
}
func runInteractive(settings service.CollectorSettings) error {
app, err := service.New(settings)
if err != nil {
return fmt.Errorf("failed to construct the collector server: %w", err)
}
err = app.Run()
if err != nil {
return fmt.Errorf("collector server run finished with error: %w", err)
}
return nil
}