get_application_metric_data
Retrieve application performance metrics from New Relic monitoring to analyze application health, track key performance indicators, and monitor system behavior over specified time periods.
Instructions
Get metric data for an application
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| app_id | Yes | ||
| metric_names | Yes | ||
| from_time | No | ||
| to_time | No |
Input Schema (JSON Schema)
{
"properties": {
"app_id": {
"title": "App Id",
"type": "string"
},
"from_time": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"title": "From Time"
},
"metric_names": {
"items": {
"type": "string"
},
"title": "Metric Names",
"type": "array"
},
"to_time": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"title": "To Time"
}
},
"required": [
"app_id",
"metric_names"
],
"type": "object"
}