如何将dbms.listQueries()过程添加到Neo4j 3.1.3实例?

tsd*_*mon 2 stored-procedures neo4j

我已经从Neo4j Web UI运行了一个耗时的查询,并意外丢失了浏览器页面。现在,我对查询状态一无所知。在Web UI中的列表示例脚本/通用过程中,我找到了List running queries运行脚本的选项:

// List running queries
CALL dbms.listQueries()
Run Code Online (Sandbox Code Playgroud)

但是结果是:

There is no procedure with the name `dbms.listQueries` registered for this database instance. 
Please ensure you've spelled the procedure name correctly and that the procedure is properly deployed.
Run Code Online (Sandbox Code Playgroud)

我建议,此过程以某种方式从我的Neo4j发行版中丢失了,是否有可能获取它的代码并将其添加到我的实例中?

小智 6

您可能已经对此进行了验证,但是如果我检查https://neo4j.com/docs/operations-manual/current/monitoring/query-management/procedures/,则表明这些是Neo4j Enterprise Edition功能。您正在运行Neo4j企业版吗?您得到的错误是我对社区版的了解。

希望这可以帮助 !

问候,汤姆