Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ public static class ConfigurationServiceCollectionExtensions
/// Build your list of service instances under the configuration prefix discovery:services.
/// <example>
/// Example configuration in appsettings.json:
/// <![CDATA[
/// <code><![CDATA[
/// {
/// "discovery": {
/// "services": [
Expand All @@ -37,7 +37,7 @@ public static class ConfigurationServiceCollectionExtensions
/// ]
/// }
/// }
/// ]]>
/// ]]></code>
/// </example>
/// </remarks>
/// <param name="services">
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,10 @@ namespace Steeltoe.Management.Endpoint.Actuators.Health.Availability;

/// <summary>
/// "Liveness" state of the application.
/// <para />
/// <para>
/// An application is considered live when it's running with a correct internal state. "Liveness" failure means that the internal state of the
/// application is broken, and we cannot recover from it. As a result, the platform should restart the application.
/// </para>
/// </summary>
public sealed class LivenessState : AvailabilityState
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,10 @@ namespace Steeltoe.Management.Endpoint.Actuators.Health.Availability;

/// <summary>
/// The Readiness state of the application.
/// <para />
/// <para>
/// An application is considered ready when it's <see cref="LivenessState.Correct" /> and willing to accept traffic. "Readiness" failure means that the
/// application is not able to accept traffic and that the infrastructure should not route requests to it.
/// </para>
/// </summary>
public sealed class ReadinessState : AvailabilityState
{
Expand Down