# ObserverCompleted.ObserverCompleted(string, int, string, SiloAddress?, TimeSpan, ILifecycleObserver)

[Type overview](/orleans/docs/api/csharp/microsoft.orleans.runtime/orleans.runtime.diagnostics.silolifecycleevents.observercompleted/) | [Constructors](/orleans/docs/api/csharp/microsoft.orleans.runtime/orleans.runtime.diagnostics.silolifecycleevents.observercompleted/constructors/)

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

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

Event payload for when a lifecycle observer has completed successfully.

### 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 complete.
- `observer` (`ILifecycleObserver`): The lifecycle observer.
