Markus Frosch
0d879c60d3
IcingaTimeperiod: Support includes and excludes
2018-09-13 15:14:41 +02:00
Markus Frosch
63eda31a64
IcingaObjectMultiRelations: Enable more config options
2018-09-13 15:14:41 +02:00
Thomas Gelf
3ae39af1cb
DeploymentLog: deal with entries without checksum
...
This will allow to keep deployment history while dropping outdated generated
configs
2018-09-12 12:43:01 +02:00
Markus Frosch
a2f7ff03c1
IcingaObject: Fix listed applied Groups to show mixed apply/static
...
In case a group has been statically assigned to other object it would
have been hidden.
This should only affect UI and legacy rendering.
2018-09-11 15:22:30 +02:00
Markus Frosch
ff77aa9879
IcingaServiceSet: Render sub-sets in config preview
2018-09-06 14:07:33 +02:00
Markus Frosch
a1664195f0
Merge pull request #1624 from Icinga/feature/legacy-updates
...
Improving legacy rendering
2018-09-06 11:44:36 +02:00
Markus Frosch
420ab91ab5
Merge pull request #1628 from Icinga/bugfix/user-timeperiod-constraint
...
schema/150: Add constraint from user to period
2018-09-06 11:01:59 +02:00
Markus Frosch
4df7e8a23f
schema/150: Add constraint from user to period
2018-09-06 10:46:04 +02:00
Thomas Gelf
fb4efa303f
ipl\Html: Textarea is a FormElement
2018-09-06 01:16:37 +02:00
Thomas Gelf
2f3f01e1c1
StartupLogRenderer: support non-standard package
...
* Warning Links are now available when package != director
* Changelog: mention health check change
fixes #1633
2018-09-06 01:15:14 +02:00
Thomas Gelf
5eaa682124
ConfigController: show connection problems
...
On large setups, you'll see this on every deployment. But as we're
sometimes facing strange connection issues, I prefer to have some
noise here
2018-09-06 01:08:44 +02:00
Thomas Gelf
e853dc40fc
ObjectController: hard exit after REST API response
...
fixes #1314
2018-09-05 22:29:19 +02:00
Thomas Gelf
fbef8866ce
Revert "schema/150: Add constraint from user to period"
...
This reverts commit 4b9ab649af
.
Ooops: ERROR: Icinga\Exception\IcingaException in /workdir/icingaweb2-modules/director/library/Director/Db/Migration.php:50 with message: Migration 150 failed (SQLSTATE[HY000]: General error: 1093 Table 'icinga_user' is specified twice, both as a target for 'UPDATE' and as a separate source for data) while running UPDATE icinga_user
SET period_id = NULL
WHERE id IN (
SELECT DISTINCT u.id
FROM icinga_user u
LEFT JOIN icinga_timeperiod tp ON tp.id = u.period_id
WHERE u.period_id IS NOT NULL AND tp.id IS NULL
);
2018-09-05 18:32:52 +02:00
Markus Frosch
4b9ab649af
schema/150: Add constraint from user to period
2018-09-05 18:28:55 +02:00
Thomas Gelf
c42f146e3d
Changelog: add section for upcoming v1.5.2
2018-09-05 18:09:58 +02:00
Thomas Gelf
4268221603
ImportsourceCommand: add fetch action
...
fixes #1626
2018-09-05 13:32:17 +02:00
Thomas Gelf
9cf513f8aa
ArrayElementByPosition: phpcs bug
2018-09-05 13:23:19 +02:00
Thomas Gelf
79620849c7
ArrayElementByPosition: new PropertyModifier
...
fixes #473
2018-09-05 13:11:09 +02:00
Markus Frosch
d6b9f3137a
legacy/IcingaObject: Render groups only when it is a stored object
...
This broke activity log.
2018-09-05 12:35:40 +02:00
Markus Frosch
ff0553c9dd
legacy/IcingaObject: Render interval properties properly
2018-09-05 12:35:40 +02:00
Markus Frosch
d4d309a704
legacy/IcingaService/ServiceSet: Improve apply rendering
...
This now renders one object per zone with a list of hosts.
2018-09-05 12:35:40 +02:00
Markus Frosch
f1dbeca77c
legacy/IcingaHost: Render assigned hostgroups into host object
2018-09-05 12:35:40 +02:00
Markus Frosch
26e58834f6
IcingaHostForm: Move getAppliedGroups to IcingaObject
2018-09-05 12:35:40 +02:00
Markus Frosch
cceb588d24
FlappingSupport: Add legacy support
2018-09-05 12:35:40 +02:00
Markus Frosch
3521b30953
legacy/IcingaHost: Don't render volatile
2018-09-05 12:35:40 +02:00
Markus Frosch
7c58cfdd7b
widgets: Prefer using DeploymentApiInterface instead of CoreApi
2018-09-05 12:35:40 +02:00
Markus Frosch
0911910856
DbObject: Don't allow empty id for multi-column objects
...
This avoids that the user can actually create duplicate objects in the
database. (E.g. for service templates)
2018-09-05 11:41:49 +02:00
Markus Frosch
76d0ed22e7
legacy/ObjectApplyMatches: Fix fetchFlatObjectsByType using object
...
Instead of flat variables.
2018-09-05 11:41:49 +02:00
Markus Frosch
b6fd60a39f
legacy: Avoid CoreApi in DeploymentLinkForm
2018-09-05 11:41:49 +02:00
Markus Frosch
3397b7d27b
Merge pull request #1604 from lx183/patch-1
...
Update README.md
2018-09-04 16:19:12 +02:00
Thomas Gelf
44425d4407
Db: throw original exception when rollback fails
2018-09-04 11:08:37 +02:00
Thomas Gelf
6d139752fe
QueryBasedTables: make search() public
2018-09-04 11:08:37 +02:00
Thomas Gelf
b790c7410a
Pagination: do not count twice for the same query
2018-09-04 11:08:37 +02:00
Thomas Gelf
488aad6f4e
DirectorDb: fix overridden variable, has no effect
...
...at least not yet, it would have once access to Director DBs can be restricted
2018-09-04 11:08:37 +02:00
Markus Frosch
2075f2e54a
IcingaConfig: Avoid try/except for compatibility with Icinga >= 2.6
...
try / except was never needed there, because get_host should never
throw an exception. It will be null then.
fixes #1610
2018-08-22 20:41:45 +02:00
Alexander
75c571c3f4
Update README.md
...
Typo
2018-08-14 12:52:18 +02:00
Thomas Gelf
3c02f7499f
ImportRun: fix problem with some binary checksums
...
fixes #1556
2018-08-14 09:10:15 +02:00
Thomas Gelf
08c4df9ecc
doc/changelog: add v1.5.1
2018-08-14 08:47:13 +02:00
Thomas Gelf
bf68dbcaca
IcingaConfig: fix Service Override template name
...
Got broken by fd372c6
for #1579
fixes #1601
2018-08-14 08:34:41 +02:00
Thomas Gelf
d7c92a29bd
TemplateTree: do not remove parents matching the
...
...objects name from the tree
fixes #1602
2018-08-14 00:29:42 +02:00
Thomas Gelf
457cdb53c1
doc/changelog: refresh for v1.5.0
2018-08-13 13:13:03 +02:00
Thomas Gelf
96ef84f084
Merge branch 'fix/set-deleted-by-title-click-1560'
2018-08-13 11:22:58 +02:00
Thomas Gelf
3ffacc70b6
IcingaServiceSet: do not delete on title click
...
fixes #1560
2018-08-13 11:21:54 +02:00
Thomas Gelf
657d6a958f
WIP: click on service set title row should not...
...
...remove the set from the related host
2018-08-13 09:53:10 +02:00
Thomas Gelf
49d9ed7ecd
IcingaServiceForm: fix blacklist service from set
...
fixes #1519
2018-08-13 09:52:07 +02:00
Thomas Gelf
2cf3151fdd
PropertyModifierRejectOrSelect: fix typo
2018-08-13 08:17:15 +02:00
Thomas Gelf
8929b41df0
Import/Export: refine action names, docs
...
refs #1409
2018-08-13 08:04:00 +02:00
Thomas Gelf
01b85f5758
IcingaServiceSet: render comment next to Set
2018-08-13 07:52:59 +02:00
Thomas Gelf
20395a483c
locale/de_DE: refresh translation
2018-08-12 12:24:13 +02:00
Thomas Gelf
b5a6bcc143
AutomationActions: disable 'Download JSON'
...
It's not implemented in the related controller, and too late for 1.5.0
fixes #1572
2018-08-10 14:28:02 +02:00