diff options
author | David Su <dysu@google.com> | 2020-06-25 17:56:10 -0700 |
---|---|---|
committer | David Su <dysu@google.com> | 2020-06-25 17:58:35 -0700 |
commit | 3c727a04483aa916b9f432627c054f550cdd2e93 (patch) | |
tree | 2f67d945b1335fc21546c33ee46d0edceda3d3ca /service | |
parent | 4f1d42fce0f82bdfc9e862b3de352fbc455171ab (diff) |
Document that ConnectionEvent.startTimeMillis is Unix time
Most other startTimeMillis are elapsed time since boot,
but ConnectionEvent is an exception.
Bug: 153441519
Test: compiles
Updated-PDD: N/A - updated comment only
Change-Id: Icf8bd6a371e8f9acd57483425368b94ed44b58ff
Diffstat (limited to 'service')
-rw-r--r-- | service/proto/src/metrics.proto | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/service/proto/src/metrics.proto b/service/proto/src/metrics.proto index e7c0ec89a..481ff0f14 100644 --- a/service/proto/src/metrics.proto +++ b/service/proto/src/metrics.proto @@ -1049,7 +1049,7 @@ message ConnectionEvent { CREATOR_CARRIER = 2; } - // Start time of the connection. + // Start time of the connection, in milliseconds since Unix epoch (1970-01-01). optional int64 start_time_millis = 1;// [(datapol.semantic_type) = ST_TIMESTAMP]; // Duration to connect. |