get_application_metrics
Retrieve available performance metrics for a specific New Relic application to monitor and analyze application health, performance data, and operational insights.
Instructions
Get available metrics for an application
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| app_id | Yes | ||
| names | No |
Input Schema (JSON Schema)
{
"properties": {
"app_id": {
"title": "App Id",
"type": "string"
},
"names": {
"anyOf": [
{
"items": {
"type": "string"
},
"type": "array"
},
{
"type": "null"
}
],
"default": null,
"title": "Names"
}
},
"required": [
"app_id"
],
"type": "object"
}