[Profiling] Remove timestamp from traces and executables (#145261)

## Summary
We are removing @timestamp from the backend soon.
And we do not currently use @timestamp in Kibana.

This PR just cleans up the unused field definitions for the Timestamps.
This commit is contained in:
Tim Rühsen 2022-11-16 05:56:14 +01:00 committed by GitHub
parent 0330b34915
commit 528486f2af
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -74,7 +74,6 @@ export type ProfilingESEvent = DedotObject<{
}>;
export type ProfilingStackTrace = DedotObject<{
[ProfilingESField.Timestamp]: number;
[ProfilingESField.StacktraceFrameIDs]: string;
[ProfilingESField.StacktraceFrameTypes]: string;
}>;
@ -90,5 +89,4 @@ export type ProfilingStackFrame = DedotObject<{
export type ProfilingExecutable = DedotObject<{
[ProfilingESField.ExecutableBuildID]: string;
[ProfilingESField.ExecutableFileName]: string;
[ProfilingESField.Timestamp]: string;
}>;