This is an automated email from the git hooks/post-receive script.
New change to branch develop in repository mum.
See http://git.chorem.org/mum.git
from d2a9fd9 modules that don't need a connection launched separately (ping, http, smtp) + autoconf after scan also for these ones
new 8ccda8f added timeout on smtp module => without, the thread RunMonitoring may not end
new 50c9f8c new nmap params for UDP port of snmp detection + corrected init_conn + using telnetlib for smtp check
The 2 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails. The revisions
listed as "adds" were already present in the repository and have only
been added to this reference.
Detailed log of new commits:
commit 50c9f8cf9b5c9c9796fef9086adbd47306d3488b
Author: Alexis Guilbaud <guilbaud(a)codelutin.com>
Date: Thu Apr 23 11:36:22 2015 +0200
new nmap params for UDP port of snmp detection + corrected init_conn + using telnetlib for smtp check
commit 8ccda8f67e86cdff4ad1fd1b65e93cc45382a112
Author: Alexis Guilbaud <guilbaud(a)codelutin.com>
Date: Wed Apr 22 17:31:48 2015 +0200
added timeout on smtp module => without, the thread RunMonitoring may not end
Summary of changes:
app/module_loader.py | 1 +
app/modules/monitoring_modules/http.py | 6 ++++--
app/modules/monitoring_modules/smtp.py | 7 +++----
app/modules/nmap_detection.py | 6 +++++-
app/modules/storage_modules/shelve_db.py | 25 ++++++++++++++++++-------
app/process_monitoring.py | 5 +++--
static/js/controllers/scanCtrl.js | 2 +-
views/hostpage.html | 3 +--
8 files changed, 36 insertions(+), 19 deletions(-)
--
To stop receiving notification emails like this one, please contact
chorem.org SCM administrator <admin+scm(a)chorem.org>.
This is an automated email from the git hooks/post-receive script.
New change to branch develop in repository mum.
See http://git.chorem.org/mum.git
from b097080 removed known ports verification because was causing random locks on db + refactored modules to move db dependency on module_loader
new e2e8ef7 response after "check now" + renamed more clearly the modules + added http module
new d2a9fd9 modules that don't need a connection launched separately (ping, http, smtp) + autoconf after scan also for these ones
The 2 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails. The revisions
listed as "adds" were already present in the repository and have only
been added to this reference.
Detailed log of new commits:
commit d2a9fd9c325ae5277d82afdc7854d0b76ab7c886
Author: Alexis Guilbaud <guilbaud(a)codelutin.com>
Date: Wed Apr 22 14:02:03 2015 +0200
modules that don't need a connection launched separately (ping, http, smtp) + autoconf after scan also for these ones
commit e2e8ef74d7b967c78e38084c11f10d0d8f950ddb
Author: Alexis Guilbaud <guilbaud(a)codelutin.com>
Date: Wed Apr 22 11:59:17 2015 +0200
response after "check now" + renamed more clearly the modules + added http module
Summary of changes:
app/module_loader.py | 30 +++++++++++++++++-----
.../{cpu.py => cpu_ssh_linux.py} | 0
app/modules/monitoring_modules/disk_snmp_linux.py | 8 +++++-
.../{disk.py => disk_ssh_linux.py} | 0
app/modules/monitoring_modules/http.py | 28 ++++++++++++++++++++
.../{load.py => load_ssh_linux.py} | 0
.../monitoring_modules/memory_snmp_linux.py | 8 +++++-
.../{memory.py => memory_ssh_linux.py} | 0
app/modules/monitoring_modules/ping.py | 2 +-
app/modules/monitoring_modules/smtp.py | 20 +++++++++++----
app/modules/monitoring_modules/swap_snmp_linux.py | 8 +++++-
.../{swap.py => swap_ssh_linux.py} | 0
...d_packages.py => updated_packages_ssh_linux.py} | 0
app/modules/storage_modules/shelve_db.py | 5 ++--
app/mum.py | 1 +
15 files changed, 91 insertions(+), 19 deletions(-)
rename app/modules/monitoring_modules/{cpu.py => cpu_ssh_linux.py} (100%)
rename app/modules/monitoring_modules/{disk.py => disk_ssh_linux.py} (100%)
create mode 100644 app/modules/monitoring_modules/http.py
rename app/modules/monitoring_modules/{load.py => load_ssh_linux.py} (100%)
rename app/modules/monitoring_modules/{memory.py => memory_ssh_linux.py} (100%)
rename app/modules/monitoring_modules/{swap.py => swap_ssh_linux.py} (100%)
rename app/modules/monitoring_modules/{updated_packages.py => updated_packages_ssh_linux.py} (100%)
--
To stop receiving notification emails like this one, please contact
chorem.org SCM administrator <admin+scm(a)chorem.org>.
This is an automated email from the git hooks/post-receive script.
New change to branch develop in repository mum.
See http://git.chorem.org/mum.git
from e25ed00 handled exceptions on module loader + print traceback + bug fix on full detection
new 038fa24 snmp monitoring modules implemented + hostpage : modal for confirmation of deletion of a host
new c760a00 known ports are at least verfied once when adding a host, and if a connection is preconfigured, it will be activated
new b097080 removed known ports verification because was causing random locks on db + refactored modules to move db dependency on module_loader
The 3 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails. The revisions
listed as "adds" were already present in the repository and have only
been added to this reference.
Detailed log of new commits:
commit b0970805803825d20468ef8dbf87a38617a45443
Author: Alexis Guilbaud <guilbaud(a)codelutin.com>
Date: Tue Apr 21 17:58:00 2015 +0200
removed known ports verification because was causing random locks on db + refactored modules to move db dependency on module_loader
commit c760a0065eec4d9537c8f76c5211a9fe2a72edb1
Author: Alexis Guilbaud <guilbaud(a)codelutin.com>
Date: Tue Apr 21 15:23:03 2015 +0200
known ports are at least verfied once when adding a host, and if a connection is preconfigured, it will be activated
commit 038fa24fcc81ccf7f5a64d9f7c5022e587429900
Author: Alexis Guilbaud <guilbaud(a)codelutin.com>
Date: Mon Apr 20 17:43:34 2015 +0200
snmp monitoring modules implemented + hostpage : modal for confirmation of deletion of a host
Summary of changes:
README | 11 +++-
app/module_loader.py | 65 ++++++++++------------
app/modules/connection_modules/snmp.py | 9 +--
.../monitoring_modules/15_min_load_snmp_linux.py | 14 +++++
app/modules/monitoring_modules/cpu.py | 4 +-
app/modules/monitoring_modules/cpu_glances.py | 4 +-
app/modules/monitoring_modules/cpu_snmp_linux.py | 20 +++++++
app/modules/monitoring_modules/disk.py | 4 +-
app/modules/monitoring_modules/disk_snmp_linux.py | 16 ++++++
app/modules/monitoring_modules/load.py | 4 +-
app/modules/monitoring_modules/memory.py | 4 +-
.../monitoring_modules/memory_snmp_linux.py | 16 ++++++
app/modules/monitoring_modules/ping.py | 4 +-
app/modules/monitoring_modules/smtp.py | 18 ++++++
app/modules/monitoring_modules/swap.py | 4 +-
app/modules/monitoring_modules/swap_snmp_linux.py | 16 ++++++
app/modules/monitoring_modules/updated_packages.py | 4 +-
app/modules/nmap_detection.py | 5 +-
app/modules/storage_modules/shelve_db.py | 28 +++++++---
app/mum.py | 2 +-
app/process_monitoring.py | 11 +---
static/js/controllers/dashboardCtrl.js | 2 +-
static/js/controllers/hostPageCtrl.js | 58 ++++++++++++++-----
views/dashboard.html | 2 +-
views/hostpage.html | 46 ++++++++++++---
25 files changed, 273 insertions(+), 98 deletions(-)
create mode 100644 app/modules/monitoring_modules/15_min_load_snmp_linux.py
create mode 100644 app/modules/monitoring_modules/cpu_snmp_linux.py
create mode 100644 app/modules/monitoring_modules/disk_snmp_linux.py
create mode 100644 app/modules/monitoring_modules/memory_snmp_linux.py
create mode 100644 app/modules/monitoring_modules/smtp.py
create mode 100644 app/modules/monitoring_modules/swap_snmp_linux.py
--
To stop receiving notification emails like this one, please contact
chorem.org SCM administrator <admin+scm(a)chorem.org>.
This is an automated email from the git hooks/post-receive script.
New change to branch develop in repository mum.
See http://git.chorem.org/mum.git
from 40c8d67 navbar: current tasks running on the center of navbar (number of max tasks defined on headCtrl)
new 1c0d817 monitoring module instruction also removed from database if exception occures (as well if no connection have been found)
new 4754716 bug on external module loading corrected + hostpage select all avaliable on block selection
new 4727ac1 changed all asynchronous $scope.$apply on js to $timeout in order to prevent "inprog" angular errors
new e25ed00 handled exceptions on module loader + print traceback + bug fix on full detection
The 4 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails. The revisions
listed as "adds" were already present in the repository and have only
been added to this reference.
Detailed log of new commits:
commit e25ed006647ff08540ccbe37353d4224695608cb
Author: Alexis Guilbaud <guilbaud(a)codelutin.com>
Date: Fri Apr 17 16:15:03 2015 +0200
handled exceptions on module loader + print traceback + bug fix on full detection
commit 4727ac1ba63db144afc20b3e14e35db75ba2b6fb
Author: Alexis Guilbaud <guilbaud(a)codelutin.com>
Date: Fri Apr 17 15:27:01 2015 +0200
changed all asynchronous $scope.$apply on js to $timeout in order to prevent "inprog" angular errors
commit 475471624be023f21b8a8a977a568041be08d4f9
Author: Alexis Guilbaud <guilbaud(a)codelutin.com>
Date: Fri Apr 17 14:48:21 2015 +0200
bug on external module loading corrected + hostpage select all avaliable on block selection
commit 1c0d81779263f6a6cf7e6c5dd36e5dc1e908683b
Author: Alexis Guilbaud <guilbaud(a)codelutin.com>
Date: Fri Apr 17 11:50:56 2015 +0200
monitoring module instruction also removed from database if exception occures (as well if no connection have been found)
Summary of changes:
app/module_loader.py | 64 +++++++++++++++++++++++++-----
app/mum.py | 7 +++-
static/js/controllers/hostPageCtrl.js | 56 +++++++++++++++-----------
static/js/controllers/notificationsCtrl.js | 20 +++++-----
static/js/controllers/profileCtrl.js | 16 ++++----
static/js/controllers/settingsCtrl.js | 6 +--
static/js/controllers/usersCtrl.js | 10 ++---
views/hostpage.html | 2 +
views/settings.html | 4 +-
9 files changed, 122 insertions(+), 63 deletions(-)
--
To stop receiving notification emails like this one, please contact
chorem.org SCM administrator <admin+scm(a)chorem.org>.
This is an automated email from the git hooks/post-receive script.
New change to branch develop in repository mum.
See http://git.chorem.org/mum.git
from 112abc7 wen state available for hosts: idle. Monitoring can be idle on hostpage
new 12096f1 hostpage: only fields for the current connection are shown in form
new 40c8d67 navbar: current tasks running on the center of navbar (number of max tasks defined on headCtrl)
The 2 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails. The revisions
listed as "adds" were already present in the repository and have only
been added to this reference.
Detailed log of new commits:
commit 40c8d678e649aeb459a1891b03d877fdb9ddcda0
Author: Alexis Guilbaud <guilbaud(a)codelutin.com>
Date: Thu Apr 16 18:03:42 2015 +0200
navbar: current tasks running on the center of navbar (number of max tasks defined on headCtrl)
commit 12096f1de1124f0c77020ecb93263dcd30729f2a
Author: Alexis Guilbaud <guilbaud(a)codelutin.com>
Date: Thu Apr 16 10:22:33 2015 +0200
hostpage: only fields for the current connection are shown in form
Summary of changes:
app/module_loader.py | 8 ++++
.../notification_modules/websocket_container.py | 6 ++-
app/modules/storage_modules/shelve_db.py | 41 ++++++++++++++++++++
app/mum.py | 32 +++++++++------
bower.json | 1 -
static/js/controllers/headCtrl.js | 25 +++++++++++-
static/js/controllers/hostPageCtrl.js | 45 ++++++----------------
static/js/mumApp.js | 2 +-
views/hostpage.html | 13 +++----
views/index.html | 8 ++++
10 files changed, 124 insertions(+), 57 deletions(-)
--
To stop receiving notification emails like this one, please contact
chorem.org SCM administrator <admin+scm(a)chorem.org>.
This is an automated email from the git hooks/post-receive script.
New change to branch develop in repository mum.
See http://git.chorem.org/mum.git
from 0a179b4 hostapege: change the hostname (function called have been changed for every nmap attributes) + snmp connection module added
new 112abc7 wen state available for hosts: idle. Monitoring can be idle on hostpage
The 1 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails. The revisions
listed as "adds" were already present in the repository and have only
been added to this reference.
Detailed log of new commits:
commit 112abc7116b6ee0060d8e3bbd76ada3d1c192bee
Author: Alexis Guilbaud <guilbaud(a)codelutin.com>
Date: Wed Apr 15 17:50:02 2015 +0200
wen state available for hosts: idle. Monitoring can be idle on hostpage
Summary of changes:
app/module_loader.py | 13 +++++++++
app/modules/storage_modules/shelve_db.py | 47 ++++++++++++++++++++++++++++----
app/mum.py | 6 ++++
app/process_monitoring.py | 3 +-
static/js/controllers/dashboardCtrl.js | 2 +-
static/js/controllers/headCtrl.js | 5 +++-
static/js/controllers/hostPageCtrl.js | 17 ++++++++++++
views/dashboard.html | 1 +
views/hostpage.html | 14 ++++++++--
views/index.html | 1 +
10 files changed, 97 insertions(+), 12 deletions(-)
--
To stop receiving notification emails like this one, please contact
chorem.org SCM administrator <admin+scm(a)chorem.org>.
This is an automated email from the git hooks/post-receive script.
New change to branch develop in repository mum.
See http://git.chorem.org/mum.git
from f3f3cce detection modules loaded with connection multi compatibility
new dc557b1 dashboard: multiple select filter for status
new 0a179b4 hostapege: change the hostname (function called have been changed for every nmap attributes) + snmp connection module added
The 2 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails. The revisions
listed as "adds" were already present in the repository and have only
been added to this reference.
Detailed log of new commits:
commit 0a179b45441193164623b26cb50f60e760228717
Author: Alexis Guilbaud <guilbaud(a)codelutin.com>
Date: Wed Apr 15 14:54:47 2015 +0200
hostapege: change the hostname (function called have been changed for every nmap attributes) +
snmp connection module added
commit dc557b11dcdc1447ea9ef28ef8fad28075e115a5
Author: Alexis Guilbaud <guilbaud(a)codelutin.com>
Date: Wed Apr 15 10:38:56 2015 +0200
dashboard: multiple select filter for status
Summary of changes:
app/modules/connection_modules/snmp.py | 61 ++++++++++++++++++++++++++++++++
app/modules/storage_modules/shelve_db.py | 9 ++---
requirements.txt | 1 +
static/js/controllers/dashboardCtrl.js | 8 +++--
static/js/controllers/hostPageCtrl.js | 8 +++--
views/dashboard.html | 12 ++++---
views/hostpage.html | 9 ++++-
7 files changed, 94 insertions(+), 14 deletions(-)
create mode 100644 app/modules/connection_modules/snmp.py
--
To stop receiving notification emails like this one, please contact
chorem.org SCM administrator <admin+scm(a)chorem.org>.
This is an automated email from the git hooks/post-receive script.
New change to branch develop in repository mum.
See http://git.chorem.org/mum.git
from 98c99dd Glances connection added + cpu with glances added + support of multi connections by priorities
new f3f3cce detection modules loaded with connection multi compatibility
The 1 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails. The revisions
listed as "adds" were already present in the repository and have only
been added to this reference.
Detailed log of new commits:
commit f3f3cce29588303eae317ae6248cbf22a65e69eb
Author: Alexis Guilbaud <guilbaud(a)codelutin.com>
Date: Tue Apr 14 17:52:22 2015 +0200
detection modules loaded with connection multi compatibility
Summary of changes:
app/module_loader.py | 33 +++++++++++-----------
app/modules/detection_modules/drive_detection.py | 1 +
app/modules/detection_modules/kernel_detection.py | 1 +
.../detection_modules/open_ports_detection.py | 1 +
app/modules/detection_modules/os_detection.py | 1 +
app/modules/monitoring_modules/cpu_glances.py | 2 +-
6 files changed, 22 insertions(+), 17 deletions(-)
--
To stop receiving notification emails like this one, please contact
chorem.org SCM administrator <admin+scm(a)chorem.org>.
This is an automated email from the git hooks/post-receive script.
New change to branch develop in repository mum.
See http://git.chorem.org/mum.git
from dca7d4d hostpage: removed useless function
new 98c99dd Glances connection added + cpu with glances added + support of multi connections by priorities
The 1 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails. The revisions
listed as "adds" were already present in the repository and have only
been added to this reference.
Detailed log of new commits:
commit 98c99dde02634da528e9379399282a139044d837
Author: Alexis Guilbaud <guilbaud(a)codelutin.com>
Date: Tue Apr 14 15:44:13 2015 +0200
Glances connection added + cpu with glances added + support of multi connections by priorities
Summary of changes:
app/module_loader.py | 164 ++++++++++++---------
app/modules/connection_modules/glances.py | 37 +++++
.../detection_modules/open_ports_detection.py | 2 +-
app/modules/monitoring_modules/cpu.py | 4 +-
app/modules/monitoring_modules/cpu_glances.py | 30 ++++
app/modules/monitoring_modules/disk.py | 4 +-
app/modules/monitoring_modules/load.py | 4 +-
app/modules/monitoring_modules/memory.py | 4 +-
app/modules/monitoring_modules/ping.py | 2 +
app/modules/monitoring_modules/swap.py | 4 +-
app/modules/monitoring_modules/updated_packages.py | 4 +-
app/modules/storage_modules/shelve_db.py | 29 +++-
app/mum.py | 2 +-
static/js/controllers/hostPageCtrl.js | 67 ++++-----
views/hostpage.html | 8 +-
15 files changed, 237 insertions(+), 128 deletions(-)
create mode 100644 app/modules/connection_modules/glances.py
create mode 100644 app/modules/monitoring_modules/cpu_glances.py
--
To stop receiving notification emails like this one, please contact
chorem.org SCM administrator <admin+scm(a)chorem.org>.
This is an automated email from the git hooks/post-receive script.
New change to branch develop in repository mum.
See http://git.chorem.org/mum.git
from 37e435d click on a link which is the current URL will now refresh the page + completing/harmonizing the comments
new 639391c detection module open_ports_detection added + bug fix on init_conn: now the port is well pre-configured
new 5175283 The conn modules must now specify which port it usually use. Then on init_conn, a connection is created if a open port of same number exists on the loaded conn mod
new dca7d4d hostpage: removed useless function
The 3 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails. The revisions
listed as "adds" were already present in the repository and have only
been added to this reference.
Detailed log of new commits:
commit dca7d4d9899a638ad0ca6ab43636af1f6fa622c3
Author: Alexis Guilbaud <guilbaud(a)codelutin.com>
Date: Thu Apr 9 18:36:39 2015 +0200
hostpage: removed useless function
commit 5175283672a985cfd006a06a633dcf4834a09152
Author: Alexis Guilbaud <guilbaud(a)codelutin.com>
Date: Thu Apr 9 13:59:59 2015 +0200
The conn modules must now specify which port it usually use. Then on init_conn, a connection is created if a open port of same number exists on the loaded conn mod
commit 639391c7338c194c33196c8ec6ed91a226f06687
Author: Alexis Guilbaud <guilbaud(a)codelutin.com>
Date: Thu Apr 9 11:07:28 2015 +0200
detection module open_ports_detection added
+ bug fix on init_conn: now the port is well pre-configured
Summary of changes:
README | 2 +-
app/module_loader.py | 5 +++++
app/modules/connection_modules/ssh.py | 4 ++++
.../detection_modules/open_ports_detection.py | 26 ++++++++++++++++++++++
app/modules/storage_modules/shelve_db.py | 24 +++++++++++++++-----
static/js/controllers/hostPageCtrl.js | 4 ----
6 files changed, 54 insertions(+), 11 deletions(-)
create mode 100644 app/modules/detection_modules/open_ports_detection.py
--
To stop receiving notification emails like this one, please contact
chorem.org SCM administrator <admin+scm(a)chorem.org>.