cancel
Showing results for 
Search instead for 
Did you mean: 

Head's Up! These forums are read-only. All users and content have migrated. Please join us at community.neo4j.com.

Can we check the neo4j configurations from browser

Raj725
Node Clone

We can check the database size etc from the neo4j browser.
Is there any way to check the neo4j configurations from the browser like dbms.memory.heap.max_size etc?

1 ACCEPTED SOLUTION

Yep. CALL dbms.listConfig(). This yields name, value, description, so if you're looking for a particular value use a WHERE clause to filter before returning.

View solution in original post

3 REPLIES 3

Yep. CALL dbms.listConfig(). This yields name, value, description, so if you're looking for a particular value use a WHERE clause to filter before returning.

You can also use Halin -- it has a table layout of all of your config that's quite easy to browse.

Here's a link to where you can run halin, just plug in your details and go.

http://halin.s3-website-us-east-1.amazonaws.com/

If you want to read more about halin, go here:

Thank you @david.allen and @andrew.bowman.
I really loved Halin for monitoring Neo4j.