| 402 | } |
| 403 | |
| 404 | int64_t Span::GetEndRealTimeUs() const { |
| 405 | int64_t result = 0; |
| 406 | result = std::max(result, _received_real_us); |
| 407 | result = std::max(result, _start_parse_real_us); |
| 408 | result = std::max(result, _start_callback_real_us); |
| 409 | result = std::max(result, _start_send_real_us); |
| 410 | result = std::max(result, _sent_real_us); |
| 411 | return result; |
| 412 | } |
| 413 | |
| 414 | SpanInfoExtractor::SpanInfoExtractor(const char* info) |
| 415 | : _sp(info, *BRPC_SPAN_INFO_SEP) { |