DynaTrace Plugin
The DynaTrace Log plugin enables pushing logs to DynaTrace.
Enterprise Feature
Custom logging is available as an add-on as part of an enterprise plan. If you would like to purchase this feature, please contact us at sales@zuplo.com or reach out to your account manager.
Most enterprise features can be used in a trial mode for a limited time. Feel free to use enterprise features for development and testing purposes.
Setup
To add the DynaTrace logging plugin to your Zuplo project, add the following
code to your zuplo.runtime.ts
file. Set the url
parameter to the value of
your DynaTrace host and the DYNATRACE_API_TOKEN
environment variable to your
DynaTrace API token. The API Token requires the events.ingest
scope.
Any custom fields you want to include in the log entry can be added to the
fields
property. These values will be appended to every log entry.
import { RuntimeExtensions, DynaTraceLoggingPlugin, environment, } from "@zuplo/runtime"; export function runtimeInit(runtime: RuntimeExtensions) { runtime.addPlugin( new DynaTraceLoggingPlugin({ url: "https://xxxxxxx.live.dynatrace.com/api/v2/logs/ingest", apiToken: environment.DYNATRACE_API_TOKEN, fields: { field1: "value1", field2: "value2", }, }), ); }ts
Standard Fields
Every log entry will include the following fields:
timestamp
- The time the log was createdseverity
- The level of the log, for exampleERROR
,INFO
, etc.custom.environmentType
- Where the Zuplo API is running. Values areedge
,working-copy
, orlocal
custom.environmentStage
- If the environment isworking-copy
,preview
, orproduction
requestId
- The UUID of the request (the value of thezp-rid
header)custom.atomicCounter
- An atomic number that's used to order logs that have the same timestampcustom.rayId
- The network provider identifier (i.e. Cloudflare RayID) of the request