User Tools

Site Tools


resolution_area:prometheus_resolutions:res-p9117

This is an old revision of the document!


NodeMonitorPotentialLoadingIssues

Level: Major

Purpose: Notify operations that a network element name has been added/renamed that can not be rendered in the Node Monitor

Scenario: A network element name has the potential to stop the Node Monitor from loading

Resolution: Rename network element to remove any double quotes, en dash, or em dash

Manual Action Steps: Run the following query to check for network element names with unsupported characters.

select 
    ne.id, ne.name, ne.last_updated
from
    network_element ne
where
    ne.ne_type != 'Small Cell'
        and (ne.name like '%"%'
        or ne.name like '%–%'
        or ne.name like '%—%')
order by ne.last_updated;

Auto Clear: Will not clear until the unsupported characters have been removed from network element name

resolution_area/prometheus_resolutions/res-p9117.1651851314.txt.gz · Last modified: 2022/05/06 16:35 by 10.91.110.100