Can we check the neo4j configurations from browser

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?

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.

2 Likes

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:

1 Like

Thank you @david_allen and @andrew_bowman.
I really loved Halin for monitoring Neo4j.

1 Like