Re: [Neo4j] Neo4j embedded database with monitoring tool

2011-08-09 Thread noppanit
Cheers. :) -- View this message in context: http://neo4j-community-discussions.438527.n3.nabble.com/Neo4j-embedded-database-with-monitoring-tool-tp3236863p3238275.html Sent from the Neo4j Community Discussions mailing list archive at Nabble.com. ___ Neo

Re: [Neo4j] Neo4j embedded database with monitoring tool

2011-08-09 Thread Anders Nawroth
Hi! Neoclipse instantiates an EmbeddedReadOnlyGraphDatabase to read the database. Regarding monitoring, have a look here: http://docs.neo4j.org/chunked/snapshot/tutorials-java-embedded-jmx.html and here: http://docs.neo4j.org/chunked/snapshot/operations-monitoring.html /anders On 08/09/2011 12

Re: [Neo4j] Neo4j embedded database with monitoring tool

2011-08-08 Thread noppanit
Just out of interests, what about neoclipse? I think I can run neoclipse in read-only mode parallel with the working database. How can I achieve the same thing? -- View this message in context: http://neo4j-community-discussions.438527.n3.nabble.com/Neo4j-embedded-database-with-monitoring-tool-

Re: [Neo4j] Neo4j embedded database with monitoring tool

2011-08-08 Thread noppanit
Thanks a lot! :) -- View this message in context: http://neo4j-community-discussions.438527.n3.nabble.com/Neo4j-embedded-database-with-monitoring-tool-tp3236863p3237064.html Sent from the Neo4j Community Discussions mailing list archive at Nabble.com. _

Re: [Neo4j] Neo4j embedded database with monitoring tool

2011-08-08 Thread Michael Hunger
JMX is a asynchronous monitoring mechanism employed by the jvm to visualize a plenthora of information. Just start jconsole from your local jdk installation, and point it to any running virtual machine. On the last mbeans tab you see the custom mbeans registered by that app. If you point it at

Re: [Neo4j] Neo4j embedded database with monitoring tool

2011-08-08 Thread noppanit
Sorry, but I'm not familiar with JMX. Would that mean that I'm allowed to connect to the database and query something and return that in JSON so Google Chart can display that on the web which the front-end is still running and being used by user? So, the back-end can display real-time data? -- Vi

Re: [Neo4j] Neo4j embedded database with monitoring tool

2011-08-08 Thread Michael Hunger
This information (# of nodes and rels) is available using JMX which can be queried separately without accessing the graphdb. You can provide similar custom monitoring by adding JMX MBeans to your app. Then those can be viewed using jconsole or a similar tool. Cheers Michael Am 08.08.2011 um 2

[Neo4j] Neo4j embedded database with monitoring tool

2011-08-08 Thread noppanit
I'm building an application with embedded database, but also I'm trying to build a monitoring tool where it will shows me how many relationships, nodes and categorise those nodes to represent in some kind of charts using google chart. My question would be in embedded database, it only allows one in