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=restartSystemResource uri=/management/weblogic/{version}/domainRuntime/restartSystemResource

    This resource's restartSystemResource 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=deploymentManager uri=/management/weblogic/{version}/domainRuntime/deploymentManager

    This resource's deploymentManager singleton 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=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
  • Read Only: true

    The time when the domain became active.

    This value represents a date as a string in ISO 8601 format, yyyy-MM-dd'T'HH:mm:ss.SSSXXX
  • Read Only: true

    The user-specified name of this MBean instance.

    This name is included as one of the key properties in the MBean's javax.management.ObjectName

    Name=user-specified-name

  • Read Only: true

    Returns the type of the MBean.

    Constraints

    • unharvestable
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": "2020-01-08T08:59:56.412-05:00"
}
Back to Top