mirror of
https://github.com/OpenNebula/one.git
synced 2024-12-23 17:33:56 +03:00
3a6cd82ae4
configuration option that handles the time between push monitoring intervals. This new parameter is passed on to the collectd-client.rb
185 lines
5.2 KiB
C++
185 lines
5.2 KiB
C++
/* -------------------------------------------------------------------------- */
|
|
/* Copyright 2002-2013, OpenNebula Project (OpenNebula.org), C12G Labs */
|
|
/* */
|
|
/* Licensed under the Apache License, Version 2.0 (the "License"); you may */
|
|
/* not use this file except in compliance with the License. You may obtain */
|
|
/* a copy of the License at */
|
|
/* */
|
|
/* http://www.apache.org/licenses/LICENSE-2.0 */
|
|
/* */
|
|
/* Unless required by applicable law or agreed to in writing, software */
|
|
/* distributed under the License is distributed on an "AS IS" BASIS, */
|
|
/* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. */
|
|
/* See the License for the specific language governing permissions and */
|
|
/* limitations under the License. */
|
|
/* -------------------------------------------------------------------------- */
|
|
|
|
#ifndef INFORMATION_MANAGER_H_
|
|
#define INFORMATION_MANAGER_H_
|
|
|
|
#include "MadManager.h"
|
|
#include "ActionManager.h"
|
|
#include "InformationManagerDriver.h"
|
|
#include "HostPool.h"
|
|
|
|
using namespace std;
|
|
|
|
extern "C" void * im_action_loop(void *arg);
|
|
|
|
class InformationManager : public MadManager, public ActionListener
|
|
{
|
|
public:
|
|
|
|
InformationManager(
|
|
HostPool * _hpool,
|
|
time_t _timer_period,
|
|
time_t _monitor_period,
|
|
time_t _monitor_push_period,
|
|
int _host_limit,
|
|
const string& _remotes_location,
|
|
vector<const Attribute*>& _mads)
|
|
:MadManager(_mads),
|
|
hpool(_hpool),
|
|
timer_period(_timer_period),
|
|
monitor_period(_monitor_period),
|
|
monitor_push_period(_monitor_push_period),
|
|
host_limit(_host_limit),
|
|
remotes_location(_remotes_location)
|
|
{
|
|
am.addListener(this);
|
|
};
|
|
|
|
~InformationManager(){};
|
|
|
|
enum Actions
|
|
{
|
|
STOPMONITOR /** Sent by the RM when a host is deleted **/
|
|
};
|
|
|
|
/**
|
|
* Triggers specific actions to the Information Manager.
|
|
* @param action the IM action
|
|
* @param hid Host unique id. This is the argument of the passed to the
|
|
* invoked action.
|
|
*/
|
|
void trigger(
|
|
Actions action,
|
|
int vid);
|
|
|
|
/**
|
|
* This functions starts the associated listener thread, and creates a
|
|
* new thread for the Information Manager. This thread will wait in
|
|
* an action loop till it receives ACTION_FINALIZE.
|
|
* @return 0 on success.
|
|
*/
|
|
int start();
|
|
|
|
/**
|
|
* Gets the thread identification.
|
|
* @return pthread_t for the manager thread (that in the action loop).
|
|
*/
|
|
pthread_t get_thread_id() const
|
|
{
|
|
return im_thread;
|
|
};
|
|
|
|
/**
|
|
*
|
|
*/
|
|
int load_mads(int uid=0);
|
|
|
|
/**
|
|
*
|
|
*/
|
|
void finalize()
|
|
{
|
|
am.trigger(ACTION_FINALIZE,0);
|
|
};
|
|
|
|
void stop_monitor(int hid);
|
|
|
|
private:
|
|
/**
|
|
* Thread id for the Information Manager
|
|
*/
|
|
pthread_t im_thread;
|
|
|
|
/**
|
|
* Pointer to the Host Pool, to access hosts
|
|
*/
|
|
HostPool * hpool;
|
|
|
|
/**
|
|
* Timer period for the Virtual Machine Manager.
|
|
*/
|
|
time_t timer_period;
|
|
|
|
/**
|
|
* Host monitoring interval
|
|
*/
|
|
time_t monitor_period;
|
|
|
|
/**
|
|
* Host monitoring push interval
|
|
*/
|
|
time_t monitor_push_period;
|
|
|
|
/**
|
|
* Host monitoring limit
|
|
*/
|
|
int host_limit;
|
|
|
|
/**
|
|
* Path for the remote action programs
|
|
*/
|
|
string remotes_location;
|
|
|
|
/**
|
|
* Action engine for the Manager
|
|
*/
|
|
ActionManager am;
|
|
|
|
/**
|
|
* Function to execute the Manager action loop method within a new pthread
|
|
* (requires C linkage)
|
|
*/
|
|
friend void * im_action_loop(void *arg);
|
|
|
|
/**
|
|
* Time in seconds to expire a monitoring action (5 minutes)
|
|
*/
|
|
static const time_t monitor_expire;
|
|
|
|
/**
|
|
* Returns a pointer to a Information Manager MAD. The driver is
|
|
* searched by its name and owned by gwadmin with uid=0.
|
|
* @param name of the driver
|
|
* @return the VM driver owned by uid 0, with attribute "NAME" equal to
|
|
* name or 0 in not found
|
|
*/
|
|
const InformationManagerDriver * get(
|
|
const string& name)
|
|
{
|
|
string _name("NAME");
|
|
return static_cast<const InformationManagerDriver *>
|
|
(MadManager::get(0,_name,name));
|
|
};
|
|
|
|
/**
|
|
* The action function executed when an action is triggered.
|
|
* @param action the name of the action
|
|
* @param arg arguments for the action function
|
|
*/
|
|
void do_action(
|
|
const string & action,
|
|
void * arg);
|
|
|
|
/**
|
|
* This function is executed periodically to monitor Nebula hosts.
|
|
*/
|
|
void timer_action();
|
|
};
|
|
|
|
#endif /*VIRTUAL_MACHINE_MANAGER_H*/
|
|
|