Get telemetry settings
GET <your-unleash-url>/api/admin/telemetry/settings
Authorization
name: Authorizationtype: apiKeyin: headerdescription: API key needed to access this API
Provides the configured settings for telemetry information collection
Request
Responses
- 200
telemetrySettingsSchema
- application/json
- Schema
- Example (from schema)
Schema
- versionInfoCollectionEnabled boolean required
Whether collection of version info is enabled/active.
- featureInfoCollectionEnabled boolean required
Whether collection of feature usage metrics is enabled/active.
{
"versionInfoCollectionEnabled": true,
"featureInfoCollectionEnabled": true
}
Authorization
name: Authorizationtype: apiKeyin: headerdescription: API key needed to access this API
Request
Request
curl / cURL
curl -L -X GET '<your-unleash-url>/api/admin/telemetry/settings' \
-H 'Accept: application/json' \
-H 'Authorization: <API_KEY_VALUE>'
python / requests
curl -L -X GET '<your-unleash-url>/api/admin/telemetry/settings' \
-H 'Accept: application/json' \
-H 'Authorization: <API_KEY_VALUE>'
go / native
curl -L -X GET '<your-unleash-url>/api/admin/telemetry/settings' \
-H 'Accept: application/json' \
-H 'Authorization: <API_KEY_VALUE>'
nodejs / axios
curl -L -X GET '<your-unleash-url>/api/admin/telemetry/settings' \
-H 'Accept: application/json' \
-H 'Authorization: <API_KEY_VALUE>'
ruby / Net::HTTP
curl -L -X GET '<your-unleash-url>/api/admin/telemetry/settings' \
-H 'Accept: application/json' \
-H 'Authorization: <API_KEY_VALUE>'
csharp / RestSharp
curl -L -X GET '<your-unleash-url>/api/admin/telemetry/settings' \
-H 'Accept: application/json' \
-H 'Authorization: <API_KEY_VALUE>'
php / cURL
curl -L -X GET '<your-unleash-url>/api/admin/telemetry/settings' \
-H 'Accept: application/json' \
-H 'Authorization: <API_KEY_VALUE>'
java / OkHttp
curl -L -X GET '<your-unleash-url>/api/admin/telemetry/settings' \
-H 'Accept: application/json' \
-H 'Authorization: <API_KEY_VALUE>'
powershell / RestMethod
curl -L -X GET '<your-unleash-url>/api/admin/telemetry/settings' \
-H 'Accept: application/json' \
-H 'Authorization: <API_KEY_VALUE>'