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
Initializing
The service is in an initializing state.
public const string Initializing = "Initializing"
  Field Value
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
Ready
The service is operational and ready to accept requests.
public const string Ready = "Ready"
  Field Value
Warning
The service is in a warning state.
public const string Warning = "Warning"