Introduction:
How to change or modify the synchronization frequency or interval for the Datasource in NPC?
Environment:
NPC 6.1.x and above
Instructions:
On the NPC server.
1. Open a DOS command prompt and enter the following MySql commands.
2. Enter: mysql -P 3308 netqosprotal
3. Enter: SELECT SourceID, ConsoleName, PollInterval FROM netqosportal.data_sources2 ORDER BY SourceID ASC;
Note each SourceID for each datasource.
4. Enter: UPDATE netqosportal.data_sources2 set PollInterval='TTT' where SourceID='S';
Where 'TTT' is the time in sec and 'S' is the SourceID. (Default TTT is 300 which is 5 mins)
5. Repeat the UPDATE command for each Datasource using the Source ID.
No services have to be restarted.