Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I've built a simple alert monitor to display the health of various applications. This is configured by XML, as each monitor instance needs to show different metrics. An example configuration may be:

<machine>
  <monitors>
    <check type="connectivity" name="Production Server">
      <property key="host" value="ops01.corp" />
      <alarm />
    </check>
  </monitors>
</machine>

Currently, I'm storing this in the root of the C:\ drive of the server. What would be nice is if I could put it in the deploy directory of the JBoss server, and could somehow get a reference to it. Is this possible? I looked at MBeans but it didn't seem to support complex XML structures.

Robert

share|improve this question
What sort of application is it? If it's a WAR deployed in JBoss, can't the config file go inside the WAR? – skaffman Sep 19 '09 at 10:22

2 Answers

Try JOPR - http://www.jboss.org/jopr .

For custom metrics, you can write your own plug-in.

share|improve this answer

You can get an input stream for any file in the classpath by using the ClassLoader#getResourceAsStream(String name) method. Just pass the location of the file relative to the classpath.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.