RE: [SA-list] Simple Web Output

2015-01-06 Thread Goretti, Paul
Hi Pieter,

Thanks for your reply!  I did have a look but need to fit a lot of checks onto 
one webpage :)  I agree though, this is a good starting point!

 

-Original Message-
From: Servers Alive Discussion List [mailto:salive@woodstone.nu] On Behalf Of 
Demeulemeester, Pieter
Sent: 06 January 2015 12:06
To: Servers Alive Discussion List
Subject: RE: [SA-list] Simple Web Output

Hi Paul.
 
You can find some examples at 
http://www.woodstone.nu/salive/template_examples.php
I suggest you download them and see if there is one that fits your need. Or it 
may be a good starting point.
 
Mine is also available on that page, and I'm not a CSS guru at all. I made my 
template with Sharepoint Designer and a few tips from a colleague. ;-)
 
 
Pieter 



Van: Servers Alive Discussion List namens Goretti, Paul
Verzonden: di 6/01/2015 12:10
Aan: Servers Alive Discussion List
Onderwerp: [SA-list] Simple Web Output



Hi all,

 

I'm trying to create a simple output from SA that shows the following:

 

 

SERVER 1

 
 



Server1 is up

 

 



SERVER 1

 
 

 



Server1 is down

 

 

 

Basically I'd like to present a simple to read up or down status on a large 
screen.  There will probably be 300 or so checks and I want to make it simple 
and obvious to see quickly which server is down.  I'm no CSS guru but maybe 
someone else has done this???

 

Appreciate any thoughts

 

 

Paul Goretti

 

ICT Officer - Infrastructure

 

3457

 

East Renfrewshire Council

Main St

BarrHead

G78 1SY

 

Your Council, Your future

 

  

To unsubscribe send a message with UNSUBSCRIBE in the subject line to 
salive@woodstone.nu If you use auto-responders (like out-of-the-office 
messages), make sure that they are not sent to the list nor to individual 
members. Doing so will cause you to be automatically removed from the list.

To unsubscribe send a message with UNSUBSCRIBE in the subject line to 
salive@woodstone.nu If you use auto-responders (like out-of-the-office 
messages), make sure that they are not sent to the list nor to individual 
members.  Doing so will cause you to be automatically removed from the list.

This email has been scanned.

**
This e-mail and any files transmitted with it are not necessarily the view of 
East Renfrewshire Council. It is intended only for the person or entity named 
above. If you have received this e-mail in error please notify the author by 
replying to this e-mail and then erasing the e-mail from your system. If you 
are not the intended recipient, you are hereby notified that any use, review, 
dissemination, distribution or copying of the e-mail is strictly prohibited.
Please be advised that East Renfrewshire Council's incoming and outgoing e-mail 
is subject to regular monitoring
This footnote also confirms that this e-mail message has been swept 
for the presence of computer viruses. 
**

To unsubscribe send a message with UNSUBSCRIBE in the subject line to 
salive@woodstone.nu
If you use auto-responders (like out-of-the-office messages), make sure that 
they are not sent to the list nor to individual members.  Doing so will cause 
you to be automatically removed from the list.


RE: [SA-list] Simple Web Output

2015-01-06 Thread Goretti, Paul
Hi Erkan,

 

Many thanks for this!  I will have a look this afternoon.

 

Regards

 

Paul

 

From: Servers Alive Discussion List [mailto:salive@woodstone.nu] On Behalf Of 
Erkan Öztürk
Sent: 06 January 2015 12:31
To: Servers Alive Discussion List
Subject: RE: [SA-list] Simple Web Output

 

Hi Paul,

 

 

This is my template index html file.  If you use this template, you can see the 
Down server at top of the table as red colored row.

 

 

 

 





Server Monitor



 

  

  

   

tr:nth-of-type(odd) { background-color:#F2F2F2;} 







 

 

 

function countdown(par){

ctn = parseFloat(par);

mytime=setTimeout('display_countdown()',1000)

}

 

function display_countdown() {

var x = ctn ;

document.getElementById('ct').innerHTML = x;

ctn= ctn- 1;

tt=countdown(ctn);

}

 







 



  

 

















Your Header 






var dt = new Date();


var dtd = dt.getDate();


dtd = (dtd < 10)? "0" + dtd : dtd;


var dtm = dt.getMonth()+1;


dtm = (dtm < 10)? "0" + dtm : dtm;


var dty = dt.getFullYear();


var dth = dt.getHours();


dth = (dth < 10)? "0" + dth : dth;


var dtmm = dt.getMinutes();


dtmm = (dtmm < 10)? "0" + dtmm : dtmm;


var dts = dt.getSeconds();


dts = (dts < 10)? "0" + dts : dts;


document.write(dtd+"/"+dtm+"/"+dty+" "+dth+":"+dtmm+":"+dts);






()



Live servers: 

Dead servers: 


















 Pretty Name 


 Check Description


 Hostname


 Check Response 


RE: [SA-list] Simple Web Output

2015-01-06 Thread Erkan �zt�rk
Hi Paul, 

 

 

This is my template index html file.  If you use this template, you can see the 
Down server at top of the table as red colored row. 

 

 

 

 

 

 

Server Monitor 

 

  

  

  



tr:nth-of-type(odd) { background-color:#F2F2F2;} 

 





 

 

 

function countdown(par){ 

ctn = parseFloat(par); 

mytime=setTimeout('display_countdown()',1000) 

} 

 

function display_countdown() { 

var x = ctn ; 

document.getElementById('ct').innerHTML = x; 

ctn= ctn- 1; 

tt=countdown(ctn); 

} 

 

 





 

 

 

 

   

 

 

 

 

 

 

   

Your Header  

 

 


var dt = new Date(); 


var dtd = dt.getDate(); 


dtd = (dtd < 10)? "0" + dtd : dtd; 


var dtm = dt.getMonth()+1; 


dtm = (dtm < 10)? "0" + dtm : dtm; 


var dty = dt.getFullYear(); 


var dth = dt.getHours(); 


dth = (dth < 10)? "0" + dth : dth; 


var dtmm = dt.getMinutes(); 


dtmm = (dtmm < 10)? "0" + dtmm : dtmm; 


var dts = dt.getSeconds(); 


dts = (dts < 10)? "0" + dts : dts; 


document.write(dtd+"/"+dtm+"/"+dty+" 
"+dth+":"+dtmm+":"+dts); 


 

   

() 

 

Live servers:  

Dead servers: 
 

   

 

 

 

 

   

 

 


 Pretty Name  


 Check Description 


 Hostname 


 Check Response  


 Status  


 Status Change Date 

  

Respuesta de Estoy ausente: [SA-list] Simple Web Output

2015-01-06 Thread Perales, M. (Mariano)
Estaré fuera de oficina hasta el próximo 7 de Enero.

To unsubscribe send a message with UNSUBSCRIBE in the subject line to 
salive@woodstone.nu
If you use auto-responders (like out-of-the-office messages), make sure that 
they are not sent to the list nor to individual members.  Doing so will cause 
you to be automatically removed from the list.


RE: [SA-list] Simple Web Output

2015-01-06 Thread Demeulemeester, Pieter
Hi Paul.
 
You can find some examples at 
http://www.woodstone.nu/salive/template_examples.php
I suggest you download them and see if there is one that fits your need. Or it 
may be a good starting point.
 
Mine is also available on that page, and I'm not a CSS guru at all. I made my 
template with Sharepoint Designer and a few tips from a colleague. ;-)
 
 
Pieter 



Van: Servers Alive Discussion List namens Goretti, Paul
Verzonden: di 6/01/2015 12:10
Aan: Servers Alive Discussion List
Onderwerp: [SA-list] Simple Web Output



Hi all,

 

I'm trying to create a simple output from SA that shows the following:

 

 

SERVER 1

 
 



Server1 is up

 

 



SERVER 1

 
 

 



Server1 is down

 

 

 

Basically I'd like to present a simple to read up or down status on a large 
screen.  There will probably be 300 or so checks and I want to make it simple 
and obvious to see quickly which server is down.  I'm no CSS guru but maybe 
someone else has done this???

 

Appreciate any thoughts

 

 

Paul Goretti

 

ICT Officer - Infrastructure

 

3457

 

East Renfrewshire Council

Main St

BarrHead

G78 1SY

 

Your Council, Your future

 

  

To unsubscribe send a message with UNSUBSCRIBE in the subject line to 
salive@woodstone.nu
If you use auto-responders (like out-of-the-office messages), make sure that 
they are not sent to the list nor to individual members. Doing so will cause 
you to be automatically removed from the list.

To unsubscribe send a message with UNSUBSCRIBE in the subject line to 
salive@woodstone.nu
If you use auto-responders (like out-of-the-office messages), make sure that 
they are not sent to the list nor to individual members.  Doing so will cause 
you to be automatically removed from the list.


Respuesta de Estoy ausente: [SA-list] Simple Web Output

2015-01-06 Thread Fernandez-Vega Sanabria Eduardo
Estaré fuera de la oficina hasta el día 7 de enero 

Antes de imprimir este mensaje, asegúrese de que es necesario hacerlo. 
Protejamos el medio ambiente. 



Este mensaje se dirige exclusivamente a su destinatario y puede contener 
información privilegiada o confidencial. Si no es vd. el destinatario indicado, 
queda notificado de que la utilización, divulgación y/o copia sin autorización 
está prohibida en virtud de la legislación vigente. Si ha recibido este mensaje 
por error, le rogamos que nos lo comunique inmediatamente por esta misma vía y 
proceda a su destrucción.

This message is intended exclusively for its addressee and may contain 
information that is confidential and protected by professional privilege. If 
you are not the intended recipient you are hereby notified that any 
dissemination, copy or disclosure of this communication is strictly prohibited 
by law. If this message has been received in error, please notify us 
immediately via e-mail and delete it. 

To unsubscribe send a message with UNSUBSCRIBE in the subject line to 
salive@woodstone.nu
If you use auto-responders (like out-of-the-office messages), make sure that 
they are not sent to the list nor to individual members. Doing so will cause 
you to be automatically removed from the list. 


[SA-list] Simple Web Output

2015-01-06 Thread Goretti, Paul
Hi all,

 

I'm trying to create a simple output from SA that shows the following:

 

 



SERVER 1  



Server1 is up

 

 



SERVER 1  

 



Server1 is down

 

 

 

Basically I'd like to present a simple to read up or down status on a large 
screen.  There will probably be 300 or so checks and I want to make it simple 
and obvious to see quickly which server is down.  I'm no CSS guru but maybe 
someone else has done this???

 

Appreciate any thoughts

 

 

Paul Goretti

 

ICT Officer - Infrastructure

 

3457

 

East Renfrewshire Council

Main St

BarrHead

G78 1SY

 

Your Council, Your future

  

To unsubscribe send a message with UNSUBSCRIBE in the subject line to 
salive@woodstone.nu
If you use auto-responders (like out-of-the-office messages), make sure that 
they are not sent to the list nor to individual members. Doing so will cause 
you to be automatically removed from the list.