get_bare_metal_neighbors
Identify other servers sharing the same physical host as a specified bare metal server using its label, hostname, or UUID to assess resource isolation and potential contention.
Instructions
Get neighbors (other servers on same physical host) for a bare metal server. Smart identifier resolution: use server label, hostname, or UUID.
Args: server_identifier: The bare metal server label, hostname, or ID
Returns: List of neighboring servers
Input Schema
Name | Required | Description | Default |
---|---|---|---|
server_identifier | Yes |
Input Schema (JSON Schema)
{
"properties": {
"server_identifier": {
"title": "Server Identifier",
"type": "string"
}
},
"required": [
"server_identifier"
],
"type": "object"
}