Out of curiosity, you can use the webaccess* to see some of that stuff via
jmx.
You just need to open the console and execute...

// Groovy code
// ********************************************************************
import java.lang.management.ManagementFactory

def server = ManagementFactory.getPlatformMBeanServer()
def beans = server.queryMBeans(null, null)
println("We have ${(beans ? beans.size() : 0)} bean(s)")

beans?.each { bean ->
  println()
  println("---------------------------------------------")
  println("  ${bean.objectName}: ${bean.className}")
}
// ********************************************************************

https://dl.dropboxusercontent.com/u/1459144/tomee-list/mbeans.png

... or you can simply use jconsole.

It would be nice to have a tree with all the mbeans... hmmm maybe we will
have it. :)

[]s,
Thiago.

webaccess*: oh boy... I still didn't rename it!



On Thu, Nov 7, 2013 at 7:44 AM, Howard W. Smith, Jr. <[email protected]
> wrote:

> +1 Romain, thanks.
>
> On Thu, Nov 7, 2013 at 7:30 AM, Romain Manni-Bucau <[email protected]
> >wrote:
>
> > well, before working on [monitoring] and launching sirona I evaluated
> > hawtio. It is really nice but has big drawbacks which are blocking to
> > be usable for me (I don't say it is a bad solution, just it doesn't
> > fit my needs):
> >
>
> does not fit my needs, too
>
>
> > 1) it is not Java (well the solutions are working but not entreprise
> > friendly IMO, in particular for monitoring where you don't want to
> > loose time learning a techno)
> >
>
> thanks! that says a lot!
>
>
> > 2) it is JMX based (JMX is important but there are a lot of other things)
> > 3) when I tested I didn't find how to aggregate servers (maybe you can
> now)
> > 4) it is not *easily* pluggable (you can doing an overlay which is not
> > a solution)
> > 5) there is no real agents (it is mainly a JMX gui)
> > 6) there is no counter for perfs
> >
> > surely few others...
> >
>

Reply via email to