| 673 | } |
| 674 | |
| 675 | inline auto |
| 676 | EThread::Metrics::record_api_time(ink_hrtime delta) -> self_type & |
| 677 | { |
| 678 | static auto constexpr DIVISOR = std::chrono::duration_cast<ts_nanoseconds>(LOOP_HISTOGRAM_BUCKET_SIZE).count(); |
| 679 | _api_timing(delta / DIVISOR); |
| 680 | return *this; |
| 681 | } |
| 682 | |
| 683 | inline auto |
| 684 | EThread::Metrics::decay() -> self_type & |
no test coverage detected