Want to understand call "dbms.listQueries" parameters and the meaning of their output values

Hello Team ,

I Want to understand call "dbms.listQueries" parameters and the meaning of their output values.
Below is the image as not able to upload csv or .xls file.

Best Regards
Akshat

Hi Akshat,

kindly elaborate your query. As per I understood

  1. call dbms.listQueries will provide you the running queries at the neo4j DB
  2. if you want to load data using csv use
    LOAD CSV WITH HEADERS FROM "file:///".csv" AS csvLine

Regards
Vivek

Hi Akshat -

If you looking for the each field and its significance. Please check this out -

I personally use this to check out which all query currently running for current user(your case neo4j), if its service account it helps to find the current running queries for that user, coming from which client address on that node.
In a multi node cluster:
if current node is Leader node - you can see some read/write queries for that user.
if follower - you will see the read queries.

  • This helps to find any lock on queries or any long running queries.

The neo documentation is good on this. Hope this helps!