tailRecords method
Tails log records from the specified project.
Continues until the client unsubscribes, limit is reached,
or the internal max limit is reached.
Implementation
_i2.Stream<_i20.LogRecord> tailRecords({
String? cloudProjectId,
String? cloudCapsuleId,
int? limit,
}) => caller
.callStreamingServerEndpoint<_i2.Stream<_i20.LogRecord>, _i20.LogRecord>(
'logs',
'tailRecords',
{
'cloudProjectId': cloudProjectId,
'cloudCapsuleId': cloudCapsuleId,
'limit': limit,
},
{},
);