mirror of
https://github.com/ntop/ntopng.git
synced 2026-05-23 03:50:20 +00:00
59 lines
1.7 KiB
C++
59 lines
1.7 KiB
C++
/*
|
|
*
|
|
* (C) 2013-21 - ntop.org
|
|
*
|
|
*
|
|
* This program is free software; you can redistribute it and/or modify
|
|
* it under the terms of the GNU General Public License as published by
|
|
* the Free Software Foundation; either version 3 of the License, or
|
|
* (at your option) any later version.
|
|
*
|
|
* This program is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
* GNU General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU General Public License
|
|
* along with this program; if not, write to the Free Software Foundation,
|
|
* Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
|
|
*
|
|
*/
|
|
|
|
#include "ntop_includes.h"
|
|
|
|
/* **************************************************** */
|
|
|
|
HostCheck::HostCheck(NtopngEdition _edition, bool _packet_interface_only, bool _nedge_exclude, bool _nedge_only) : Check(_edition, _packet_interface_only, _nedge_exclude, _nedge_only) {
|
|
periodicity_secs = 0;
|
|
};
|
|
|
|
/* **************************************************** */
|
|
|
|
HostCheck::~HostCheck() {
|
|
};
|
|
|
|
/* **************************************************** */
|
|
|
|
bool HostCheck::loadConfiguration(json_object *config) {
|
|
bool rc = true;
|
|
|
|
// ntop->getTrace()->traceEvent(TRACE_NORMAL, "%s() %s", __FUNCTION__, json_object_to_json_string(config));
|
|
|
|
/*
|
|
Example of simple configuration without parameters:
|
|
|
|
{
|
|
"severity": {
|
|
"i18n_title": "alerts_dashboard.error",
|
|
"icon": "fas fa-exclamation-triangle text-danger",
|
|
"label": "badge-danger",
|
|
"syslog_severity": 3,
|
|
"severity_id": 5
|
|
}
|
|
}
|
|
*/
|
|
|
|
return(rc);
|
|
}
|
|
|
|
/* **************************************************** */
|