File tree Expand file tree Collapse file tree 2 files changed +7
-2
lines changed Expand file tree Collapse file tree 2 files changed +7
-2
lines changed Original file line number Diff line number Diff line change 10
10
* Added new AQL function `KEEP_RECURSIVE` to recursively keep attritutes from
11
11
objects/documents, as a conterpart to `UNSET_RECURSIVE`.
12
12
13
+ * No longer put document writes from replication into the audit log by
14
+ default. Same with low priority authentication like internal UI requests
15
+ to .html files for the UI. This solves a performance problem for
16
+ shards getting in sync with audit log switched on.
17
+
13
18
* Added an HTTP fuzzer that will fuzz requests (the header for the actual
14
19
moment) and send to the server. The amount of requests sent is provided
15
20
by one of the parameters of the function `fuzzRequests()` in arangosh.
Original file line number Diff line number Diff line change @@ -165,13 +165,13 @@ LogTopic Logger::VIEWS("views", LogLevel::FATAL);
165
165
LogTopic LdapAuthProvider::LDAP_TOPIC (" ldap" , LogLevel::INFO);
166
166
167
167
LogTopic AuditFeature::AUDIT_AUTHENTICATION (" audit-authentication" ,
168
- LogLevel::DEBUG );
168
+ LogLevel::INFO );
169
169
LogTopic AuditFeature::AUDIT_AUTHORIZATION (" audit-authorization" ,
170
170
LogLevel::INFO);
171
171
LogTopic AuditFeature::AUDIT_DATABASE (" audit-database" , LogLevel::INFO);
172
172
LogTopic AuditFeature::AUDIT_COLLECTION (" audit-collection" , LogLevel::INFO);
173
173
LogTopic AuditFeature::AUDIT_VIEW (" audit-view" , LogLevel::INFO);
174
- LogTopic AuditFeature::AUDIT_DOCUMENT (" audit-document" , LogLevel::DEBUG );
174
+ LogTopic AuditFeature::AUDIT_DOCUMENT (" audit-document" , LogLevel::INFO );
175
175
LogTopic AuditFeature::AUDIT_SERVICE (" audit-service" , LogLevel::INFO);
176
176
LogTopic AuditFeature::AUDIT_HOTBACKUP (" audit-hotbackup" , LogLevel::INFO);
177
177
#endif
You can’t perform that action at this time.
0 commit comments