8000 Polish api/aql recording stuff by neunhoef · Pull Request #21837 · arangodb/arangodb · GitHub
[go: up one dir, main page]

Skip to content

Polish api/aql recording stuff #21837

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 9 commits into from
Jul 4, 2025
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Reword
  • Loading branch information
Simran-B committed Jul 4, 2025
commit 03031050b4ff0bef8becdcdcf62e00c172b78882
4 changes: 2 additions & 2 deletions arangod/RestServer/ApiRecordingFeature.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ void ApiRecordingFeature::collectOptions(

options->addOption(
"--server.api-recording-memory-limit",
"Memory limit for the list of API call records.",
"Size limit for the list of API call records.",
new UInt64Parameter(&_totalMemoryLimitCalls, 1, 256 * 1024,
256 * 1024 * 1024 * 1024),
arangodb::options::makeDefaultFlags(arangodb::options::Flags::Uncommon));
Expand All @@ -84,7 +84,7 @@ void ApiRecordingFeature::collectOptions(

options->addOption(
"--server.aql-recording-memory-limit",
"Memory limit for the list of AQL query records.",
"Size limit for the list of AQL query records.",
new UInt64Parameter(&_totalMemoryLimitQueries, 1, 256 * 1024,
256 * 1024 * 1024 * 1024),
arangodb::options::makeDefaultFlags(arangodb::options::Flags::Uncommon));
Expand Down
0