Integrate with application log files
The contents of the service.monitor monitoring log files can not only be stored in local log files such as ct-monitor.log
in the Tomcat log folder, but can also be sent directly via GELF log to the Logstash pipeline of Analytics.
Monitoring
The following changes must be made to the application.properties
file of service.monitor Monitoring:
# set this to 'true' if a Logstash server is available in your environment
logging.gelf.enabled=true
# the host name of the logstash server
logging.gelf.host=localhost
# the port of the logstash server
logging.gelf.port=12202
# the protocol of the logstash server (udp | tcp)
logging.gelf.protocol=udp
# a reasonably unique value that identifies your application (facility)
logging.gelf.identifier=monitoring
The above configuration assumes that the Logstash process is running on the same machine as the Tomcat.
Check other con terra products for the properties listed above. If available, these can also be integrated with Analytics. |