Interface Status Change MX Message¶
interface_status_change message is generated by Interface Status Discovery
service when create Event.
Message Headers¶
- Message-Type
- Type of message. Always
interface_status_change. - Sharding-Key
- Key for consistent sharding.
- Labels
- Managed Object's effective labels.
Message Format¶
Message contains JSON object, containing objects of following structure
| Name | Type | Description |
|---|---|---|
| name | String | Interface name |
| description | String | Interface description |
| status | Bool | Interface oper status |
| managed_object | Object | Managed Object details |
| id | String | Managed Object's ID |
| name | String | Managed Object's Name |
| description | String | Managed Object's Description |
| address | String | Managed Object's Address |
| administrative_domain | Object | Administrative Domain details |
| id | String | Administrative Domain's ID |
| name | String | Administrative Domain's name |
| profile | Object | SA Profile details |
| id | String | SA Profile's ID |
| name | String | SA Profile's name |
Example¶
{
"name": "Gi 1/0/3",
"description": "<< User port 1 >>",
"status": false,
"managed_object": {
"id": 1111,
"name": "device2",
"description": null,
"address": "10.10.10.1",
"profile": {
"name": "Eltex.MES"
},
"administrative_domain": {
"name": "default"
}
}
}