예제 #1
0
 private void DoPeriodicCheck(object sender, ElapsedEventArgs e)
 {
     heartbeatRunning = true;
     Collector.HandleMmonit(null);
     heartbeatRunning = false;
 }
예제 #2
0
        /// <summary>
        ///     TODO
        ///     Handles the action.
        /// </summary>
        /// <param name="E">The e.</param>
        /// <param name="A">a.</param>
        private static void handleAction(Event_T E, Action_T A)
        {
            Service_T s;

            E.flag = MonitHandlerType.Handler_Succeeded;

            if (A.id == MonitActionType.Action_Ignored)
            {
                return;
            }

            /* Alert and mmonit event notification are common actions */
            E.flag |= Collector.HandleMmonit(E);
            E.flag |= Alert.HandleAlert(E);

            /* In the case that some subhandler failed, enqueue the event for
             * partial reprocessing */
            if (E.flag != MonitHandlerType.Handler_Succeeded)
            {
                if (!string.IsNullOrEmpty(MonitWindowsAgent.Run.eventlist_dir))
                {
                    eventQueueAdd(E);
                }
                else
                {
                    Logger.Log.Error("Aborting event");
                }
            }

            if ((s = GetSource(E)) == null)
            {
                Logger.Log.Error("Event action handling aborted");
                return;
            }

            /* Action event is handled already. For Instance events
             * we don't want actions like stop to be executed
             * to prevent the disabling of system service monitoring */
            if (A.id == MonitActionType.Action_Alert || E.id == MonitEventType.Event_Instance)
            {
            }
            if (A.id == MonitActionType.Action_Exec)
            {
                Logger.Log.InfoFormat("'{0}'", s.name);
                //spawn(s, A.exec, E);
            }
            else
            {
                if (s.actionratelist != null &&
                    (A.id == MonitActionType.Action_Start || A.id == MonitActionType.Action_Restart))
                {
                    s.nstart++;
                }

                if (s.mode == MonitMonitorModeType.Monitor_Passive &&
                    (A.id == MonitActionType.Action_Start || A.id == MonitActionType.Action_Stop ||
                     A.id == MonitActionType.Action_Restart))
                {
                    return;
                }

                Control.ControlService(s.name, A.id);
            }
        }