startTimeUnixNano property

  1. @TagNumber.new(2)
Int64 get startTimeUnixNano

StartTimeUnixNano is optional but strongly encouraged, see the the detailed comments above Metric.

Value is UNIX Epoch time in nanoseconds since 00:00:00 UTC on 1 January 1970.

Implementation

@$pb.TagNumber(2)
$fixnum.Int64 get startTimeUnixNano => $_getI64(1);
  1. @TagNumber.new(2)
set startTimeUnixNano (Int64 v)

Implementation

@$pb.TagNumber(2)
set startTimeUnixNano($fixnum.Int64 v) {
  $_setInt64(1, v);
}