[Pkg-nagios-changes] [pkg-icinga2] branch upstream updated (64334db -> 7eaa5f9)

Alexander Wirt formorer at debian.org
Wed Jul 8 12:09:17 UTC 2015


This is an automated email from the git hooks/post-receive script.

formorer pushed a change to branch upstream
in repository pkg-icinga2.

      from  64334db   Imported Upstream version 2.3.5
       new  7eaa5f9   Imported Upstream version 2.3.6

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.


Summary of changes:
 AUTHORS                                            |   7 +
 CMakeLists.txt                                     |   3 +
 ChangeLog                                          |  42 +++
 INSTALL.md                                         |   9 +-
 README.md                                          |   7 +-
 RELEASE.md                                         |  48 +++-
 agent/windows-setup-agent/Icinga2SetupAgent.csproj |   9 +
 agent/windows-setup-agent/Program.cs               |  37 ++-
 .../windows-setup-agent/ServiceStatus.Designer.cs  | 118 +++++++++
 agent/windows-setup-agent/ServiceStatus.cs         |  37 +++
 .../{SetupWizard.resx => ServiceStatus.resx}       |   0
 agent/windows-setup-agent/SetupWizard.Designer.cs  |  83 +++---
 agent/windows-setup-agent/SetupWizard.cs           |  54 ++--
 changelog.py                                       |  95 +++++--
 doc/1-about.md                                     |  42 +++
 doc/12-distributed-monitoring-ha.md                |  36 +--
 doc/13-addons-plugins.md                           |  19 ++
 doc/16-troubleshooting.md                          |   5 +-
 doc/19-language-reference.md                       |   1 -
 doc/2-getting-started.md                           |  17 +-
 doc/3-monitoring-basics.md                         |   4 +-
 doc/7-icinga-template-library.md                   | 123 ++++++++-
 icinga-app/icinga.cpp                              |  41 +--
 icinga2.nuspec                                     |  26 ++
 icinga2.spec                                       |  18 +-
 itl/command-nscp-local.conf                        |   3 +-
 itl/command-plugins-manubulon.conf                 |   5 +
 itl/command-plugins-windows.conf                   |   8 +-
 itl/command-plugins.conf                           | 118 ++++++++-
 itl/plugins-contrib.d/databases.conf               | 124 ++++++++-
 itl/plugins-contrib.d/network-components.conf      |   2 +-
 itl/plugins-contrib.d/operating-system.conf        |   1 -
 itl/plugins-contrib.d/web.conf                     |   2 +-
 lib/base/netstring.cpp                             |   4 +-
 lib/base/netstring.hpp                             |   2 +-
 lib/base/stdiostream.cpp                           |   5 +
 lib/base/stdiostream.hpp                           |   1 +
 lib/base/stream.cpp                                |  12 +-
 lib/base/stream.hpp                                |   9 +-
 lib/cli/nodeaddcommand.hpp                         |   6 +-
 lib/cli/nodelistcommand.hpp                        |   6 +-
 lib/cli/noderemovecommand.hpp                      |   6 +-
 lib/cli/nodesetcommand.hpp                         |   6 +-
 lib/cli/nodesetupcommand.cpp                       |  11 +-
 lib/cli/nodesetupcommand.hpp                       |   6 +-
 lib/cli/nodeupdateconfigcommand.hpp                |   6 +-
 lib/cli/nodeutility.cpp                            |   8 +-
 lib/cli/nodeutility.hpp                            |   6 +-
 lib/cli/nodewizardcommand.cpp                      |   5 +-
 lib/cli/nodewizardcommand.hpp                      |   8 +-
 lib/db_ido/dbevents.cpp                            |   2 -
 lib/icinga/apievents.cpp                           | 291 +++++++++++++++++----
 lib/icinga/icinga-type.conf                        |   1 +
 lib/remote/apiclient.cpp                           |   6 +-
 lib/remote/apiclient.hpp                           |   1 +
 plugins/CMakeLists.txt                             |  34 +--
 plugins/check_disk.cpp                             | 258 +++++++++---------
 plugins/{check_perfmon.h => check_disk.h}          |  42 +--
 plugins/check_load.cpp                             |  81 +++---
 lib/base/filelogger.ti => plugins/check_load.h     |  17 +-
 plugins/check_memory.cpp                           |  86 +++---
 lib/base/number.hpp => plugins/check_memory.h      |  31 +--
 plugins/check_network.cpp                          | 194 +++++++++-----
 lib/base/ringbuffer.hpp => plugins/check_network.h |  50 ++--
 plugins/check_ping.cpp                             | 147 +++++------
 lib/base/object-script.cpp => plugins/check_ping.h |  42 +--
 plugins/check_procs.cpp                            | 116 ++++----
 lib/base/filelogger.ti => plugins/check_procs.h    |  20 +-
 plugins/check_service.cpp                          |  71 ++---
 lib/base/filelogger.ti => plugins/check_service.h  |  20 +-
 plugins/check_swap.cpp                             |  80 +++---
 lib/base/filelogger.ti => plugins/check_swap.h     |  22 +-
 plugins/check_update.cpp                           |  76 +++---
 lib/base/filelogger.ti => plugins/check_update.h   |  22 +-
 plugins/check_uptime.cpp                           |  84 +++---
 lib/base/filelogger.ti => plugins/check_uptime.h   |  22 +-
 plugins/check_users.cpp                            |  91 +++----
 plugins/check_users.h                              |  15 ++
 plugins/thresholds.cpp                             |  79 +++---
 plugins/thresholds.h                               |  76 +++---
 tools/chocolateyInstall.ps1                        |   7 +
 81 files changed, 2154 insertions(+), 1181 deletions(-)
 create mode 100644 agent/windows-setup-agent/ServiceStatus.Designer.cs
 create mode 100644 agent/windows-setup-agent/ServiceStatus.cs
 copy agent/windows-setup-agent/{SetupWizard.resx => ServiceStatus.resx} (100%)
 create mode 100755 icinga2.nuspec
 copy plugins/{check_perfmon.h => check_disk.h} (69%)
 copy lib/base/filelogger.ti => plugins/check_load.h (80%)
 copy lib/base/number.hpp => plugins/check_memory.h (78%)
 copy lib/base/ringbuffer.hpp => plugins/check_network.h (70%)
 copy lib/base/object-script.cpp => plugins/check_ping.h (72%)
 copy lib/base/filelogger.ti => plugins/check_procs.h (78%)
 copy lib/base/filelogger.ti => plugins/check_service.h (78%)
 copy lib/base/filelogger.ti => plugins/check_swap.h (79%)
 copy lib/base/filelogger.ti => plugins/check_update.h (78%)
 copy lib/base/filelogger.ti => plugins/check_uptime.h (79%)
 create mode 100644 plugins/check_users.h
 create mode 100755 tools/chocolateyInstall.ps1

-- 
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-nagios/pkg-icinga2.git



More information about the Pkg-nagios-changes mailing list