Root Schema : Integrated Diagnostics Results
Type: object
Title: Integrated Diagnostics Results
Show Source
-
$schema:
string
Allowed Values: [
"ogg:diagnostics"
]
-
collectionDuration(required):
integer
Minimum Value: 1
Maximum Value: 60
Data collection duration in seconds
-
collectionFrequency(required):
integer
Minimum Value: 5
Maximum Value: 60
Data collection frequency in seconds
-
finished:
string
Minimum Length: 20
Maximum Length: 32
Pattern: ^[0-9]{4}[-](0[1-9]|1[0-2])[-](0[1-9]|[12][0-9]|3[01])[tT ]([01][0-9]|2[0-3]):[0-5][0-9]:([0-5][0-9]|60)([.][0-9]{1,6})?([zZ]|[+-][0-9][0-9]:[0-5][0-9])$
Date and time the diagnostics finished
-
samples:
array samples
Sampled statistics for the time period
-
started(required):
string
Minimum Length: 20
Maximum Length: 32
Pattern: ^[0-9]{4}[-](0[1-9]|1[0-2])[-](0[1-9]|[12][0-9]|3[01])[tT ]([01][0-9]|2[0-3]):[0-5][0-9]:([0-5][0-9]|60)([.][0-9]{1,6})?([zZ]|[+-][0-9][0-9]:[0-5][0-9])$
Date and time the diagnostics started
-
status(required):
Allowed Values: [
"starting",
"running",
"stopped",
"killed",
"abended"
]
Status of the diagnostics process
{
"title":"Integrated Diagnostics Results",
"required":[
"status",
"collectionFrequency",
"collectionDuration",
"started"
],
"type":"object",
"properties":{
"$schema":{
"type":"string",
"enum":[
"ogg:diagnostics"
]
},
"status":{
"description":"Status of the diagnostics process",
"enum":[
"starting",
"running",
"stopped",
"killed",
"abended"
]
},
"collectionFrequency":{
"description":"Data collection frequency in seconds",
"type":"integer",
"minimum":"5",
"maximum":"60"
},
"collectionDuration":{
"description":"Data collection duration in seconds",
"type":"integer",
"minimum":"1",
"maximum":"60"
},
"started":{
"description":"Date and time the diagnostics started",
"type":"string",
"pattern":"^[0-9]{4}[-](0[1-9]|1[0-2])[-](0[1-9]|[12][0-9]|3[01])[tT ]([01][0-9]|2[0-3]):[0-5][0-9]:([0-5][0-9]|60)([.][0-9]{1,6})?([zZ]|[+-][0-9][0-9]:[0-5][0-9])$",
"minLength":"20",
"maxLength":"32"
},
"finished":{
"description":"Date and time the diagnostics finished",
"type":"string",
"pattern":"^[0-9]{4}[-](0[1-9]|1[0-2])[-](0[1-9]|[12][0-9]|3[01])[tT ]([01][0-9]|2[0-3]):[0-5][0-9]:([0-5][0-9]|60)([.][0-9]{1,6})?([zZ]|[+-][0-9][0-9]:[0-5][0-9])$",
"minLength":"20",
"maxLength":"32"
},
"samples":{
"description":"Sampled statistics for the time period",
"items":{
"description":"Sampled statistics from all database processes for a point in time",
"type":"object",
"properties":{
"collectionDate":{
"description":"Date/Time sample was collected",
"type":"string",
"pattern":"^[0-9]{4}[-](0[1-9]|1[0-2])[-](0[1-9]|[12][0-9]|3[01])[tT ]([01][0-9]|2[0-3]):[0-5][0-9]:([0-5][0-9]|60)([.][0-9]{1,6})?([zZ]|[+-][0-9][0-9]:[0-5][0-9])$",
"minLength":"20",
"maxLength":"32"
},
"processSamples":{
"type":"array",
"description":"Database process statistics",
"items":{
"description":"Sampled statistics from a database process",
"type":"object",
"properties":{
"process":{
"description":"Process details",
"x-oneOf":[
{
"description":"Capture Process Details",
"type":"object",
"properties":{
"type":{
"description":"Process type",
"enum":[
"capture"
]
},
"state":{
"description":"Database process state",
"type":"object",
"properties":{
"status":{
"description":"Status of the database process",
"enum":[
"initializing",
"waiting",
"idle",
"suspended",
"aborting",
"shutdown",
"paused",
"working",
"other"
]
},
"detail":{
"description":"Detailed information for the database process",
"type":"string",
"minLength":"1",
"maxLength":"128"
}
},
"required":[
"status",
"detail"
],
"additionalProperties":false
},
"bytesMined":{
"description":"Number of Redo bytes mined per second",
"type":"integer",
"minimum":"0",
"maximum":"9223372036854776000"
},
"bytesSent":{
"description":"Number of Redo bytes sent per second",
"type":"integer",
"minimum":"0",
"maximum":"9223372036854776000"
},
"messagesCaptured":{
"description":"Number of messages captured per second",
"type":"integer",
"minimum":"0",
"maximum":"9223372036854776000"
},
"lag":{
"description":"Capture process lag in seconds",
"type":"integer",
"minimum":"0",
"maximum":"4294967295"
}
},
"required":[
"type",
"state",
"bytesMined",
"bytesSent",
"messagesCaptured",
"lag"
],
"additionalProperties":false
},
{
"description":"LogMiner Process Details",
"type":"object",
"properties":{
"type":{
"description":"Process type",
"enum":[
"logminer"
]
},
"role":{
"description":"LogMiner Role",
"enum":[
"reader",
"preparer",
"builder",
"merger",
"coordinator",
"applier",
"unknown"
]
}
},
"required":[
"type",
"role"
],
"additionalProperties":false
},
{
"description":"Apply Reader Process Details",
"type":"object",
"properties":{
"type":{
"description":"Process type",
"enum":[
"reader"
]
},
"state":{
"description":"Database process state",
"type":"object",
"properties":{
"status":{
"description":"Status of the database process",
"enum":[
"initializing",
"waiting",
"idle",
"suspended",
"aborting",
"shutdown",
"paused",
"working",
"other"
]
},
"detail":{
"description":"Detailed information for the database process",
"type":"string",
"minLength":"1",
"maxLength":"128"
}
},
"required":[
"status",
"detail"
],
"additionalProperties":false
},
"bytesReceived":{
"description":"Number of trail bytes received per second",
"type":"integer",
"minimum":"0",
"maximum":"9223372036854776000"
}
},
"required":[
"type",
"state",
"bytesReceived"
],
"additionalProperties":false
},
{
"description":"Apply Receiver Process Details",
"type":"object",
"properties":{
"type":{
"description":"Process type",
"enum":[
"receiver"
]
},
"state":{
"description":"Database process state",
"type":"object",
"properties":{
"status":{
"description":"Status of the database process",
"enum":[
"initializing",
"waiting",
"idle",
"suspended",
"aborting",
"shutdown",
"paused",
"working",
"other"
]
},
"detail":{
"description":"Detailed information for the database process",
"type":"string",
"minLength":"1",
"maxLength":"128"
}
},
"required":[
"status",
"detail"
],
"additionalProperties":false
},
"messagesReceived":{
"description":"Number of messages received per second",
"type":"integer",
"minimum":"0",
"maximum":"9223372036854776000"
},
"transactionsReceived":{
"description":"Number of transactions received per second",
"type":"integer",
"minimum":"0",
"maximum":"9223372036854776000"
}
},
"required":[
"type",
"state",
"messagesReceived",
"transactionsReceived"
],
"additionalProperties":false
},
{
"description":"Apply Coordinator Process Details",
"type":"object",
"properties":{
"type":{
"description":"Process type",
"enum":[
"coordinator"
]
},
"state":{
"description":"Database process state",
"type":"object",
"properties":{
"status":{
"description":"Status of the database process",
"enum":[
"initializing",
"waiting",
"idle",
"suspended",
"aborting",
"shutdown",
"paused",
"working",
"other"
]
},
"detail":{
"description":"Detailed information for the database process",
"type":"string",
"minLength":"1",
"maxLength":"128"
}
},
"required":[
"status",
"detail"
],
"additionalProperties":false
},
"transactionsApplied":{
"description":"Number of transactions applied per second",
"type":"integer",
"minimum":"0",
"maximum":"9223372036854776000"
}
},
"required":[
"type",
"state",
"transactionsApplied"
],
"additionalProperties":false
},
{
"description":"Apply Server Process Details",
"type":"object",
"properties":{
"type":{
"description":"Process type",
"enum":[
"applier"
]
},
"state":{
"description":"Database process state",
"type":"object",
"properties":{
"status":{
"description":"Status of the database process",
"enum":[
"initializing",
"waiting",
"idle",
"suspended",
"aborting",
"shutdown",
"paused",
"working",
"other"
]
},
"detail":{
"description":"Detailed information for the database process",
"type":"string",
"minLength":"1",
"maxLength":"128"
}
},
"required":[
"status",
"detail"
],
"additionalProperties":false
},
"messagesApplied":{
"description":"Number of messages applied per second",
"type":"integer",
"minimum":"0",
"maximum":"9223372036854776000"
}
},
"required":[
"type",
"state",
"messagesApplied"
],
"additionalProperties":false
}
]
},
"processId":{
"description":"Database process identifier",
"type":"integer",
"minimum":"1",
"maximum":"4294967295"
},
"sessionId":{
"description":"Database session identifier",
"type":"integer",
"minimum":"0",
"maximum":"9223372036854776000"
},
"cpuPercent":{
"description":"Percentage of CPU usage for the process",
"type":"number",
"minimum":"0",
"maximum":"100"
},
"idlePercent":{
"description":"Percentage of idle time for the process",
"type":"number",
"minimum":"0",
"maximum":"100"
},
"topEventPercent":{
"description":"Percentage of top session wait event time, excluding idle waits",
"type":"number",
"minimum":"0",
"maximum":"100"
},
"topEvent":{
"description":"Top session wait event name, excluding idle waits",
"type":"string",
"minLength":"1",
"maxLength":"132"
}
},
"required":[
"process",
"processId",
"sessionId",
"cpuPercent",
"idlePercent"
],
"additionalProperties":false
},
"minItems":"1",
"maxItems":"512"
}
},
"required":[
"collectionDate",
"processSamples"
],
"additionalProperties":false
}
}
},
"additionalProperties":false
}
Nested Schema : samples
Type: array
Sampled statistics for the time period
Show Source
{
"description":"Sampled statistics for the time period",
"items":{
"description":"Sampled statistics from all database processes for a point in time",
"type":"object",
"properties":{
"collectionDate":{
"description":"Date/Time sample was collected",
"type":"string",
"pattern":"^[0-9]{4}[-](0[1-9]|1[0-2])[-](0[1-9]|[12][0-9]|3[01])[tT ]([01][0-9]|2[0-3]):[0-5][0-9]:([0-5][0-9]|60)([.][0-9]{1,6})?([zZ]|[+-][0-9][0-9]:[0-5][0-9])$",
"minLength":"20",
"maxLength":"32"
},
"processSamples":{
"type":"array",
"description":"Database process statistics",
"items":{
"description":"Sampled statistics from a database process",
"type":"object",
"properties":{
"process":{
"description":"Process details",
"x-oneOf":[
{
"description":"Capture Process Details",
"type":"object",
"properties":{
"type":{
"description":"Process type",
"enum":[
"capture"
]
},
"state":{
"description":"Database process state",
"type":"object",
"properties":{
"status":{
"description":"Status of the database process",
"enum":[
"initializing",
"waiting",
"idle",
"suspended",
"aborting",
"shutdown",
"paused",
"working",
"other"
]
},
"detail":{
"description":"Detailed information for the database process",
"type":"string",
"minLength":"1",
"maxLength":"128"
}
},
"required":[
"status",
"detail"
],
"additionalProperties":false
},
"bytesMined":{
"description":"Number of Redo bytes mined per second",
"type":"integer",
"minimum":"0",
"maximum":"9223372036854776000"
},
"bytesSent":{
"description":"Number of Redo bytes sent per second",
"type":"integer",
"minimum":"0",
"maximum":"9223372036854776000"
},
"messagesCaptured":{
"description":"Number of messages captured per second",
"type":"integer",
"minimum":"0",
"maximum":"9223372036854776000"
},
"lag":{
"description":"Capture process lag in seconds",
"type":"integer",
"minimum":"0",
"maximum":"4294967295"
}
},
"required":[
"type",
"state",
"bytesMined",
"bytesSent",
"messagesCaptured",
"lag"
],
"additionalProperties":false
},
{
"description":"LogMiner Process Details",
"type":"object",
"properties":{
"type":{
"description":"Process type",
"enum":[
"logminer"
]
},
"role":{
"description":"LogMiner Role",
"enum":[
"reader",
"preparer",
"builder",
"merger",
"coordinator",
"applier",
"unknown"
]
}
},
"required":[
"type",
"role"
],
"additionalProperties":false
},
{
"description":"Apply Reader Process Details",
"type":"object",
"properties":{
"type":{
"description":"Process type",
"enum":[
"reader"
]
},
"state":{
"description":"Database process state",
"type":"object",
"properties":{
"status":{
"description":"Status of the database process",
"enum":[
"initializing",
"waiting",
"idle",
"suspended",
"aborting",
"shutdown",
"paused",
"working",
"other"
]
},
"detail":{
"description":"Detailed information for the database process",
"type":"string",
"minLength":"1",
"maxLength":"128"
}
},
"required":[
"status",
"detail"
],
"additionalProperties":false
},
"bytesReceived":{
"description":"Number of trail bytes received per second",
"type":"integer",
"minimum":"0",
"maximum":"9223372036854776000"
}
},
"required":[
"type",
"state",
"bytesReceived"
],
"additionalProperties":false
},
{
"description":"Apply Receiver Process Details",
"type":"object",
"properties":{
"type":{
"description":"Process type",
"enum":[
"receiver"
]
},
"state":{
"description":"Database process state",
"type":"object",
"properties":{
"status":{
"description":"Status of the database process",
"enum":[
"initializing",
"waiting",
"idle",
"suspended",
"aborting",
"shutdown",
"paused",
"working",
"other"
]
},
"detail":{
"description":"Detailed information for the database process",
"type":"string",
"minLength":"1",
"maxLength":"128"
}
},
"required":[
"status",
"detail"
],
"additionalProperties":false
},
"messagesReceived":{
"description":"Number of messages received per second",
"type":"integer",
"minimum":"0",
"maximum":"9223372036854776000"
},
"transactionsReceived":{
"description":"Number of transactions received per second",
"type":"integer",
"minimum":"0",
"maximum":"9223372036854776000"
}
},
"required":[
"type",
"state",
"messagesReceived",
"transactionsReceived"
],
"additionalProperties":false
},
{
"description":"Apply Coordinator Process Details",
"type":"object",
"properties":{
"type":{
"description":"Process type",
"enum":[
"coordinator"
]
},
"state":{
"description":"Database process state",
"type":"object",
"properties":{
"status":{
"description":"Status of the database process",
"enum":[
"initializing",
"waiting",
"idle",
"suspended",
"aborting",
"shutdown",
"paused",
"working",
"other"
]
},
"detail":{
"description":"Detailed information for the database process",
"type":"string",
"minLength":"1",
"maxLength":"128"
}
},
"required":[
"status",
"detail"
],
"additionalProperties":false
},
"transactionsApplied":{
"description":"Number of transactions applied per second",
"type":"integer",
"minimum":"0",
"maximum":"9223372036854776000"
}
},
"required":[
"type",
"state",
"transactionsApplied"
],
"additionalProperties":false
},
{
"description":"Apply Server Process Details",
"type":"object",
"properties":{
"type":{
"description":"Process type",
"enum":[
"applier"
]
},
"state":{
"description":"Database process state",
"type":"object",
"properties":{
"status":{
"description":"Status of the database process",
"enum":[
"initializing",
"waiting",
"idle",
"suspended",
"aborting",
"shutdown",
"paused",
"working",
"other"
]
},
"detail":{
"description":"Detailed information for the database process",
"type":"string",
"minLength":"1",
"maxLength":"128"
}
},
"required":[
"status",
"detail"
],
"additionalProperties":false
},
"messagesApplied":{
"description":"Number of messages applied per second",
"type":"integer",
"minimum":"0",
"maximum":"9223372036854776000"
}
},
"required":[
"type",
"state",
"messagesApplied"
],
"additionalProperties":false
}
]
},
"processId":{
"description":"Database process identifier",
"type":"integer",
"minimum":"1",
"maximum":"4294967295"
},
"sessionId":{
"description":"Database session identifier",
"type":"integer",
"minimum":"0",
"maximum":"9223372036854776000"
},
"cpuPercent":{
"description":"Percentage of CPU usage for the process",
"type":"number",
"minimum":"0",
"maximum":"100"
},
"idlePercent":{
"description":"Percentage of idle time for the process",
"type":"number",
"minimum":"0",
"maximum":"100"
},
"topEventPercent":{
"description":"Percentage of top session wait event time, excluding idle waits",
"type":"number",
"minimum":"0",
"maximum":"100"
},
"topEvent":{
"description":"Top session wait event name, excluding idle waits",
"type":"string",
"minLength":"1",
"maxLength":"132"
}
},
"required":[
"process",
"processId",
"sessionId",
"cpuPercent",
"idlePercent"
],
"additionalProperties":false
},
"minItems":"1",
"maxItems":"512"
}
},
"required":[
"collectionDate",
"processSamples"
],
"additionalProperties":false
}
}
Nested Schema : items
Type: object
Sampled statistics from all database processes for a point in time
Show Source
-
collectionDate(required):
string
Minimum Length: 20
Maximum Length: 32
Pattern: ^[0-9]{4}[-](0[1-9]|1[0-2])[-](0[1-9]|[12][0-9]|3[01])[tT ]([01][0-9]|2[0-3]):[0-5][0-9]:([0-5][0-9]|60)([.][0-9]{1,6})?([zZ]|[+-][0-9][0-9]:[0-5][0-9])$
Date/Time sample was collected
-
processSamples(required):
array processSamples
Minimum Number of Items: 1
Maximum Number of Items: 512
Database process statistics
{
"description":"Sampled statistics from all database processes for a point in time",
"type":"object",
"properties":{
"collectionDate":{
"description":"Date/Time sample was collected",
"type":"string",
"pattern":"^[0-9]{4}[-](0[1-9]|1[0-2])[-](0[1-9]|[12][0-9]|3[01])[tT ]([01][0-9]|2[0-3]):[0-5][0-9]:([0-5][0-9]|60)([.][0-9]{1,6})?([zZ]|[+-][0-9][0-9]:[0-5][0-9])$",
"minLength":"20",
"maxLength":"32"
},
"processSamples":{
"type":"array",
"description":"Database process statistics",
"items":{
"description":"Sampled statistics from a database process",
"type":"object",
"properties":{
"process":{
"description":"Process details",
"x-oneOf":[
{
"description":"Capture Process Details",
"type":"object",
"properties":{
"type":{
"description":"Process type",
"enum":[
"capture"
]
},
"state":{
"description":"Database process state",
"type":"object",
"properties":{
"status":{
"description":"Status of the database process",
"enum":[
"initializing",
"waiting",
"idle",
"suspended",
"aborting",
"shutdown",
"paused",
"working",
"other"
]
},
"detail":{
"description":"Detailed information for the database process",
"type":"string",
"minLength":"1",
"maxLength":"128"
}
},
"required":[
"status",
"detail"
],
"additionalProperties":false
},
"bytesMined":{
"description":"Number of Redo bytes mined per second",
"type":"integer",
"minimum":"0",
"maximum":"9223372036854776000"
},
"bytesSent":{
"description":"Number of Redo bytes sent per second",
"type":"integer",
"minimum":"0",
"maximum":"9223372036854776000"
},
"messagesCaptured":{
"description":"Number of messages captured per second",
"type":"integer",
"minimum":"0",
"maximum":"9223372036854776000"
},
"lag":{
"description":"Capture process lag in seconds",
"type":"integer",
"minimum":"0",
"maximum":"4294967295"
}
},
"required":[
"type",
"state",
"bytesMined",
"bytesSent",
"messagesCaptured",
"lag"
],
"additionalProperties":false
},
{
"description":"LogMiner Process Details",
"type":"object",
"properties":{
"type":{
"description":"Process type",
"enum":[
"logminer"
]
},
"role":{
"description":"LogMiner Role",
"enum":[
"reader",
"preparer",
"builder",
"merger",
"coordinator",
"applier",
"unknown"
]
}
},
"required":[
"type",
"role"
],
"additionalProperties":false
},
{
"description":"Apply Reader Process Details",
"type":"object",
"properties":{
"type":{
"description":"Process type",
"enum":[
"reader"
]
},
"state":{
"description":"Database process state",
"type":"object",
"properties":{
"status":{
"description":"Status of the database process",
"enum":[
"initializing",
"waiting",
"idle",
"suspended",
"aborting",
"shutdown",
"paused",
"working",
"other"
]
},
"detail":{
"description":"Detailed information for the database process",
"type":"string",
"minLength":"1",
"maxLength":"128"
}
},
"required":[
"status",
"detail"
],
"additionalProperties":false
},
"bytesReceived":{
"description":"Number of trail bytes received per second",
"type":"integer",
"minimum":"0",
"maximum":"9223372036854776000"
}
},
"required":[
"type",
"state",
"bytesReceived"
],
"additionalProperties":false
},
{
"description":"Apply Receiver Process Details",
"type":"object",
"properties":{
"type":{
"description":"Process type",
"enum":[
"receiver"
]
},
"state":{
"description":"Database process state",
"type":"object",
"properties":{
"status":{
"description":"Status of the database process",
"enum":[
"initializing",
"waiting",
"idle",
"suspended",
"aborting",
"shutdown",
"paused",
"working",
"other"
]
},
"detail":{
"description":"Detailed information for the database process",
"type":"string",
"minLength":"1",
"maxLength":"128"
}
},
"required":[
"status",
"detail"
],
"additionalProperties":false
},
"messagesReceived":{
"description":"Number of messages received per second",
"type":"integer",
"minimum":"0",
"maximum":"9223372036854776000"
},
"transactionsReceived":{
"description":"Number of transactions received per second",
"type":"integer",
"minimum":"0",
"maximum":"9223372036854776000"
}
},
"required":[
"type",
"state",
"messagesReceived",
"transactionsReceived"
],
"additionalProperties":false
},
{
"description":"Apply Coordinator Process Details",
"type":"object",
"properties":{
"type":{
"description":"Process type",
"enum":[
"coordinator"
]
},
"state":{
"description":"Database process state",
"type":"object",
"properties":{
"status":{
"description":"Status of the database process",
"enum":[
"initializing",
"waiting",
"idle",
"suspended",
"aborting",
"shutdown",
"paused",
"working",
"other"
]
},
"detail":{
"description":"Detailed information for the database process",
"type":"string",
"minLength":"1",
"maxLength":"128"
}
},
"required":[
"status",
"detail"
],
"additionalProperties":false
},
"transactionsApplied":{
"description":"Number of transactions applied per second",
"type":"integer",
"minimum":"0",
"maximum":"9223372036854776000"
}
},
"required":[
"type",
"state",
"transactionsApplied"
],
"additionalProperties":false
},
{
"description":"Apply Server Process Details",
"type":"object",
"properties":{
"type":{
"description":"Process type",
"enum":[
"applier"
]
},
"state":{
"description":"Database process state",
"type":"object",
"properties":{
"status":{
"description":"Status of the database process",
"enum":[
"initializing",
"waiting",
"idle",
"suspended",
"aborting",
"shutdown",
"paused",
"working",
"other"
]
},
"detail":{
"description":"Detailed information for the database process",
"type":"string",
"minLength":"1",
"maxLength":"128"
}
},
"required":[
"status",
"detail"
],
"additionalProperties":false
},
"messagesApplied":{
"description":"Number of messages applied per second",
"type":"integer",
"minimum":"0",
"maximum":"9223372036854776000"
}
},
"required":[
"type",
"state",
"messagesApplied"
],
"additionalProperties":false
}
]
},
"processId":{
"description":"Database process identifier",
"type":"integer",
"minimum":"1",
"maximum":"4294967295"
},
"sessionId":{
"description":"Database session identifier",
"type":"integer",
"minimum":"0",
"maximum":"9223372036854776000"
},
"cpuPercent":{
"description":"Percentage of CPU usage for the process",
"type":"number",
"minimum":"0",
"maximum":"100"
},
"idlePercent":{
"description":"Percentage of idle time for the process",
"type":"number",
"minimum":"0",
"maximum":"100"
},
"topEventPercent":{
"description":"Percentage of top session wait event time, excluding idle waits",
"type":"number",
"minimum":"0",
"maximum":"100"
},
"topEvent":{
"description":"Top session wait event name, excluding idle waits",
"type":"string",
"minLength":"1",
"maxLength":"132"
}
},
"required":[
"process",
"processId",
"sessionId",
"cpuPercent",
"idlePercent"
],
"additionalProperties":false
},
"minItems":"1",
"maxItems":"512"
}
},
"required":[
"collectionDate",
"processSamples"
],
"additionalProperties":false
}
Nested Schema : processSamples
Type: array
Minimum Number of Items: 1
Maximum Number of Items: 512
Database process statistics
Show Source
{
"type":"array",
"description":"Database process statistics",
"items":{
"description":"Sampled statistics from a database process",
"type":"object",
"properties":{
"process":{
"description":"Process details",
"x-oneOf":[
{
"description":"Capture Process Details",
"type":"object",
"properties":{
"type":{
"description":"Process type",
"enum":[
"capture"
]
},
"state":{
"description":"Database process state",
"type":"object",
"properties":{
"status":{
"description":"Status of the database process",
"enum":[
"initializing",
"waiting",
"idle",
"suspended",
"aborting",
"shutdown",
"paused",
"working",
"other"
]
},
"detail":{
"description":"Detailed information for the database process",
"type":"string",
"minLength":"1",
"maxLength":"128"
}
},
"required":[
"status",
"detail"
],
"additionalProperties":false
},
"bytesMined":{
"description":"Number of Redo bytes mined per second",
"type":"integer",
"minimum":"0",
"maximum":"9223372036854776000"
},
"bytesSent":{
"description":"Number of Redo bytes sent per second",
"type":"integer",
"minimum":"0",
"maximum":"9223372036854776000"
},
"messagesCaptured":{
"description":"Number of messages captured per second",
"type":"integer",
"minimum":"0",
"maximum":"9223372036854776000"
},
"lag":{
"description":"Capture process lag in seconds",
"type":"integer",
"minimum":"0",
"maximum":"4294967295"
}
},
"required":[
"type",
"state",
"bytesMined",
"bytesSent",
"messagesCaptured",
"lag"
],
"additionalProperties":false
},
{
"description":"LogMiner Process Details",
"type":"object",
"properties":{
"type":{
"description":"Process type",
"enum":[
"logminer"
]
},
"role":{
"description":"LogMiner Role",
"enum":[
"reader",
"preparer",
"builder",
"merger",
"coordinator",
"applier",
"unknown"
]
}
},
"required":[
"type",
"role"
],
"additionalProperties":false
},
{
"description":"Apply Reader Process Details",
"type":"object",
"properties":{
"type":{
"description":"Process type",
"enum":[
"reader"
]
},
"state":{
"description":"Database process state",
"type":"object",
"properties":{
"status":{
"description":"Status of the database process",
"enum":[
"initializing",
"waiting",
"idle",
"suspended",
"aborting",
"shutdown",
"paused",
"working",
"other"
]
},
"detail":{
"description":"Detailed information for the database process",
"type":"string",
"minLength":"1",
"maxLength":"128"
}
},
"required":[
"status",
"detail"
],
"additionalProperties":false
},
"bytesReceived":{
"description":"Number of trail bytes received per second",
"type":"integer",
"minimum":"0",
"maximum":"9223372036854776000"
}
},
"required":[
"type",
"state",
"bytesReceived"
],
"additionalProperties":false
},
{
"description":"Apply Receiver Process Details",
"type":"object",
"properties":{
"type":{
"description":"Process type",
"enum":[
"receiver"
]
},
"state":{
"description":"Database process state",
"type":"object",
"properties":{
"status":{
"description":"Status of the database process",
"enum":[
"initializing",
"waiting",
"idle",
"suspended",
"aborting",
"shutdown",
"paused",
"working",
"other"
]
},
"detail":{
"description":"Detailed information for the database process",
"type":"string",
"minLength":"1",
"maxLength":"128"
}
},
"required":[
"status",
"detail"
],
"additionalProperties":false
},
"messagesReceived":{
"description":"Number of messages received per second",
"type":"integer",
"minimum":"0",
"maximum":"9223372036854776000"
},
"transactionsReceived":{
"description":"Number of transactions received per second",
"type":"integer",
"minimum":"0",
"maximum":"9223372036854776000"
}
},
"required":[
"type",
"state",
"messagesReceived",
"transactionsReceived"
],
"additionalProperties":false
},
{
"description":"Apply Coordinator Process Details",
"type":"object",
"properties":{
"type":{
"description":"Process type",
"enum":[
"coordinator"
]
},
"state":{
"description":"Database process state",
"type":"object",
"properties":{
"status":{
"description":"Status of the database process",
"enum":[
"initializing",
"waiting",
"idle",
"suspended",
"aborting",
"shutdown",
"paused",
"working",
"other"
]
},
"detail":{
"description":"Detailed information for the database process",
"type":"string",
"minLength":"1",
"maxLength":"128"
}
},
"required":[
"status",
"detail"
],
"additionalProperties":false
},
"transactionsApplied":{
"description":"Number of transactions applied per second",
"type":"integer",
"minimum":"0",
"maximum":"9223372036854776000"
}
},
"required":[
"type",
"state",
"transactionsApplied"
],
"additionalProperties":false
},
{
"description":"Apply Server Process Details",
"type":"object",
"properties":{
"type":{
"description":"Process type",
"enum":[
"applier"
]
},
"state":{
"description":"Database process state",
"type":"object",
"properties":{
"status":{
"description":"Status of the database process",
"enum":[
"initializing",
"waiting",
"idle",
"suspended",
"aborting",
"shutdown",
"paused",
"working",
"other"
]
},
"detail":{
"description":"Detailed information for the database process",
"type":"string",
"minLength":"1",
"maxLength":"128"
}
},
"required":[
"status",
"detail"
],
"additionalProperties":false
},
"messagesApplied":{
"description":"Number of messages applied per second",
"type":"integer",
"minimum":"0",
"maximum":"9223372036854776000"
}
},
"required":[
"type",
"state",
"messagesApplied"
],
"additionalProperties":false
}
]
},
"processId":{
"description":"Database process identifier",
"type":"integer",
"minimum":"1",
"maximum":"4294967295"
},
"sessionId":{
"description":"Database session identifier",
"type":"integer",
"minimum":"0",
"maximum":"9223372036854776000"
},
"cpuPercent":{
"description":"Percentage of CPU usage for the process",
"type":"number",
"minimum":"0",
"maximum":"100"
},
"idlePercent":{
"description":"Percentage of idle time for the process",
"type":"number",
"minimum":"0",
"maximum":"100"
},
"topEventPercent":{
"description":"Percentage of top session wait event time, excluding idle waits",
"type":"number",
"minimum":"0",
"maximum":"100"
},
"topEvent":{
"description":"Top session wait event name, excluding idle waits",
"type":"string",
"minLength":"1",
"maxLength":"132"
}
},
"required":[
"process",
"processId",
"sessionId",
"cpuPercent",
"idlePercent"
],
"additionalProperties":false
},
"minItems":"1",
"maxItems":"512"
}
Nested Schema : items
Type: object
Sampled statistics from a database process
Show Source
{
"description":"Sampled statistics from a database process",
"type":"object",
"properties":{
"process":{
"description":"Process details",
"x-oneOf":[
{
"description":"Capture Process Details",
"type":"object",
"properties":{
"type":{
"description":"Process type",
"enum":[
"capture"
]
},
"state":{
"description":"Database process state",
"type":"object",
"properties":{
"status":{
"description":"Status of the database process",
"enum":[
"initializing",
"waiting",
"idle",
"suspended",
"aborting",
"shutdown",
"paused",
"working",
"other"
]
},
"detail":{
"description":"Detailed information for the database process",
"type":"string",
"minLength":"1",
"maxLength":"128"
}
},
"required":[
"status",
"detail"
],
"additionalProperties":false
},
"bytesMined":{
"description":"Number of Redo bytes mined per second",
"type":"integer",
"minimum":"0",
"maximum":"9223372036854776000"
},
"bytesSent":{
"description":"Number of Redo bytes sent per second",
"type":"integer",
"minimum":"0",
"maximum":"9223372036854776000"
},
"messagesCaptured":{
"description":"Number of messages captured per second",
"type":"integer",
"minimum":"0",
"maximum":"9223372036854776000"
},
"lag":{
"description":"Capture process lag in seconds",
"type":"integer",
"minimum":"0",
"maximum":"4294967295"
}
},
"required":[
"type",
"state",
"bytesMined",
"bytesSent",
"messagesCaptured",
"lag"
],
"additionalProperties":false
},
{
"description":"LogMiner Process Details",
"type":"object",
"properties":{
"type":{
"description":"Process type",
"enum":[
"logminer"
]
},
"role":{
"description":"LogMiner Role",
"enum":[
"reader",
"preparer",
"builder",
"merger",
"coordinator",
"applier",
"unknown"
]
}
},
"required":[
"type",
"role"
],
"additionalProperties":false
},
{
"description":"Apply Reader Process Details",
"type":"object",
"properties":{
"type":{
"description":"Process type",
"enum":[
"reader"
]
},
"state":{
"description":"Database process state",
"type":"object",
"properties":{
"status":{
"description":"Status of the database process",
"enum":[
"initializing",
"waiting",
"idle",
"suspended",
"aborting",
"shutdown",
"paused",
"working",
"other"
]
},
"detail":{
"description":"Detailed information for the database process",
"type":"string",
"minLength":"1",
"maxLength":"128"
}
},
"required":[
"status",
"detail"
],
"additionalProperties":false
},
"bytesReceived":{
"description":"Number of trail bytes received per second",
"type":"integer",
"minimum":"0",
"maximum":"9223372036854776000"
}
},
"required":[
"type",
"state",
"bytesReceived"
],
"additionalProperties":false
},
{
"description":"Apply Receiver Process Details",
"type":"object",
"properties":{
"type":{
"description":"Process type",
"enum":[
"receiver"
]
},
"state":{
"description":"Database process state",
"type":"object",
"properties":{
"status":{
"description":"Status of the database process",
"enum":[
"initializing",
"waiting",
"idle",
"suspended",
"aborting",
"shutdown",
"paused",
"working",
"other"
]
},
"detail":{
"description":"Detailed information for the database process",
"type":"string",
"minLength":"1",
"maxLength":"128"
}
},
"required":[
"status",
"detail"
],
"additionalProperties":false
},
"messagesReceived":{
"description":"Number of messages received per second",
"type":"integer",
"minimum":"0",
"maximum":"9223372036854776000"
},
"transactionsReceived":{
"description":"Number of transactions received per second",
"type":"integer",
"minimum":"0",
"maximum":"9223372036854776000"
}
},
"required":[
"type",
"state",
"messagesReceived",
"transactionsReceived"
],
"additionalProperties":false
},
{
"description":"Apply Coordinator Process Details",
"type":"object",
"properties":{
"type":{
"description":"Process type",
"enum":[
"coordinator"
]
},
"state":{
"description":"Database process state",
"type":"object",
"properties":{
"status":{
"description":"Status of the database process",
"enum":[
"initializing",
"waiting",
"idle",
"suspended",
"aborting",
"shutdown",
"paused",
"working",
"other"
]
},
"detail":{
"description":"Detailed information for the database process",
"type":"string",
"minLength":"1",
"maxLength":"128"
}
},
"required":[
"status",
"detail"
],
"additionalProperties":false
},
"transactionsApplied":{
"description":"Number of transactions applied per second",
"type":"integer",
"minimum":"0",
"maximum":"9223372036854776000"
}
},
"required":[
"type",
"state",
"transactionsApplied"
],
"additionalProperties":false
},
{
"description":"Apply Server Process Details",
"type":"object",
"properties":{
"type":{
"description":"Process type",
"enum":[
"applier"
]
},
"state":{
"description":"Database process state",
"type":"object",
"properties":{
"status":{
"description":"Status of the database process",
"enum":[
"initializing",
"waiting",
"idle",
"suspended",
"aborting",
"shutdown",
"paused",
"working",
"other"
]
},
"detail":{
"description":"Detailed information for the database process",
"type":"string",
"minLength":"1",
"maxLength":"128"
}
},
"required":[
"status",
"detail"
],
"additionalProperties":false
},
"messagesApplied":{
"description":"Number of messages applied per second",
"type":"integer",
"minimum":"0",
"maximum":"9223372036854776000"
}
},
"required":[
"type",
"state",
"messagesApplied"
],
"additionalProperties":false
}
]
},
"processId":{
"description":"Database process identifier",
"type":"integer",
"minimum":"1",
"maximum":"4294967295"
},
"sessionId":{
"description":"Database session identifier",
"type":"integer",
"minimum":"0",
"maximum":"9223372036854776000"
},
"cpuPercent":{
"description":"Percentage of CPU usage for the process",
"type":"number",
"minimum":"0",
"maximum":"100"
},
"idlePercent":{
"description":"Percentage of idle time for the process",
"type":"number",
"minimum":"0",
"maximum":"100"
},
"topEventPercent":{
"description":"Percentage of top session wait event time, excluding idle waits",
"type":"number",
"minimum":"0",
"maximum":"100"
},
"topEvent":{
"description":"Top session wait event name, excluding idle waits",
"type":"string",
"minLength":"1",
"maxLength":"132"
}
},
"required":[
"process",
"processId",
"sessionId",
"cpuPercent",
"idlePercent"
],
"additionalProperties":false
}
Nested Schema : process
Process details
Match One
Show Source
{
"description":"Process details",
"x-oneOf":[
{
"description":"Capture Process Details",
"type":"object",
"properties":{
"type":{
"description":"Process type",
"enum":[
"capture"
]
},
"state":{
"description":"Database process state",
"type":"object",
"properties":{
"status":{
"description":"Status of the database process",
"enum":[
"initializing",
"waiting",
"idle",
"suspended",
"aborting",
"shutdown",
"paused",
"working",
"other"
]
},
"detail":{
"description":"Detailed information for the database process",
"type":"string",
"minLength":"1",
"maxLength":"128"
}
},
"required":[
"status",
"detail"
],
"additionalProperties":false
},
"bytesMined":{
"description":"Number of Redo bytes mined per second",
"type":"integer",
"minimum":"0",
"maximum":"9223372036854776000"
},
"bytesSent":{
"description":"Number of Redo bytes sent per second",
"type":"integer",
"minimum":"0",
"maximum":"9223372036854776000"
},
"messagesCaptured":{
"description":"Number of messages captured per second",
"type":"integer",
"minimum":"0",
"maximum":"9223372036854776000"
},
"lag":{
"description":"Capture process lag in seconds",
"type":"integer",
"minimum":"0",
"maximum":"4294967295"
}
},
"required":[
"type",
"state",
"bytesMined",
"bytesSent",
"messagesCaptured",
"lag"
],
"additionalProperties":false
},
{
"description":"LogMiner Process Details",
"type":"object",
"properties":{
"type":{
"description":"Process type",
"enum":[
"logminer"
]
},
"role":{
"description":"LogMiner Role",
"enum":[
"reader",
"preparer",
"builder",
"merger",
"coordinator",
"applier",
"unknown"
]
}
},
"required":[
"type",
"role"
],
"additionalProperties":false
},
{
"description":"Apply Reader Process Details",
"type":"object",
"properties":{
"type":{
"description":"Process type",
"enum":[
"reader"
]
},
"state":{
"description":"Database process state",
"type":"object",
"properties":{
"status":{
"description":"Status of the database process",
"enum":[
"initializing",
"waiting",
"idle",
"suspended",
"aborting",
"shutdown",
"paused",
"working",
"other"
]
},
"detail":{
"description":"Detailed information for the database process",
"type":"string",
"minLength":"1",
"maxLength":"128"
}
},
"required":[
"status",
"detail"
],
"additionalProperties":false
},
"bytesReceived":{
"description":"Number of trail bytes received per second",
"type":"integer",
"minimum":"0",
"maximum":"9223372036854776000"
}
},
"required":[
"type",
"state",
"bytesReceived"
],
"additionalProperties":false
},
{
"description":"Apply Receiver Process Details",
"type":"object",
"properties":{
"type":{
"description":"Process type",
"enum":[
"receiver"
]
},
"state":{
"description":"Database process state",
"type":"object",
"properties":{
"status":{
"description":"Status of the database process",
"enum":[
"initializing",
"waiting",
"idle",
"suspended",
"aborting",
"shutdown",
"paused",
"working",
"other"
]
},
"detail":{
"description":"Detailed information for the database process",
"type":"string",
"minLength":"1",
"maxLength":"128"
}
},
"required":[
"status",
"detail"
],
"additionalProperties":false
},
"messagesReceived":{
"description":"Number of messages received per second",
"type":"integer",
"minimum":"0",
"maximum":"9223372036854776000"
},
"transactionsReceived":{
"description":"Number of transactions received per second",
"type":"integer",
"minimum":"0",
"maximum":"9223372036854776000"
}
},
"required":[
"type",
"state",
"messagesReceived",
"transactionsReceived"
],
"additionalProperties":false
},
{
"description":"Apply Coordinator Process Details",
"type":"object",
"properties":{
"type":{
"description":"Process type",
"enum":[
"coordinator"
]
},
"state":{
"description":"Database process state",
"type":"object",
"properties":{
"status":{
"description":"Status of the database process",
"enum":[
"initializing",
"waiting",
"idle",
"suspended",
"aborting",
"shutdown",
"paused",
"working",
"other"
]
},
"detail":{
"description":"Detailed information for the database process",
"type":"string",
"minLength":"1",
"maxLength":"128"
}
},
"required":[
"status",
"detail"
],
"additionalProperties":false
},
"transactionsApplied":{
"description":"Number of transactions applied per second",
"type":"integer",
"minimum":"0",
"maximum":"9223372036854776000"
}
},
"required":[
"type",
"state",
"transactionsApplied"
],
"additionalProperties":false
},
{
"description":"Apply Server Process Details",
"type":"object",
"properties":{
"type":{
"description":"Process type",
"enum":[
"applier"
]
},
"state":{
"description":"Database process state",
"type":"object",
"properties":{
"status":{
"description":"Status of the database process",
"enum":[
"initializing",
"waiting",
"idle",
"suspended",
"aborting",
"shutdown",
"paused",
"working",
"other"
]
},
"detail":{
"description":"Detailed information for the database process",
"type":"string",
"minLength":"1",
"maxLength":"128"
}
},
"required":[
"status",
"detail"
],
"additionalProperties":false
},
"messagesApplied":{
"description":"Number of messages applied per second",
"type":"integer",
"minimum":"0",
"maximum":"9223372036854776000"
}
},
"required":[
"type",
"state",
"messagesApplied"
],
"additionalProperties":false
}
]
}
Nested Schema : process-x-oneOf[0]
Type: object
Capture Process Details
Show Source
{
"description":"Capture Process Details",
"type":"object",
"properties":{
"type":{
"description":"Process type",
"enum":[
"capture"
]
},
"state":{
"description":"Database process state",
"type":"object",
"properties":{
"status":{
"description":"Status of the database process",
"enum":[
"initializing",
"waiting",
"idle",
"suspended",
"aborting",
"shutdown",
"paused",
"working",
"other"
]
},
"detail":{
"description":"Detailed information for the database process",
"type":"string",
"minLength":"1",
"maxLength":"128"
}
},
"required":[
"status",
"detail"
],
"additionalProperties":false
},
"bytesMined":{
"description":"Number of Redo bytes mined per second",
"type":"integer",
"minimum":"0",
"maximum":"9223372036854776000"
},
"bytesSent":{
"description":"Number of Redo bytes sent per second",
"type":"integer",
"minimum":"0",
"maximum":"9223372036854776000"
},
"messagesCaptured":{
"description":"Number of messages captured per second",
"type":"integer",
"minimum":"0",
"maximum":"9223372036854776000"
},
"lag":{
"description":"Capture process lag in seconds",
"type":"integer",
"minimum":"0",
"maximum":"4294967295"
}
},
"required":[
"type",
"state",
"bytesMined",
"bytesSent",
"messagesCaptured",
"lag"
],
"additionalProperties":false
}
Nested Schema : process-x-oneOf[1]
Type: object
LogMiner Process Details
Show Source
-
role(required):
Allowed Values: [
"reader",
"preparer",
"builder",
"merger",
"coordinator",
"applier",
"unknown"
]
LogMiner Role
-
type(required):
Allowed Values: [
"logminer"
]
Process type
{
"description":"LogMiner Process Details",
"type":"object",
"properties":{
"type":{
"description":"Process type",
"enum":[
"logminer"
]
},
"role":{
"description":"LogMiner Role",
"enum":[
"reader",
"preparer",
"builder",
"merger",
"coordinator",
"applier",
"unknown"
]
}
},
"required":[
"type",
"role"
],
"additionalProperties":false
}
Nested Schema : process-x-oneOf[2]
Type: object
Apply Reader Process Details
Show Source
{
"description":"Apply Reader Process Details",
"type":"object",
"properties":{
"type":{
"description":"Process type",
"enum":[
"reader"
]
},
"state":{
"description":"Database process state",
"type":"object",
"properties":{
"status":{
"description":"Status of the database process",
"enum":[
"initializing",
"waiting",
"idle",
"suspended",
"aborting",
"shutdown",
"paused",
"working",
"other"
]
},
"detail":{
"description":"Detailed information for the database process",
"type":"string",
"minLength":"1",
"maxLength":"128"
}
},
"required":[
"status",
"detail"
],
"additionalProperties":false
},
"bytesReceived":{
"description":"Number of trail bytes received per second",
"type":"integer",
"minimum":"0",
"maximum":"9223372036854776000"
}
},
"required":[
"type",
"state",
"bytesReceived"
],
"additionalProperties":false
}
Nested Schema : process-x-oneOf[3]
Type: object
Apply Receiver Process Details
Show Source
{
"description":"Apply Receiver Process Details",
"type":"object",
"properties":{
"type":{
"description":"Process type",
"enum":[
"receiver"
]
},
"state":{
"description":"Database process state",
"type":"object",
"properties":{
"status":{
"description":"Status of the database process",
"enum":[
"initializing",
"waiting",
"idle",
"suspended",
"aborting",
"shutdown",
"paused",
"working",
"other"
]
},
"detail":{
"description":"Detailed information for the database process",
"type":"string",
"minLength":"1",
"maxLength":"128"
}
},
"required":[
"status",
"detail"
],
"additionalProperties":false
},
"messagesReceived":{
"description":"Number of messages received per second",
"type":"integer",
"minimum":"0",
"maximum":"9223372036854776000"
},
"transactionsReceived":{
"description":"Number of transactions received per second",
"type":"integer",
"minimum":"0",
"maximum":"9223372036854776000"
}
},
"required":[
"type",
"state",
"messagesReceived",
"transactionsReceived"
],
"additionalProperties":false
}
Nested Schema : process-x-oneOf[4]
Type: object
Apply Coordinator Process Details
Show Source
{
"description":"Apply Coordinator Process Details",
"type":"object",
"properties":{
"type":{
"description":"Process type",
"enum":[
"coordinator"
]
},
"state":{
"description":"Database process state",
"type":"object",
"properties":{
"status":{
"description":"Status of the database process",
"enum":[
"initializing",
"waiting",
"idle",
"suspended",
"aborting",
"shutdown",
"paused",
"working",
"other"
]
},
"detail":{
"description":"Detailed information for the database process",
"type":"string",
"minLength":"1",
"maxLength":"128"
}
},
"required":[
"status",
"detail"
],
"additionalProperties":false
},
"transactionsApplied":{
"description":"Number of transactions applied per second",
"type":"integer",
"minimum":"0",
"maximum":"9223372036854776000"
}
},
"required":[
"type",
"state",
"transactionsApplied"
],
"additionalProperties":false
}
Nested Schema : process-x-oneOf[5]
Type: object
Apply Server Process Details
Show Source
{
"description":"Apply Server Process Details",
"type":"object",
"properties":{
"type":{
"description":"Process type",
"enum":[
"applier"
]
},
"state":{
"description":"Database process state",
"type":"object",
"properties":{
"status":{
"description":"Status of the database process",
"enum":[
"initializing",
"waiting",
"idle",
"suspended",
"aborting",
"shutdown",
"paused",
"working",
"other"
]
},
"detail":{
"description":"Detailed information for the database process",
"type":"string",
"minLength":"1",
"maxLength":"128"
}
},
"required":[
"status",
"detail"
],
"additionalProperties":false
},
"messagesApplied":{
"description":"Number of messages applied per second",
"type":"integer",
"minimum":"0",
"maximum":"9223372036854776000"
}
},
"required":[
"type",
"state",
"messagesApplied"
],
"additionalProperties":false
}
Nested Schema : state
Type: object
Database process state
Show Source
-
detail(required):
string
Minimum Length: 1
Maximum Length: 128
Detailed information for the database process
-
status(required):
Allowed Values: [
"initializing",
"waiting",
"idle",
"suspended",
"aborting",
"shutdown",
"paused",
"working",
"other"
]
Status of the database process
{
"description":"Database process state",
"type":"object",
"properties":{
"status":{
"description":"Status of the database process",
"enum":[
"initializing",
"waiting",
"idle",
"suspended",
"aborting",
"shutdown",
"paused",
"working",
"other"
]
},
"detail":{
"description":"Detailed information for the database process",
"type":"string",
"minLength":"1",
"maxLength":"128"
}
},
"required":[
"status",
"detail"
],
"additionalProperties":false
}
Nested Schema : state
Type: object
Database process state
Show Source
-
detail(required):
string
Minimum Length: 1
Maximum Length: 128
Detailed information for the database process
-
status(required):
Allowed Values: [
"initializing",
"waiting",
"idle",
"suspended",
"aborting",
"shutdown",
"paused",
"working",
"other"
]
Status of the database process
{
"description":"Database process state",
"type":"object",
"properties":{
"status":{
"description":"Status of the database process",
"enum":[
"initializing",
"waiting",
"idle",
"suspended",
"aborting",
"shutdown",
"paused",
"working",
"other"
]
},
"detail":{
"description":"Detailed information for the database process",
"type":"string",
"minLength":"1",
"maxLength":"128"
}
},
"required":[
"status",
"detail"
],
"additionalProperties":false
}
Nested Schema : state
Type: object
Database process state
Show Source
-
detail(required):
string
Minimum Length: 1
Maximum Length: 128
Detailed information for the database process
-
status(required):
Allowed Values: [
"initializing",
"waiting",
"idle",
"suspended",
"aborting",
"shutdown",
"paused",
"working",
"other"
]
Status of the database process
{
"description":"Database process state",
"type":"object",
"properties":{
"status":{
"description":"Status of the database process",
"enum":[
"initializing",
"waiting",
"idle",
"suspended",
"aborting",
"shutdown",
"paused",
"working",
"other"
]
},
"detail":{
"description":"Detailed information for the database process",
"type":"string",
"minLength":"1",
"maxLength":"128"
}
},
"required":[
"status",
"detail"
],
"additionalProperties":false
}
Nested Schema : state
Type: object
Database process state
Show Source
-
detail(required):
string
Minimum Length: 1
Maximum Length: 128
Detailed information for the database process
-
status(required):
Allowed Values: [
"initializing",
"waiting",
"idle",
"suspended",
"aborting",
"shutdown",
"paused",
"working",
"other"
]
Status of the database process
{
"description":"Database process state",
"type":"object",
"properties":{
"status":{
"description":"Status of the database process",
"enum":[
"initializing",
"waiting",
"idle",
"suspended",
"aborting",
"shutdown",
"paused",
"working",
"other"
]
},
"detail":{
"description":"Detailed information for the database process",
"type":"string",
"minLength":"1",
"maxLength":"128"
}
},
"required":[
"status",
"detail"
],
"additionalProperties":false
}
Nested Schema : state
Type: object
Database process state
Show Source
-
detail(required):
string
Minimum Length: 1
Maximum Length: 128
Detailed information for the database process
-
status(required):
Allowed Values: [
"initializing",
"waiting",
"idle",
"suspended",
"aborting",
"shutdown",
"paused",
"working",
"other"
]
Status of the database process
{
"description":"Database process state",
"type":"object",
"properties":{
"status":{
"description":"Status of the database process",
"enum":[
"initializing",
"waiting",
"idle",
"suspended",
"aborting",
"shutdown",
"paused",
"working",
"other"
]
},
"detail":{
"description":"Detailed information for the database process",
"type":"string",
"minLength":"1",
"maxLength":"128"
}
},
"required":[
"status",
"detail"
],
"additionalProperties":false
}