Browse Source

Corr: configfile handling. Add: fping parameter --size can now be set in PingPanel's config.cfg.

sigi 2 days ago
parent
commit
e28371b3c0

+ 23 - 16
PingPanel.py

@@ -33,7 +33,7 @@ import tornado.websocket
 from tornado.gen import sleep
 import asyncio
 
-VERSION = '0.9.8'
+VERSION = '0.9.9'
 
 konfig_file = 'config.cfg'
 s_certfile = 'server.crt'
@@ -94,7 +94,7 @@ def read_config():
 				except KeyError:
 					pass
 				try:
-					listen_addr = str(config["Main"]["TitleAdd"])
+					title_add = str(config["Main"]["TitleAdd"])
 				except KeyError:
 					config["Main"]["TitleAdd"] = ''
 				try:
@@ -158,6 +158,10 @@ def create_fpingparam():
 		fping_parameter.append('--period=' + config["Main"]["Fping-period"])
 	except KeyError:
 		fping_parameter.append('--period=100')
+	try:
+		fping_parameter.append('--size=' + config["Main"]["Fping-size"])
+	except KeyError:
+		pass
 
 
 def ping(ip, packets=1, timeout=2):
@@ -423,11 +427,11 @@ def create_html_table():
 		html_tab += '<div class="w3-container" style="padding: 0;font-size:14px;">'
 		sect_x = sect.replace(' ','_')
 		clickId = 'accord_' + sect_x
-		html_tab += '<br><div onclick="Accordion(\'' + clickId + '\')" class="w3-container w3-teal" style="padding: 3px 10px;opacity: 0.9;margin-top: 5px;box-shadow: 0 2px 5px 0 #04040424,0 2px 10px 0 #040404c4;letter-spacing: 2px;cursor: pointer;">' + sect + '<span id="ux_' + sect_x + '" class="w3-card-2 w3-right"></span></div>\n'
+		html_tab += '<br><div onclick="Accordion(\'' + clickId + '\')" class="w3-container w3-teal" style="padding: 3px 10px;margin-top: 5px;box-shadow: 0 2px 5px 0 #04040424,0 2px 10px 0 #040404c4;letter-spacing: 2px;cursor: pointer;text-shadow: 0 0 0px #fff;">' + sect + '<span id="ux_' + sect_x + '" class="w3-right"></span></div>\n'
 		html_tab += '<div id="' + clickId + '" class="w3-show">'
 		for key in config[sect]:
 			tkey = key.replace('.', '_')
-			html_tab += '<div class="w3-left w3-dark-grey w3-border w3-border-teal tooltip" style="text-align: center;margin: 1px; min-width: 13ch; padding: 4px min(3px, 1vw) !important;box-shadow:3px 2px 4px #0009 !important;">'
+			html_tab += '<div class="w3-left si3-dark-grey w3-border w3-border-teal tooltip" style="text-align: center;margin: 1px; min-width: 13ch; padding: 4px min(3px, 1vw) !important;box-shadow:3px 2px 4px #000 !important;">'
 			html_tab += '<span class="w3-card-2 tooltiptext">'+config[sect][key]+'<br><span id="ttip_' + tkey + '" class="ttip_small"></span></span>'
 			html_tab += '<span id="' + tkey + '" class="ip_num">' + key + '</span><br><span id="stat_' + tkey + '" class="w3-center"></span></div>'
 		html_tab += '</div>\n</div>\n'
@@ -552,7 +556,7 @@ html_html = '''
     </header>
     <body>
         <div id="main">%s</div>\n
-        
+        <p><br></p>
         
         <div id="modal_01" class="w3-modal modal_01" onclick="this.style.display='none'">
         	<div class="w3-modal-content modal_01_text">
@@ -577,11 +581,13 @@ body {
 .red { color: red; }
 .green { color: #0f0; }
 .yellow { color: yellow; }
-.red_r { color: red; white-space: pre; text-align: right; font-family: monospace;}
+.red_r { color: red; white-space: pre; text-align: right; font-family: monospace;text-shadow: 0px -0px 0px #f44;}
 .green_r { color: #0f0; white-space: pre; text-align: right;; font-family: monospace;}
 .yellow_r { color: yellow; white-space: pre; text-align: right;; font-family: monospace;}
 .ip_num { font-size: 80%; }
 
+.si3-dark-grey{color:#fff!important;background-color:#626262!important;text-shadow: 0 0 0px #fff, 0 0 1px #000;}
+
 .top_header {
   text-align: center;
   padding: 5px 10px; height: 43px;
@@ -605,7 +611,6 @@ body {
   border-radius: 2px;
   font-weight: bold;
   font-size: 12px;
-  font-family: Bitstream;
 }
 
 .modal_01 {
@@ -660,13 +665,13 @@ body {
 }
 
 .tooltip .tooltiptext {
-  font-family: monospace;
+  font-family: Verdana, 'PT Sans Caption', Arial, sans-serif;
   visibility: hidden;
-  width: 150px;
+  width: 170px;
   background-color: black;
   color: #fff;
   text-align: center;
-  font-size: 15px;
+  font-size: 17px;
   border-radius: 6px;
   padding: 5px 5px;
   position: absolute;
@@ -674,6 +679,8 @@ body {
   top: 120%;
   left: 50%;
   margin-left: -60px;
+  line-height: 1.1em;
+  text-shadow: 0 0 0 #a8a8a8 !important;
 }
 
 .tooltip .tooltiptext::after {
@@ -722,21 +729,21 @@ def create_html_modal01():
 <br> 
 
 <p style="font-size:1.2em;font-variant:small-caps;letter-spacing:3px;font-style:italic;text-decoration:underline">Help</p>
-This PingPanel graphical interface consists of a header and the configured sections with the corresponding devices to be monitored.<br>
+The PingPanel board provides the header and the configured, expandable and collapsible sections with the corresponding devices to be monitored.<br>
 
 Among other things, the header contains the current time (<span class="green">green</span>) of the last ping run 
 or the status "stopped" (<span class="red">red</span>) if the connection to the server has been lost or the "Stop" button below has been pressed.<br>
-Pressing the "Stop" button terminates the connection to the server and, if no other client is active, the ping rounds are suspended.<p>
+Pressing the "Stop" button terminates the connection to the server and, if no other client is active, the server pauses the ping rounds.<p>
 
 The blue-green <span class="w3-teal">section bars</span> contain the name of the section and consolidated information about the status of the devices in this section.<br>
-<u>The section bars can be expanded and collapsed by clicking or tapping on them.</u><br>
+The section bars can be expanded and collapsed by clicking or tapping on them.<br>
 Consolidated status information <img src="/img/stat-inf.gif"> is divided into <span class="red">failed</span>, 
 <span class="yellow">partially answered</span> and <span class="green">answered</span> ping requests.<br>
 
-Each monitored device displays its IP address and status. By hovering over or tapping on it the corresponding comment 
-is displayed and every ping RTT of each ping round is reported.<p>
+Each monitored device displays its IP address and status. By hovering over or tapping on it its comment 
+is displayed and the three ping RTT's of each ping round is reported.<p>
 
-A <span class="red">flashing red</span> status light indicates that the device has freshly not responded since 'FlashThreshold' ping rounds.<br>
+A <span class="red">flashing red</span> status light indicates that the device has recently not responded during 'FlashThreshold' ping rounds.<br>
 A <span class="red">red</span> status light indicates that the device has not answered any of the three pings.<br>
 A <span class="yellow">yellow</span> status light indicates that the device has answered one of three pings.<br>
 A <span class="green">green</span> status light indicates that the device has answered to all three or at least two pings.<br>

+ 2 - 2
README.md

@@ -12,8 +12,8 @@ Instead, it merely provides an overview of the current availability of the devic
 [https://pingpanel.zweiernet.ch/](https://pingpanel.zweiernet.ch/)
 	
 **_Download_**:   
-\- tar-archive: [https://pingpanel.zweiernet.ch/pingpanel_0.9.8.tar.gz](https://pingpanel.zweiernet.ch/pingpanel_0.9.8.tar.gz)   
-\- Debian installer: [https://pingpanel.zweiernet.ch/pingpanel_0.9.8_all.deb](https://pingpanel.zweiernet.ch/pingpanel_0.9.8_all.deb)
+\- tar-archive: [https://pingpanel.zweiernet.ch/pingpanel_0.9.9.tar.gz](https://pingpanel.zweiernet.ch/pingpanel_0.9.9.tar.gz)   
+\- Debian installer: [https://pingpanel.zweiernet.ch/pingpanel_0.9.9_all.deb](https://pingpanel.zweiernet.ch/pingpanel_0.9.9_all.deb)
 
 
 **_Requirements_**:

+ 5 - 0
changelog

@@ -11,3 +11,8 @@ v0.9.8 / 12.8.24, sigi:
 	- Added HTTPS params in config.cfg.
 	- Changed: 'Title' param renamed to 'TitleAdd' in config.cfg as it is now an addendum to the title.
 	
+v0.9.9 / 1.4.25, sigi:
+	- Corr: configfile handling.
+	- Added: fping parameter --size can now be set in PingPanel's config.cfg.
+
+

+ 9 - 0
config.cfg

@@ -38,6 +38,15 @@ Fping-interval = 1
 ## PingPanel default is 100.
 Fping-period = 100
 
+## Fping-size:
+##- from manpage - Number of bytes of ping data to send. The minimum size (normally 12) allows room for the data 
+##- from manpage - that fping needs to do its work (sequence number, timestamp). The reported received data size includes the 
+##- from manpage - IP header (normally 20 bytes) and ICMP header (8 bytes), so the minimum total size is 40 bytes. 
+##- from manpage - Default is 56, as in ping. Maximum is the theoretical maximum IP datagram size (64K), though most systems 
+##- from manpage - limit this to a smaller, system-dependent number.
+## PingPanel default is fping default 56.
+#Fping-size = 56
+
 #-- End fping related params
 
 

+ 1 - 1
contrib/PingPanel/DEBIAN/control

@@ -2,7 +2,7 @@ Source: pingpanel
 Section: net
 Priority: optional
 Maintainer: Siegrist(SystemLoesungen) <PSS@ZweierNet.ch>
-Version: 0.9.8
+Version: 0.9.9
 Homepage: http://pingpanel.ZweierNet.ch
 Rules-Requires-Root: no
 Package: pingpanel

+ 23 - 16
contrib/PingPanel/opt/PingPanel/PingPanel.py

@@ -33,7 +33,7 @@ import tornado.websocket
 from tornado.gen import sleep
 import asyncio
 
-VERSION = '0.9.8'
+VERSION = '0.9.9'
 
 konfig_file = 'config.cfg'
 s_certfile = 'server.crt'
@@ -94,7 +94,7 @@ def read_config():
 				except KeyError:
 					pass
 				try:
-					listen_addr = str(config["Main"]["TitleAdd"])
+					title_add = str(config["Main"]["TitleAdd"])
 				except KeyError:
 					config["Main"]["TitleAdd"] = ''
 				try:
@@ -158,6 +158,10 @@ def create_fpingparam():
 		fping_parameter.append('--period=' + config["Main"]["Fping-period"])
 	except KeyError:
 		fping_parameter.append('--period=100')
+	try:
+		fping_parameter.append('--size=' + config["Main"]["Fping-size"])
+	except KeyError:
+		pass
 
 
 def ping(ip, packets=1, timeout=2):
@@ -423,11 +427,11 @@ def create_html_table():
 		html_tab += '<div class="w3-container" style="padding: 0;font-size:14px;">'
 		sect_x = sect.replace(' ','_')
 		clickId = 'accord_' + sect_x
-		html_tab += '<br><div onclick="Accordion(\'' + clickId + '\')" class="w3-container w3-teal" style="padding: 3px 10px;opacity: 0.9;margin-top: 5px;box-shadow: 0 2px 5px 0 #04040424,0 2px 10px 0 #040404c4;letter-spacing: 2px;cursor: pointer;">' + sect + '<span id="ux_' + sect_x + '" class="w3-card-2 w3-right"></span></div>\n'
+		html_tab += '<br><div onclick="Accordion(\'' + clickId + '\')" class="w3-container w3-teal" style="padding: 3px 10px;margin-top: 5px;box-shadow: 0 2px 5px 0 #04040424,0 2px 10px 0 #040404c4;letter-spacing: 2px;cursor: pointer;text-shadow: 0 0 0px #fff;">' + sect + '<span id="ux_' + sect_x + '" class="w3-right"></span></div>\n'
 		html_tab += '<div id="' + clickId + '" class="w3-show">'
 		for key in config[sect]:
 			tkey = key.replace('.', '_')
-			html_tab += '<div class="w3-left w3-dark-grey w3-border w3-border-teal tooltip" style="text-align: center;margin: 1px; min-width: 13ch; padding: 4px min(3px, 1vw) !important;box-shadow:3px 2px 4px #0009 !important;">'
+			html_tab += '<div class="w3-left si3-dark-grey w3-border w3-border-teal tooltip" style="text-align: center;margin: 1px; min-width: 13ch; padding: 4px min(3px, 1vw) !important;box-shadow:3px 2px 4px #000 !important;">'
 			html_tab += '<span class="w3-card-2 tooltiptext">'+config[sect][key]+'<br><span id="ttip_' + tkey + '" class="ttip_small"></span></span>'
 			html_tab += '<span id="' + tkey + '" class="ip_num">' + key + '</span><br><span id="stat_' + tkey + '" class="w3-center"></span></div>'
 		html_tab += '</div>\n</div>\n'
@@ -552,7 +556,7 @@ html_html = '''
     </header>
     <body>
         <div id="main">%s</div>\n
-        
+        <p><br></p>
         
         <div id="modal_01" class="w3-modal modal_01" onclick="this.style.display='none'">
         	<div class="w3-modal-content modal_01_text">
@@ -577,11 +581,13 @@ body {
 .red { color: red; }
 .green { color: #0f0; }
 .yellow { color: yellow; }
-.red_r { color: red; white-space: pre; text-align: right; font-family: monospace;}
+.red_r { color: red; white-space: pre; text-align: right; font-family: monospace;text-shadow: 0px -0px 0px #f44;}
 .green_r { color: #0f0; white-space: pre; text-align: right;; font-family: monospace;}
 .yellow_r { color: yellow; white-space: pre; text-align: right;; font-family: monospace;}
 .ip_num { font-size: 80%; }
 
+.si3-dark-grey{color:#fff!important;background-color:#626262!important;text-shadow: 0 0 0px #fff, 0 0 1px #000;}
+
 .top_header {
   text-align: center;
   padding: 5px 10px; height: 43px;
@@ -605,7 +611,6 @@ body {
   border-radius: 2px;
   font-weight: bold;
   font-size: 12px;
-  font-family: Bitstream;
 }
 
 .modal_01 {
@@ -660,13 +665,13 @@ body {
 }
 
 .tooltip .tooltiptext {
-  font-family: monospace;
+  font-family: Verdana, 'PT Sans Caption', Arial, sans-serif;
   visibility: hidden;
-  width: 150px;
+  width: 170px;
   background-color: black;
   color: #fff;
   text-align: center;
-  font-size: 15px;
+  font-size: 17px;
   border-radius: 6px;
   padding: 5px 5px;
   position: absolute;
@@ -674,6 +679,8 @@ body {
   top: 120%;
   left: 50%;
   margin-left: -60px;
+  line-height: 1.1em;
+  text-shadow: 0 0 0 #a8a8a8 !important;
 }
 
 .tooltip .tooltiptext::after {
@@ -722,21 +729,21 @@ def create_html_modal01():
 <br> 
 
 <p style="font-size:1.2em;font-variant:small-caps;letter-spacing:3px;font-style:italic;text-decoration:underline">Help</p>
-This PingPanel graphical interface consists of a header and the configured sections with the corresponding devices to be monitored.<br>
+The PingPanel board provides the header and the configured, expandable and collapsible sections with the corresponding devices to be monitored.<br>
 
 Among other things, the header contains the current time (<span class="green">green</span>) of the last ping run 
 or the status "stopped" (<span class="red">red</span>) if the connection to the server has been lost or the "Stop" button below has been pressed.<br>
-Pressing the "Stop" button terminates the connection to the server and, if no other client is active, the ping rounds are suspended.<p>
+Pressing the "Stop" button terminates the connection to the server and, if no other client is active, the server pauses the ping rounds.<p>
 
 The blue-green <span class="w3-teal">section bars</span> contain the name of the section and consolidated information about the status of the devices in this section.<br>
-<u>The section bars can be expanded and collapsed by clicking or tapping on them.</u><br>
+The section bars can be expanded and collapsed by clicking or tapping on them.<br>
 Consolidated status information <img src="/img/stat-inf.gif"> is divided into <span class="red">failed</span>, 
 <span class="yellow">partially answered</span> and <span class="green">answered</span> ping requests.<br>
 
-Each monitored device displays its IP address and status. By hovering over or tapping on it the corresponding comment 
-is displayed and every ping RTT of each ping round is reported.<p>
+Each monitored device displays its IP address and status. By hovering over or tapping on it its comment 
+is displayed and the three ping RTT's of each ping round is reported.<p>
 
-A <span class="red">flashing red</span> status light indicates that the device has freshly not responded since 'FlashThreshold' ping rounds.<br>
+A <span class="red">flashing red</span> status light indicates that the device has recently not responded during 'FlashThreshold' ping rounds.<br>
 A <span class="red">red</span> status light indicates that the device has not answered any of the three pings.<br>
 A <span class="yellow">yellow</span> status light indicates that the device has answered one of three pings.<br>
 A <span class="green">green</span> status light indicates that the device has answered to all three or at least two pings.<br>

+ 5 - 0
contrib/PingPanel/opt/PingPanel/changelog

@@ -11,3 +11,8 @@ v0.9.8 / 12.8.24, sigi:
 	- Added HTTPS params in config.cfg.
 	- Changed: 'Title' param renamed to 'TitleAdd' in config.cfg as it is now an addendum to the title.
 	
+v0.9.9 / 1.4.25, sigi:
+	- Corr: configfile handling.
+	- Added: fping parameter --size can now be set in PingPanel's config.cfg.
+
+

+ 9 - 0
contrib/PingPanel/opt/PingPanel/config.cfg

@@ -38,6 +38,15 @@ Fping-interval = 1
 ## PingPanel default is 100.
 Fping-period = 100
 
+## Fping-size:
+##- from manpage - Number of bytes of ping data to send. The minimum size (normally 12) allows room for the data 
+##- from manpage - that fping needs to do its work (sequence number, timestamp). The reported received data size includes the 
+##- from manpage - IP header (normally 20 bytes) and ICMP header (8 bytes), so the minimum total size is 40 bytes. 
+##- from manpage - Default is 56, as in ping. Maximum is the theoretical maximum IP datagram size (64K), though most systems 
+##- from manpage - limit this to a smaller, system-dependent number.
+## PingPanel default is fping default 56.
+#Fping-size = 56
+
 #-- End fping related params
 
 

BIN
contrib/pingpanel_0.9.9.tar.gz


BIN
contrib/pingpanel_0.9.9_all.deb


+ 2 - 1
contrib/si_README.txt

@@ -1,4 +1,5 @@
 - Debian Paket erstellt in diesem Verzeichnis mit: "dpkg-deb --build PingPanel ."
-- Versionsnummer wird aus control-File geholt.
+- tar-Archiv erstellt in diesem Verzeichnis mit: "tar cvfz pingpanel_0.9.9.tar.gz -C PingPanel/opt PingPanel"
+- Versionsnummer wird aus control-File PingPanel/DEBIAN/control geholt.