Get telemetry settings
GET<your-unleash-url>/api/admin/telemetry/settings
Provides the configured settings for telemetry information collection
Responses
- 200
telemetrySettingsSchema
- application/json
- Schema
- Example (auto)
Schema
versionInfoCollectionEnabledbooleanrequired
Whether collection of version info is enabled/active.
Example:
true
featureInfoCollectionEnabledbooleanrequired
Whether collection of feature usage metrics is enabled/active.
Example:
true
{
"versionInfoCollectionEnabled": true,
"featureInfoCollectionEnabled": true
}
Authorization: Authorization
name: Authorizationtype: apiKeyin: headerdescription: API key needed to access this API
- curl
- python
- go
- nodejs
- ruby
- csharp
- php
- java
- powershell
- CURL
curl -L '<your-unleash-url>/api/admin/telemetry/settings' \
-H 'Accept: application/json' \
-H 'Authorization: <Authorization>'
ResponseClear