0

is there any Mule components that checks the status of Application Resources like CPU, DISK, MEMORY usage and integration like JDBC, MQ

example :

Application : Google Chrome 
Resources :  
    CPU usage = 30%,
    DISK usage = 25%
    MEMORY usage = 19%

Integrations : 
    type : JDBC
    name : Oracle DB
    status : Connection Failed

    type : MQ
    name : Rabbit MQ
    status : Connected
teodoro
  • 247
  • 7
  • 21

1 Answers1

0

You could create a Mule transformer to load the system resources into the payload, Java code to obtain recourse info can be found here How to monitor the computer's cpu, memory, and disk usage in Java?

Community
  • 1
  • 1
sky.high
  • 3
  • 1
  • 3
  • hello @sky.high, base on the link above that you attached. i was kind of wondering where i could find the implementation on how to check the percentage of the cpu, disk memory usage of the application(Google Chrome). – teodoro Nov 03 '16 at 15:37