Movatterモバイル変換


[0]ホーム

URL:


Loading

Configuration

Serverless ObservabilityStackAPM Agent Python

To adapt the Elastic APM agent to your needs, configure it using environment variables or framework-specific configuration.

You can either configure the agent by setting environment variables:

ELASTIC_APM_SERVICE_NAME=foo python manage.py runserver

or with inline configuration:

apm_client = Client(service_name="foo")

or by using framework specific configuration e.g. in your Djangosettings.py file:

ELASTIC_APM = {    "SERVICE_NAME": "foo",}

The precedence is as follows:

  • Central configuration (supported options are marked withdynamic config)
  • Environment variables
  • Inline configuration
  • Framework-specific configuration
  • Default value

Configuration options marked with thedynamic config badge can be changed at runtime when set from a supported source.

The Python Agent supportsCentral configuration, which allows you to fine-tune certain configurations from in the APM app. This feature is enabled in the Agent by default withcentral_config.

To configure Django, add anELASTIC_APM dictionary to yoursettings.py:

ELASTIC_APM = {    'SERVICE_NAME': 'my-app',    'SECRET_TOKEN': 'changeme',}

To configure Flask, add anELASTIC_APM dictionary to yourapp.config:

app.config['ELASTIC_APM'] = {    'SERVICE_NAME': 'my-app',    'SECRET_TOKEN': 'changeme',}apm = ElasticAPM(app)
EnvironmentDjango/FlaskDefaultExample
ELASTIC_APM_SERVICE_NAMESERVICE_NAMEunknown-python-servicemy-app

The name of your service. This is used to keep all the errors and transactions of your service together and is the primary filter in the Elastic APM user interface.

While a default is provided, it is essential that you override this default with something more descriptive and unique across your infrastructure.

Note

The service name must conform to this regular expression:^[a-zA-Z0-9 _-]+$. In other words, the service name must only contain characters from the ASCII alphabet, numbers, dashes, underscores, and spaces. It cannot be an empty string or whitespace-only.

EnvironmentDjango/FlaskDefault
ELASTIC_APM_SERVER_URLSERVER_URL'http://127.0.0.1:8200'

The URL for your APM Server. The URL must be fully qualified, including protocol (http orhttps) and port. Note: Do not set this if you are using APM in an AWS lambda function. APM Agents are designed to proxy their calls to the APM Server through the lambda extension. Instead, setELASTIC_APM_LAMBDA_APM_SERVER. For more info, seeAWS Lambda.

EnvironmentDjango/FlaskDefault
ELASTIC_APM_ENABLEDENABLEDtrue

Enable or disable the agent. When set to false, the agent will not collect any data or start any background threads.

dynamic config

EnvironmentDjango/FlaskDefault
ELASTIC_APM_RECORDINGRECORDINGtrue

Enable or disable recording of events. If set to false, then the Python agent does not send any events to the Elastic APM server, and instrumentation overhead is minimized. The agent will continue to poll the server for configuration changes.

dynamic config

EnvironmentDjango/FlaskDefault
ELASTIC_APM_LOG_LEVELLOG_LEVEL

Thelogging.logLevel at which theelasticapm logger will log. The available options are:

  • "off" (setslogging.logLevel to 1000)
  • "critical"
  • "error"
  • "warning"
  • "info"
  • "debug"
  • "trace" (setslogging.log_level to 5)

Options are case-insensitive

Note that this option doesn’t do anything with logging handlers. In order for any logs to be visible, you must either configure a handler (logging.basicConfig will do this for you) or setlog_file. This will also override any log level your app has set for theelasticapm logger.

EnvironmentDjango/FlaskDefaultExample
ELASTIC_APM_LOG_FILELOG_FILE"""/var/log/elasticapm/log.txt"

This enables the agent to log to a file. This is disabled by default. The agent will log at thelogging.logLevel configured withlog_level. Uselog_file_size to configure the maximum size of the log file. This log file will automatically rotate.

Note that settinglog_level is required for this setting to do anything.

Ifecs_logging is installed, the logs will automatically be formatted as ecs-compatible json.

EnvironmentDjango/FlaskDefaultExample
ELASTIC_APM_LOG_FILE_SIZELOG_FILE_SIZE"50mb""100mb"

The size of the log file iflog_file is set.

The agent always keeps one backup file when rotating, so the maximum space that the log files will consume is twice the value of this setting.

EnvironmentDjango/FlaskDefault
ELASTIC_APM_LOG_ECS_REFORMATTINGLOG_ECS_REFORMATTING"off"
Warning

This functionality is in technical preview and may be changed or removed in a future release. Elastic will work to fix any issues, but features in technical preview are not subject to the support SLA of official GA features.

Valid options:

  • "off"
  • "override"

Ifecs_logging is installed, setting this to"override" will cause the agent to automatically attempt to enable ecs-formatted logging.

For baselogging from the standard library, the agent will get the root logger, find any attached handlers, and for each, set the formatter toecs_logging.StdlibFormatter().

Ifstructlog is installed, the agent will override any configured processors withecs_logging.StructlogFormatter().

Note that this is a very blunt instrument that could have unintended side effects. If problems arise, please apply these formatters manually and leave this setting as"off". See theecs_logging docs for more information about using these formatters.

Also note that this setting does not facilitate shipping logs to Elasticsearch. We recommendFilebeat for that purpose.

EnvironmentDjango/FlaskDefault
ELASTIC_APM_TRANSPORT_CLASSTRANSPORT_CLASSelasticapm.transport.http.Transport

The transport class to use when sending events to the APM Server.

EnvironmentDjango/FlaskDefaultExample
ELASTIC_APM_SERVICE_NODE_NAMESERVICE_NODE_NAMENone"redis1"

The name of the given service node. This is optional and if omitted, the APM Server will fall back onsystem.container.id if available, andhost.name if necessary.

This option allows you to set the node name manually to ensure it is unique and meaningful.

EnvironmentDjango/FlaskDefaultExample
ELASTIC_APM_ENVIRONMENTENVIRONMENTNone"production"

The name of the environment this service is deployed in, e.g. "production" or "staging".

Environments allow you to easily filter data on a global level in the APM app. It’s important to be consistent when naming environments across agents. Seeenvironment selector in the APM app for more information.

Note

This feature is fully supported in the APM app in Kibana versions >= 7.2. You must use the query bar to filter for a specific environment in versions prior to 7.2.

EnvironmentDjango/FlaskDefaultExample
ELASTIC_APM_CLOUD_PROVIDERCLOUD_PROVIDER"auto""aws"

This config value allows you to specify which cloud provider should be assumed for metadata collection. By default, the agent will attempt to detect the cloud provider or, if that fails, will use trial and error to collect the metadata.

Valid options are"auto","aws","gcp", and"azure". If this config value is set to"none", then no cloud metadata will be collected.

EnvironmentDjango/FlaskDefaultExample
ELASTIC_APM_SECRET_TOKENSECRET_TOKENNoneA random string

This string is used to ensure that only your agents can send data to your APM Server. Both the agents and the APM Server have to be configured with the same secret token. An example to generate a secure secret token is:

python -c "import secrets; print(secrets.token_urlsafe(32))"
Warning

Secret tokens only provide any security if your APM Server uses TLS.

EnvironmentDjango/FlaskDefaultExample
ELASTIC_APM_API_KEYAPI_KEYNoneA base64-encoded string

This base64-encoded string is used to ensure that only your agents can send data to your APM Server. The API key can be created in theApplications UI.

Warning

API keys only provide any real security if your APM Server uses TLS.

EnvironmentDjango/FlaskDefaultExample
ELASTIC_APM_SERVICE_VERSIONSERVICE_VERSIONNoneA string indicating the version of the deployed service

A version string for the currently deployed version of the service. If youre deploys are not versioned, the recommended value for this field is the commit identifier of the deployed revision, e.g. the output ofgit rev-parse HEAD.

EnvironmentDjango/FlaskDefault
ELASTIC_APM_FRAMEWORK_NAMEFRAMEWORK_NAMEDepending on framework

The name of the used framework. For Django and Flask, this defaults todjango andflask respectively, otherwise, the default isNone.

EnvironmentDjango/FlaskDefault
ELASTIC_APM_FRAMEWORK_VERSIONFRAMEWORK_VERSIONDepending on framework

The version number of the used framework. For Django and Flask, this defaults to the used version of the framework, otherwise, the default isNone.

EnvironmentDjango/FlaskDefaultExample
ELASTIC_APM_FILTER_EXCEPTION_TYPESFILTER_EXCEPTION_TYPES[]['OperationalError', 'mymodule.SomeoneElsesProblemError']
multiple values separated by commas, without spaces

A list of exception types to be filtered. Exceptions of these types will not be sent to the APM Server.

dynamic config

EnvironmentDjango/FlaskDefaultExample
ELASTIC_APM_TRANSACTION_IGNORE_URLSTRANSACTION_IGNORE_URLS[]['/api/ping', '/static/*']
multiple values separated by commas, without spaces

A list of URLs for which the agent should not capture any transaction data.

Optionally,* can be used to match multiple URLs at once.

EnvironmentDjango/FlaskDefaultExample
ELASTIC_APM_TRANSACTIONS_IGNORE_PATTERNSTRANSACTIONS_IGNORE_PATTERNS[]['^OPTIONS ', 'myviews.Healthcheck']
multiple values separated by commas, without spaces

A list of regular expressions. Transactions with a name that matches any of the configured patterns will be ignored and not sent to the APM Server.

Note

as the the name of the transaction can only be determined at the end of the transaction, the agent might still cause overhead for transactions ignored through this setting. If agent overhead is a concern, we recommendtransaction_ignore_urls instead.

EnvironmentDjango/FlaskDefault
ELASTIC_APM_SERVER_TIMEOUTSERVER_TIMEOUT"5s"

A timeout for requests to the APM Server. The setting has to be provided induration format. If a request to the APM Server takes longer than the configured timeout, the request is cancelled and the event (exception or transaction) is discarded. Set toNone to disable timeouts.

Warning

If timeouts are disabled or set to a high value, your app could experience memory issues if the APM Server times out.

EnvironmentDjango/FlaskDefaultExample
ELASTIC_APM_HOSTNAMEHOSTNAMEsocket.gethostname()app-server01.example.com

The host name to use when sending error and transaction data to the APM Server.

EnvironmentDjango/FlaskDefault
ELASTIC_APM_AUTO_LOG_STACKSAUTO_LOG_STACKSTrue
set to"true" /"false"

If set toTrue (the default), the agent will add a stack trace to each log event, indicating where the log message has been issued.

This setting can be overridden on an individual basis by setting theextra-keystack:

logger.info('something happened', extra={'stack': False})
EnvironmentDjango/FlaskDefault
ELASTIC_APM_COLLECT_LOCAL_VARIABLESCOLLECT_LOCAL_VARIABLESerrors

Possible values:errors,transactions,all,off

The Elastic APM Python agent can collect local variables for stack frames. By default, this is only done for errors.

Note

Collecting local variables has a non-trivial overhead. Collecting local variables for transactions in production environments can have adverse effects for the performance of your service.

EnvironmentDjango/FlaskDefault
ELASTIC_APM_LOCAL_VAR_MAX_LENGTHLOCAL_VAR_MAX_LENGTH200

When collecting local variables, they will be converted to strings. This setting allows you to limit the length of the resulting string.

EnvironmentDjango/FlaskDefault
ELASTIC_APM_LOCAL_VAR_LIST_MAX_LENGTHLOCAL_VAR_LIST_MAX_LENGTH10

This setting allows you to limit the length of lists in local variables.

EnvironmentDjango/FlaskDefault
ELASTIC_APM_LOCAL_VAR_DICT_MAX_LENGTHLOCAL_VAR_DICT_MAX_LENGTH10

This setting allows you to limit the length of dicts in local variables.

EnvironmentDjango/FlaskDefault
ELASTIC_APM_SOURCE_LINES_ERROR_APP_FRAMESSOURCE_LINES_ERROR_APP_FRAMES5
ELASTIC_APM_SOURCE_LINES_ERROR_LIBRARY_FRAMESSOURCE_LINES_ERROR_LIBRARY_FRAMES5
ELASTIC_APM_SOURCE_LINES_SPAN_APP_FRAMESSOURCE_LINES_SPAN_APP_FRAMES0
ELASTIC_APM_SOURCE_LINES_SPAN_LIBRARY_FRAMESSOURCE_LINES_SPAN_LIBRARY_FRAMES0

By default, the APM agent collects source code snippets for errors. This setting allows you to modify the number of lines of source code that are being collected.

We differ between errors and spans, as well as library frames and app frames.

Warning

Especially for spans, collecting source code can have a large impact on storage use in your Elasticsearch cluster.

dynamic config

EnvironmentDjango/FlaskDefault
ELASTIC_APM_CAPTURE_BODYCAPTURE_BODYoff

For transactions that are HTTP requests, the Python agent can optionally capture the request body (e.g.POST variables).

Possible values:errors,transactions,all,off.

If the request has a body and this setting is disabled, the body will be shown as[REDACTED].

For requests with a content type ofmultipart/form-data, any uploaded files will be referenced in a special_files key. It contains the name of the field and the name of the uploaded file, if provided.

Warning

Request bodies often contain sensitive values like passwords and credit card numbers. If your service handles data like this, we advise to only enable this feature with care.

dynamic config

EnvironmentDjango/FlaskDefault
ELASTIC_APM_CAPTURE_HEADERSCAPTURE_HEADERStrue

For transactions and errors that happen due to HTTP requests, the Python agent can optionally capture the request and response headers.

Possible values:true,false

Warning

Request headers often contain sensitive values like session IDs and cookies. Seesanitizing data for more information on how to filter out sensitive data.

dynamic config

EnvironmentDjango/FlaskDefault
ELASTIC_APM_TRANSACTION_MAX_SPANSTRANSACTION_MAX_SPANS500

This limits the amount of spans that are recorded per transaction. This is helpful in cases where a transaction creates a very high amount of spans (e.g. thousands of SQL queries). Setting an upper limit will prevent edge cases from overloading the agent and the APM Server.

dynamic config

EnvironmentDjango/FlaskDefault
ELASTIC_APM_STACK_TRACE_LIMITSTACK_TRACE_LIMIT50

This limits the number of frames captured for each stack trace.

Setting the limit to0 will disable stack trace collection, while any positive integer value will be used as the maximum number of frames to collect. To disable the limit and always capture all frames, set the value to-1.

dynamic config

EnvironmentDjango/FlaskDefault
ELASTIC_APM_SPAN_STACK_TRACE_MIN_DURATIONSPAN_STACK_TRACE_MIN_DURATION"5ms"

By default, the APM agent collects a stack trace with every recorded span that has a duration equal to or longer than this configured threshold. While stack traces are very helpful to find the exact place in your code from which a span originates, collecting this stack trace does have some overhead. Tune this threshold to ensure that you only collect stack traces for spans that could be problematic.

To collect traces for all spans, regardless of their length, set the value to0.

To disable stack trace collection for spans completely, set the value to-1.

Except for the special values-1 and0, this setting should be provided induration format.

dynamic config

EnvironmentDjango/FlaskDefault
ELASTIC_APM_SPAN_FRAMES_MIN_DURATIONSPAN_FRAMES_MIN_DURATION"5ms"
Note

This config value is being deprecated. Usespan_stack_trace_min_duration instead.

dynamic config

EnvironmentDjango/FlaskDefault
ELASTIC_APM_SPAN_COMPRESSION_ENABLEDSPAN_COMPRESSION_ENABLEDTrue

Enable/disable span compression.

If enabled, the agent will compress very short, repeated spans into a single span, which is beneficial for storage and processing requirements. Some information is lost in this process, e.g. exact durations of each compressed span.

dynamic config

EnvironmentDjango/FlaskDefault
ELASTIC_APM_SPAN_COMPRESSION_EXACT_MATCH_MAX_DURATIONSPAN_COMPRESSION_EXACT_MATCH_MAX_DURATION"50ms"

Consecutive spans that are exact match and that are under this threshold will be compressed into a single composite span. This reduces the collection, processing, and storage overhead, and removes clutter from the UI. The tradeoff is that the DB statements of all the compressed spans will not be collected.

Two spans are considered exact matches if the following attributes are identical: * span name * span type * span subtype * destination resource (e.g. the Database name)

dynamic config

EnvironmentDjango/FlaskDefault
ELASTIC_APM_SPAN_COMPRESSION_SAME_KIND_MAX_DURATIONSPAN_COMPRESSION_SAME_KIND_MAX_DURATION"0ms" (disabled)

Consecutive spans to the same destination that are under this threshold will be compressed into a single composite span. This reduces the collection, processing, and storage overhead, and removes clutter from the UI. The tradeoff is that metadata such as database statements of all the compressed spans will not be collected.

Two spans are considered to be of the same kind if the following attributes are identical: * span type * span subtype * destination resource (e.g. the Database name)

dynamic config

EnvironmentDjango/FlaskDefault
ELASTIC_APM_EXIT_SPAN_MIN_DURATIONEXIT_SPAN_MIN_DURATION"0ms"

Exit spans are spans that represent a call to an external service, like a database. If such calls are very short, they are usually not relevant and can be ignored.

This feature is disabled by default.

Note

if a span propagates distributed tracing IDs, it will not be ignored, even if it is shorter than the configured threshold. This is to ensure that no broken traces are recorded.

dynamic config

EnvironmentDjango/FlaskDefault
ELASTIC_APM_API_REQUEST_SIZEAPI_REQUEST_SIZE"768kb"

The maximum queue length of the request buffer before sending the request to the APM Server. A lower value will increase the load on your APM Server, while a higher value can increase the memory pressure of your app. A higher value also impacts the time until data is indexed and searchable in Elasticsearch.

This setting is useful to limit memory consumption if you experience a sudden spike of traffic. It has to be provided insize format.

Note

Due to internal buffering of gzip, the actual request size can be a few kilobytes larger than the given limit. By default, the APM Server limits request payload size to1 MByte.

dynamic config

EnvironmentDjango/FlaskDefault
ELASTIC_APM_API_REQUEST_TIMEAPI_REQUEST_TIME"10s"

The maximum queue time of the request buffer before sending the request to the APM Server. A lower value will increase the load on your APM Server, while a higher value can increase the memory pressure of your app. A higher value also impacts the time until data is indexed and searchable in Elasticsearch.

This setting is useful to limit memory consumption if you experience a sudden spike of traffic. It has to be provided induration format.

Note

The actual time will vary between 90-110% of the given value, to avoid stampedes of instances that start at the same time.

EnvironmentDjango/FlaskDefault
ELASTIC_APM_PROCESSORSPROCESSORS['elasticapm.processors.sanitize_stacktrace_locals', 'elasticapm.processors.sanitize_http_request_cookies', 'elasticapm.processors.sanitize_http_headers', 'elasticapm.processors.sanitize_http_wsgi_env', 'elasticapm.processors.sanitize_http_request_body']

A list of processors to process transactions and errors. For more information, seeSanitizing Data.

Warning

We recommend always including the default set of validators if you customize this setting.

dynamic config

EnvironmentDjango/FlaskDefault
ELASTIC_APM_SANITIZE_FIELD_NAMESSANITIZE_FIELD_NAMES["password", "passwd", "pwd", "secret", "*key", "*token*", "*session*", "*credit*", "*card*", "*auth*", "*principal*", "set-cookie"]

A list of glob-matched field names to match and mask when using processors. For more information, seeSanitizing Data.

Warning

We recommend always including the default set of field name matches if you customize this setting.

dynamic config

EnvironmentDjango/FlaskDefault
ELASTIC_APM_TRANSACTION_SAMPLE_RATETRANSACTION_SAMPLE_RATE1.0

By default, the agent samples every transaction (e.g. request to your service). To reduce overhead and storage requirements, set the sample rate to a value between0.0 and1.0. We still record overall time and the result for unsampled transactions, but no context information, labels, or spans.

Note

This setting will be automatically rounded to 4 decimals of precision.

EnvironmentDjango/FlaskDefault
ELASTIC_APM_INCLUDE_PATHSINCLUDE_PATHS[]
multiple values separated by commas, without spaces

A set of paths, optionally using shell globs (seefnmatch for a description of the syntax). These are matched against the absolute filename of every frame, and if a pattern matches, the frame is considered to be an "in-app frame".

include_pathstakes precedence overexclude_paths.

EnvironmentDjango/FlaskDefault
ELASTIC_APM_EXCLUDE_PATHSEXCLUDE_PATHSVaries on Python version and implementation
multiple values separated by commas, without spaces

A set of paths, optionally using shell globs (seefnmatch for a description of the syntax). These are matched against the absolute filename of every frame, and if a pattern matches, the frame is considered to be a "library frame".

include_pathstakes precedence overexclude_paths.

The default value varies based on your Python version and implementation, e.g.:

  • PyPy3:['\*/lib-python/3/*', '\*/site-packages/*']
  • CPython 2.7:['\*/lib/python2.7/*', '\*/lib64/python2.7/*']
EnvironmentDjango/FlaskDefault
ELASTIC_APM_DEBUGDEBUGFalse

If your app is in debug mode (e.g. in Django withsettings.DEBUG = True or in Flask withapp.debug = True), the agent won’t send any data to the APM Server. You can override it by changing this setting toTrue.

EnvironmentDjango/FlaskDefault
ELASTIC_APM_DISABLE_SENDDISABLE_SENDFalse

If set toTrue, the agent won’t send any events to the APM Server, independent of any debug state.

EnvironmentDjango/FlaskDefault
ELASTIC_APM_INSTRUMENTINSTRUMENTTrue

If set toFalse, the agent won’t instrument any code. This disables most of the tracing functionality, but can be useful to debug possible instrumentation issues.

EnvironmentDjango/FlaskDefault
ELASTIC_APM_VERIFY_SERVER_CERTVERIFY_SERVER_CERTTrue

By default, the agent verifies the SSL certificate if an HTTPS connection to the APM Server is used. Verification can be disabled by changing this setting toFalse. This setting is ignored whenserver_cert is set.

EnvironmentDjango/FlaskDefault
ELASTIC_APM_SERVER_CERTSERVER_CERTNone

If you have configured your APM Server with a self-signed TLS certificate, or you just wish to pin the server certificate, you can specify the path to the PEM-encoded certificate via theELASTIC_APM_SERVER_CERT configuration.

Note

If this option is set, the agent only verifies that the certificate provided by the APM Server is identical to the one configured here. Validity of the certificate is not checked.

EnvironmentDjango/FlaskDefault
ELASTIC_APM_SERVER_CA_CERT_FILESERVER_CA_CERT_FILENone

By default, the agent will validate the TLS/SSL certificate of the APM Server using the well-known CAs curated by Mozilla, and provided by thecertifi package.

You can set this option to the path of a file containing a CA certificate that will be used instead.

Specifying this option is required when using self-signed certificates, unless server certificate validation is disabled.

EnvironmentDjango/FlaskDefault
ELASTIC_APM_USE_CERTIFIUSE_CERTIFITrue

By default, the Python Agent uses thecertifi certificate store. To use Python’s default mechanism for finding certificates, set this option toFalse.

EnvironmentDjango/FlaskDefault
ELASTIC_APM_METRICS_INTERVALMETRICS_INTERVAL30s

The interval in which the agent collects metrics. A shorter interval increases the granularity of metrics, but also increases the overhead of the agent, as well as storage requirements.

It has to be provided induration format.

EnvironmentDjango/FlaskDefault
ELASTIC_APM_DISABLE_METRICSDISABLE_METRICSNone

A comma-separated list of dotted metrics names that should not be sent to the APM Server. You can use* to match multiple metrics; for example, to disable all CPU-related metrics, as well as the "total system memory" metric, setdisable_metrics to:

"*.cpu.*,system.memory.total"
Note

This setting only disables thesending of the given metrics, not collection.

EnvironmentDjango/FlaskDefault
ELASTIC_APM_BREAKDOWN_METRICSBREAKDOWN_METRICSTrue

Enable or disable the tracking and collection of breakdown metrics. Setting this toFalse disables the tracking of breakdown metrics, which can reduce the overhead of the agent.

Note

This feature requires APM Server and Kibana >= 7.3.

EnvironmentDjango/FlaskDefault
ELASTIC_APM_PROMETHEUS_METRICSPROMETHEUS_METRICSFalse

Enable/disable the tracking and collection of metrics fromprometheus_client.

SeePrometheus metric set (beta) for more information.

Note

This feature is currently in beta status.

EnvironmentDjango/FlaskDefault
ELASTIC_APM_PROMETHEUS_METRICS_PREFIXPROMETHEUS_METRICS_PREFIXprometheus.metrics.

A prefix to prepend to Prometheus metrics names.

SeePrometheus metric set (beta) for more information.

Note

This feature is currently in beta status.

EnvironmentDjango/FlaskDefault
ELASTIC_APM_METRICS_SETSMETRICS_SETS["elasticapm.metrics.sets.cpu.CPUMetricSet"]

List of import paths for the MetricSets that should be used to collect metrics.

SeeCustom Metrics for more information.

EnvironmentDjango/FlaskDefault
ELASTIC_APM_CENTRAL_CONFIGCENTRAL_CONFIGTrue

When enabled, the agent will make periodic requests to the APM Server to fetch updated configuration.

SeeDynamic configuration for more information.

Note

This feature requires APM Server and Kibana >= 7.3.

EnvironmentDjango/FlaskDefault
ELASTIC_APM_GLOBAL_LABELSGLOBAL_LABELSNone

Labels added to all events, with the formatkey=value[,key=value[,...]]. Any labels set by application via the API will override global labels with the same keys.

Note

This feature requires APM Server >= 7.2.

EnvironmentDjango/FlaskDefault
ELASTIC_APM_DISABLE_LOG_RECORD_FACTORYDISABLE_LOG_RECORD_FACTORYFalse

By default in python 3, the agent installs aLogRecord factory that automatically adds tracing fields to your log records. Disable this behavior by setting this toTrue.

EnvironmentDjango/FlaskDefault
ELASTIC_APM_USE_ELASTIC_TRACEPARENT_HEADERUSE_ELASTIC_TRACEPARENT_HEADERTrue

To enabledistributed tracing, the agent sets a number of HTTP headers to outgoing requests made withinstrumented HTTP libraries. These headers (traceparent andtracestate) are defined in theW3C Trace Context specification.

Additionally, when this setting is set toTrue, the agent will setelasticapm-traceparent for backwards compatibility.

dynamic config

EnvironmentDjango/FlaskDefault
ELASTIC_APM_TRACE_CONTINUATION_STRATEGYTRACE_CONTINUATION_STRATEGYcontinue

This option allows some control on how the APM agent handles W3C trace-context headers on incoming requests. By default, thetraceparent andtracestate headers are used per W3C spec for distributed tracing. However, in certain cases it can be helpful tonot use the incomingtraceparent header. Some example use cases:

  • An Elastic-monitored service is receiving requests withtraceparent headers fromunmonitored services.
  • An Elastic-monitored service is publicly exposed, and does not want tracing data (trace-ids, sampling decisions) to possibly be spoofed by user requests.

Valid values are:

  • 'continue': The default behavior. An incomingtraceparent value is used to continue the trace and determine the sampling decision.
  • 'restart': Always ignores thetraceparent header of incoming requests. A new trace-id will be generated and the sampling decision will be made based ontransaction_sample_rate. Aspan link will be made to the incoming traceparent.
  • 'restart_external': If an incoming request includes thees vendor flag intracestate, then anytraceparent will be considered internal and will be handled as described for'continue' above. Otherwise, any'traceparent' is considered external and will be handled as described for'restart' above.

Starting with Elastic Observability 8.2, span links will be visible in trace views.

EnvironmentDjango/FlaskDefault
ELASTIC_APM_USE_ELASTIC_EXCEPTHOOKUSE_ELASTIC_EXCEPTHOOKFalse

If set toTrue, the agent will intercept the defaultsys.excepthook, which allows the agent to collect all uncaught exceptions.

EnvironmentDjango/FlaskDefault
ELASTIC_APM_INCLUDE_PROCESS_ARGSINCLUDE_PROCESS_ARGSFalse

Whether each transaction should have the process arguments attached. Disabled by default to save disk space.

EnvironmentDjangoDefault
ELASTIC_APM_DJANGO_TRANSACTION_NAME_FROM_ROUTEDJANGO_TRANSACTION_NAME_FROM_ROUTEFalse

By default, we use the function or class name of the view as the transaction name. Starting with Django 2.2, Django makes the route (e.g.users/<int:user_id>/) available on therequest.resolver_match object. If you want to use the route instead of the view name as the transaction name, set this config option totrue.

Note

in versions previous to Django 2.2, changing this setting will have no effect.

EnvironmentDjangoDefault
ELASTIC_APM_DJANGO_AUTOINSERT_MIDDLEWAREDJANGO_AUTOINSERT_MIDDLEWARETrue

To trace Django requests, the agent uses a middleware,elasticapm.contrib.django.middleware.TracingMiddleware. By default, this middleware is inserted automatically as the first item insettings.MIDDLEWARES. To disable the automatic insertion of the middleware, change this setting toFalse.

Some environment variables that are not specific to the APM agent can be used to configure the agent.

By usingHTTP_PROXY andHTTPS_PROXY, the agent can be instructed to use a proxy to connect to the APM Server. If both are set,HTTPS_PROXY takes precedence.

Note

The environment variables are case-insensitive.

To instruct the agent tonot use a proxy, you can use theNO_PROXY environment variable. You can either set it to a comma-separated list of hosts for which no proxy should be used (e.g.localhost,example.com) or use* to match any host.

This is useful ifHTTP_PROXY /HTTPS_PROXY is set for other reasons than agent / APM Server communication.

To tell the agent to use a different SSL certificate, you can use these environment variables. See alsoOpenSSL docs.

Please note that these variables may apply to other SSL/TLS communication in your service, not just related to the APM agent.

Note

These environment variables only take effect ifuse_certifi is set toFalse.

Some options require a unit, either duration or size. These need to be provided in a specific format.

Theduration format is used for options like timeouts. The unit is provided as a suffix directly after the number–without any separation by whitespace.

Example:5ms

Supported units

  • us (microseconds)
  • ms (milliseconds)
  • s (seconds)
  • m (minutes)

Thesize format is used for options like maximum buffer sizes. The unit is provided as suffix directly after the number, without and separation by whitespace.

Example:10kb

Supported units:

  • b (bytes)
  • kb (kilobytes)
  • mb (megabytes)
  • gb (gigabytes)
Note

We use the power-of-two sizing convention, e.g.1 kilobyte == 1024 bytes


[8]ページ先頭

©2009-2025 Movatter.jp