# 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/b7a9e3e1c9c54b3cec3a467c5734bf7744541bcf/src/Orleans.Streaming/Common/Monitors/DefaultQueueAdapterReceiverMonitor.cs#L79-L82)

```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.
