Get Performance Log Event
get
                    /rest/v19/performanceLogs/{id}
This operation retrieves the specified Performance Log event.
                
                Request
Path Parameters
                - 
                    id(required): integer
                    
                    Primary Key of Log Application Events
Response
Default Response
Root Schema : Performance Log Response
    
      Type: 
      
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    Show Source
        object- 
            applicationVersion: 
            string
            Title:Application VersionThe version of the application
- 
            browserTime: 
            integer
            Title:Browser TimeThe time the end user perceived the action to take (in ms).
- 
            browserVersion: 
            string
            Title:Browser VersionThe version of the browser
- 
            component: 
            string
            Title:ActionThe name of the action
- 
            createdDate: 
            string
            Title:Created DateSystem field indicating the date on which the object was created.
- 
            event: 
            string
            Title:Event TypeThe type of event that occurred
- 
            eventDate: 
            string
            Title:Event DateThe Datetime on which the event occurred.
- 
            id: 
            integer
            Title:IdPrimary Key of Log Application Events
- 
            ipAddress: 
            string
            Title:Ip AddressThe IP address of the user.
- 
            login: 
            string
            Title:LoginThe log-in of the user that performance the action.
- 
            modifiedDate: 
            string
            Title:Modified DateSystem field indicating the date on which the object was last modified.
- 
            node: 
            string
            Title:Server NodeThe server on which the logic executed.
- 
            referenceObject: 
            string
            Title:ObjectThe object upon which the action was performed
- 
            requestId: 
            string
            Title:Request IdThe request id for the event.
- 
            serverTime: 
            integer
            Title:Server TimeTime Elapsed in Milliseconds
- 
            sessionId: 
            string
            Title:User Session IdThe user session id.
- 
            transactionId: 
            integer
            Title:Transaction IdTransaction Id
- 
            url: 
            string
            Title:URLThe URL invoked by the user.
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 -H "Authorization: Bearer <token>" -H "Accept: application/json" https://sitename.oracle.com/rest/v19/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/v19/performanceLogs/707"
	}]
}