Skip to content

Commit 08fcb94

Browse files
Jakob Johnsonfacebook-github-bot
Jakob Johnson
authored andcommitted
Move "baseTimeNanoseconds" and "displayTimeUnit" before "traceEvents" (#1054)
Summary: Pull Request resolved: #1054 `baseTimeNanoseconds` is currently put at the end of the trace after `traceEvents` which makes efficiently parsing this trace metadata with `ijson` difficult. This diff moves "baseTimeNanoseconds" and "displayTimeUnit" before "traceEvents" - we intentionally leave `traceName` at the end of the trace for the time being to avoid having to make a more sprawling change to correctly handle trailing commas. Reviewed By: aaronenyeshi Differential Revision: D70404528 fbshipit-source-id: 2ccc0cc0e3d1e09ed5b861e1b70904e4ea5c89a1
1 parent 668c1c9 commit 08fcb94

File tree

1 file changed

+10
-7
lines changed

1 file changed

+10
-7
lines changed

libkineto/src/output_json.cpp

+10-7
Original file line numberDiff line numberDiff line change
@@ -131,6 +131,13 @@ void ChromeTraceLogger::handleTraceStart(
131131
device_properties);
132132

133133
metadataToJSON(metadata);
134+
135+
traceOf_ << fmt::format(
136+
R"JSON(
137+
"displayTimeUnit": "ms",
138+
"baseTimeNanoseconds": {},)JSON",
139+
ChromeTraceBaseTime::singleton().get());
140+
134141
traceOf_ << R"JSON(
135142
"traceEvents": [)JSON";
136143
}
@@ -681,13 +688,9 @@ void ChromeTraceLogger::finalizeTrace(
681688
#endif // !USE_GOOGLE_LOG
682689

683690
// Putting this here because the last entry MUST not end with a comma.
684-
685-
traceOf_ << fmt::format(R"JSON(
686-
"traceName": "{}",
687-
"displayTimeUnit": "ms",
688-
"baseTimeNanoseconds": {}
689-
}})JSON", fileName_, ChromeTraceBaseTime::singleton().get());
690-
// clang-format on
691+
traceOf_ << fmt::format(R"JSON(
692+
"traceName": "{}"
693+
}})JSON", fileName_);
691694

692695
traceOf_.close();
693696
// On some systems, rename() fails if the destination file exists.

0 commit comments

Comments
 (0)