This section provides detailed information about the Performance Monitoring API, which allows you to monitor and analyze the performance of your applications and services.
Features
- Real-time monitoring
- Performance metrics
- Alerting system
- Data visualization
Usage
To use the Performance Monitoring API, you need to make a GET request to the following endpoint:
GET /en/api-docs/tools/performance-monitoring
Parameters
app_id
: The unique identifier of the application you want to monitor.metric
: The specific performance metric you want to retrieve. (e.g., cpu_usage, memory_usage)
Example
curl -X GET "https://api.example.com/en/api-docs/tools/performance-monitoring?app_id=12345&metric=cpu_usage"
Response
The API will return a JSON object containing the requested performance metrics. Here is an example response:
{
"cpu_usage": {
"timestamp": "2023-01-01T12:00:00Z",
"value": 80.5
}
}
For more information about the API response format, please refer to our API Reference.
Additional Resources
Performance Monitoring Dashboard