Querying Slow Query Logs of a GeminiDB Mongo Instance
Function
This API is used to query slow query logs of GeminiDB Mongo instances. Searching for slow query logs by keyword is supported.
Constraints
- The following operators are not supported: &&, ||, AND, OR, NOT, *, ?, :, >, <, =, ≥, and ≤
- The query must be within the period specified by start_time and end_time.
- The value of line_num must be obtained from the log information returned for the last query. This parameter is optional for the first query.
- A maximum of 100 records can be queried on each page, and slow query logs can be stored for a maximum of 30 days.
URI
POST https://{Endpoint}/v3/{project_id}/mongodb/instances/{instance_id}/slow-logs
Parameter |
Mandatory |
Type |
Description |
---|---|---|---|
project_id |
Yes |
String |
Project ID of a tenant in a region. To obtain this value, see Obtaining a Project ID. |
instance_id |
Yes |
String |
Instance ID. |
Request Parameters
Parameter |
Mandatory |
Type |
Description |
---|---|---|---|
X-Auth-Token |
Yes |
String |
User token. |
Parameter |
Mandatory |
Type |
Description |
---|---|---|---|
start_time |
Yes |
String |
Start time in the yyyy-mm-ddThh:mm:ssZ format. T is the separator between calendar and hourly notation of time. Z indicates the time zone offset. The start time cannot be 30 days earlier than the current time. |
end_time |
Yes |
String |
End time in the yyyy-mm-ddThh:mm:ssZ format. T is the separator between calendar and hourly notation of time. Z indicates the time zone offset. The end time cannot be later than the current time. |
limit |
Yes |
Integer |
Number of logs to be queried each time. The maximum value is 100. |
line_num |
No |
String |
Sequence number of a log event. This parameter is not required for the first query, but is required for the next query. The value can be obtained from the response of the last query. The current query starts from the next log of line_num, excluding the log of line_num. |
operate_type |
No |
String |
Statement type. If this parameter is left empty, all statement types are queried. Value options:
|
node_id |
No |
String |
Node ID. If this parameter is left blank, all nodes in the instance can be queried. For details about the value, see field id in Table 10. |
keywords |
No |
Array of strings |
Full-text log search based on multiple keywords, indicating that all keywords are matched.
|
database_keywords |
No |
Array of strings |
Fuzzy search for logs based on multiple database name keywords, indicating that at least one keyword is matched.
|
collection_keywords |
No |
Array of strings |
Fuzzy search for logs based on multiple database collection name keywords, indicating that at least one keyword is matched.
|
max_cost_time |
No |
Integer |
Logs can be searched based on the maximum execution duration. Unit: ms |
min_cost_time |
No |
Integer |
Logs can be searched based on the minimum execution duration. Unit: ms |
Response Parameters
Status code: 200
Parameter |
Type |
Description |
---|---|---|
slow_logs |
Array of objects |
Slow log information. For details, see Table 5. |
Parameter |
Type |
Description |
---|---|---|
node_name |
String |
Node name. |
node_id |
String |
Node ID. |
whole_message |
String |
Statement. |
operate_type |
String |
Statement type. |
cost_time |
Integer |
Execution time. Unit: ms |
lock_time |
Integer |
Lock wait time. Unit: μs |
docs_returned |
Integer |
Number of documents returned by a slow query. |
docs_scanned |
Integer |
Number of documents scanned during a slow query. |
database |
String |
Database name. |
collection |
String |
Database collection name. |
log_time |
String |
UTC time when a log is generated. The format is yyyy-mm-ddThh:mm:ssZ. T is the separator between calendar and hourly notation of time. Z indicates the time zone offset. |
line_num |
String |
Sequence number of a log event. |
Example Requests
POST https://{Endpoint}/v3/619d3e78f61b4be68bc5aa0b59edcf7b/mongodb/instances/916de02c35fe4abaa3e707ebd916d3f8in10/slow-logs { "start_time" : "2021-01-06T10:41:14+0800", "end_time" : "2023-01-10T10:41:14+0800", "limit" : 100, "line_num" : "1595659490239433658", "operate_type" : "query", "node_id" : "dfe41edcb2a1483c96ddf61cc0cee237no10", "keywords" : [ "response", "oplog" ], "database_keywords" : [ "testDB", "system_auth" ], "collection_keywords" : [ "testCollection" ], "max_cost_time" : 100, "min_cost_time" : 50 }
Example Responses
Status code: 200
Success
{ "slow_logs" : [ { "node_name" : "test_replica_node_1", "node_id" : "dfe41edcb2a1483c96ddf61cc0cee237no10", "database" : "testDB", "collection" : "testCollection", "whole_message" : "{\\\"responseLength\\\": 230, \\\"ts\\\": {\\\"$date\\\": 1605480486800}, \\\"ninserted\\\": 1, \\\"locks\\\": {\\\"oplog\\\": {\\\"acquireCount\\\": {\\\"w\\\": 1}}, \\\"Global\\\": {\\\"acquireCount\\\": {\\\"r\\\": 3, \\\"w\\\": 2}}, \\\"Collection\\\": {\\\"acquireCount\\\": {\\\"w\\\": 2}}, \\\"Database\\\": {\\\"acquireCount\\\": {\\\"w\\\": 3}}}, \\\"numYield\\\": 0, \\\"ns\\\": \\\"geographySpace.tiles\\\"}", "operate_type" : "query", "cost_time" : 60, "lock_time" : 10, "docs_returned" : 0, "docs_scanned" : 0, "log_time" : "2023-01-09T06:42:32.000+0000", "line_num" : "1595659490239433659" } ] }
Status Codes
For details, see Status Codes.
Error Codes
For details, see Error Codes.
Feedback
Was this page helpful?
Provide feedbackThank you very much for your feedback. We will continue working to improve the documentation.See the reply and handling status in My Cloud VOC.
For any further questions, feel free to contact us through the chatbot.
Chatbot