trisquel-icecat/icecat/toolkit/components/telemetry/docs/collection/measuring-time.rst
2025-10-06 02:35:48 -06:00

13 lines
514 B
ReStructuredText

======================
Measuring elapsed time
======================
To make it easier to measure how long operations take, we have helpers for C++.
These helpers record the elapsed time into histograms, so you have to create suitable :doc:`histograms` for them first.
API:
.. code-block:: cpp
void AccumulateTimeDelta(HistogramID id, TimeStamp start, TimeStamp end = TimeStamp::Now());
void AccumulateTimeDelta(HistogramID id, const nsCString& key, TimeStamp start, TimeStamp end = TimeStamp::Now());