Description

PTX EVO boxes are sending telemetry data for Label Switched Paths (LSP) even when no active RSVP LSPs are configured. This data is incorrectly parsed by the customer's collector, leading to excessive logging and "no LSP found" messages.

Symptoms

  • PTX EVO boxes send data for the sensor /junos/services/label-switched-path/usage even when no LSPs are configured.

  • If there is a segment routing (SR) configuration, it will cause the issue. The LSP statistics are taking count from SR, which may lead to this problem.

Config:

device> show configuration services analytics
streaming-server paragon {
   remote-address 10.1.1.1;
   remote-port 4000;
}
sensor lsp {
   server-name paragon;
   export-name paragon;
   resource /junos/services/label-switched-path/usage/;
}

Sample Command Output: 

No Active LSP on the box

device> show mpls lsp

Ingress LSP: 0 sessions
Total 0 displayed, Up 0, Down 0

Egress LSP: 0 sessions
Total 0 displayed, Up 0, Down 0

Transit LSP: 0 sessions
Total 0 displayed, Up 0, Down 0

Database Query Results:

Receiving telemetry data for the sensor /junos/services/label-switched-path/usage/

select * from "lsp"

name: lsp

time                componentId jkey                                                                                                            jvalue        sensorName                                                                                              sequenceNumber subComponentId systemId                                timestamp    versionMajor versionMinor

----                ----------- ----                                                                                                            ------        ----------                                                                                              -------------- -------------- --------                                ---------    ------------ ------------

2024-07-03T20:15:20Z 0          /lsp_stats_records[name='L-ISIS-10.220.1.1' and instance_identifier='0' and counter_name='oc-22']/byte_rate     0             lsp:/junos/services/label-switched-path/usage/:/junos/services/label-switched-path/usage/:evo-aftmand-bt 1652          0             jtac-ptx10008-scapa-r2004-re0:10.220.1.2 1720037738449 1           0

2024-07-03T20:15:20Z 0          /lsp_stats_records[name='L-ISIS-10.220.1.1' and instance_identifier='0' and counter_name='oc-22']/bytes         0             lsp:/junos/services/label-switched-path/usage/:/junos/services/label-switched-path/usage/:evo-aftmand-bt 1652          0             jtac-ptx10008-scapa-r2004-re0:10.220.1.2 1720037738449 1           0

2024-07-03T20:15:20Z 0          /lsp_stats_records[name='L-ISIS-10.220.1.1' and instance_identifier='0' and counter_name='oc-22']/packets       0             lsp:/junos/services/label-switched-path/usage/:/junos/services/label-switched-path/usage/:evo-aftmand-bt 1652          0             jtac-ptx10008-scapa-r2004-re0:10.220.1.2 1720037738449 1           0

2024-07-03T20:15:20Z 0          /lsp_stats_records[name='ae0-et-0/0/4' and instance_identifier='0' and counter_name='oc-1024']/packets          0             lsp:/junos/services/label-switched-path/usage/:/junos/services/label-switched-path/usage/:evo-aftmand-bt 1652          0             jtac-ptx10008-scapa-r2004-re0:10.220.1.2 1720037738449 1           0

2024-07-03T20:15:20Z 2          /lsp_stats_records[name='ae1-et-2/0/1' and instance_identifier='0' and counter_name='oc-1057']/byte_rate        640012208     lsp:/junos/services/label-switched-path/usage/:/junos/services/label-switched-path/usage/:evo-aftmand-bt 1652          0             jtac-ptx10008-scapa-r2004-re0:10.220.1.2 1720037738442 1           0

2024-07-03T20:15:20Z 2          /lsp_stats_records[name='ae0-et-2/0/0' and instance_identifier='0' and counter_name='oc-1056']/byte_rate        0             lsp:/junos/services/label-switched-path/usage/:/junos/services/label-switched-path/usage/:evo-aftmand-bt 1652          0             jtac-ptx10008-scapa-r2004-re0:10.220.1.2 1720037738442 1           0

Solution

  • The issue is observed only on EVO boxes and not on MX devices.
  • As a workaround you can remove the sensor config for /junos/services/label-switched-path/usage/
  • It is resolved via PR1771963.

Modification History

2024-08-05 : Article Created