Hi!
Ich siche einen Systemmonitor, der Speicher- CPU, Netzwerkauslastung und wasauchimmer
als Grafik darstellt und obendrein über http erreichbar bzw. abrufbar ist.
http darum, weil mein Server über keine grafische Oberfläche verfügt, und ich auch
z.B. mit dem iPad die url öffnen möchte.
Kennst jmd so ein tool?
grafischer Systemmonitor via http
Re: grafischer Systemmonitor via http
Du suchst wohl munin?
Gruß Cae
--Edit: naja, grafisch schließt ja textbasiert nicht aus, also… tadadaa! httop:Vielleicht hatte noch jemand diese Idee, diese Implementation habe ich gerade selbst geschrieben und gebe sie unter der MIT-Lizenz frei.
Gruß Cae
--Edit: naja, grafisch schließt ja textbasiert nicht aus, also… tadadaa! httop:
Code: Alles auswählen
#!/usr/bin/perl -w
use strict; use warnings; use CGI::Carp qw(fatalsToBrowser);
my $top = `top -b -c -n 1 -w 512`;
$top =~ s/&/&/g; $top =~ s/"/"/g; $top =~ s/</</g; $top =~ s/>/>/g;
my $host = `hostname` || 'unknown'; $host =~ s/\n$//;
$host =~ s/&/&/g; $host =~ s/"/"/g; $host =~ s/</</g; $host =~ s/>/>/g;
print "Content-type: text/html\r\n\r\n<!DOCTYPE html>
<html>
<head>
<title>httop on \`$host'</title>
<meta http-equiv=\"refresh\" content=\"3\" />
<style type=\"text/css\">* { background-color: #000; color: #fff; }</style>
</head>
<body>
<pre>$top</pre>
</head>
</html>";
If universal surveillance were the answer, lots of us would have moved to the former East Germany. If surveillance cameras were the answer, camera-happy London, with something like 500,000 of them at a cost of $700 million, would be the safest city on the planet.
—Bruce Schneier
-
- Beiträge: 207
- Registriert: 07.06.2012 10:23:04
Re: grafischer Systemmonitor via http
oder wenn es viele server werden ein cacti.