The EmbeddedGraphDatabase class includes a convenience method to get instances of Neo4j management beans. The common JMX service can be used as well, but from your code you probably rather want to use the approach outlined here.
This example shows how to get the start time of a database:
private static Date getStartTimeFromManagementBean( GraphDatabaseService graphDbService ) { // use EmbeddedGraphDatabase to access management beans EmbeddedGraphDatabase graphDb = (EmbeddedGraphDatabase) graphDbService; Kernel kernel = graphDb.getManagementBean( Kernel.class ); Date startTime = kernel.getKernelStartTime(); return startTime; }
To find more management beans to use, look into the management package apidocs and site.