otel_components_generator

command module
v0.0.0-...-67aec58 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Feb 16, 2023 License: Apache-2.0 Imports: 18 Imported by: 0

README

OpenTelemetry Icon Otel Component generator

OpenTelemetry is a collection of tools, APIs, and SDKs used to instrument, generate, collect, and export telemetry data (metrics, logs, and traces) to help analyze your software’s performance and behavior. The OpenTelemetry Collector is a constituent of opentelemetry and can collect data from OpenTelemetry SDKs and other sources. This project is a component generator for the OpenTelemetry collector. The Opentelemetry collector has various components like Extensions, Receivers, Exporters, and Processors. The aim of the project generate skeleton code of the various collector components.

Installation

You can download the binary here. Place in your system's PATH environment variable. You can follow the tutorial here

Example usage:

ocg --component exporter --output example --signal trace,log --module github.com/user/package

Note: If any of the value is not supplied as a flag. It would be requested interactively.

Example usage without binary
go run . --component exporter --output example --signal trace,log --module github.com/user/package

Note:

  • If any of the value is not supplied as a flag. It would be requested interactively.
  • Ensure you ahave GO installed, if not, install here
How it works

The component generator has different flags:

  • component: It is used to specify the type of component to be generated. The following are the accepted values: exporter,processor,extension,receiver. Only one can be specified at a time.

  • output: It is used to indicate the location in which the generated source code would live in. The input should be string value.

  • signal: It is used to indicate the signal(s) associated with a component. The accepted values are: trace,metric,log. More than one can be specified at a time but should be delimited with a comma and no whitespaces in between. e.g. --signal trace,metric.

  • module: It is used to indicate the name of the module to be generated

How to contribute

If you have a suggestion that would make this better, please fork the repo and create a pull request. You can also simply open an issue and let us know how we can make this project better. Don't forget to give the project a star! Thanks again!

  • Fork the Project
  • Create your Feature Branch (git checkout -b feature/AmazingFeature)
  • Commit your Changes (git commit -m 'Add some AmazingFeature')
  • Push to the Branch (git push origin feature/AmazingFeature)
  • Open a Pull Request

Please do not forget to give this project a star

Documentation

The Go Gopher

There is no documentation for this package.

Directories

Path Synopsis
config module
exporters module

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL