Managed Service for Elasticsearch API, gRPC: ClusterService.StreamLogs
Same as ListLogs but using server-side streaming. Also supports tail -f
semantics.
gRPC request
rpc StreamLogs (StreamClusterLogsRequest) returns (stream StreamLogRecord)
StreamClusterLogsRequest
{
"clusterId": "string",
"columnFilter": [
"string"
],
"fromTime": "google.protobuf.Timestamp",
"toTime": "google.protobuf.Timestamp",
"recordToken": "string",
"filter": "string",
"serviceType": "ServiceType"
}
Field |
Description |
clusterId |
string Required field. ID of the Elasticsearch cluster. To get the Elasticsearch cluster ID, make a ClusterService.List request. |
columnFilter[] |
string Columns from logs table to get in the response. If no columns are specified, full log records are returned. |
fromTime |
Start timestamp for the logs request. |
toTime |
End timestamp for the logs request. If this field is not set, all existing logs will be sent and then the new ones asthey appear. |
recordToken |
string Record token. Set |
filter |
string A filter expression that filters resources listed in the response. The expression must specify:
Example of a filter: |
serviceType |
enum ServiceType Type of the service to request logs about.
|
StreamLogRecord
{
"record": {
"timestamp": "google.protobuf.Timestamp",
"message": "string"
},
"nextRecordToken": "string"
}
Field |
Description |
record |
One of the requested log records. |
nextRecordToken |
string This token allows you to continue streaming logs starting from the exact same record. To continue streaming, specify value of This value is interchangeable with ListClusterLogsResponse.nextPageToken from ListLogs method. |
LogRecord
A single log record.
Field |
Description |
timestamp |
Log record timestamp. |
message |
string Contents of the log record. |