Get a Performance Debugger Record

get

/rest/v19/performanceDebugger/{id}

Use this endpoint to retrieve the specified performance debugger log record.

Request

Supported Media Types
Path Parameters
Back to Top

Response

Supported Media Types

Default Response

Body ()
Root Schema : Performance Debugger
Type: object
Title: Performance Debugger
Show Source
Nested Schema : Action
Type: object
Title: Action
Which action this log tests
Show Source
  • Title: Display Value
    Translated display name of the type for which fixed list of values can be defined.
  • Title: Id
    Primary Key of the fixed list of value resource.
  • Title: Lookup Code
    Language independent code of the fixed list of value.
Nested Schema : Status
Type: object
Title: Status
Whether the log is in progress, finished successfully or has failed.
Show Source
  • Title: Display Value
    Translated display name of the type for which fixed list of values can be defined.
  • Title: Id
    Primary Key of the fixed list of value resource.
  • Title: Lookup Code
    Language independent code of the fixed list of value.
Back to Top

Examples

The following example shows how to retrieve the specified performance debugger log record by submitting a GET request to the REST resource using cURL. For more information about cURL, see Use cURL.

curl -X GET -H "Authorization: Bearer <token>" -H "Accept: application/json"
https://sitename.oracle.com/rest/v19/performanceDebugger/3023221513

Response Body Sample

{
  "referenceLabel": "testbed:systemConfiguration:rootSystem",
  "description": null,
  "error": null,
  "action": {
    "lookupCode": "CONFIG_UPDATE",
    "displayValue": "Configuration Update",
    "id": 3023215311,
    "links": [{
        "rel": "domain",
        "href": "https://sitename.oracle.com.com/rest/v19/lookupValues?q=%7B%22lookupType%22%3A%7B%22%24eq%22%3A%22BM_PERFORMANCE_DEBUGGER_ACTION%22%7D%7D"
      }, {
        "rel": "canonical",
        "href": "https://sitename.oracle.com.com/rest/v19/lookupValues/3023215311"
      }
    ]
  },
  "id": 3023221513,
  "time": 1683,
  "status": {
    "lookupCode": "COMPLETED_SUCCESS",
    "displayValue": "Completed Successfully",
    "id": 3023215314,
    "links": [{
        "rel": "domain",
        "href": "https://sitename.oracle.com.com/rest/v19/lookupValues?q=%7B%22lookupType%22%3A%7B%22%24eq%22%3A%22BM_PEFORMANCE_DEBUGGER_STATUS%22%7D%7D"
      }, {
        "rel": "canonical",
        "href": "https://sitename.oracle.com.com/rest/v19/lookupValues/3023215314"
      }
    ]
  },
  "links": [{
      "rel": "self",
      "href": "https://sitename.oracle.com.com/rest/v19/performanceDebugger/3023221513"
    }
  ]
}
Back to Top