endTimeUnixNano property

  1. @TagNumber(8)
Int64 get endTimeUnixNano

end_time_unix_nano is the end time of the span. On the client side, this is the time kept by the local machine where the span execution ends. On the server side, this is the time when the server application handler stops running. Value is UNIX Epoch time in nanoseconds since 00:00:00 UTC on 1 January 1970.

This field is semantically required and it is expected that end_time >= start_time.

Implementation

@$pb.TagNumber(8)
$fixnum.Int64 get endTimeUnixNano => $_getI64(7);
  1. @TagNumber(8)
set endTimeUnixNano (Int64 v)

Implementation

@$pb.TagNumber(8)
set endTimeUnixNano($fixnum.Int64 v) { $_setInt64(7, v); }