Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

rolldown/metric

Repository files navigation

Metric for Rolldown

Data Source format

We use this generic data structure for metric aggregation

export interface Entry {
	case: string; // case name
	metric: string; // which metric for the bench, like `production build time`, `production build size`
	timestamp: number; 
	commit: string; // commit hash
 	repoUrl?: string; // what is the data source from, used for event tracking
	unit: string; // what is the data souce unit, like `ms`(in build speed bench), 'byte'(in build size bench)
	records: Record<string, number>; // key is the bundler name, value is the result of the corresponding bundler
}

Data source storage

Storing entries line by line, each line is a entry with a json format(Recommend).

  1. Comparing with store the whole data in a json file, this method could reduce parsing, stringify overhead, especially the metric data source become bigger.
  2. Make streaming transform available, which may reduce white screen time.

This is not required, any format that could convert to Entry[] is acceptable.

Credits

Releases

No releases published

Packages

No packages published

Contributors 5

Languages

AltStyle によって変換されたページ (->オリジナル) /