This repository was archived by the owner on Nov 15, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
MMT Packets
Diego Rivera edited this page Sep 19, 2017
·
3 revisions
This plugin will compute the number of downloaded packets as seen by MMT during the last completed minute. This tool computes this value for each detected flow, counting the number of both downloaded and uploaded packets on the flow. The plugin will rely on the aggregation framework of MongoDB to compute the total amount of downloaded packets in the flows present in the last minute.
| Value | Type | Default | Description |
|---|---|---|---|
| mmtdbhostname | String | localhost | Name of the host where the MMT database is hosted |
| mmtdbportname | Integer | 27017 | Port on the MMT database host to connect the plugin. |
| Value | Type | Description |
|---|---|---|
| value | Integer | The amount of downloaded packets (from destination to source IP of every flow) in the last 60 seconds. |
| downloadPackets | Integer | The amount of downloaded packets (from destination to source IP of every flow) in the last 60 seconds. |
| uploadPackets | Integer | The amount of uploaded packets (from source to destination IP of every flow) in the last 60 seconds. |
This algorithm performs aggregation of the data using MongoDB aggregation engine to compute the total number of downloaded packets.
