ルート・スキーマ: Integrated Diagnostics Results
型: object
タイトル: Integrated Diagnostics Results
ソースの表示
{
"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
}
ネストされたスキーマ: samples
型: array
期間のサンプル統計
ソースの表示
{
"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
}
}
ネストされたスキーマ: items
型: object
ある時点でのすべてのデータベース・プロセスからのサンプル統計
ソースの表示
{
"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
}
ネストされたスキーマ: processSamples
型: array
最小アイテム数: 1
最大アイテム数: 512
データベース・プロセス統計
ソースの表示
{
"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"
}
ネストされたスキーマ: items
型: object
データベース・プロセスからのサンプル統計
ソースの表示
{
"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
}
ネストされたスキーマ: process
プロセス詳細
1つに一致
ソースの表示
{
"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
}
]
}
ネストされたスキーマ: process-x-oneOf[0]
型: object
取得プロセス詳細
ソースの表示
{
"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
}
ネストされたスキーマ: process-x-oneOf[1]
型: object
LogMinerプロセス詳細
ソースの表示
- role(必須):
指定できる値: [ "reader", "preparer", "builder", "merger", "coordinator", "applier", "unknown" ]
LogMinerロール
- type(必須):
指定できる値: [ "logminer" ]
プロセス・タイプ
{
"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
}
ネストされたスキーマ: process-x-oneOf[2]
型: object
リーダーの適用プロセス詳細
ソースの表示
{
"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
}
ネストされたスキーマ: process-x-oneOf[3]
型: object
レシーバの適用プロセス詳細
ソースの表示
{
"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
}
ネストされたスキーマ: process-x-oneOf[4]
型: object
コーディネータの適用プロセス詳細
ソースの表示
{
"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
}
ネストされたスキーマ: process-x-oneOf[5]
型: object
サーバーの適用プロセス詳細
ソースの表示
{
"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
}
ネストされたスキーマ: state
型: object
データベース・プロセス状態
ソースの表示
- detail(必須): string
最小長: 1
最大長: 128
データベース・プロセスの詳細情報
- status(必須):
指定できる値: [ "initializing", "waiting", "idle", "suspended", "aborting", "shutdown", "paused", "working", "other" ]
データベース・プロセスのステータス
{
"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
}
ネストされたスキーマ: state
型: object
データベース・プロセス状態
ソースの表示
- detail(必須): string
最小長: 1
最大長: 128
データベース・プロセスの詳細情報
- status(必須):
指定できる値: [ "initializing", "waiting", "idle", "suspended", "aborting", "shutdown", "paused", "working", "other" ]
データベース・プロセスのステータス
{
"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
}
ネストされたスキーマ: state
型: object
データベース・プロセス状態
ソースの表示
- detail(必須): string
最小長: 1
最大長: 128
データベース・プロセスの詳細情報
- status(必須):
指定できる値: [ "initializing", "waiting", "idle", "suspended", "aborting", "shutdown", "paused", "working", "other" ]
データベース・プロセスのステータス
{
"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
}
ネストされたスキーマ: state
型: object
データベース・プロセス状態
ソースの表示
- detail(必須): string
最小長: 1
最大長: 128
データベース・プロセスの詳細情報
- status(必須):
指定できる値: [ "initializing", "waiting", "idle", "suspended", "aborting", "shutdown", "paused", "working", "other" ]
データベース・プロセスのステータス
{
"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
}
ネストされたスキーマ: state
型: object
データベース・プロセス状態
ソースの表示
- detail(必須): string
最小長: 1
最大長: 128
データベース・プロセスの詳細情報
- status(必須):
指定できる値: [ "initializing", "waiting", "idle", "suspended", "aborting", "shutdown", "paused", "working", "other" ]
データベース・プロセスのステータス
{
"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
}