]> git.proxmox.com Git - pve-manager-legacy.git/commitdiff
convert pvestatd into a PVE::Service class
authorDietmar Maurer <dietmar@proxmox.com>
Fri, 4 Sep 2015 09:16:24 +0000 (11:16 +0200)
committerDietmar Maurer <dietmar@proxmox.com>
Fri, 4 Sep 2015 09:22:09 +0000 (11:22 +0200)
PVE/Makefile
bin/Makefile
bin/pvestatd
bin/vzdump

index 2ff2005dfcbc42ef0ceb549e1643e384ec4f1586..98ae341df459ebd7f6f87b4e32ff1291ad45140f 100644 (file)
@@ -1,6 +1,6 @@
 include ../defines.mk
 
-SUBDIRS=API2 VZDump Status CLI
+SUBDIRS=API2 VZDump Status CLI Service
 
 PERLSOURCE =                   \
        API2.pm                 \
index 6864217c2c6e320653e69094f348ab42ae181673..ac4477abc317fac96ae487b7b8b0dd159bac3a03 100644 (file)
@@ -39,8 +39,11 @@ all: ${MANS} pvemailforward
 %.1.pod: %
        podselect $*>$@
 
-pvestatd.1.pod: pvestatd
-       perl -I.. ./pvestatd printmanpod >$@
+pvestatd.1.pod:
+       perl -I.. -T -e "use PVE::Service::pvestatd; PVE::Service::pvestatd->generate_pod_manpage();" >$@
+
+pvestatd.bash-completion:
+       perl -I.. -T -e "use PVE::Service::pvestatd; PVE::Service::pvestatd->generate_bash_completions();" >$@
 
 pvedaemon.1.pod: pvedaemon
        perl -I.. -T ./pvedaemon printmanpod >$@
@@ -73,7 +76,7 @@ pvemailforward: pvemailforward.c
        gcc $< -o $@ -g -O2 -Wall -ldl -lc
 
 .PHONY: install 
-install: ${SCRIPTS} ${MANS} pvemailforward vzdump.bash-completion
+install: ${SCRIPTS} ${MANS} pvemailforward vzdump.bash-completion pvestatd.bash-completion
 
        perl -I.. -T -e "use PVE::CLI::vzdump; PVE::CLI::vzdump->verify_api();"
        perl -I.. ./pvesh verifyapi
@@ -86,6 +89,7 @@ install: ${SCRIPTS} ${MANS} pvemailforward vzdump.bash-completion
        install -m 0644 vzdump.1.pod ${PODDIR}
        install -m 0644 pvesubscription.1.pod ${PODDIR}
        install -m 0644 -D vzdump.bash-completion ${BASHCOMPLDIR}/vzdump
+       install -m 0644 -D pvestatd.bash-completion ${BASHCOMPLDIR}/pvestatd
        set -e && for i in ${SUBDIRS}; do ${MAKE} -C $$i $@; done
 
 .PHONY: distclean
index 897057e57cd6402f3441b26c60a19d5aad6a1c2c..d929f48de6ea0892a4169ef658b4c42580ebaeaa 100755 (executable)
 
 use strict;
 use warnings;
-use PVE::SafeSyslog;
-use PVE::Daemon;
 
-use Time::HiRes qw (gettimeofday);
-use PVE::Tools qw(dir_glob_foreach file_read_firstline);
-use PVE::ProcFSTools;
-use Filesys::Df;
-use PVE::INotify;
-use PVE::Cluster qw(cfs_read_file);
-use PVE::Storage;
-use PVE::QemuServer;
-use PVE::LXC;
-use PVE::RPCEnvironment;
-use PVE::API2::Subscription;
-use PVE::AutoBalloon;
+use PVE::Service::pvestatd;
 
-use PVE::Status::Plugin;
-use PVE::Status::Graphite;
-
-PVE::Status::Graphite->register();
-PVE::Status::Plugin->init();
-
-use base qw(PVE::Daemon);
-
-my $opt_debug;
-
-my $cmdline = [$0, @ARGV];
-
-my %daemon_options = (restart_on_error => 5, stop_wait_time => 5);
-
-my $daemon = __PACKAGE__->new('pvestatd', $cmdline, %daemon_options);
-my $nodename = PVE::INotify::nodename();
-my $restart_request;
-
-sub prepare {
-    my $rpcenv = PVE::RPCEnvironment->init('cli');
-
-    $rpcenv->init_request();
-    $rpcenv->set_language($ENV{LANG});
-    $rpcenv->set_user('root@pam');
-
-    $restart_request = 0;
-}
-
-sub init {
-    my ($self) = @_;
-
-    $opt_debug = $self->{debug};
-
-    PVE::Cluster::cfs_update();
-}
-
-sub shutdown {
-    my ($self) = @_;
-
-    syslog('info' , "server closing");
-
-    # wait for children
-    1 while (waitpid(-1, POSIX::WNOHANG()) > 0);
-
-    $self->exit_daemon(0);
-}
-
-sub hup {
-    my ($self) = @_;
-
-    $restart_request = 1;
-}
-
-sub update_node_status {
-    my ($status_cfg) = @_;
-
-    my ($avg1, $avg5, $avg15) = PVE::ProcFSTools::read_loadavg();
-
-    my $stat = PVE::ProcFSTools::read_proc_stat();
-
-    my $netdev = PVE::ProcFSTools::read_proc_net_dev();
-
-    my ($uptime) = PVE::ProcFSTools::read_proc_uptime();
-
-    my $cpuinfo = PVE::ProcFSTools::read_cpuinfo();
-
-    my $maxcpu = $cpuinfo->{cpus}; 
-
-    my $subinfo = PVE::INotify::read_file('subscription');
-    my $sublevel = $subinfo->{level} || '';
-
-    # traffic from/to physical interface cards
-    my $netin = 0;
-    my $netout = 0;
-    foreach my $dev (keys %$netdev) {
-       next if $dev !~ m/^eth\d+$/;
-       $netin += $netdev->{$dev}->{receive};
-       $netout += $netdev->{$dev}->{transmit};
-    }
-    my $meminfo = PVE::ProcFSTools::read_meminfo();
-
-    my $dinfo = df('/', 1);     # output is bytes
-
-    my $ctime = time();
-
-    # everything not free is considered to be used
-    my $dused = $dinfo->{blocks} - $dinfo->{bfree};
-
-    my $data = "$uptime:$sublevel:$ctime:$avg1:$maxcpu:$stat->{cpu}:$stat->{wait}:" .
-       "$meminfo->{memtotal}:$meminfo->{memused}:" .
-       "$meminfo->{swaptotal}:$meminfo->{swapused}:" .
-       "$dinfo->{blocks}:$dused:$netin:$netout";
-
-    PVE::Cluster::broadcast_rrd("pve2-node/$nodename", $data);
-
-    foreach my $id (keys %{$status_cfg->{ids}}) {
-       my $plugin_config = $status_cfg->{ids}->{$id};
-       next if $plugin_config->{disable};
-       my $plugin = PVE::Status::Plugin->lookup($plugin_config->{type});
-
-       my $d = {};
-       $d->{uptime} = $uptime;
-       $d->{cpustat} = $stat;
-       $d->{cpustat}->{avg1} = $avg1;
-       $d->{cpustat}->{avg5} = $avg5;
-       $d->{cpustat}->{avg15} = $avg15;
-       $d->{cpustat}->{cpus} = $maxcpu;
-       $d->{memory} = $meminfo;
-       $d->{blockstat} = $dinfo;
-       $d->{nics} = $netdev;
-
-       $plugin->update_node_status($plugin_config, $nodename, $d, $ctime);
-    }
-}
-
-sub auto_balloning {
-    my ($vmstatus) =  @_;
-
-    my $log = sub {
-       return if !$opt_debug;
-       print @_;
-    };
-
-    my $hostmeminfo = PVE::ProcFSTools::read_meminfo();
-
-    # to debug, run 'pvestatd -d' and set  memtotal here
-    #$hostmeminfo->{memtotal} = int(2*1024*1024*1024/0.8); # you can set this to test
-
-    my $hostfreemem = $hostmeminfo->{memtotal} - $hostmeminfo->{memused};
-
-    # we try to use about 80% host memory
-    # goal: we want to change memory usage by this amount (positive or negative)
-    my $goal = int($hostmeminfo->{memtotal}*0.8 - $hostmeminfo->{memused});
-
-    my $maxchange = 100*1024*1024;
-    my $res = PVE::AutoBalloon::compute_alg1($vmstatus, $goal, $maxchange);
-    &$log("host goal: $goal free: $hostfreemem total: $hostmeminfo->{memtotal}\n");
-
-    foreach my $vmid (keys %$vmstatus) {
-       next if !$res->{$vmid};
-       my $d = $vmstatus->{$vmid};
-       my $diff = int($res->{$vmid} - $d->{balloon});
-       my $absdiff = $diff < 0 ? -$diff : $diff;
-       if ($absdiff > 0) {
-           &$log("BALLOON $vmid to $res->{$vmid} ($diff)\n");
-           eval {
-               PVE::QemuServer::vm_mon_cmd($vmid, "balloon", 
-                                           value => int($res->{$vmid}));
-           };
-           warn $@ if $@;
-       }
-    }
-}
-
-sub update_qemu_status {
-    my ($status_cfg) = @_;
-
-    my $ctime = time();
-
-    my $vmstatus = PVE::QemuServer::vmstatus(undef, 1);
-
-    eval { auto_balloning($vmstatus); };
-    syslog('err', "auto ballooning error: $@") if $@;
-
-    foreach my $vmid (keys %$vmstatus) {
-       my $d = $vmstatus->{$vmid};
-       my $data;
-       my $status = $d->{qmpstatus} || $d->{status} || 'stopped';
-       my $template = $d->{template} ? $d->{template} : "0";
-       if ($d->{pid}) { # running
-           $data = "$d->{uptime}:$d->{name}:$status:$template:" .
-               "$ctime:$d->{cpus}:$d->{cpu}:" .
-               "$d->{maxmem}:$d->{mem}:" .
-               "$d->{maxdisk}:$d->{disk}:" .
-               "$d->{netin}:$d->{netout}:" .
-               "$d->{diskread}:$d->{diskwrite}";
-       } else {
-           $data = "0:$d->{name}:$status:$template:$ctime:$d->{cpus}::" .
-               "$d->{maxmem}::" .
-               "$d->{maxdisk}:$d->{disk}:" .
-               ":::";
-       }
-       PVE::Cluster::broadcast_rrd("pve2.3-vm/$vmid", $data);
-
-       foreach my $id (keys %{$status_cfg->{ids}}) {
-           my $plugin_config = $status_cfg->{ids}->{$id};
-           next if $plugin_config->{disable};
-           my $plugin = PVE::Status::Plugin->lookup($plugin_config->{type});
-           $plugin->update_qemu_status($plugin_config, $vmid, $d, $ctime);
-       }
-    }
-}
-
-sub remove_stale_lxc_consoles {
-
-    my $vmstatus = PVE::LXC::vmstatus();
-    my $pidhash = PVE::LXC::find_lxc_console_pids();
-
-    foreach my $vmid (keys %$pidhash) {
-       next if defined($vmstatus->{$vmid});
-       syslog('info', "remove stale lxc-console for CT $vmid");
-       foreach my $pid (@{$pidhash->{$vmid}}) {
-           kill(9, $pid);
-       }
-    }
-}
-
-sub update_lxc_status {
-    my ($status_cfg) = @_;
-
-    my $ctime = time();
-
-    my $vmstatus = PVE::LXC::vmstatus();
-
-    foreach my $vmid (keys %$vmstatus) {
-       my $d = $vmstatus->{$vmid};
-       my $template = $d->{template} ? $d->{template} : "0";
-       my $data;
-       if ($d->{status} eq 'running') { # running
-           $data = "$d->{uptime}:$d->{name}:$d->{status}:$template:" .
-               "$ctime:$d->{cpus}:$d->{cpu}:" .
-               "$d->{maxmem}:$d->{mem}:" .
-               "$d->{maxdisk}:$d->{disk}:" .
-               "$d->{netin}:$d->{netout}:" .
-               "$d->{diskread}:$d->{diskwrite}";
-       } else {
-           $data = "0:$d->{name}:$d->{status}:$template:$ctime:$d->{cpus}::" .
-               "$d->{maxmem}::" .
-               "$d->{maxdisk}:$d->{disk}:" .
-               ":::";
-       }
-       PVE::Cluster::broadcast_rrd("pve2.3-vm/$vmid", $data);
-
-       foreach my $id (keys %{$status_cfg->{ids}}) {
-           my $plugin_config = $status_cfg->{ids}->{$id};
-           next if $plugin_config->{disable};
-           my $plugin = PVE::Status::Plugin->lookup($plugin_config->{type});
-           $plugin->update_lxc_status($plugin_config, $vmid, $d, $ctime);
-       }
-    }
-}
-
-sub update_storage_status {
-    my ($status_cfg) = @_;
-
-    my $cfg = cfs_read_file("storage.cfg");
-
-    my $ctime = time();
-
-    my $info = PVE::Storage::storage_info($cfg);
-
-    foreach my $storeid (keys %$info) {
-       my $d = $info->{$storeid};
-       next if !$d->{active};
-
-       my $data = "$ctime:$d->{total}:$d->{used}";
-
-       my $key = "pve2-storage/${nodename}/$storeid";
-       PVE::Cluster::broadcast_rrd($key, $data);
-
-       foreach my $id (keys %{$status_cfg->{ids}}) {
-           my $plugin_config = $status_cfg->{ids}->{$id};
-           next if $plugin_config->{disable};
-           my $plugin = PVE::Status::Plugin->lookup($plugin_config->{type});
-           $plugin->update_storage_status($plugin_config, $nodename, $storeid, $d, $ctime);
-       }
-    }
-}
-
-sub update_status {
-
-    # update worker list. This is not really required and
-    # we just call this to make sure that we have a correct
-    # list in case of an unexpected crash.
-    eval {
-       my $tlist = PVE::RPCEnvironment::active_workers();
-       PVE::Cluster::broadcast_tasklist($tlist);
-    };
-    my $err = $@;
-    syslog('err', $err) if $err;
-
-    my $status_cfg = PVE::Cluster::cfs_read_file('status.cfg');
-
-    eval {
-       update_node_status($status_cfg);
-    };
-    $err = $@;
-    syslog('err', "node status update error: $err") if $err;
-
-    eval {
-       update_qemu_status($status_cfg);
-    };
-    $err = $@;
-    syslog('err', "qemu status update error: $err") if $err;
-
-    eval {
-       update_lxc_status($status_cfg);
-    };
-    $err = $@;
-    syslog('err', "lxc status update error: $err") if $err;
-
-    eval {
-       update_storage_status($status_cfg);
-    };
-    $err = $@;
-    syslog('err', "storage status update error: $err") if $err;
-
-    eval {
-       remove_stale_lxc_consoles();
-    };
-    $err = $@;
-    syslog('err', "lxc console cleanup error: $err") if $err;
-}
-
-my $next_update = 0;
-
-# do not update directly after startup, because install scripts
-# have a problem with that
-my $cycle = 0; 
-my $updatetime = 10;
-
-my $initial_memory_usage;
-
-sub run {
-    my ($self) = @_;
-
-    for (;;) { # forever
-
-       $next_update = time() + $updatetime;
-
-       if ($cycle) {
-           my ($ccsec, $cusec) = gettimeofday ();
-           eval {
-               # syslog('info', "start status update");
-               PVE::Cluster::cfs_update();
-               update_status();
-           };
-           my $err = $@;
-
-           if ($err) {
-               syslog('err', "status update error: $err");
-           }
-
-           my ($ccsec_end, $cusec_end) = gettimeofday ();
-           my $cptime = ($ccsec_end-$ccsec) + ($cusec_end - $cusec)/1000000;
-
-           syslog('info', sprintf("status update time (%.3f seconds)", $cptime))
-               if ($cptime > 5);
-       }
-
-       $cycle++;
-
-       my $mem = PVE::ProcFSTools::read_memory_usage();
-
-       if (!defined($initial_memory_usage) || ($cycle < 10)) {
-           $initial_memory_usage = $mem->{resident};
-       } else {
-           my $diff = $mem->{resident} - $initial_memory_usage;
-           if ($diff > 5*1024*1024) {
-               syslog ('info', "restarting server after $cycle cycles to " .
-                       "reduce memory usage (free $mem->{resident} ($diff) bytes)");
-               $self->restart_daemon();
-           }
-       }
-
-       my $wcount = 0;
-       while ((time() < $next_update) && 
-              ($wcount < $updatetime) && # protect against time wrap
-              !$restart_request) { $wcount++; sleep (1); };
-
-       $self->restart_daemon() if $restart_request;
-    }
-}
-
-$daemon->register_start_command();
-$daemon->register_restart_command(1);
-$daemon->register_stop_command();
-$daemon->register_status_command();
-
-my $cmddef = {
-    start => [ __PACKAGE__, 'start', []],
-    restart => [ __PACKAGE__, 'restart', []],
-    stop => [ __PACKAGE__, 'stop', []],
-    status => [ __PACKAGE__, 'status', [], undef, sub { print shift . "\n";} ],
-};
-
-my $cmd = shift;
-
-PVE::CLIHandler::handle_cmd($cmddef, $0, $cmd, \@ARGV, undef, $0, \&prepare);
-
-exit (0);
+PVE::Service::pvestatd->run_cli();
 
 __END__
 
index b1bfc7de2e696e0afbeada0220b7b2aec2618833..e4bfc472c59f77fc89c2d06c8db058e529c87b48 100755 (executable)
@@ -5,4 +5,4 @@ use warnings;
 
 use PVE::CLI::vzdump;
 
-PVE::CLI::vzdump->run();
+PVE::CLI::vzdump->run_cli();