Returns all applications reporting continuous profiling data for the authenticated agent, scoped to the given time range. Each application includes its available profile types (with unit and aggregation metadata) and detected languages
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
The unique identifier of the Upsun project
[a-z0-9]+"22sdxmbrs4lai"
The environment identifier
.+"main"
Start of the time range as a Unix timestamp, defaults to now minus 30 minutes.
1700000000
End of the time range as a Unix timestamp, defaults to now.
1700003600
Applications listed successfully
Map of application name to application details
{
"ingester": {
"name": "ingester",
"profile_types": {
"cpu": {
"name": "cpu",
"description": "Time spent running on the CPU",
"title": "CPU Time",
"unit": "nanoseconds",
"aggregation": "sum"
},
"alloc_objects": {
"name": "alloc_objects",
"description": "Number of objects allocated",
"title": "Allocations",
"unit": "count",
"aggregation": "sum"
}
},
"languages": ["go"]
},
"admin-pipeline": {
"name": "admin-pipeline",
"profile_types": {
"cpu": {
"name": "cpu",
"description": "Time spent running on the CPU",
"title": "CPU Time",
"unit": "nanoseconds",
"aggregation": "sum"
},
"wall-time": {
"name": "wall-time",
"description": "Wall clock time spent executing",
"title": "Wall Time",
"unit": "nanoseconds",
"aggregation": "sum"
}
},
"languages": ["php"]
}
}