You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
63 lines
2.3 KiB
63 lines
2.3 KiB
# -*- coding: utf-8 -*-
|
|
##############################################################################
|
|
#
|
|
# Author: Alexandre Fayolle
|
|
# Copyright 2014 Camptocamp SA
|
|
#
|
|
# This program is free software: you can redistribute it and/or modify
|
|
# it under the terms of the GNU Affero 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 Affero General Public License for more details.
|
|
#
|
|
# You should have received a copy of the GNU Affero General Public License
|
|
# along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
#
|
|
##############################################################################
|
|
|
|
{
|
|
'name': 'Server Monitoring',
|
|
'version': '0.1',
|
|
'category': 'Tools',
|
|
'depends': ['base',
|
|
],
|
|
'author': 'Camptocamp, Odoo Community Association (OCA)',
|
|
'license': 'AGPL-3',
|
|
'description': """
|
|
Server Monitoring
|
|
=================
|
|
|
|
This module allows in-database logging of some statistics in order to monitor
|
|
the health of an openerp instance.
|
|
|
|
Database indicators are logged (number of rows, table size, number of reads,
|
|
number of updates...), with a cron running each week by default. This cron
|
|
needs to be activated after the module is installed.
|
|
|
|
Some process indicators are logged (cpu time, memory) together with information
|
|
about the different XMLRPC calls made to the server (user, model, method).
|
|
|
|
Two crons are provided to cleanup old logs from the database.
|
|
|
|
The logs are available through the menu Reporting -> Server Monitoring.
|
|
""",
|
|
'data': [
|
|
'views/menu.xml',
|
|
'views/server_monitor_database_table_activity.xml',
|
|
'views/server_monitor_database.xml',
|
|
'views/server_monitor_model_row_count.xml',
|
|
'views/server_monitor_model_table_size.xml',
|
|
'views/server_monitor_process.xml',
|
|
'data/ir_cron.xml',
|
|
'security/ir.model.access.csv',
|
|
],
|
|
'test': [
|
|
'tests/test_monitor_process.yml',
|
|
'tests/test_monitor_database.yml',
|
|
],
|
|
'installable': True,
|
|
}
|