Get Performance Log Event

get

/rest/v16/performanceLogs/{id}

This operation retrieves the specified Performance Log event.

Request

Path Parameters
Back to Top

Response

Default Response

Body ()
Root Schema : Performance Log Response
Type: object
Show Source
Back to Top

Examples

The following example shows how to access a specific Performance Log item by submitting a GET request to the REST resource using cURL. For more information about cURL, see Use cURL.

curl -X GET -i -H "Authorization: Basic dXNlcm5hbWU6cGFzc3dvcmQg" -H "Accept: application/json"
https://sitename.oracle.com/rest/v16/performanceLogs/707

Response Body Sample

The following example shows the contents of the response body in JSON format, including the Performance Log item:

{
	"eventDate": "2016-02-23 19:09:44.0",
	"transactionId": null,
	"browserVersion": "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.116 Safari/537.36",
	"requestId": "c0733238-7904-4170-aa17-e66ed4cf606a",
	"referenceObject": "Login",
	"modifiedDate": "2016-02-23 00:00:00.0",
	"url": "https://sitename.oracle.com:80/commerce/display_company_profile.jsp",
	"id": "707",
	"applicationVersion": "15.2.0",
	"node": "node1",
	"component": "jdoe",
	"sessionId": "PGKxWMnSbFnR9VXGF2CSWBJ0JGpfyyp2xCSmzR3phDNBhxs7fRyz!-2116935037!1456254578753",
	"event": "Login",
	"serverTime": "22",
	"login": "<none>",
	"browserTime": null,
	"createdDate": "2016-02-23 00:00:00.0",
	"ipAddress": "0:0:0:0:0:0:0:1",
	"links": [{
		"rel": "self",
		"href": "https://sitename.oracle.com/rest/v16/performanceLogs/707"
	}]
}
Back to Top