Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Configuration items

NMIS runs a daemon to periodically obtain periodically the nodes information, and other maintenance jobs that needs need to be done (to calculate metrics, cleanup jobs, run the plugins, etc.). 

The main process - the nmis scheduler - runs a loop and check checks which jobs needs need to be done. It will add these jobs into a queue, and it will instantiate forks fork worker processes that will run these jobs. 

...

This means the maximum number of forks worker processes that the nmis main process will be able to start.

...

Code Block
'nmisd_worker_cycle' => 30,
'nmisd_worker_max_cycles' => 5,


nmisd_worker_cycle will set up is the number of seconds the process will sleep if it doesn't have any job to perform. 

...