mirror of
https://github.com/logos-storage/nim-chroprof.git
synced 2026-01-07 07:53:11 +00:00
22 lines
715 B
Nim
22 lines
715 B
Nim
|
|
import chronos/futures
|
||
|
|
import ./[profiler, events]
|
||
|
|
|
||
|
|
type EventCallback = proc (e: Event) {.nimcall, gcsafe, raises: [].}
|
||
|
|
|
||
|
|
var profilerInstance {.threadvar.}: ProfilerState
|
||
|
|
|
||
|
|
proc getMetrics*(): MetricsTotals =
|
||
|
|
## Returns the `MetricsTotals` for the event loop running in the
|
||
|
|
## current thread.
|
||
|
|
result = profilerInstance.metrics
|
||
|
|
|
||
|
|
proc enableEventCallbacks*(callback: EventCallback): void =
|
||
|
|
onBaseFutureEvent = handleBaseFutureEvent
|
||
|
|
onAsyncFutureEvent = handleAsyncFutureEvent
|
||
|
|
handleFutureEvent = callback
|
||
|
|
|
||
|
|
proc enableProfiling*() =
|
||
|
|
## Enables profiling for the the event loop running in the current thread.
|
||
|
|
handleFutureEvent = proc (e: Event) {.nimcall.} =
|
||
|
|
profilerInstance.processEvent(e)
|