arangosh> var queries = require("@arangodb/aql/queries"); arangosh> queries.properties(); { "code" : 200, "enabled" : true, "trackSlowQueries" : true, "trackBindVars" : true, "maxSlowQueries" : 64, "slowQueryThreshold" : 10, "slowStreamingQueryThreshold" : 10, "maxQueryStringLength" : 4096 } arangosh> queries.properties({slowQueryThreshold: 1}); { "code" : 200, "enabled" : true, "trackSlowQueries" : true, "trackBindVars" : true, "maxSlowQueries" : 64, "slowQueryThreshold" : 1, "slowStreamingQueryThreshold" : 10, "maxQueryStringLength" : 4096 } arangosh> queries.properties({slowStreamingQueryThreshold: 1}); { "code" : 200, "enabled" : true, "trackSlowQueries" : true, "trackBindVars" : true, "maxSlowQueries" : 64, "slowQueryThreshold" : 1, "slowStreamingQueryThreshold" : 1, "maxQueryStringLength" : 4096 }