Hi
I'm using the cloud logging api to push logEntry to a project.
I went through the doc about insertId.
It said
"A unique identifier for the log entry. If you provide a value, then Logging considers other log entries in the same project, with the same timestamp, and with the same insertId to be duplicates which are removed in a single query result. However, there are no guarantees of de-duplication in the export of logs."
For now in my implementation, I left timestamp empty.
Is it means the insertId can be used as the only key to deduplicate logEntry?
Thanks!