Request the open telemetry trace file exporter config
GET /api
Response
200 — The requested OpenTelemetry trace file export configuration.
EnabledbooleanMaxStorageSizeMegabytesintegerRetentionDaysinteger
Example Response
JSON
{
"Enabled": true,
"MaxStorageSizeMegabytes": 0,
"RetentionDays": 0
}Modify OpenTelemetry trace file export configuration
PUT /api
Request Body
Enabledboolean (required)MaxStorageSizeMegabytesinteger (required)RetentionDaysinteger (required)
Response
200 — The configuration response for modifying OpenTelemetry trace file export configuration
EnabledbooleanMaxStorageSizeMegabytesintegerRetentionDaysinteger
Example Request
JSON
{
"Enabled": true,
"MaxStorageSizeMegabytes": 0,
"RetentionDays": 0
}Example Response
JSON
{
"Enabled": true,
"MaxStorageSizeMegabytes": 0,
"RetentionDays": 0
}