Site Tools


linux:scripts:monitoringtool

Differences

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

Link to this comparison view

Both sides previous revisionPrevious revision
Next revision
Previous revision
linux:scripts:monitoringtool [2019/07/17 17:39] 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 947: 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/monitoringtool.txt · Last modified: 2019/10/28 12:39 by lunetikk