C2F Module Files
These files are uploaded to the Master Node via the web interface and assimilated into the framework.
Structure
There are two main components to a Module file, the Module Descriptor, and a collection of classes defining the database tables used to store data reported by the modules.
Imports
Module Files require two base classes to function. These classes provide default values required by C2F, and allows C2F to identify the components within the module by checking which classes inside the Module file subclass these abstract classes. Additionally, Django's models module is required for defining the Database Tables.
Module Descriptor
The Module descriptor class must inherit from Descriptor, as detailed in the previous section. An example of a descriptor is as follows. See here for arguments which can be passed to the container.
Database Tables
The database tables required to store the data reported by Modules are defined using Django models. They must inherit from ModelTemplate
as discussed in the imports section. A full reference for defining database models can be found here. An example of the model used for the PingSweep module can be seen below. Modules can have as many models as necessary.
Last updated