mirror of https://github.com/Icinga/icinga2.git
parent
33a8e504ca
commit
c9a5ce0112
|
@ -20,6 +20,35 @@ the support overview page at [https://support.icinga.org].
|
|||
|
||||
## <a id="whats-new"></a> What's new
|
||||
|
||||
### What's New in Version 0.0.8
|
||||
|
||||
* Add [Dependency](#objecttype-dependency) object for advanced host/service dependency definition
|
||||
* Add optional [IcingaNodeName](#global-constants) for cluster feature
|
||||
* Populate check_source attribute with the checker's node name
|
||||
* [Cluster](#objecttype-clusterlistener) supports recursive config includes
|
||||
* Add [Cluster health check]#(cluster-health-check)
|
||||
* Add more performance data to the [Icinga health check](#itl-icinga)
|
||||
* Add [IcingaStatusWriter](#objecttype-icingastatuswriter) feature writing a status json file
|
||||
* Smoother pending service checking during startup
|
||||
* Reduce virtual memory usage
|
||||
* Stack traces include file names and line numbers
|
||||
* Treat script variables as constants preventing override
|
||||
* Fix pending services are being checked with the retry interval
|
||||
* DB IDO: Fix deleted objects are not marked as is_active=0
|
||||
* DB IDO: additional fields for cluster/checker nodes
|
||||
|
||||
#### Changes
|
||||
* {host,service}_dependencies attributes have been changed to [Dependency](#objecttype-dependency)
|
||||
objects supporting new attributes: `disable_checks`, 'disable_notifications`, `state_filter`,
|
||||
`period`. For better readability, there is `parent_service` and `child_service` for example.
|
||||
|
||||
> **Note**
|
||||
>
|
||||
> Update your existing configuration!
|
||||
|
||||
* DB IDO: Schema updates for 0.0.8: [MySQL](#upgrading-mysql-db) [PostgreSQL](#upgrading-postgresql-db)
|
||||
|
||||
|
||||
### What's New in Version 0.0.7
|
||||
|
||||
* DB IDO performance improvements on startup
|
||||
|
|
|
@ -66,6 +66,12 @@ schema version first:
|
|||
Check the `schema/upgrade` directory for an incremental schema upgrade file, e.g.
|
||||
if your database schema version is `1.10.0` look for `mysql-upgrade-1.12.0.sql`
|
||||
and newer. If there isn't an upgrade file available there's nothing to do.
|
||||
|
||||
> **Note**
|
||||
>
|
||||
> During pre release status (0.x.y releases) small snippets called for example
|
||||
> `0.0.8.sql` will ship the required schema updates.
|
||||
|
||||
Apply all database schema upgrade files incrementially.
|
||||
|
||||
# mysql -u root -p icinga < /usr/share/doc/icinga2-ido-mysql-*/schema/upgrade/mysql-upgrade-1.12.0.sql
|
||||
|
@ -162,6 +168,12 @@ schema version first:
|
|||
Check the `schema/upgrade` directory for an incremental schema upgrade file, e.g.
|
||||
if your database schema version is `1.11.0` look for `pgsql-upgrade-1.12.0.sql`
|
||||
and newer. If there isn't an upgrade file available there's nothing to do.
|
||||
|
||||
> **Note**
|
||||
>
|
||||
> During pre release status (0.x.y releases) small snippets called for example
|
||||
> `0.0.8.sql` will ship the required schema updates.
|
||||
|
||||
Apply all database schema upgrade files incrementially.
|
||||
|
||||
# export PGPASSWORD=icinga
|
||||
|
|
Loading…
Reference in New Issue