Ad Widget

Collapse

monitoring jdbc via jmx

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • chubbz327
    Junior Member
    • Feb 2013
    • 3

    #1

    monitoring jdbc via jmx

    I have successfully created items that monitor other jmx accessible values, but due to the quotes in the jdbc name(i am assuming), i keep getting not supported errors.


    For example
    for a jmx object named


    Catalina:type=DataSource,path=/,host=testing,class=javax.sql.DataSource,name="jdb c/test"

    what would be the corresponding key value.
  • Slash
    Member
    • May 2011
    • 64

    #2
    Use backslash before your double quote and it'll work.

    For example, I have this kind of JMX items :

    jmx["Catalina:type=ThreadPool,name=\"http-bio-8089\"",maxThreads]

    Comment

    • chubbz327
      Junior Member
      • Feb 2013
      • 3

      #3
      works...thanks

      Comment

      Working...