← Back to Changelog Index

Changelog 2026

💻 Rolling Release

60
commits
6,355
added
3,278
removed

🏷️ Stable Releases

0
releases
0
added
0
removed

💻 r14582 FIX

Mike Stupalov 🐱 • 2026-02-10 17:28
Fixed fdb local port association for vlans with null in vlan name.
Files changed (1)
M includes/polling/fdb/cisco-bridge-mib.php +4 -1
📈 4 added 📉 1 removed

💻 r14581 TRIVIAL

Mike Stupalov 🐱 • 2026-02-10 13:35
Added debug messages for false email notification send.
Files changed (1)
M includes/transports/email.inc.php +19 -14
📈 19 added 📉 14 removed

💻 r14580 IMPROVE

Mike Stupalov 🐱 • 2026-02-10 11:35
Added DEVICE_NAME and DEVICE_IP tyo message tags for alert notigications.
Files changed (2)
M includes/notifications.inc.php +11 -5
M includes/syslog.inc.php +29 -2
📈 40 added 📉 7 removed

💻 r14579 FIX

Mike Stupalov 🐱 • 2026-02-10 08:50
Removed call to get_entity_group_names() in CE.
Files changed (1)
M includes/notifications.inc.php +79 -73
📈 79 added 📉 73 removed

💻 r14578 OS

Mike Stupalov 🐱 • 2026-02-09 16:09
Improved os definitions for Janitza Power Analyzer.
Files changed (2)
M includes/definitions/mibs/janitza.inc.php +68 -52
M includes/definitions/os/janitza.inc.php +7 -4
📈 75 added 📉 56 removed

💻 r14577 TRIVIAL

Mike Stupalov 🐱 • 2026-02-08 10:29
Added error message when trying run poller with host 'new' keyword.
Files changed (2)
M poller-wrapper.py +7 -1
M poller.php +5 -2
📈 12 added 📉 3 removed

💻 r14576 FIX

Mike Stupalov 🐱 • 2026-02-07 20:00
Fixed display device down time in status widgets.
Files changed (2)
M html/includes/print/status.inc.php +2 -2
M includes/entities/device.inc.php +5
📈 7 added 📉 2 removed

💻 r14575 LIBS

Mike Stupalov 🐱 • 2026-02-05 14:18
Removed unused pear Net_IPv4 and Net_IPv6 files.
Files changed (2)
D libs/pear/Net/IPv4.php -462
D libs/pear/Net/IPv6.php -1,130
📈 0 added 📉 0 removed

💻 r14574 IMPROVE

Mike Stupalov 🐱 • 2026-02-05 10:16
Convert device fields last_polled and ignore_until to unittime in db query.
Files changed (6)
M html/includes/cache-data.inc.php +5 -3
M html/includes/entities/device.inc.php +2 -3
M html/pages/device.inc.php +2 -2
M includes/alerts.inc.php +12 -6
M includes/entities/device.inc.php +6 -9
M includes/rewrites.inc.php +24 -4
📈 51 added 📉 27 removed

💻 r14573 IMPROVE

Mike Stupalov 🐱 • 2026-02-05 09:01
Reset opcache directly on fatal error handler.
Files changed (2)
M includes/debugging.inc.php +6 -24
M includes/observium.inc.php -16
📈 6 added 📉 40 removed

💻 r14572 FIX

Mike Stupalov 🐱 • 2026-02-04 17:29
Fixed snmp community string validation for non-standard lengths exceeding 32 characters.
Files changed (3)
M includes/common.inc.php +6 -2
M includes/entities/device.inc.php +7
M tests/IncludesCommonTest.php +5 -2
📈 18 added 📉 4 removed

💻 r14571 IMPROVE

Mike Stupalov 🐱 • 2026-02-04 09:39
Added get_network_start(). Removed direct calls to IPLib from main code parts.
Files changed (3)
M html/includes/sessions.inc.php +1 -2
M includes/discovery/ip-addresses.inc.php +20 -20
M includes/entities/ip-address.inc.php +7
📈 28 added 📉 22 removed

💻 r14570 REFACTOR

Mike Stupalov 🐱 • 2026-02-03 20:48
Changed ip related functions to use IPLib library (instead unmainteined pear libs). Added many additional unit tests.
Files changed (10)
M html/includes/entities/pseudowire.inc.php +2 -2
M html/includes/sessions.inc.php +5 -6
M includes/definitions.inc.php +38 -26
M includes/discovery/ip-addresses.inc.php +8 -8
M includes/discovery/ip-addresses/lldp-mib.inc.php +36 -35
M includes/discovery/neighbours/lldp-mib.inc.php +1 -9
M includes/entities.inc.php -15
M includes/entities/ip-address.inc.php +201 -118
M includes/entities/port.inc.php +17 -9
M tests/IPAddressTest.php +749 -80
📈 1,057 added 📉 308 removed

💻 r14569 LIBS

Mike Stupalov 🐱 • 2026-02-03 20:32
Added IPLib v1.22.0
Files changed (21)
A libs/IPLib
A libs/IPLib/Address
A libs/IPLib/Address/AddressInterface.php +185
A libs/IPLib/Address/AssignedRange.php +140
A libs/IPLib/Address/IPv4.php +582
A libs/IPLib/Address/IPv6.php +679
A libs/IPLib/Address/Type.php +44
A libs/IPLib/Factory.php +342
A libs/IPLib/ParseStringFlag.php +79
A libs/IPLib/Range
A libs/IPLib/Range/AbstractRange.php +188
A libs/IPLib/Range/Pattern.php +354
A libs/IPLib/Range/RangeInterface.php +198
A libs/IPLib/Range/Single.php +266
A libs/IPLib/Range/Subnet.php +373
A libs/IPLib/Range/Type.php +152
A libs/IPLib/Service
A libs/IPLib/Service/BinaryMath.php +246
A libs/IPLib/Service/NumberInChunks.php +254
A libs/IPLib/Service/RangesFromBoundaryCalculator.php +175
A libs/IPLib/Service/UnsignedIntegerMath.php +173
📈 0 added 📉 0 removed

💻 r14568 MINOR

Adam Armstrong 🐸 • 2026-02-02 20:53
Email transport - add optional custom subject template using {{TAGS}} syntax
Files changed (2)
M includes/transports/aws-sns.inc.php +1 -1
M includes/transports/email.inc.php +4 -1
📈 5 added 📉 2 removed

💻 r14567 FIX

Mike Stupalov 🐱 • 2026-02-02 19:49
Fixed Add probe form user level.
Files changed (1)
M html/includes/modals/add_probe.inc.php +1 -1
📈 1 added 📉 1 removed

💻 r14566 CLEAN

Mike Stupalov 🐱 • 2026-02-01 15:21
Use explicit pattern delimiter in regex test conditions for mib definitions.
Files changed (4)
M includes/definitions/mibs/fscom.inc.php +12 -12
M includes/definitions/mibs/netping/dksf-mib.php +1 -1
M includes/definitions/mibs/qsan.inc.php +2 -2
M includes/definitions/mibs/spectralogic.inc.php +1 -1
📈 16 added 📉 16 removed

💻 r14565 TRIVIAL

Mike Stupalov 🐱 • 2026-02-01 14:39
Added debug warnings for malformed conditions in parse_condition_string(). Prefer explicit type prefix in MIB definitions. Added unit tests for incorrect test definitions.
Files changed (4)
M includes/definitions/mibs.inc.php +2 -1
M includes/definitions/mibs/nortel.inc.php +31 -31
M includes/functions.inc.php +8
M tests/IncludesFunctionsTest.php +91
📈 132 added 📉 32 removed

💻 r14564 IMPROVE

Mike Stupalov 🐱 • 2026-01-31 16:39
Added parse_condition_string() for simplified condition syntax in MIB and http test definitions. Refactor key 'test_and' for replace hidden 'and' flag with explicit key.
Files changed (7)
M includes/definitions/mibs.inc.php +56
M includes/definitions/mibs/ekinops/ekinops-pm200frs02-mib.inc.php +4 -4
M includes/definitions/mibs/liebert.inc.php +28 -23
M includes/definitions/mibs/nortel.inc.php +30 -30
M includes/functions.inc.php +289 -93
M includes/http.inc.php +5 -3
M tests/IncludesFunctionsTest.php +419
📈 831 added 📉 153 removed

💻 r14563 MINOR

Mike Stupalov 🐱 • 2026-01-31 13:45
Added safe_split_space() for safely splitting strings by whitespace with a minimum parts guarantee. Added unit tests.
Files changed (5)
M html/ajax/actions/alert_check_add.inc.php +1 -1
M html/includes/navbars/group.inc.php +4 -8
M html/pages/alert_check.inc.php +5 -5
M includes/common.inc.php +27
M tests/IncludesCommonTest.php +83
📈 120 added 📉 14 removed

💻 r14562 TESTS

Mike Stupalov 🐱 • 2026-01-31 11:23
Added unit tests match oid conditions for test_condition(). Fixed !match condition for numeric oids.
Files changed (2)
M includes/alerts.inc.php +2 -14
M tests/IncludesAlertsTest.php +39 -3
📈 41 added 📉 17 removed

💻 r14561 TESTS

Mike Stupalov 🐱 • 2026-01-31 11:05
Added key descriptions to unit tests for test_condition(). Fixed !between condition for boundary values.
Files changed (2)
M includes/alerts.inc.php +1 -1
M tests/IncludesAlertsTest.php +310 -293
📈 311 added 📉 294 removed

💻 r14560 IMPROVE

Mike Stupalov 🐱 • 2026-01-30 19:43
Function test_condition() regex condition detect if test string already pattern with delimiters.
Files changed (2)
M includes/alerts.inc.php +24 -15
M tests/IncludesAlertsTest.php +307 -298
📈 331 added 📉 313 removed

💻 r14559 IMPROVE

Mike Stupalov 🐱 • 2026-01-29 20:48
Added autodiscovery option to limit SNMP versions used.
Files changed (2)
M includes/defaults.inc.php +1
M includes/entities/device.inc.php +8 -2
📈 9 added 📉 2 removed

💻 r14558 TRIVIAL

Mike Stupalov 🐱 • 2026-01-29 16:23
Moved mempool and db functions from common include to correct places.
Files changed (3)
M includes/db.inc.php +54
M includes/entities/mempool.inc.php +71
M includes/functions.inc.php -119
📈 125 added 📉 119 removed

💻 r14557 MINOR

Mike Stupalov 🐱 • 2026-01-29 14:32
Moved process-specific (alerter/poller/discovery) includes to common observium include. Moved unix-agent specific functions to separate include.
Files changed (10)
M alerter.php +4 -4
M billing-calculate.php +1 -1
M discovery.php +1 -1
M includes/discovery/inventory.inc.php +1
M includes/functions.inc.php -149
M includes/observium.inc.php +50 -25
M includes/polling/ipmi.inc.php -3
M includes/polling/wmi.inc.php +1 -2
A includes/unix-agent.inc.php +160
M poller.php +2 -2
📈 220 added 📉 187 removed

💻 r14556 IMPROVE

Mike Stupalov 🐱 • 2026-01-28 20:05
Moved list of ignored vlans to os/group definition, added option for ability global ignore list of vlans. Fixed discovery cisco reserved vlans on other platforms.
Files changed (5)
M includes/defaults.inc.php +11 -14
M includes/definitions/os/cisco.inc.php +2
M includes/discovery/vlans.inc.php +9 -9
M includes/entities/device.inc.php +23 -2
M includes/polling/stp.inc.php +1 -1
📈 46 added 📉 26 removed

💻 r14555 OS

Mike Stupalov 🐱 • 2026-01-28 14:58
Added discovery sensors for HP mPDU devices.
Files changed (4)
A includes/definitions/mibs/hp
M includes/definitions/mibs/hp.inc.php -285
A includes/definitions/mibs/hp/cpqpower-mib.inc.php +963
M includes/definitions/os/hp.inc.php +23 -17
📈 986 added 📉 302 removed

💻 r14554 MIBS

Mike Stupalov 🐱 • 2026-01-28 14:56
Updated HP mib files.
Files changed (1)
M mibs/hp/CPQPOWER-MIB +81
📈 0 added 📉 0 removed

💻 r14553 MIBS

Mike Stupalov 🐱 • 2026-01-28 10:27
Updated APC mib files.
Files changed (1)
M mibs/apc/PowerNet-MIB +1,353 -91
📈 0 added 📉 0 removed

💻 r14552 FIX

Mike Stupalov 🐱 • 2026-01-27 14:48
Fixed open links in new tab with Meta/Ctrl key click.
Files changed (1)
M html/js/observium.js +32 -8
📈 0 added 📉 0 removed

💻 r14551 FIX

Mike Stupalov 🐱 • 2026-01-27 14:47
Fixed generate status form for status type field.
Files changed (1)
M html/includes/entities/status.inc.php +83 -69
📈 83 added 📉 69 removed

💻 r14550 TRIVIAL

Mike Stupalov 🐱 • 2026-01-27 14:45
Use icon definition when exist in generate_element_select().
Files changed (1)
M html/includes/print/search.inc.php +5 -2
📈 5 added 📉 2 removed

💻 r14549 CLEAN

Mike Stupalov 🐱 • 2026-01-26 08:56
Removed debug in js console log.
Files changed (1)
M html/index.php +2 -13
📈 2 added 📉 13 removed

💻 r14548 FIX

Mike Stupalov 🐱 • 2026-01-23 13:44
Fixed js openLink() function do not trigger open url on selecting text.
Files changed (7)
M html/includes/entities/device.inc.php +4 -4
M html/includes/entities/port.inc.php +1 -1
M html/includes/print-accesspoint.inc.php +1 -1
M html/includes/print-interface-adsl.inc.php +1 -1
M html/includes/print/alert.inc.php +1 -1
M html/js/observium.js +29 -14
M html/pages/device/routing/eigrp/ports.inc.php +1 -1
📈 9 added 📉 9 removed

💻 r14547 IMPROVE

Mike Stupalov 🐱 • 2026-01-22 16:17
Added discovery additional APC pdu and ups power sensors by PowerNet-MIB.
Files changed (3)
M includes/definitions/mibs/apc/powernet-mib.inc.php +55
M includes/definitions/mibs/apc/powernet-rpdu2.php +21 -2
M includes/discovery/sensors/powernet-mib.inc.php +26 -6
📈 102 added 📉 8 removed

💻 r14546 TRIVIAL

Mike Stupalov 🐱 • 2026-01-21 21:38
Improved error messages on try load python modules natsort and impacket for wmic script.
Files changed (1)
M scripts/wmic +30 -11
📈 30 added 📉 11 removed

💻 r14545 CLEAN

Mike Stupalov 🐱 • 2026-01-16 15:05
Hidden API tokens page in community edition.
Files changed (1)
M html/includes/navbar.inc.php +3 -1
📈 3 added 📉 1 removed

💻 r14544 CLEAN

Mike Stupalov 🐱 • 2026-01-16 14:45
Updated bfd functions include for web pages.
Files changed (3)
M html/includes/navbar.inc.php +14 -3
M html/pages/bfd.inc.php +2 -1
M html/pages/device/bfd.inc.php +5 -6
📈 21 added 📉 10 removed

💻 r14543 TRIVIAL

Mike Stupalov 🐱 • 2026-01-16 14:31
Improved debugging for geolocation by DNS LOC records.
Files changed (2)
M includes/geolocation.inc.php +41 -34
M includes/geolocation/yandex.inc.php +13 -9
📈 54 added 📉 43 removed

💻 r14542 CLEAN

Mike Stupalov 🐱 • 2026-01-16 14:26
Hidden config options not exist in community edition.
Files changed (2)
M html/includes/cache-data.inc.php +20 -18
M includes/observium.inc.php +10 -5
📈 30 added 📉 23 removed

💻 r14541 CLEAN

Mike Stupalov 🐱 • 2026-01-16 14:05
Moved bfd functions includes to entities dir.
Files changed (3)
D includes/bfd.inc.php -179
A includes/entities/bfd.inc.php +179
M includes/polling/bfd.inc.php +7 -9
📈 186 added 📉 188 removed

💻 r14540 OS

Mike Stupalov 🐱 • 2026-01-14 18:09
Reduced default snmp max repetition value for unix os group for prevent possible fragmentation of udp packets.
Files changed (2)
M includes/definitions/os/proxmox.inc.php -4
M includes/definitions/os/unix.php +2 -1
📈 2 added 📉 5 removed

💻 r14539 IMPROVE

Mike Stupalov 🐱 • 2026-01-13 12:13
Do not mark device with localhost ip as duplicated on different pollers.
Files changed (1)
M includes/entities/device.inc.php +6
📈 6 added 📉 0 removed

💻 r14538 TRIVIAL

Mike Stupalov 🐱 • 2026-01-13 12:00
Simplified get_ip_type().
Files changed (2)
M includes/entities/ip-address.inc.php +17 -28
M tests/IPAddressTest.php +1
📈 18 added 📉 28 removed

💻 r14537 CLEAN

Mike Stupalov 🐱 • 2026-01-12 22:04
Fixed some setting params incorrectly added in previous commit.
Files changed (3)
M includes/definitions/entities/sensors.inc.php +1
M includes/definitions/mibs/megatec.inc.php +316 -252
M includes/definitions/os/megatec.inc.php +3 -4
📈 320 added 📉 256 removed

💻 r14536 IMPROVE

Mike Stupalov 🐱 • 2026-01-12 14:03
Added option to is_snmpable() for skip discovery extra snmpable oids. Added config for autodiscovery for enable discovery extra snmpable oids (disabled by default).
Files changed (3)
M includes/defaults.inc.php +2 -1
M includes/entities/device.inc.php +19 -27
M includes/functions.inc.php +10 -10
📈 31 added 📉 38 removed

💻 r14535 CLEAN

Mike Stupalov 🐱 • 2026-01-11 17:41
Fixed some setting params incorrectly added in previous commit.
Files changed (1)
M includes/config-variables.inc.php +4 -2
📈 4 added 📉 2 removed

💻 r14534 IMPROVE

Mike Stupalov 🐱 • 2026-01-11 17:28
Removed web setting definition hack for enum type list. Use common params definition entry.
Files changed (3)
M html/includes/functions.inc.php +14 -8
M html/includes/print/rows.inc.php +90 -77
M includes/config-variables.inc.php +55 -38
📈 159 added 📉 123 removed

💻 r14533 IMPROVE

Mike Stupalov 🐱 • 2026-01-11 17:22
Replaced is_array_list() with standart php function array_is_list(). Added is_array_flat() for determine flat array lists (values not arrays). Added unit tests.
Files changed (6)
M html/includes/functions.inc.php +9 -10
M html/includes/print/alert.inc.php +1 -1
M includes/common.inc.php +9 -4
M includes/entities.inc.php +5 -6
M includes/functions.inc.php +1 -1
M tests/IncludesCommonTest.php +100 -44
📈 125 added 📉 66 removed

💻 r14532 ICONS

Mike Stupalov 🐱 • 2026-01-10 17:06
Added Ufi Space logo.
Files changed (2)
A html/images/os/ufi-dark.svg +1
A html/images/os/ufi.svg +1
📈 2 added 📉 0 removed

💻 r14531 OS

Mike Stupalov 🐱 • 2026-01-10 16:51
Added basic os definition for Vertiv SmartCabinet (OBS-5071).
Files changed (1)
M includes/definitions/os/vertiv.inc.php +8
📈 8 added 📉 0 removed

💻 r14530 TRIVIAL

Mike Stupalov 🐱 • 2026-01-10 16:49
Added ability for override invalid limit mib defifinition.
Files changed (1)
M includes/entities.inc.php +4
📈 4 added 📉 0 removed

💻 r14529 IMPROVE

Mike Stupalov 🐱 • 2026-01-10 16:47
Improved discovery sensors for OcNOS. Fixed port associate DDM sensors for latest firmware versions.
Files changed (5)
M includes/definitions/mibs/ipinfusion.inc.php +96 -17
M includes/definitions/os/ipinfusion.inc.php +2 -1
D includes/discovery/sensors/cmm-chassis-mib.inc.php -193
A includes/discovery/sensors/ipi-cmm-chassis-mib.inc.php +273
M includes/discovery/storage/host-resources-mib.inc.php +5 -2
📈 376 added 📉 213 removed

💻 r14528 MIBS

Mike Stupalov 🐱 • 2026-01-10 16:47
Updated IPinfusion mib files.
Files changed (51)
D mibs/ipinfusion/CMM-CHASSIS-MIB -4,540
D mibs/ipinfusion/CUSTOMIF-STATS-MIB -1,863
A mibs/ipinfusion/HW-TABLE-UTILIZATION +124
A mibs/ipinfusion/HW-TCAM-UTILIZATION +225
M mibs/ipinfusion/IPI-ACL-MIB +2 -2
A mibs/ipinfusion/IPI-BFD-MIB +1,011
A mibs/ipinfusion/IPI-CMM-CERAGON-MIB +166
A mibs/ipinfusion/IPI-CMM-CHASSIS-MIB +8,854
A mibs/ipinfusion/IPI-CMM-CHASSIS-V2-MIB.txt +8,849
A mibs/ipinfusion/IPI-CMM-CMIS-8024-MIB +84
A mibs/ipinfusion/IPI-CMM-CMIS-MODULE-MIB +3,962
A mibs/ipinfusion/IPI-CMM-COHERENT-MIB +3,541
A mibs/ipinfusion/IPI-CMM-EDFA-MIB +241
A mibs/ipinfusion/IPI-CMM-IPMI-MIB +540
A mibs/ipinfusion/IPI-CMM-QSFP-EDFA-MIB +236
A mibs/ipinfusion/IPI-CMM-SMART-SFP-MIB +925
A mibs/ipinfusion/IPI-CUSTOMIF-LOGICAL-MIB +433
A mibs/ipinfusion/IPI-CUSTOMIF-PHYSICAL-MIB +431
A mibs/ipinfusion/IPI-CUSTOMIF-STATS-MIB +2,737
A mibs/ipinfusion/IPI-CUSTOMIFX-LOGICAL-MIB +406
A mibs/ipinfusion/IPI-CUSTOMIFX-PHYSICAL-MIB +404
A mibs/ipinfusion/IPI-DOT1AG-CFM-NVO3-TRAP-MIB +133
A mibs/ipinfusion/IPI-G8031-MIB +497
A mibs/ipinfusion/IPI-G8032-MIB +790
M mibs/ipinfusion/IPI-HQOS-MIB +175 -35
A mibs/ipinfusion/IPI-ICMP-TRAP-MIB +153
A mibs/ipinfusion/IPI-IF-EXTENDED-MIB +655
A mibs/ipinfusion/IPI-IGP-TE-MIB +670
A mibs/ipinfusion/IPI-IP-SLA-MIB +358
A mibs/ipinfusion/IPI-LAYER-2-VPN-STATS-MIB +473
A mibs/ipinfusion/IPI-LICENSE-MIB +168
A mibs/ipinfusion/IPI-MODULE-MIB +28
A mibs/ipinfusion/IPI-PON-MIB +688
A mibs/ipinfusion/IPI-PORT-XC-MIB +501
A mibs/ipinfusion/IPI-PTP-MIB +104
A mibs/ipinfusion/IPI-SAT-MIB +1,807
A mibs/ipinfusion/IPI-SYNCE-MIB +481
D mibs/ipinfusion/IPI-TCAM-UTILIZATION-MIB -286
A mibs/ipinfusion/IPI-TWAMP-CLIENT-MIB +244
A mibs/ipinfusion/IPI-TWAMP-MIB +792
A mibs/ipinfusion/IPI-TWAMP-SESSION-MIB +472
A mibs/ipinfusion/IPI-VRF-MIB +228
A mibs/ipinfusion/IPI-VXLAN-MIB +751
A mibs/ipinfusion/IPI-WATCHDOG-MIB +171
M mibs/ipinfusion/MSTP-MIB +28 -28
D mibs/ipinfusion/OCNOS-INTERFACE-MIB -227
D mibs/ipinfusion/OCNOS-IPI-MODULE-MIB -30
D mibs/ipinfusion/OCNOS-PSERV-MIB -149
D mibs/ipinfusion/OCNOS-VR-MIB -80
D mibs/ipinfusion/OCNOS-VRF-MIB -117
M mibs/ipinfusion/TFO-MIB +6 -7
📈 0 added 📉 0 removed

💻 r14527 PHP8

Mike Stupalov 🐱 • 2026-01-06 15:09
[PHP8] Fixed display Netscaler vservers with empty addresses (#2).
Files changed (2)
M html/includes/entities/netscalervsvr.inc.php +2 -1
M includes/polling/loadbalancer/f5-bigip-local-mib.inc.php +2 -4
📈 4 added 📉 5 removed

💻 r14526 PHP8

Mike Stupalov 🐱 • 2026-01-06 14:55
[PHP8] Fixed display Netscaler vservers with empty addresses.
Files changed (2)
M html/pages/device/loadbalancer/lb_pools.inc.php +5 -5
M html/pages/device/loadbalancer/netscaler_vsvr.inc.php +2 -1
📈 7 added 📉 6 removed

💻 r14525 FIX

Mike Stupalov 🐱 • 2026-01-05 17:03
Fixed display show password icon.
Files changed (1)
M html/includes/print/search.inc.php +3 -2
📈 3 added 📉 2 removed

💻 r14524 IMPROVE

Mike Stupalov 🐱 • 2026-01-05 16:24
Added ability for set IPMIv2 Key on device Edit page (OBS-5158).
Files changed (3)
M html/pages/device/edit/ipmi.inc.php +114 -83
M includes/definitions/entities/devices.inc.php +19 -8
M includes/polling/ipmi.inc.php +19 -5
📈 152 added 📉 96 removed

💻 r14523 FIX

Mike Stupalov 🐱 • 2026-01-05 14:14
Fixed polling and discovery Custom OIDs with incorrect raw values.
Files changed (2)
M includes/discovery/oids.inc.php +28 -14
M includes/polling/oids.inc.php +11 -12
📈 39 added 📉 26 removed