mutilate/AgentStats.h
Daniel Byrne 0ae51a8148 updated
2021-02-03 15:26:32 -05:00

15 lines
232 B
C++

/* -*- c++ -*- */
#ifndef AGENTSTATS_H
#define AGENTSTATS_H
class AgentStats {
public:
uint64_t rx_bytes, tx_bytes;
uint64_t gets, sets, accesses, get_misses;
uint64_t skips;
double start, stop;
};
#endif // AGENTSTATS_H