Managed Service for PostgreSQL API, REST: Cluster.StreamLogs
Same as ListLogs but using server-side streaming. Also allows for 'tail -f' semantics.
HTTP request
GET https://mdb.api.cloud.yandex.net/managed-postgresql/v1/clusters/{clusterId}:stream_logs
Path parameters
Field |
Description |
clusterId |
string Required field. Required. ID of the PostgreSQL cluster. |
Query parameters
Field |
Description |
columnFilter[] |
string Columns from logs table to get in the response. |
serviceType |
enum (ServiceType)
|
fromTime |
string (date-time) Start timestamp for the logs request. String in RFC3339 To work with values in this field, use the APIs described in the |
toTime |
string (date-time) End timestamp for the logs request. String in RFC3339 To work with values in this field, use the APIs described in the |
recordToken |
string Record token. Set |
filter |
string A filter expression that filters resources listed in the response.
|
Response
HTTP Code: 200 - OK
{
"record": {
"timestamp": "string",
"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 |
LogRecord
Field |
Description |
timestamp |
string (date-time) Log record timestamp in RFC3339 String in RFC3339 To work with values in this field, use the APIs described in the |
message |
string Contents of the log record. |