Options
All
  • Public
  • Public/Protected
  • All
Menu

Class PerformanceMeasurer

This class can be used for analysing codebase performance. It allows for creation of individual timers and measuring their status over time. Finally, it enables to export data in various formats which can be easily used in graphing tools to visually represent the measured data in a form of line plots etc.

Hierarchy

  • PerformanceMeasurer

Index

Properties

Static Private _timerRecords

_timerRecords: Map<string, number[]> = new Map<string, number[]>()

Static Private _timerStartTimes

_timerStartTimes: Map<string, number> = new Map<string, number>()

Methods

Static clearData

  • clearData(): void

Static endMeasure

  • endMeasure(timerName: string): void | number

Static exportDataAsCSV

  • exportDataAsCSV(...timerNames: string[]): string[]

Static exportDataAsChartJsObject

  • exportDataAsChartJsObject(...timerNames: string[]): any

Static printAggrData

  • printAggrData(aggrType: "sum" | "avg", ...timerNames: string[]): void

Static printAndClearData

  • printAndClearData(...timerNames: string[]): void

Static printData

  • printData(...timerNames: string[]): void

Static startMeasure

  • startMeasure(timerName: string): void

Generated using TypeDoc