# DefaultQueueAdapterReceiverMonitor.TrackRead(bool, TimeSpan, Exception)

[Type overview](/orleans/docs/api/csharp/microsoft.orleans.streaming/orleans.providers.streams.common.defaultqueueadapterreceivermonitor/) | [Methods](/orleans/docs/api/csharp/microsoft.orleans.streaming/orleans.providers.streams.common.defaultqueueadapterreceivermonitor/methods/)

[Source](https://github.com/dotnet/orleans/blob/e4e752cedecc2976811db49802c7a999b1f1c704/src/Orleans.Streaming/Common/Monitors/DefaultQueueAdapterReceiverMonitor.cs#L77-L80)

```csharp
public void TrackRead(bool success, TimeSpan callTime, Exception exception)
```

Track attempts to read from the partition. Tracked per partition read operation.

### Parameters

- `success` (`bool`): True if read succeeded, false if read failed.
- `callTime` (`TimeSpan`): Time spent in read operation.
- `exception` (`Exception`): The exception caught if read failed.
