Site Tools


linux:scripts:monitoringtool

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Next revision
Previous revision
linux:scripts:monitoringtool [2019/07/17 17:34] – created lunetikklinux:scripts:monitoringtool [2019/10/28 12:39] (current) lunetikk
Line 1: Line 1:
 ====== My own Monitoringtool ====== ====== My own Monitoringtool ======
  
-I really dont know where to beginn with.+I really dont know where to begin with.
  
 I had this project...  I had this project... 
Line 426: Line 426:
      {      {
        // Session starten und Infos in Sessionvariable schreiben        // Session starten und Infos in Sessionvariable schreiben
- 
-</code> 
- 
-meldungena.php displays the last 10 alerts and reloads every 30 seconds 
        session_start ();        session_start ();
        $_SESSION["Status"] = $row->Status;         $_SESSION["Status"] = $row->Status; 
Line 475: Line 471:
  echo '</td>';  echo '</td>';
  echo '<td>';  echo '<td>';
- 
-<code php meldungena.php> 
  echo '<font style="color: #FF8800;">'.utf8_encode($row->Standort).'</font>';  echo '<font style="color: #FF8800;">'.utf8_encode($row->Standort).'</font>';
  echo '</td>';  echo '</td>';
Line 506: Line 500:
  }  }
  //Wenn keines der vorherigen Ergebnisse zutrifft, gib es den folgenden Text aus  //Wenn keines der vorherigen Ergebnisse zutrifft, gib es den folgenden Text aus
- else {echo'<br/><br/><strong><font style="color: #FF0000;">Hier ist etwas schief gelaufen! Bitte kontaktieren Sie den Helpdesk (2119)</font></strong>';}+ else {echo'<br/><br/><strong><font style="color: #FF0000;">Hier ist etwas schief gelaufen! Bitte kontaktieren Sie den Helpdesk</font></strong>';}
   
  }//Ende:While  }//Ende:While
Line 513: Line 507:
    }    }
       else{       else{
- echo '<br/><br/><strong><font style="color: #FF0000;">Hier ist etwas schief gelaufen! Bitte kontaktieren Sie den Helpdesk (2119)</font></strong><br/>';+ echo '<br/><br/><strong><font style="color: #FF0000;">Hier ist etwas schief gelaufen! Bitte kontaktieren Sie den Helpdesk</font></strong><br/>';
  echo '<strong><font style="color: #FF0000;">Meldungen hat keine Ergebnisse in der Datenbank gefunden.</font></strong>';  echo '<strong><font style="color: #FF0000;">Meldungen hat keine Ergebnisse in der Datenbank gefunden.</font></strong>';
    }    }
Line 521: Line 515:
 </code> </code>
  
-suchea.php shows the latest alerts+meldungena.php displays the last 10 alerts and reloads every 30 seconds
 <code php meldungena.php> <code php meldungena.php>
 <!-- <!--
Line 953: Line 947:
 </code> </code>
  
 +The database
 +<code - Meldungen.sql>
 +CREATE TABLE IF NOT EXISTS `Meldungen` (
 +  `IdMeldungen` int(11) NOT NULL AUTO_INCREMENT,
 +  `Status` varchar(32) NOT NULL,
 +  `Datum` date NOT NULL,
 +  `Uhrzeit` varchar(8) NOT NULL,
 +  `Standort` varchar(20) NOT NULL,
 +  `Meldung` varchar(64) NOT NULL,
 +  `Alarmfenster` tinyint(1) NOT NULL,
 +  PRIMARY KEY (`IdMeldungen`)
 +) ENGINE=InnoDB  DEFAULT CHARSET=latin1;
 +</code>
  
-index.php/ the site itself+index.php/ the site itself\\
 {{:linux:scripts:pasted:20190717-154101.png}} {{:linux:scripts:pasted:20190717-154101.png}}
  
-the search +the search\\ 
-{{:linux:scripts:pasted:20190717-154118.png}}+{{:linux:scripts:pasted:20190717-173938.png}}
  
-the alarm popup +the alarm popup\\ 
-{{:linux:scripts:pasted:20190717-154125.png}}+{{:linux:scripts:pasted:20190717-173943.png}}
  
  
linux/scripts/monitoringtool.1563377698.txt.gz · Last modified: 2019/07/17 17:34 by lunetikk