list_metric_names_for_host
Retrieve metric names and values for a specific application host using REST v2. Input application ID and host ID to query data efficiently via New Relic MCP Server.
Instructions
List metric names and values for a specific application host (REST v2).
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| application_id | Yes | ||
| auto_paginate | No | ||
| host_id | Yes | ||
| name | No | ||
| page | No | ||
| region | No |
Input Schema (JSON Schema)
{
"properties": {
"application_id": {
"type": "number"
},
"auto_paginate": {
"type": "boolean"
},
"host_id": {
"type": "number"
},
"name": {
"type": "string"
},
"page": {
"type": "number"
},
"region": {
"enum": [
"US",
"EU"
],
"type": "string"
}
},
"required": [
"application_id",
"host_id"
],
"type": "object"
}