• Post Reply Bookmark Topic Watch Topic
  • New Topic
programming forums Java Mobile Certification Databases Caching Books Engineering Micro Controllers OS Languages Paradigms IDEs Build Tools Frameworks Application Servers Open Source This Site Careers Other Pie Elite all forums
this forum made possible by our volunteer staff, including ...
Marshals:
  • Campbell Ritchie
  • Jeanne Boyarsky
  • Ron McLeod
  • Paul Clapham
  • Liutauras Vilda
Sheriffs:
  • paul wheaton
  • Rob Spoor
  • Devaka Cooray
Saloon Keepers:
  • Stephan van Hulst
  • Tim Holloway
  • Carey Brown
  • Frits Walraven
  • Tim Moores
Bartenders:
  • Mikalai Zaikin

is there any way to monitor application server when it is working ?

 
Ranch Hand
Posts: 551
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
thank you for reading my post

is there any application that help monitor an application server when it is working ?
for example , total active sessions , Connections , ...
i need this application to monitor my tomcat and sun application server , but if there is no application that help monitor both of them , then i will be happy to minitor at least one of them (TOMCAT)
 
Rancher
Posts: 43081
77
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Tomcat has the Manager web app built in, which you'll find at http://localhost:8080/manager/ or whatever address your server runs at. It gives you some basic stats about the server, and each web app that runs on it. The companion Admin web app at http://localhost:8080/admin/ lets you configure just about everything about Tomcat and the web apps it runs. I'm sure Suns server has something similar, or rather, much more sophisticated.
[ January 30, 2006: Message edited by: Ulf Dittmer ]
 
Greenhorn
Posts: 4
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
I had that same problem a while ago. Try Tomcat Probe (google for it), it should be able to do what you are looking for.
 
Sheriff
Posts: 13411
Firefox Browser VI Editor Redhat
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
To add to Ulf's excellent answer,
http://localhost:8080/manager/html is a gui version of the manager app.
I think everything you've mentioned is featured in it.

I haven't looked at Tomcat Probe yet but it's on my list.
 
reply
    Bookmark Topic Watch Topic
  • New Topic