Class StatusResponseModel
- Namespace
- Contensive.BaseModels
- Assembly
- CPBase.dll
Model for the /status remote method JSON response. Use this to deserialize the JSON returned by the /status endpoint with format=json.
public class StatusResponseModel
- Inheritance
-
StatusResponseModel
- Inherited Members
Properties
message
Human-readable status message
public string message { get; set; }
Property Value
metrics
Performance metrics for the application
public StatusResponseModel.StatusMetricsModel metrics { get; set; }
Property Value
status
Status result: "ok" or "error"
public string status { get; set; }
Property Value
version
The Contensive version running on the server
public string version { get; set; }
Property Value
windowsUpdates
Windows update status, or null if unavailable
public StatusResponseModel.StatusWindowsUpdatesModel windowsUpdates { get; set; }