mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-01 22:05:08 +00:00
25 lines
784 B
Plaintext
25 lines
784 B
Plaintext
--- src/support/log_server_status.orig Fri Jun 4 19:54:19 1999
|
|
+++ src/support/log_server_status Fri Sep 3 15:53:16 1999
|
|
@@ -67,10 +67,10 @@
|
|
#
|
|
require 'sys/socket.ph';
|
|
|
|
-$wherelog = "/var/log/graph/"; # Logs will be like "/var/log/graph/19960312"
|
|
+$wherelog = "/var/log/httpd-status-";
|
|
$server = "localhost"; # Name of server, could be "www.foo.com"
|
|
$port = "80"; # Port on server
|
|
-$request = "/status/?auto"; # Request to send
|
|
+$request = "/server-status/?auto"; # Request to send
|
|
|
|
sub tcp_connect
|
|
{
|
|
@@ -100,7 +100,7 @@
|
|
chomp($date);
|
|
($day,$time)=split(/:/,$date);
|
|
$res=&tcp_connect($server,$port);
|
|
- open(OUT,">>$wherelog$day");
|
|
+ open(OUT,">>$wherelog$day.log");
|
|
if ($res) {
|
|
print OUT "$time:-1:-1:-1:-1:$res\n";
|
|
exit 1;
|