AdminApiClientGetLogsAsync Method |
Retrieves log messages from the server.
GET /_admin/log/entries
Works on ArangoDB 3.8 or later.
Namespace:
ArangoDBNetStandard.AdminApi
Assembly:
ArangoDBNetStandard (in ArangoDBNetStandard.dll) Version: 1.1.0
Syntax public virtual Task<GetLogsResponse> GetLogsAsync(
GetLogsQuery query = null
)
Public Overridable Function GetLogsAsync (
Optional query As GetLogsQuery = Nothing
) As Task(Of GetLogsResponse)
public:
virtual Task<GetLogsResponse^>^ GetLogsAsync(
GetLogsQuery^ query = nullptr
)
abstract GetLogsAsync :
?query : GetLogsQuery
(* Defaults:
let _query = defaultArg query null
*)
-> Task<GetLogsResponse>
override GetLogsAsync :
?query : GetLogsQuery
(* Defaults:
let _query = defaultArg query null
*)
-> Task<GetLogsResponse>
Parameters
- query (Optional)
- Type: ArangoDBNetStandard.AdminApi.ModelsGetLogsQuery
Query string parameters
Return Value
Type:
TaskGetLogsResponseImplements
IAdminApiClientGetLogsAsync(GetLogsQuery)Remarks
For further information see
https://www.arangodb.com/docs/stable/http/administration-and-monitoring.html#read-global-logs-from-the-server
See Also