Elastic

To enable the Elastic tracer:

File (YAML)

  1. tracing:
  2. elastic: {}

File (TOML)

  1. [tracing]
  2. [tracing.elastic]

CLI

  1. --tracing.elastic=true

serverURL

Optional, Default=”http://localhost:8200

URL of the Elastic APM server.

File (YAML)

  1. tracing:
  2. elastic:
  3. serverURL: "http://apm:8200"

File (TOML)

  1. [tracing]
  2. [tracing.elastic]
  3. serverURL = "http://apm:8200"

CLI

  1. --tracing.elastic.serverurl="http://apm:8200"

secretToken

Optional, Default=””

Token used to connect to Elastic APM Server.

File (YAML)

  1. tracing:
  2. elastic:
  3. secretToken: "mytoken"

File (TOML)

  1. [tracing]
  2. [tracing.elastic]
  3. secretToken = "mytoken"

CLI

  1. --tracing.elastic.secrettoken="mytoken"

serviceEnvironment

Optional, Default=””

Environment’s name where Traefik is deployed in, e.g. production or staging.

File (YAML)

  1. tracing:
  2. elastic:
  3. serviceEnvironment: "production"

File (TOML)

  1. [tracing]
  2. [tracing.elastic]
  3. serviceEnvironment = "production"

CLI

  1. --tracing.elastic.serviceenvironment="production"

Further

Additional configuration of Elastic APM Go agent can be done using environment variables. See APM Go agent reference.