If the Analyzer detail view server does not receive real-time data within a default threshold of 6 minutes, the status is shown as red in the Analyzer detail view Status window. This can be caused by such issues as network latency. One solution is to increase the threshold.
- Log on to the Analyzer detail view server through an SSH client (like putty) as a root user.
- Stop the crond service and verify the status with these commands:
service crond stop
service crond status
- Stop all the services and verify the megha service status with these commands:
/usr/local/megha/bin/stop-all-services.sh
/usr/local/megha/bin/megha-jetty.sh status
- Create a backup of the custom.properties file using the following command:
cp /usr/local/megha/conf/custom.properties /usr/local/megha/conf/backup_custom_backup.properties
- Edit the custom.properties file.
vi /usr/local/megha/conf/custom.properties
- Add the following property with threshold value in minutes:
realtime.probe.importer.perf.threshold=threshold_in_minutes
For example:
realtime.probe.importer.perf.threshold=20
- Save the file and exit.
- Start the megha service and verify the status with these commands:
/usr/local/megha/bin/megha-jetty.sh start
/usr/local/megha/bin/megha-jetty.sh status
- Start the crond service and verify the status with these commands:
service crond start
service crond status