The SDN-R Websocketmanager is a server which a client can connect to, to receive NETCONF - notifications forwarded by the the devicemanagers. To get rid of all old protocol issues we redesigned all the messages.
...
Code Block |
---|
{ "event-time": "2021-03-12T05:08:55.3Z", "type": "urn:opendaylight:params:xml:ns:yang:devicemanager@2019-01-09:object-creation-notification", "node-id": "SDN-Controller-0", "data": { "object-id-ref": "sim1", "counter": 7, "time-stamp": "2021-03-12T05:08:55.2Z" } } |
Properties:
property | description |
---|---|
node-id | node-id which is the source the notification |
event-time | timestamp of the notification |
type | <namespace>@<revision>:<notification-type> |
data | notification itself |
...