Skip to content
This repository was archived by the owner on Nov 15, 2019. It is now read-only.

MMT ConnectedDevices

Diego Rivera edited this page Sep 19, 2017 · 4 revisions

Overview

This plugins collects the number of connected devices detected by MMT. MMT monitors the network asynchronously and generates reports for each detected flow. This plugin identifies each MAC address as a device and computes the total number of devices detected in the last minute. To this end, the plugin uses the MongoDB aggregation framework on the flow reports generated by MMT.

MMT-diagram-int-int-str.png

Measure Architecture

Type : Direct Measure

Scope

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.

Data Model

Value Type Description
value Integer The number of connected devices (defined as different mac addresses) in the last 60 seconds.
totalDevices Integer The number of connected devices (defined as different mac addresses) in the last 60 seconds.
devicesList String The list of mac addresses connected to the network in the last 60 seconds.

Algorithms

This algorithm performs aggregation of the data using MongoDB aggregation engine to compute the number of connected devices.

Clone this wiki locally