This discussion has been locked. The information referenced herein may be inaccurate due to age, software updates, or external references.
You can no longer post new replies to this discussion. If you have a similar question you can start a new discussion in this forum.

Nodes by Country - Modern Dashboard

Hi - is there a way nodes can be identified via Country via swql on a modern dashboard

so if a node contains the letter 3 it is UK based etc as per below

3 - UK

5 - Roi

7 - NL

9 - BE

thanks in advance

Parents
  • I use SWQL in modern dashboard, But I save my city data in Table Orion.NodesCustomProperties

    SELECT TOP 10 ncpg_province, count(ncpg_province) as num_province
    FROM Orion.NodesCustomProperties
    GROUP BY ncpg_province
    ORDER BY num_province DESC

Reply
  • I use SWQL in modern dashboard, But I save my city data in Table Orion.NodesCustomProperties

    SELECT TOP 10 ncpg_province, count(ncpg_province) as num_province
    FROM Orion.NodesCustomProperties
    GROUP BY ncpg_province
    ORDER BY num_province DESC

Children
No Data