Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
aos
GitHub Repository: aos/grafana-agent
Path: blob/main/docs/sources/flow/reference/components/otelcol.auth.oauth2.md
4096 views
---
title: otelcol.auth.oauth2
---

otelcol.auth.oauth2

otelcol.auth.oauth2 exposes a handler that can be used by other otelcol components to authenticate requests using OAuth 2.0.

The authorization tokens can be used by HTTP and gRPC based OpenTelemetry exporters. This component can fetch and refresh expired tokens automatically. For further details about OAuth 2.0 Client Credentials flow (2-legged workflow) see this document.

NOTE: otelcol.auth.oauth2 is a wrapper over the upstream OpenTelemetry Collector oauth2client extension. Bug reports or feature requests will be redirected to the upstream repository, if necessary.

Multiple otelcol.auth.oauth2 components can be specified by giving them different labels.

Usage

otelcol.auth.oauth2 "LABEL" { client_id = "CLIENT_ID" client_secret = "CLIENT_SECRET" token_url = "TOKEN_URL" }

Arguments

NameTypeDescriptionDefaultRequired
client_idstringThe client identifier issued to the client.yes
client_secretstringThe secret string associated with the client identifier.yes
token_urlstringThe server endpoint URL from which to get tokens.yes
endpoint_paramsmap(list(string))Additional parameters that are sent to the token endpoint.{}no
scopeslist(string)Requested permissions associated for the client.[]no
timeoutdurationThe timeout on the client connecting to token_url."0s"no

The timeout argument is used both for requesting initial tokens and for refreshing tokens. "0s" implies no timeout.

Blocks

The following blocks are supported inside the definition of otelcol.auth.oauth2:

HierarchyBlockDescriptionRequired
tlstlsTLS settings for the token client.no

tls block

The tls block configures TLS settings used for connecting to the token client. If the tls block isn't provided, TLS won't be used for communication.

{{< docs/shared lookup="flow/reference/components/otelcol-tls-config-block.md" source="agent" >}}

Exported fields

The following fields are exported and can be referenced by other components:

NameTypeDescription
handlercapsule(otelcol.Handler)A value that other components can use to authenticate requests.

Component health

otelcol.auth.oauth2 is only reported as unhealthy if given an invalid configuration.

Debug information

otelcol.auth.oauth2 does not expose any component-specific debug information.

Example

This example configures [otelcol.exporter.otlp][] to use OAuth 2.0 for authentication:

otelcol.exporter.otlp "example" { client { endpoint = "my-otlp-grpc-server:4317" auth = otelcol.auth.oauth2.creds.handler } } otelcol.auth.oauth2 "creds" { client_id = "someclientid" client_secret = "someclientsecret" token_url = "https://example.com/oauth2/default/v1/token" }

Here is another example with some optional attributes specified:

otelcol.exporter.otlp "example" { client { endpoint = "my-otlp-grpc-server:4317" auth = otelcol.auth.oauth2.creds.handler } } otelcol.auth.oauth2 "creds" { client_id = "someclientid2" client_secret = "someclientsecret2" token_url = "https://example.com/oauth2/default/v1/token" endpoint_params = {"audience" = ["someaudience"]} scopes = ["api.metrics"] timeout = "3600s" }

[otelcol.exporter.otlp]: {{< relref "./otelcol.exporter.otlp.md" >}}