streaming checkpoints

This commit is contained in:
Lou Knauer
2022-07-14 11:53:06 +02:00
parent f153207346
commit ef6e09c3e2
5 changed files with 184 additions and 15 deletions

8
internal/types/types.go Normal file
View File

@@ -0,0 +1,8 @@
package types
type Stats struct {
Samples int `json:"samples"`
Min Float `json:"min"`
Avg Float `json:"avg"`
Max Float `json:"max"`
}