tailRecords method

Stream<LogRecord> tailRecords({
  1. String? cloudProjectId,
  2. String? cloudCapsuleId,
  3. int? limit,
})

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,
      },
      {},
    );