public interface DpiStatisticsManagerService
| Modifier and Type | Method and Description |
|---|---|
DpiStatistics |
addDpiStatistics(DpiStatistics ds)
Adds DpiStatistics at the end of the Store list.
|
java.util.List<DpiStatistics> |
getDpiStatistics(int lastN)
Gets the last N(Max = 100) DpiStatistics in the Store list.
|
java.util.List<DpiStatistics> |
getDpiStatistics(int lastN,
int topnProtocols,
int topnFlows)
Gets the last N(Max = 100) DpiStatistics in the Store list.
|
DpiStatistics |
getDpiStatistics(java.lang.String receivedTime)
Get the specified receivedTime DpiStatistics in the Store list.
|
DpiStatistics |
getDpiStatistics(java.lang.String receivedTime,
int topnProtocols,
int topnFlows)
Get the specified receivedTime DpiStatistics in the Store list.
|
DpiStatistics |
getDpiStatisticsLatest()
Get the latest DpiStatistics in the Store list.
|
DpiStatistics |
getDpiStatisticsLatest(int topnProtocols,
int topnFlows)
Get the latest DpiStatistics in the Store list.
|
DpiStatistics getDpiStatisticsLatest()
DpiStatistics getDpiStatisticsLatest(int topnProtocols, int topnFlows)
topnProtocols - detected topn protocols, default = 100topnFlows - detected topn known and unknown flows , default = 100java.util.List<DpiStatistics> getDpiStatistics(int lastN)
lastN - maximum number to fetchjava.util.List<DpiStatistics> getDpiStatistics(int lastN, int topnProtocols, int topnFlows)
lastN - latest N entriestopnProtocols - detected topn protocols, default = 100topnFlows - detected topn known and unknown flows , default = 100DpiStatistics getDpiStatistics(java.lang.String receivedTime)
receivedTime - receivedTime string with format "yyyy-MM-dd HH:mm:ss"DpiStatistics getDpiStatistics(java.lang.String receivedTime, int topnProtocols, int topnFlows)
receivedTime - receivedTime string with format "yyyy-MM-dd HH:mm:ss"topnProtocols - detected topn protocols, default = 100topnFlows - detected topn known and unknown flows , default = 100DpiStatistics addDpiStatistics(DpiStatistics ds)
ds - statistics to add