OmniSketch  0.1
Oh my sketch!
OmniSketch::Data Namespace Reference

Miscellaneous tools for processing data. More...

Classes

class  DataFormat
 Parse the format in config file. More...
 
class  Estimation
 Output of sketch as estimation of ground truth. More...
 
class  GndTruth
 Ground truth of the streaming data. More...
 
struct  Record
 Struct of a single record (i.e., a packet in a segment of streaming data) More...
 
class  StreamData
 Store the formatted streaming data. More...
 

Enumerations

enum  CntMethod { InLength, InPacket }
 Specify the counting method. More...
 
enum  HXMethod { TopK, Percentile }
 Specify the defining rule of heavy X (X = [hitters|changers]) More...
 

Detailed Description

Miscellaneous tools for processing data.

Implementation of templated methods.

Enumeration Type Documentation

◆ CntMethod

Specify the counting method.

Enumerator
InLength 

Count for (header + payload) in bytes.

InPacket 

Each packet is counted as 1.

◆ HXMethod

Specify the defining rule of heavy X (X = [hitters|changers])

Enumerator
TopK 

Top K flow(s)

Percentile 

Flows that exceed a certain fraction of all counters.