Table of Contents

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

string

metrics

Performance metrics for the application

public StatusResponseModel.StatusMetricsModel metrics { get; set; }

Property Value

StatusResponseModel.StatusMetricsModel

status

Status result: "ok" or "error"

public string status { get; set; }

Property Value

string

version

The Contensive version running on the server

public string version { get; set; }

Property Value

string

windowsUpdates

Windows update status, or null if unavailable

public StatusResponseModel.StatusWindowsUpdatesModel windowsUpdates { get; set; }

Property Value

StatusResponseModel.StatusWindowsUpdatesModel