You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The runtime logs interface provides powerful search capabilities to help you quickly locate specific log entries.
30
30
31
31
#### Text search
32
-
Enter any text in the search box to find log entries containing that exact phrase. Searches are case-sensitive and the search will match partial strings within log messages of Application, Gateway and System logs.
32
+
Type any text into the search box to locate log entries that contain the exact phrase. Searches are case-sensitive and will match partial strings within the log messages of Application, Gateway, and System logs.
33
33
34
34
#### Advanced search with regex
35
-
Use Lucenecompatible regex patterns for complex search queries. Refer to the [OpenSearch regex syntax](https://docs.opensearch.org/latest/query-dsl/regex-syntax/#standard-regex-operators) for more details.
35
+
Use Lucene-compatible regex patterns to perform advanced search queries. Refer to the [OpenSearch regex syntax](https://docs.opensearch.org/latest/query-dsl/regex-syntax/#standard-regex-operators) for more details.
36
36
37
37
Pattern examples:
38
38
39
-
-`error.*timeout` : Find logs containing "error" followed by "timeout"
40
-
-`.*(GET|POST).*&.*500.*` : Find logs of GET or POST requests with HTTP 500 status code
39
+
-`error.*timeout` : Find logs containing the phrase "error" followed by "timeout"
40
+
-`.*(GET|POST).*&.*500.*` : Find logs of GET or POST request methods with HTTP 500 status code
41
41
-`\"userId\":\"12345\"` : Find logs containing the userId "12345"
42
42
-`outOfMemory|OOM` : Find logs containing either "outOfMemory" or "OOM"
43
43
@@ -89,9 +89,9 @@ Each system log entry displays the following details:
89
89
90
90
-`timestamp`: The time of the system event.
91
91
-`componentVersion`: The version of the component.
92
-
-`componentVersionId`: The identifier of the component’s version.
92
+
-`componentVersionId`: The identifier of the component version.
93
93
-`reason`: The system event reason.
94
-
-`logEntry`: The system event details.
94
+
-`logEntry`: System event details.
95
95
-`kind`: The kind of the k8s object related to the event.
The runtime logs interface provides powerful search capabilities to help you quickly locate specific log entries.
19
19
20
20
#### Text search
21
-
Enter any text in the search box to find log entries containing that exact phrase. Searches are case-sensitive and the search will match partial strings within log messages of Application, Gateway and System logs.
21
+
Type any text into the search box to locate log entries that contain the exact phrase. Searches are case-sensitive and will match partial strings within the log messages of Application, Gateway, and System logs.
22
22
23
23
#### Advanced search with regex
24
-
Use Lucenecompatible regex patterns for complex search queries. Refer to the [OpenSearch regex syntax](https://docs.opensearch.org/latest/query-dsl/regex-syntax/#standard-regex-operators) for more details.
24
+
Use Lucene-compatible regex patterns to perform advanced search queries. Refer to the [OpenSearch regex syntax](https://docs.opensearch.org/latest/query-dsl/regex-syntax/#standard-regex-operators) for more details.
25
25
26
26
Pattern examples:
27
27
28
-
-`error.*timeout` : Find logs containing "error" followed by "timeout"
29
-
-`.*(GET|POST).*&.*500.*` : Find logs of GET or POST requests with HTTP 500 status code
28
+
-`error.*timeout` : Find logs containing the phrase "error" followed by "timeout"
29
+
-`.*(GET|POST).*&.*500.*` : Find logs of GET or POST request methods with HTTP 500 status code
30
30
-`\"userId\":\"12345\"` : Find logs containing the userId "12345"
31
31
-`outOfMemory|OOM` : Find logs containing either "outOfMemory" or "OOM"
32
32
@@ -78,7 +78,7 @@ Each system log entry displays the following details:
78
78
79
79
-`timestamp`: The time of the system event.
80
80
-`componentVersion`: The version of the component.
81
-
-`componentVersionId`: The identifier of the component’s version.
81
+
-`componentVersionId`: The identifier of the component version.
82
82
-`reason`: The system event reason.
83
-
-`logEntry`: The system event details.
83
+
-`logEntry`: System event details.
84
84
-`kind`: The kind of the k8s object related to the event.
0 commit comments