Hi
How do I globally disable EnergyWise statistics collection in my NPM 10.3 installation?
I am also currently searching for this answer. I found an older KB article for 9.5, but there is no NPM_Devices table in our installation.
Thanks,
Romeo
any answer to this yet? i assume it is a a SQL code to remove all the energywise entries from the pollers table... the same has to be done to disable topology in 10.2
The table you all are interested in is Pollers.
DELETE FROM Pollers WHERE PollerType='N.EnergyWise.SNMP.Cisco'
does the trick.
HTH
Vita
brillint, thank you!!! worked a treat
This still works in late 2017. This is the SQL query I used to remove EnergyWise monitoring from all my devices.
UPDATE PollersSET Enabled = '0'WHERE PollerType = 'N.EnergyWise.SNMP.Cisco'AND Enabled = 1