Managed Service for OpenSearch API, gRPC: ClusterService.StreamLogs
Same as ListLogs but using server-side streaming. Also allows for 'tail -f' semantics.
gRPC request
rpc StreamLogs (StreamClusterLogsRequest) returns (stream StreamLogRecord)
StreamClusterLogsRequest
{
"cluster_id": "string",
"column_filter": [
"string"
],
"from_time": "google.protobuf.Timestamp",
"to_time": "google.protobuf.Timestamp",
"record_token": "string",
"filter": "string",
"service_type": "ServiceType"
}
Field |
Description |
cluster_id |
string Required field. ID of the OpenSearch cluster. |
column_filter[] |
string Columns from log table to get in the response. |
from_time |
Start timestamp for the logs request. |
to_time |
End timestamp for the logs request. If this field is not set, all existing logs are sent as well as the new ones as they appear. In essence it has |
record_token |
string Record token. Set |
filter |
string A filter expression that filters resources listed in the response. The expression must specify:
Examples of a filter:
|
service_type |
enum ServiceType Type of the service to request logs about.
|
StreamLogRecord
{
"record": {
"timestamp": "google.protobuf.Timestamp",
"message": "map<string, string>"
},
"next_record_token": "string"
}
Field |
Description |
record |
One of the requested log records. |
next_record_token |
string This token allows you to continue streaming logs starting from the exact same record. To do that, specify value of This value is interchangeable with [ListLogs.next_page_token] from ListLogs method. |
LogRecord
Field |
Description |
timestamp |
Time when the log was recorded. |
message |
object (map<string, string>) Contents of the log record. |