Hi Experts, I would like to create the following table from the three events. ipv4-entry_prefix network-instance_name interface
----------------------------------------------------------------------
1.1.1.0/24 VRF_1001 Ethernet48 Both event#1 and event#2 have "tags.next-hop-group" field and both event#2 and event#3 have "tags.index" field.All events are stored in the same index. I tried to write a proper SPL to achieve the above, but I couldn't. Could you please tell me how to achieve this? - event#1
{
"name": "fib",
"timestamp": 1717571778600,
"tags": {
"ipv4-entry_prefix": "1.1.1.0/24",
"network-instance_name": "VRF_1001",
"next-hop-group": "1297036705567609741",
"source": "r0",
"subscription-name": "fib"
}
}
- event#2
{
"name": "fib",
"timestamp": 1717572745136,
"tags": {
"index": "140400192798928",
"network-instance_name": "VRF_1001",
"next-hop-group": "1297036705567609741",
"source": "r0",
"subscription-name": "fib"
},
"values": {
"index": "140400192798928"
}
}
-event#3
{
"name": "fib",
"timestamp": 1717572818890,
"tags": {
"index": "140400192798928",
"network-instance_name": "VRF_1001",
"source": "r0",
"subscription-name": "fib"
},
"values": {
"interface": "Ethernet48"
} Many thanks, Kenji
... View more