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=currentDomainPartitionRuntime

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

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

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

    This resource's serverRuntimes 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 BUCAdmin:BUCAdmin123 \
-H X-Requested-By:MyClient \
-H Accept:application/json \
-X GET http://localhost:7001/BUC/management/weblogic/latest/domainRuntime
Example Response
HTTP/1.1 200 OK

Response Body:
{
    "links": [
        {
            "rel": "parent",
            "href": "http:\//localhost:7001/BUC/management/weblogic/latest"
        },
        {
            "rel": "currentDomainPartitionRuntime",
            "href": "http:\//localhost:7001/BUC/management/weblogic/latest/domainRuntime/domainPartitionRuntimes/BUCPartition"
        },
        {
            "rel": "self",
            "href": "http:\//localhost:7001/BUC/management/weblogic/latest/domainRuntime"
        },
        {
            "rel": "canonical",
            "href": "http:\//localhost:7001/BUC/management/weblogic/latest/domainRuntime"
        },
        {
            "rel": "domainPartitionRuntimes",
            "href": "http:\//localhost:7001/BUC/management/weblogic/latest/domainRuntime/domainPartitionRuntimes"
        },
        {
            "rel": "serverRuntimes",
            "href": "http:\//localhost:7001/BUC/management/weblogic/latest/domainRuntime/serverRuntimes"
        },
        {
            "rel": "search",
            "href": "http:\//localhost:7001/BUC/management/weblogic/latest/domainRuntime/search"
        }
    ],
    "identity": [],
    "name": "bean",
    "type": "DomainRuntime",
    "currentDomainPartitionRuntime": [
        "domainPartitionRuntimes",
        "BUCPartition"
    ]
}
Back to Top