How can I see what requests were sent to the ArangoDB server?

I want to quickly collect all the requests sent to my ArangoDB server from an application that uses the python-arangodb driver without digging through the source and without resorting to sniffing the HTTP traffic in the REST API.

Is there any admin / audit log in the ArangoDB web interface that shows me which requests were sent to the server?

Using here 3.2.5.

+4
source share
1 answer

You can get all requests sent to the log file with 3.x and up.

Start with the option: --log.level queries=trace --log.output queries=file:///path/to/queries.log

From: https://docs.arangodb.com/devel/Manual/ReleaseNotes/NewFeatures30.html

- , .

+4

Source: https://habr.com/ru/post/1689395/


All Articles