dynolog
dynolog copied to clipboard
Generate unique per trace id in OSS dynolog
Summary:
- add
std::vector<std::string> traceIds
toGpuProfilerResult
- update OSS dynolog to generate a unique (per trace)
trace_id
- the
trace_id
is generated as follows:hash(hostname + pid + current_time)
- This combination of info should be unique since the code is single threaded
- the
Differential Revision: D60242891