Configure Message Debug

Use the REST API endpoint below to configure message debug. 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/sipserver/customResource/messageDebugCreateForm

For the POST or DELETE:

/management/weblogic/latest/edit/customResources/sipserver/customResource/messageDebug

HTTP Methods

  • GET
  • POST
  • DELETE

Parameters

Table 17-10 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:
.../messageDebugCreateForm?links=parent
fields Set to an enumerated list of the fields to return. For example:
.../messageDebug?links=none&fields=name

Examples

Example 17-31 Get the Message Debug CreateForm

curl -u weblogic:<password> \
  'http://10.0.0.1:7001/management/weblogic/latest/edit/customResources/sipserver/customResource/messageDebugCreateForm'

Example response:

{
    "links": [
        {
            "rel": "parent",
            "href": "http://10.0.0.1:7001/management/weblogic/latest/edit/customResources/sipserver/customResource"
        },
        {
            "rel": "self",
            "href": "http://10.0.0.1:7001/management/weblogic/latest/edit/customResources/sipserver/customResource/messageDebugCreateForm"
        },
        {
            "rel": "canonical",
            "href": "http://10.0.0.1:7001/management/weblogic/latest/edit/customResources/sipserver/customResource/messageDebugCreateForm"
        },
        {
            "rel": "create",
            "href": "http://10.0.0.1:7001/management/weblogic/latest/edit/customResources/sipserver/customResource/messageDebug"
        }
    ],
    "dateFormatPattern": null,
    "fileMinSize": 500,
    "logFilename": "sip-messages.log",
    "fileTimeSpanFactor": 3600000,
    "loggingEnabled": false,
    "level": null,
    "rotationType": "bySize",
    "fileTimeSpan": 24,
    "numberOfFilesLimited": false,
    "fileCount": 7,
    "rotateLogOnStartup": true,
    "localLoggingEnabled": true,
    "rotationTime": "00:00",
    "logFileRotationDir": null
}

Example 17-32 Create a custom resource

Send a POST request to create the message debug element.

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/sipserver/customResource/messageDebug'

The contents of config.json:

{   
  "dateFormatPattern": "MMM d, yyyy h:mm:ss,SSS a z",
  "fileMinSize": 500,
  "logFilename": "sip-messages.log",
  "fileTimeSpanFactor": 3600000,
  "loggingEnabled": false,
  "level": "full",
  "rotationType": "bySize",
  "fileTimeSpan": 24,
  "numberOfFilesLimited": false,
  "fileCount": 7,
  "rotateLogOnStartup": true,
  "name": null,
  "localLoggingEnabled": true,
  "rotationTime": "00:00",
  "logFileRotationDir": "/tmp/log"
}

Example 17-33

After the element 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/sipserver/customResource/messageDebug'

An example response:

{
    "links": [
        {
            "rel": "parent",
            "href": "http://10.0.0.1:7001/management/weblogic/latest/edit/customResources/sipserver/customResource"
        },
        {
            "rel": "self",
            "href": "http://10.0.0.1:7001/management/weblogic/latest/edit/customResources/sipserver/customResource/messageDebug"
        },
        {
            "rel": "canonical",
            "href": "http://10.0.0.1:7001/management/weblogic/latest/edit/customResources/sipserver/customResource/messageDebug"
        },
        {
            "rel": "format",
            "href": "http://10.0.0.1:7001/management/weblogic/latest/edit/customResources/sipserver/customResource/messageDebug/format"
        },
        {
            "rel": "formatCreateForm",
            "href": "http://10.0.0.1:7001/management/weblogic/latest/edit/customResources/sipserver/customResource/messageDebug/formatCreateForm"
        },
        {
            "rel": "stringRep",
            "href": "http://10.0.0.1:7001/management/weblogic/latest/edit/customResources/sipserver/customResource/messageDebug/stringRep"
        },
        {
            "rel": "stringRepCreateForm",
            "href": "http://10.0.0.1:7001/management/weblogic/latest/edit/customResources/sipserver/customResource/messageDebug/stringRepCreateForm"
        },
        {
            "rel": "create-form",
            "href": "http://10.0.0.1:7001/management/weblogic/latest/edit/customResources/sipserver/customResource/messageDebugCreateForm"
        }
    ],
    "identity": [
        "customResources",
        "sipserver",
        "customResource",
        "messageDebug"
    ],
    "dateFormatPattern": "MMM d, yyyy h:mm:ss,SSS a z",
    "fileMinSize": 500,
    "logFilename": "sip-messages.log",
    "fileTimeSpanFactor": 3600000,
    "loggingEnabled": false,
    "level": "full",
    "rotationType": "bySize",
    "fileTimeSpan": 24,
    "numberOfFilesLimited": false,
    "fileCount": 7,
    "rotateLogOnStartup": true,
    "name": null,
    "localLoggingEnabled": true,
    "rotationTime": "00:00",
    "logFileRotationDir": "/tmp/log"
}