User Tools
onboarding:snmpmanager:troubleshooting_-_node_monitor_not_loading_issues
Differences
This shows you the differences between two versions of the page.
| Both sides previous revisionPrevious revision | |||
| onboarding:snmpmanager:troubleshooting_-_node_monitor_not_loading_issues [2019/03/04 12:42] – [Solution] ashevyakov | onboarding:snmpmanager:troubleshooting_-_node_monitor_not_loading_issues [2021/06/25 10:09] (current) – external edit 127.0.0.1 | ||
|---|---|---|---|
| Line 1: | Line 1: | ||
| + | ====== Troubleshooting - Node Monitor Not Loading Issues ====== | ||
| + | Author: Michelle McCausland | ||
| + | |||
| + | ===== Example Customer Request ===== | ||
| + | < | ||
| + | Agents which started the application earlier today appear to be operational, | ||
| + | |||
| + | |||
| + | ---- | ||
| + | |||
| + | ===== Solution ===== | ||
| + | |||
| + | The logs revealed this was caused by bad lat/long data being inserted into the database. | ||
| + | |||
| + | **Query to find bad lat/long data** | ||
| + | |||
| + | < | ||
| + | from network_element h, network_element n, map_details m | ||
| + | where n.map_details_id=m.id and n.parent_id=h.id and h.ne_type=' | ||
| + | and (m.latitude like " | ||
| + | |||
| + | If no rows are returned, then the issue is somewhere else. These are the sites that had the issue: | ||
| + | |||
| + | ^ Hub Id ^ Hub Name ^ Node Id ^ Node Name ^ Latitude | ||
| + | | 88567 | ATT_MS_UnivMississippi_40 | ||
| + | | 88568 | ATT_MS_UnivMississippi_41 | ||
| + | | 111778 | ||
| + | | 111778 | ||
| + | |||
| + | |||
| + | To fix it, first find the relevant map_details_id entries: | ||
| + | |||
| + | < | ||
| + | |||
| + | Then, null out the map_details_id in network_element for each node: | ||
| + | |||
| + | < | ||
| + | |||
| + | Then, delete the map_details_ids: | ||
| + | |||
| + | < | ||
| + | |||
| + | Reload the node monitor to ensure the issue is resolved. | ||