summaryrefslogtreecommitdiff
path: root/internal/statsengine/snapshot.go
diff options
context:
space:
mode:
Diffstat (limited to 'internal/statsengine/snapshot.go')
-rw-r--r--internal/statsengine/snapshot.go18
1 files changed, 10 insertions, 8 deletions
diff --git a/internal/statsengine/snapshot.go b/internal/statsengine/snapshot.go
index 859cd2e..bec92fb 100644
--- a/internal/statsengine/snapshot.go
+++ b/internal/statsengine/snapshot.go
@@ -30,14 +30,16 @@ type Snapshot struct {
GeneratedAt time.Time
Elapsed time.Duration
- TotalSyscalls uint64
- TotalErrors uint64
- TotalBytes uint64
-
- SyscallRatePerSec float64
- ErrorRatePerSec float64
- ReadBytesPerSec float64
- WriteBytesPerSec float64
+ TotalSyscalls uint64
+ TotalErrors uint64
+ TotalBytes uint64
+ TotalAddressSpaceBytes uint64
+
+ SyscallRatePerSec float64
+ ErrorRatePerSec float64
+ AddressSpaceBytesPerSec float64
+ ReadBytesPerSec float64
+ WriteBytesPerSec float64
LatencyMeanNs float64
GapMeanNs float64