1

I have 2-3 application(of type war and ear) deployed on jboss 5.0.1 GA.Actually i need a way to check the list of completely deployed applications without opening the actual application.There is a way to see that by using :-

twiddle.sh query 'jboss.web.deployment:*

' but it also shows the incomplete deployed application apart from deployed.

avinash
  • 163
  • 2
  • 12

2 Answers2

1

You may have to create a script (shell/groovy etc) to get the list of MBeans (using the command you already have) and then iterate through the results to show only the ones with attribute State = 3 (using twiddle get option).

helios
  • 2,603
  • 4
  • 21
  • 26
0

Please use this command:-

./twiddle.sh query "jboss.web.deployment:*"
Draken
  • 3,134
  • 13
  • 34
  • 54
Gaur
  • 1
  • 7