Docs » Splunk Distribution of the OpenTelemetry Collector の利用開始 » はじめに:Collectorを理解して使用する » Common configuration options » Configure authentication

Configure authentication 🔗

You can configure two types of authentication for the Collector:

  • サーバタイプ認証は、HTTP/gRPCリクエストの着信時に行われ、通常、レシーバー によって使用されます。サーバー型認証には以下が含まれます:

  • クライアント型認証は、発信するHTTP/gRPCリクエストで行われ、通常、エクスポーター で使用されます。クライアント型認証には以下が含まれます:

注釈

For more details see Auth Configuration Settings in OTel’s GitHub repo.

🔗

See the following example covering different auth options:

extensions:
   oidc:
      # see the blog post on securing the otelcol for information
      # on how to setup an OIDC server and how to generate the TLS certs
      # required for this example
      # https://medium.com/opentelemetry/securing-your-opentelemetry-collector-1a4f9fa5bd6f
      issuer_url: http://localhost:8080/auth/realms/opentelemetry
      audience: account

oauth2client:
   client_id: someclientid
   client_secret: someclientsecret
   token_url: https://example.com/oauth2/default/v1/token
   scopes: ["api.metrics"]
   # tls settings for the token client
   tls:
      insecure: true
      ca_file: /var/lib/mycert.pem
      cert_file: certfile
      key_file: keyfile
   # timeout for the token client
   timeout: 2s

receivers:
   otlp/with_auth:
      protocols:
         grpc:
            endpoint: localhost:4318
            tls:
               cert_file: /tmp/certs/cert.pem
               key_file: /tmp/certs/cert-key.pem
            auth:
               ## oidc is the extension name to use as the authenticator for this receiver
               authenticator: oidc

   otlphttp/withauth:
      endpoint: http://localhost:9000
      auth:
         authenticator: oauth2client

このページは 2024年10月08日 に最終更新されました。