search_entities
Find specific entities in New Relic by name, type, or tags using a search query. Filter results by entity types and account ID for precise data retrieval.
Instructions
Search for entities in New Relic by name, type, or tags
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| entity_types | No | Filter by entity types (e.g., APPLICATION, HOST) | |
| query | Yes | Search query for entities | |
| target_account_id | No | Optional New Relic account ID |
Input Schema (JSON Schema)
{
"properties": {
"entity_types": {
"description": "Filter by entity types (e.g., APPLICATION, HOST)",
"items": {
"type": "string"
},
"type": "array"
},
"query": {
"description": "Search query for entities",
"type": "string"
},
"target_account_id": {
"description": "Optional New Relic account ID",
"type": "string"
}
},
"required": [
"query"
],
"type": "object"
}