JMX plugin

Java class implementation:

  1. com.orientechnologies.orient.server.handler.OJMXPlugin

Available since: v. 1.2.0.

Introduction

Expose the OrientDB server configuration through JMX protocol. This task is configured as a Server handler. The task can be configured in easy way by changing parameters:

  • enabled: true to turn on, false (default) is turned off
  • profilerManaged: manage the Profiler instance

Default configuration in orientdb-server-config.xml

  1. <!-- JMX SERVER, TO TURN ON SET THE 'ENABLED' PARAMETER TO 'true' -->
  2. <handler class="com.orientechnologies.orient.server.handler.OJMXPlugin">
  3. <parameters>
  4. <parameter name="enabled" value="false" />
  5. <parameter name="profilerManaged" value="true" />
  6. </parameters>
  7. </handler>