query-analyzer-app
query-analyzer-app copied to clipboard
Analyzing Neo4j Query Log files and more in the Neo4j Desktop
The Analyze File button runs the following function: ```js function loadFile() { let logFile = document.getElementById("queryLogFile").files[0]; if (logFile && logFile != null) { msg.innerHTML = "Start Reading file"; let reader...
closes #15
Allow entering a min and/or max timestamp to only analyze queries within the given range. Should be able to function even if only one of these is filled.