Table of Contents

Class ServiceStatuses

Namespace
FoundationaLLM.Common.Constants
Assembly
FoundationaLLM.Common.dll

Service status constants.

public static class ServiceStatuses
Inheritance
ServiceStatuses
Inherited Members

Fields

Error

The service is in an error state.

public const string Error = "Error"

Field Value

string

Initializing

The service is in an initializing state.

public const string Initializing = "Initializing"

Field Value

string

PartiallyAvailable

The service is partially available. This is usually caused by one or more subordinate services being in a warning or error state.

public const string PartiallyAvailable = "Partially_Available"

Field Value

string

Ready

The service is operational and ready to accept requests.

public const string Ready = "Ready"

Field Value

string

Warning

The service is in a warning state.

public const string Warning = "Warning"

Field Value

string