Skip to content

Instantly share code, notes, and snippets.

@olamy
Created February 17, 2014 11:15
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save olamy/9048790 to your computer and use it in GitHub Desktop.
Save olamy/9048790 to your computer and use it in GitHub Desktop.
public class PathTrackingEntry
{
/**
* a generated id to follow up the path call
*/
private String trackingId;
/**
* the current entry id
*/
private String pathTrakingEntryId;
/**
* the parent entry id
*/
private String parentPathTrakingEntryId;
/**
* server instance for this call
*/
private String nodeId;
/**
* name of the used class
*/
private String className;
/**
* used method name
*/
private String methodName;
/**
* start time for the method call in nano seconds
*/
private long startTime;
/**
* time to execute the method in nano seconds
*/
private long executionTime;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment