Configure Debug Attributes

Use the REST API endpoint below to configure debug attributes. A GET request to the CreateForm URL retrieves both the default parameters and the create URL. Send a POST request to the create URL to create the child MBean.

URL Syntax

For the GET:

/management/weblogic/latest/edit/customResources/serverdebug/customResource/servers/<server>/debugAttributeCreateForm

For the POST or DELETE:

/management/weblogic/latest/edit/customResources/serverdebug/customResource/servers/<server>/debugAttributes

HTTP Methods

  • GET
  • POST
  • DELETE

Parameters

The debug attributes you can set include:

  • wlss.Admin
  • wlss.AppRoute
  • wlss.CallState
  • wlss.CoherenceStore
  • wlss.concurrent
  • wlss.Deployment
  • wlss.Diameter
  • wlss.Dns
  • wlss.Filters
  • wlss.Geo

Table 17-17 URL Parameters

Names Description
links Set to none if you want to remove the links from the response. Set to an enumerated list of the links to return. For example:
.../debugAttributeCreateForm?links=none
fields Set to an enumerated list of the fields to return. For example:
.../debugAttributes?links=none&fields=name

Examples

Example 17-51 Get the CreateForm

curl -u weblogic:<password> \
  'http://10.0.0.1:7001/management/weblogic/latest/edit/customResources/serverdebug/customResource/servers/AdminServer/debugAttributeCreateForm'

Example response:

{
    "links": [
        {
            "rel": "parent",
            "href": "http://10.0.0.1:7001/management/weblogic/latest/edit/customResources/serverdebug/customResource/servers/AdminServer"
        },
        {
            "rel": "self",
            "href": "http://10.0.0.1:7001/management/weblogic/latest/edit/customResources/serverdebug/customResource/servers/AdminServer/debugAttributeCreateForm"
        },
        {
            "rel": "canonical",
            "href": "http://10.0.0.1:7001/management/weblogic/latest/edit/customResources/serverdebug/customResource/servers/AdminServer/debugAttributeCreateForm"
        },
        {
            "rel": "create",
            "href": "http://10.0.0.1:7001/management/weblogic/latest/edit/customResources/serverdebug/customResource/servers/AdminServer/debugAttributes"
        }
    ],
    "name": null,
    "state": false
}

Example 17-52 Create a custom resource

Send a POST request to set the debug attribute.

curl -X POST \
  -d@config.xml \
  -u weblogic:<password> \
  -H 'X-Requested-By: MyClient' \
  -H 'Accept: application/json' \
  -H 'Content-Type: application/json' \
  'http://10.0.0.1:7001/management/weblogic/latest/edit/customResources/serverdebug/customResource/servers/AdminServer/debugAttributes'

The contents of config.json:

{   
  "name": "wlss.Dns",
  "state": true
}

Example 17-53 Retrieve the created resource

After the resource has been created, send a GET request to view its links and attributes.

curl -u weblogic:<password> \
  'http://10.0.0.1:7001/management/weblogic/latest/edit/customResources/serverdebug/customResource/servers/AdminServer/debugAttributes'

An example response:

{
    "links": [
        {
            "rel": "parent",
            "href": "http://10.0.0.1:7001/management/weblogic/latest/edit/customResources/serverdebug/customResource/servers/AdminServer"
        },
        {
            "rel": "self",
            "href": "http://10.0.0.1:7001/management/weblogic/latest/edit/customResources/serverdebug/customResource/servers/AdminServer/debugAttributes"
        },
        {
            "rel": "canonical",
            "href": "http://10.0.0.1:7001/management/weblogic/latest/edit/customResources/serverdebug/customResource/servers/AdminServer/debugAttributes"
        },
        {
            "rel": "create-form",
            "href": "http://10.0.0.1:7001/management/weblogic/latest/edit/customResources/serverdebug/customResource/servers/AdminServer/debugAttributeCreateForm"
        }
    ],
    "items": [
        {
            "links": [
                {
                    "rel": "self",
                    "href": "http://10.0.0.1:7001/management/weblogic/latest/edit/customResources/serverdebug/customResource/servers/AdminServer/debugAttributes/wlss.Dns"
                },
                {
                    "rel": "canonical",
                    "href": "http://10.0.0.1:7001/management/weblogic/latest/edit/customResources/serverdebug/customResource/servers/AdminServer/debugAttributes/wlss.Dns"
                }
            ],
            "identity": [
                "customResources",
                "serverdebug",
                "customResource",
                "servers",
                "AdminServer",
                "debugAttributes",
                "wlss.Dns"
            ],
            "name": "wlss.Dns",
            "state": true
        }
    ]
}