2 * collectd/java - org/collectd/java/GenericJMXConfConnection.java
3 * Copyright (C) 2009,2010 Florian octo Forster
5 * This program is free software; you can redistribute it and/or modify it
6 * under the terms of the GNU General Public License as published by the
7 * Free Software Foundation; only version 2 of the License is applicable.
9 * This program is distributed in the hope that it will be useful, but
10 * WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
12 * General Public License for more details.
14 * You should have received a copy of the GNU General Public License along
15 * with this program; if not, write to the Free Software Foundation, Inc.,
16 * 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
19 * Florian octo Forster <octo at verplant.org>
22 package org.collectd.java;
24 import java.util.List;
26 import java.util.Iterator;
27 import java.util.ArrayList;
28 import java.util.HashMap;
30 import javax.management.MBeanServerConnection;
31 import javax.management.ObjectName;
32 import javax.management.MalformedObjectNameException;
34 import javax.management.remote.JMXServiceURL;
35 import javax.management.remote.JMXConnector;
36 import javax.management.remote.JMXConnectorFactory;
38 import org.collectd.api.Collectd;
39 import org.collectd.api.PluginData;
40 import org.collectd.api.OConfigValue;
41 import org.collectd.api.OConfigItem;
43 class GenericJMXConfConnection
45 private String _username = null;
46 private String _password = null;
47 private String _host = null;
48 private String _instance_prefix = null;
49 private String _service_url = null;
50 private MBeanServerConnection _jmx_connection = null;
51 private List<GenericJMXConfMBean> _mbeans = null;
56 private String getConfigString (OConfigItem ci) /* {{{ */
58 List<OConfigValue> values;
61 values = ci.getValues ();
62 if (values.size () != 1)
64 Collectd.logError ("GenericJMXConfConnection: The " + ci.getKey ()
65 + " configuration option needs exactly one string argument.");
70 if (v.getType () != OConfigValue.OCONFIG_TYPE_STRING)
72 Collectd.logError ("GenericJMXConfConnection: The " + ci.getKey ()
73 + " configuration option needs exactly one string argument.");
77 return (v.getString ());
78 } /* }}} String getConfigString */
80 private void connect () /* {{{ */
82 JMXServiceURL service_url;
83 JMXConnector connector;
86 if (_jmx_connection != null)
90 if (this._password != null)
94 if (this._username == null)
95 this._username = new String ("monitorRole");
97 credentials = new String[] { this._username, this._password };
99 environment = new HashMap ();
100 environment.put (JMXConnector.CREDENTIALS, credentials);
105 service_url = new JMXServiceURL (this._service_url);
106 connector = JMXConnectorFactory.connect (service_url, environment);
107 _jmx_connection = connector.getMBeanServerConnection ();
111 Collectd.logError ("GenericJMXConfConnection: "
112 + "Creating MBean server connection failed: " + e);
115 } /* }}} void connect */
121 * Host "tomcat0.mycompany"
122 * ServiceURL "service:jmx:rmi:///jndi/rmi://localhost:17264/jmxrmi"
123 * Collect "java.lang:type=GarbageCollector,name=Copy"
124 * Collect "java.lang:type=Memory"
128 public GenericJMXConfConnection (OConfigItem ci) /* {{{ */
129 throws IllegalArgumentException
131 List<OConfigItem> children;
132 Iterator<OConfigItem> iter;
134 this._mbeans = new ArrayList<GenericJMXConfMBean> ();
136 children = ci.getChildren ();
137 iter = children.iterator ();
138 while (iter.hasNext ())
140 OConfigItem child = iter.next ();
142 if (child.getKey ().equalsIgnoreCase ("Host"))
144 String tmp = getConfigString (child);
148 else if (child.getKey ().equalsIgnoreCase ("User"))
150 String tmp = getConfigString (child);
152 this._username = tmp;
154 else if (child.getKey ().equalsIgnoreCase ("Password"))
156 String tmp = getConfigString (child);
158 this._password = tmp;
160 else if (child.getKey ().equalsIgnoreCase ("ServiceURL"))
162 String tmp = getConfigString (child);
164 this._service_url = tmp;
166 else if (child.getKey ().equalsIgnoreCase ("InstancePrefix"))
168 String tmp = getConfigString (child);
170 this._instance_prefix = tmp;
172 else if (child.getKey ().equalsIgnoreCase ("Collect"))
174 String tmp = getConfigString (child);
177 GenericJMXConfMBean mbean;
179 mbean = GenericJMX.getMBean (tmp);
181 throw (new IllegalArgumentException ("No such MBean defined: "
182 + tmp + ". Please make sure all `MBean' blocks appear "
183 + "before (above) all `Connection' blocks."));
184 Collectd.logDebug ("GenericJMXConfConnection: " + this._host + ": Add " + tmp);
185 this._mbeans.add (mbean);
189 throw (new IllegalArgumentException ("Unknown option: "
193 if (this._service_url == null)
194 throw (new IllegalArgumentException ("No service URL was defined."));
195 if (this._mbeans.size () == 0)
196 throw (new IllegalArgumentException ("No valid collect statement "
198 } /* }}} GenericJMXConfConnection (OConfigItem ci) */
200 public void query () /* {{{ */
206 if (this._jmx_connection == null)
209 Collectd.logDebug ("GenericJMXConfConnection.query: "
210 + "Reading " + this._mbeans.size () + " mbeans from "
211 + ((this._host != null) ? this._host : "(null)"));
213 pd = new PluginData ();
214 pd.setHost ((this._host != null) ? this._host : "localhost");
215 pd.setPlugin ("GenericJMX");
217 for (int i = 0; i < this._mbeans.size (); i++)
221 status = this._mbeans.get (i).query (this._jmx_connection, pd,
222 this._instance_prefix);
225 this._jmx_connection = null;
229 } /* }}} void query */
231 public String toString ()
233 return (new String ("host = " + this._host + "; "
234 + "url = " + this._service_url));
238 /* vim: set sw=2 sts=2 et fdm=marker : */