- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎03-30-2017 07:20 PM
Hi all,
Quick question.. I have Tomcat installed on Linux server. I'm not sure how discovery classification works for a tomcat server?
Solved! Go to Solution.
- Labels:
-
Discovery
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎03-30-2017 08:09 PM
Tomcat is handled by a Process classifier.
Navigate to Discovery Definition > CI Classification > Processes (type "Processes" in the nav filter to make it easier), and you'll see the entry for tomcat.
It will launch when the process parameters (pulled in from the "Unix ADM" MultiProbe -- Application Dependency Mapping) are evaluated. This multiprobe handles both network connections (lsof) and active processes (ps).
Actual command for network connections: lsof -iTCP -n -P -F pcnfT
Command for processess: ps awwxo pid,ppid,command | sed -n '/<defunct>/!p'
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎03-30-2017 08:09 PM
Tomcat is handled by a Process classifier.
Navigate to Discovery Definition > CI Classification > Processes (type "Processes" in the nav filter to make it easier), and you'll see the entry for tomcat.
It will launch when the process parameters (pulled in from the "Unix ADM" MultiProbe -- Application Dependency Mapping) are evaluated. This multiprobe handles both network connections (lsof) and active processes (ps).
Actual command for network connections: lsof -iTCP -n -P -F pcnfT
Command for processess: ps awwxo pid,ppid,command | sed -n '/<defunct>/!p'