Skip to content

joinbox/drupal-module-monitor-instance

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

18 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Monitor-Instance

The Joinbox Monitoring tool consists of the following two parts.

When instance is enabled it sends data to the monitor as soon as the Drupal Cron hook is triggered.

Activation

Add the following lines to your settings.php file to enable functionality.

  • Project: This also is the identifier for the monitor. It should be the same project wide.
  • Environment: Make sure to use Live, Integration or Stage
$settings['instance'] = [
  'project' => 'Instance',
  'environment' => 'Live',
  'monitor' => 'https://monitor.joinbox.com',
  'user' => 'monitor',
  'password' => 'monitor',
];

Make sure the "shell_exec" PHP function is enabled on your server. (In cyon go to "Erweitert" -> "PHP-Einstellungen" and enable "shell_exec")