Table of Contents

Interface ActivityLog

Namespace
MassTransit.Courier.Contracts
Assembly
MassTransit.Abstractions.dll

Message contract for storing activity log data

public interface ActivityLog

Properties

Duration

The duration of the activity execution

TimeSpan Duration { get; }

Property Value

TimeSpan

ExecutionId

The tracking number for completion of the activity

Guid ExecutionId { get; }

Property Value

Guid

Host

The host that executed the activity

HostInfo Host { get; }

Property Value

HostInfo

Name

The name of the activity that was completed

string Name { get; }

Property Value

string

Timestamp

The timestamp when the activity started

DateTime Timestamp { get; }

Property Value

DateTime