View This Domain Runtime

get

/management/weblogic/{version}/domainRuntime

View this domain runtime.

Note: This tree of resources is used to monitor the entire WebLogic Server domain.

Request

Path Parameters
Query Parameters
  • The 'excludeFields' query parameter is used to restrict which fields are returned in the response. It is a comma separated list of field names. If present, only fields whose name is not on the list will be returned. If not present, all fields are returned (unless the 'fields' query parameter is specified). Note: 'fields' must not be specified if 'excludeFields' is specified.
  • The 'fields' query parameter is used to restrict which fields are returned in the response. It is a comma separated list of field names. If present, only fields with matching names are returned. If not present, all fields are returned (unless the 'excludeFields' query parameter is specified). Note: 'excludeFields' must not be specified if 'fields' is specified.
Security
Back to Top

Response

Supported Media Types

200 Response

Returns this domain runtime.

This method can return the following links:

  • rel=SNMPAgentRuntime uri=/management/weblogic/{version}/domainRuntime/SNMPAgentRuntime

    This resource's SNMPAgentRuntime singleton resource.

  • rel=action title=forceShutdownPartitionWait uri=/management/weblogic/{version}/domainRuntime/forceShutdownPartitionWait

    This resource's forceShutdownPartitionWait action resource.

  • rel=action title=restartSystemResource uri=/management/weblogic/{version}/domainRuntime/restartSystemResource

    This resource's restartSystemResource action resource.

  • rel=action title=startPartitionWait uri=/management/weblogic/{version}/domainRuntime/startPartitionWait

    This resource's startPartitionWait action resource.

  • rel=appRuntimeStateRuntime uri=/management/weblogic/{version}/domainRuntime/appRuntimeStateRuntime

    This resource's appRuntimeStateRuntime singleton resource.

  • rel=batchJobRepositoryRuntime uri=/management/weblogic/{version}/domainRuntime/batchJobRepositoryRuntime

    This resource's batchJobRepositoryRuntime singleton resource.

  • rel=consoleRuntime uri=/management/weblogic/{version}/domainRuntime/consoleRuntime

    This resource's consoleRuntime singleton resource.

  • rel=currentDomainPartitionRuntime

    This resource's currentDomainPartitionRuntime reference to a domain partition runtime resource.

  • rel=deploymentManager uri=/management/weblogic/{version}/domainRuntime/deploymentManager

    This resource's deploymentManager singleton resource.

  • rel=domainPartitionRuntimes uri=/management/weblogic/{version}/domainRuntime/domainPartitionRuntimes

    This resource's domainPartitionRuntimes collection resource.

  • rel=editSessionConfigurationManager uri=/management/weblogic/{version}/domainRuntime/editSessionConfigurationManager

    This resource's editSessionConfigurationManager singleton resource.

  • rel=elasticServiceManagerRuntime uri=/management/weblogic/{version}/domainRuntime/elasticServiceManagerRuntime

    This resource's elasticServiceManagerRuntime singleton resource.

  • rel=logRuntime uri=/management/weblogic/{version}/domainRuntime/logRuntime

    This resource's logRuntime singleton resource.

  • rel=messageDrivenControlEJBRuntime uri=/management/weblogic/{version}/domainRuntime/messageDrivenControlEJBRuntime

    This resource's messageDrivenControlEJBRuntime singleton resource.

  • rel=migratableServiceCoordinatorRuntime uri=/management/weblogic/{version}/domainRuntime/migratableServiceCoordinatorRuntime

    This resource's migratableServiceCoordinatorRuntime singleton resource.

  • rel=migrationDataRuntimes uri=/management/weblogic/{version}/domainRuntime/migrationDataRuntimes

    This resource's migrationDataRuntimes collection resource.

  • rel=nodeManagerRuntimes uri=/management/weblogic/{version}/domainRuntime/nodeManagerRuntimes

    This resource's nodeManagerRuntimes collection resource.

  • rel=policySubjectManagerRuntime uri=/management/weblogic/{version}/domainRuntime/policySubjectManagerRuntime

    This resource's policySubjectManagerRuntime singleton resource.

  • rel=resourceGroupLifeCycleRuntimes uri=/management/weblogic/{version}/domainRuntime/resourceGroupLifeCycleRuntimes

    This resource's resourceGroupLifeCycleRuntimes collection resource.

  • rel=rolloutService uri=/management/weblogic/{version}/domainRuntime/rolloutService

    This resource's rolloutService singleton resource.

  • rel=search uri=/management/weblogic/{version}/domainRuntime/search

    This resource's search resource.

  • rel=serverLifeCycleRuntimes uri=/management/weblogic/{version}/domainRuntime/serverLifeCycleRuntimes

    This resource's serverLifeCycleRuntimes collection resource.

  • rel=serverRuntimes uri=/management/weblogic/{version}/domainRuntime/serverRuntimes

    This resource's serverRuntimes resource.

  • rel=serviceMigrationDataRuntimes uri=/management/weblogic/{version}/domainRuntime/serviceMigrationDataRuntimes

    This resource's serviceMigrationDataRuntimes collection resource.

  • rel=systemComponentLifeCycleRuntimes uri=/management/weblogic/{version}/domainRuntime/systemComponentLifeCycleRuntimes

    This resource's systemComponentLifeCycleRuntimes collection resource.

Body ()
Root Schema : Domain Runtime
Type: object
Show Source
Nested Schema : Domain Partition Runtime Reference
Type: array
Title: Domain Partition Runtime Reference
Read Only: true
Contains the domain partition runtime reference.

Returns the domain partition runtime MBean for the "current" partition

Show Source
Back to Top

Examples

View this domain runtime.

This example uses the GET method to view this domain runtime.

Example Request
curl -v \
--user admin:admin123 \
-H X-Requested-By:MyClient \
-H Accept:application/json \
-X GET http://localhost:7001/management/weblogic/latest/domainRuntime?fields=activationTime&links=self
Example Response
HTTP/1.1 200 OK

Response Body:
{
    "links": [{
        "rel": "self",
        "href": "http:\//localhost:7001/management/weblogic/latest/domainRuntime"
    }],
    "activationTime": "2019-02-07T09:07:50.498-05:00"
}
Back to Top