Share via


IForwarderTelemetryConsumer.OnContentTransferring Method

Definition

Called periodically while a content transfer is active.

public virtual void OnContentTransferring(DateTime timestamp, bool isRequest, long contentLength, long iops, TimeSpan readTime, TimeSpan writeTime);
abstract member OnContentTransferring : DateTime * bool * int64 * int64 * TimeSpan * TimeSpan -> unit
override this.OnContentTransferring : DateTime * bool * int64 * int64 * TimeSpan * TimeSpan -> unit
Public Overridable Sub OnContentTransferring (timestamp As DateTime, isRequest As Boolean, contentLength As Long, iops As Long, readTime As TimeSpan, writeTime As TimeSpan)

Parameters

timestamp
DateTime

Timestamp when the event was fired.

isRequest
Boolean

Indicates whether we are transferring the content from the client to the backend or vice-versa.

contentLength
Int64

Number of bytes transferred.

iops
Int64

Number of read/write pairs performed.

readTime
TimeSpan

Time spent reading from the source.

writeTime
TimeSpan

Time spent writing to the destination.

Applies to