
Reactivating monitors shouldn't be done as it's simpler to actually destroy and create a new one. The performance of reactivation is insignificant compared to the possible inconsistency problems it allows.
169 lines
5.6 KiB
C++
169 lines
5.6 KiB
C++
/*
|
|
* Copyright (c) 2018 MariaDB Corporation Ab
|
|
*
|
|
* Use of this software is governed by the Business Source License included
|
|
* in the LICENSE.TXT file and at www.mariadb.com/bsl11.
|
|
*
|
|
* Change Date: 2022-01-01
|
|
*
|
|
* On the date above, in accordance with the Business Source License, use
|
|
* of this software will be governed by version 2 or later of the General
|
|
* Public License.
|
|
*/
|
|
#pragma once
|
|
|
|
/**
|
|
* Internal header for the monitor
|
|
*/
|
|
|
|
#include <maxscale/monitor.hh>
|
|
#include <maxscale/resultset.hh>
|
|
#include "externcmd.hh"
|
|
|
|
#define MON_ARG_MAX 8192
|
|
|
|
/* Is not really an event as the other values, but is a valid config setting and also the default.
|
|
* Bitmask value matches all events. */
|
|
static const MXS_ENUM_VALUE mxs_monitor_event_default_enum = {"all", ~0ULL};
|
|
static const MXS_ENUM_VALUE mxs_monitor_event_enum_values[] =
|
|
{
|
|
mxs_monitor_event_default_enum,
|
|
{"master_down", MASTER_DOWN_EVENT },
|
|
{"master_up", MASTER_UP_EVENT },
|
|
{"slave_down", SLAVE_DOWN_EVENT },
|
|
{"slave_up", SLAVE_UP_EVENT },
|
|
{"server_down", SERVER_DOWN_EVENT },
|
|
{"server_up", SERVER_UP_EVENT },
|
|
{"synced_down", SYNCED_DOWN_EVENT },
|
|
{"synced_up", SYNCED_UP_EVENT },
|
|
{"donor_down", DONOR_DOWN_EVENT },
|
|
{"donor_up", DONOR_UP_EVENT },
|
|
{"ndb_down", NDB_DOWN_EVENT },
|
|
{"ndb_up", NDB_UP_EVENT },
|
|
{"lost_master", LOST_MASTER_EVENT },
|
|
{"lost_slave", LOST_SLAVE_EVENT },
|
|
{"lost_synced", LOST_SYNCED_EVENT },
|
|
{"lost_donor", LOST_DONOR_EVENT },
|
|
{"lost_ndb", LOST_NDB_EVENT },
|
|
{"new_master", NEW_MASTER_EVENT },
|
|
{"new_slave", NEW_SLAVE_EVENT },
|
|
{"new_synced", NEW_SYNCED_EVENT },
|
|
{"new_donor", NEW_DONOR_EVENT },
|
|
{"new_ndb", NEW_NDB_EVENT },
|
|
{NULL}
|
|
};
|
|
|
|
/**
|
|
* This class contains internal monitor management functions that should not be exposed in the public
|
|
* monitor class. It's a friend of MXS_MONITOR.
|
|
*/
|
|
class MonitorManager
|
|
{
|
|
public:
|
|
|
|
/**
|
|
* Creates a new monitor. Loads the module, calls constructor and configure, and adds monitor to the
|
|
* global list.
|
|
*
|
|
* @param name The configuration name of the monitor
|
|
* @param module The module name to load
|
|
* @return The newly created monitor, or NULL on error
|
|
*/
|
|
static mxs::Monitor* create_monitor(const std::string& name, const std::string& module,
|
|
MXS_CONFIG_PARAMETER* params);
|
|
|
|
/**
|
|
* Mark monitor as deactivated. A deactivated monitor appears not to exist, as if it had been
|
|
* destroyed. Any servers the monitor had are removed. The monitor should not be serialized after
|
|
* this function.
|
|
*
|
|
* @param monitor Monitor to deactivate
|
|
*/
|
|
static void deactivate_monitor(mxs::Monitor* monitor);
|
|
|
|
/**
|
|
* @brief Destroys all monitors. At this point all monitors should
|
|
* have been stopped.
|
|
*
|
|
* @attn Must only be called in single-thread context at system shutdown.
|
|
*/
|
|
static void destroy_all_monitors();
|
|
|
|
static void start_monitor(mxs::Monitor* monitor);
|
|
|
|
/**
|
|
* Stop a given monitor
|
|
*
|
|
* @param monitor The monitor to stop
|
|
*/
|
|
static void stop_monitor(mxs::Monitor* monitor);
|
|
|
|
static void stop_all_monitors();
|
|
static void start_all_monitors();
|
|
|
|
static mxs::Monitor* find_monitor(const char* name);
|
|
|
|
/**
|
|
* @brief Populate services with the servers of the monitors.
|
|
*/
|
|
static void populate_services();
|
|
|
|
/**
|
|
* Get links to monitors that relate to a server.
|
|
*
|
|
* @param server Server to inspect
|
|
* @param host Hostname of this server
|
|
* @return Array of monitor links or NULL if no relations exist
|
|
*/
|
|
static json_t* monitor_relations_to_server(const SERVER* server, const char* host);
|
|
|
|
/**
|
|
* Convert all monitors to JSON.
|
|
*
|
|
* @param host Hostname of this server
|
|
* @return JSON array containing all monitors
|
|
*/
|
|
static json_t* monitor_list_to_json(const char* host);
|
|
|
|
/**
|
|
* Check if a server is being monitored and return the monitor.
|
|
* @param server Server that is queried
|
|
* @return The monitor watching this server, or NULL if not monitored
|
|
*/
|
|
static mxs::Monitor* server_is_monitored(const SERVER* server);
|
|
|
|
static void show_all_monitors(DCB* dcb);
|
|
static void monitor_show(DCB* dcb, mxs::Monitor* monitor);
|
|
|
|
static void monitor_list(DCB*);
|
|
|
|
static std::unique_ptr<ResultSet> monitor_get_list();
|
|
|
|
/**
|
|
* @brief Serialize a monitor to a file
|
|
*
|
|
* This converts the static configuration of the monitor into an INI format file.
|
|
*
|
|
* @param monitor Monitor to serialize
|
|
* @return True if serialization was successful
|
|
*/
|
|
static bool monitor_serialize(const mxs::Monitor* monitor);
|
|
|
|
/**
|
|
* @brief Convert monitor to JSON
|
|
*
|
|
* @param monitor Monitor to convert
|
|
* @param host Hostname of this server
|
|
*
|
|
* @return JSON representation of the monitor
|
|
*/
|
|
static json_t* monitor_to_json(const mxs::Monitor* monitor, const char* host);
|
|
|
|
static bool create_monitor_config(const mxs::Monitor* monitor, const char* filename);
|
|
|
|
/**
|
|
* Waits until all running monitors have advanced one tick.
|
|
*/
|
|
static void debug_wait_one_tick();
|
|
};
|