Skip to content
forked from grafana/alloy

OpenTelemetry Collector distribution with programmable pipelines

License

Notifications You must be signed in to change notification settings

ravishankar15/alloy

This branch is 11 commits behind grafana/alloy:main.

Folders and files

NameName
Last commit message
Last commit date
Feb 12, 2025
Feb 28, 2025
Mar 4, 2025
Feb 26, 2025
Mar 3, 2025
Feb 26, 2025
Sep 26, 2024
Feb 27, 2025
Feb 28, 2025
Apr 19, 2024
Apr 24, 2024
Apr 24, 2024
Sep 6, 2023
Feb 28, 2025
Feb 7, 2025
Apr 15, 2021
Jan 20, 2025
Jan 20, 2025
Jun 28, 2024
Mar 9, 2020
Nov 5, 2024
May 23, 2023
Nov 15, 2024
Jun 28, 2024
Feb 15, 2022
Feb 20, 2025
Mar 27, 2024
Apr 22, 2024
Apr 22, 2024
Feb 28, 2025
Feb 28, 2025
May 21, 2024

Repository files navigation

Grafana Alloy logo Grafana Alloy logo

Latest Release Documentation link

Grafana Alloy is an open source OpenTelemetry Collector distribution with built-in Prometheus pipelines and support for metrics, logs, traces, and profiles.

What can Alloy do?

  • Programmable pipelines: Use a rich expression-based syntax for configuring powerful observability pipelines.

  • OpenTelemetry Collector Distribution: Alloy is a distribution of OpenTelemetry Collector and supports dozens of its components, alongside new components that make use of Alloy's programmable pipelines.

  • Big tent: Alloy embraces Grafana's "big tent" philosophy, where Alloy can be used with other vendors or open source databases. It has components to perfectly integrate with multiple telemetry ecosystems:

  • Kubernetes-native: Use components to interact with native and custom Kubernetes resources; no need to learn how to use a separate Kubernetes operator.

  • Shareable pipelines: Use modules to share your pipelines with the world.

  • Automatic workload distribution: Configure Alloy instances to form a cluster for automatic workload distribution.

  • Centralized configuration support: Alloy supports retrieving its configuration from a server for centralized configuration management.

  • Debugging utilities: Use the built-in UI for visualizing and debugging pipelines.

Example

otelcol.receiver.otlp "example" {
  grpc {
    endpoint = "127.0.0.1:4317"
  }

  output {
    metrics = [otelcol.processor.batch.example.input]
    logs    = [otelcol.processor.batch.example.input]
    traces  = [otelcol.processor.batch.example.input]
  }
}

otelcol.processor.batch "example" {
  output {
    metrics = [otelcol.exporter.otlp.default.input]
    logs    = [otelcol.exporter.otlp.default.input]
    traces  = [otelcol.exporter.otlp.default.input]
  }
}

otelcol.exporter.otlp "default" {
  client {
    endpoint = "my-otlp-grpc-server:4317"
  }
}

Getting started

Check out our documentation to see:

Release cadence

A new minor release is planned every six weeks.

The release cadence is best-effort: if necessary, releases may be performed outside of this cadence, or a scheduled release date can be moved forwards or backwards.

Minor releases published on cadence include updating dependencies for upstream OpenTelemetry Collector code if new versions are available. Minor releases published outside of the release cadence may not include these dependency updates.

Patch and security releases may be published at any time.

Community

To engage with the Alloy community:

Contributing

Refer to our contributors guide to learn how to contribute.

Thanks to all the people who have already contributed!

About

OpenTelemetry Collector distribution with programmable pipelines

Resources

License

Code of conduct

Security policy

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Go 96.5%
  • Jsonnet 1.6%
  • TypeScript 1.0%
  • Makefile 0.3%
  • Shell 0.2%
  • CSS 0.2%
  • Other 0.2%