# ObserverStopped Constructors

[Type overview](/orleans/docs/api/csharp/microsoft.orleans.runtime/orleans.runtime.diagnostics.silolifecycleevents.observerstopped/)

## ObserverStopped(string, int, string, SiloAddress?, TimeSpan, ILifecycleObserver) {#constructor-string-int-string-orleans-runtime-siloaddress-nullable-system-timesp-f3e60aab}

[Dedicated page](/orleans/docs/api/csharp/microsoft.orleans.runtime/orleans.runtime.diagnostics.silolifecycleevents.observerstopped/constructors/constructor-string-int-string-orleans-runtime-siloaddress-nullable-system-timesp-f3e60aab/)

[Source](https://github.com/dotnet/orleans/blob/e4e752cedecc2976811db49802c7a999b1f1c704/src/Orleans.Runtime/Diagnostics/SiloLifecycleEvents.cs#L314-L329)

```csharp
public ObserverStopped(string observerName, int stage, string stageName, SiloAddress? siloAddress, TimeSpan elapsed, ILifecycleObserver observer)
```

Event payload for when a lifecycle observer has stopped.

### Parameters

- `observerName` (`string`): The observer name.
- `stage` (`int`): The numeric stage identifier.
- `stageName` (`string`): The human-readable stage name.
- `siloAddress` (`SiloAddress?`): The silo address associated with the event, if any.
- `elapsed` (`TimeSpan`): The time taken to stop.
- `observer` (`ILifecycleObserver`): The lifecycle observer.
