| Server IP : 61.19.30.66 / Your IP : 216.73.216.15 Web Server : Apache/2.2.22 (Ubuntu) System : Linux klw 3.11.0-15-generic #25~precise1-Ubuntu SMP Thu Jan 30 17:39:31 UTC 2014 x86_64 User : www-data ( 33) PHP Version : 5.3.10-1ubuntu3.48 Disable Function : pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority, MySQL : ON | cURL : OFF | WGET : ON | Perl : ON | Python : ON | Sudo : ON | Pkexec : OFF Directory : /usr/lib/python2.7/dist-packages/landscape/monitor/ |
Upload File : |
import time
from landscape.lib.monitor import CoverageMonitor
from landscape.lib.sysstats import MemoryStats
from landscape.accumulate import Accumulator
from landscape.monitor.plugin import MonitorPlugin
class MemoryInfo(MonitorPlugin):
"""Plugin captures information about free memory and free swap."""
persist_name = "memory-info"
# Prevent the Plugin base-class from scheduling looping calls.
run_interval = None
def __init__(self, interval=15, monitor_interval=60 * 60,
source_filename="/proc/meminfo", create_time=time.time):
self._interval = interval
self._monitor_interval = monitor_interval
self._source_filename = source_filename
self._memory_info = []
self._create_time = create_time
def register(self, registry):
super(MemoryInfo, self).register(registry)
self._accumulate = Accumulator(self._persist, self.registry.step_size)
self.registry.reactor.call_every(self._interval, self.run)
self._monitor = CoverageMonitor(self._interval, 0.8,
"memory/swap snapshot",
create_time=self._create_time)
self.registry.reactor.call_every(self._monitor_interval,
self._monitor.log)
self.registry.reactor.call_on("stop", self._monitor.log, priority=2000)
self.call_on_accepted("memory-info", self.send_message, True)
def create_message(self):
memory_info = self._memory_info
self._memory_info = []
return {"type": "memory-info", "memory-info": memory_info}
def send_message(self, urgent=False):
message = self.create_message()
if len(message["memory-info"]):
self.registry.broker.send_message(message, urgent=urgent)
def exchange(self, urgent=False):
self.registry.broker.call_if_accepted("memory-info",
self.send_message, urgent)
def run(self):
self._monitor.ping()
new_timestamp = int(self._create_time())
memstats = MemoryStats(self._source_filename)
memory_step_data = self._accumulate(
new_timestamp, memstats.free_memory, "accumulate-memory")
swap_step_data = self._accumulate(
new_timestamp, memstats.free_swap, "accumulate-swap")
if memory_step_data and swap_step_data:
timestamp = memory_step_data[0]
free_memory = int(memory_step_data[1])
free_swap = int(swap_step_data[1])
self._memory_info.append((timestamp, free_memory, free_swap))