-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathChangeLog-3.10
More file actions
4034 lines (3458 loc) · 165 KB
/
Copy pathChangeLog-3.10
File metadata and controls
4034 lines (3458 loc) · 165 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
*
* 3.10-CURRENT
*
- Escalation level for responsible users
- Structured alarm filter in UI
- Log parser debug output only controlled by debug level for tag logwatch.parser (parser option "trace" is deprectated)
- Added support for multi-select fields in report execution forms
- Improved package deployment via agents
- New event template option "hide from event monitor"
- Reporting server uses XLSX format instead of XLS
- Multiline string constants in NXSL
- Improved string manipulation functions in NXSL
- Inherited object access rights visible in object properties in UI
- New parameter Oracle.Cursors.MaxPerSession in Oracle subagent
- Internal metrics for monitoring notification channels
- Improved titles in dashboard elements
- Fixed small isues in object custom attribute inheritance
- Fixed issues:
NX-1766 (File transfer implementation issues)
NX-2021 (Title is not displayed for some Dashboard elements)
NX-2069 (Collect hardware information about HDD/SSD and network cards on Linux)
NX-2100 (Add "support level" or "escalation" value to Responsible persons)
NX-2163 (Show user name on process tab)
NX-2165 ("Show file" in file manager displays incorrect progress bar message)
NX-2189 (Typo when interfaces are removed during polling)
NX-2198 (Alternative data source for agent parameters Hardware.System.* on Linux)
NX-2199 (Agent parameters to get certificate information from file)
NX-2200 (Remove length limit on command in NXSL method Node::executeSSHCommand)
NX-2205 (Generate event if LDAP sync failed)
NX-2207 (Implement System.OS metrics for Linux, AIX, FreeBSD and Solaris)
NX-2209 (cpuid.h is not supported on ARM macOS)
NX-2210 (Network Service HTTP polling ports above 32767 generates incorrect Host header in HTTP request)
NX-2242 (On Windows, if agent action calls .cmd file and that file produces output, execution fails)
*
* 3.9.420
*
- New agent command line option -Q (query values of configuration entry)
- Windows service start mode can be changed from UI
- Improved web API for accessing collected DCI data
- Improved file transfer on slow links
- Fixed bug in network topology discovery
- Fixed issues:
NX-290 (SSL Certificate expiration check)
NX-781 (Convert to template item work incorrectly on cluster nodes)
NX-1032 (Threshold violations are not shown for table DCIs)
NX-1551 (Multiple execution completion dialogs after executing object tool on container)
NX-1587 (Fix MySQL error: The 'INFORMATION_SCHEMA.GLOBAL_STATUS' feature is disabled; see the documentation for 'show_compatibility_56')
NX-2122 (Table DCI last values are not loaded on server start)
NX-2152 (Map should zoom in relation to mouse cursor, not center of map view)
NX-2175 (Add hint to SNMP Trap Transformation Script editor)
NX-2182 (Changing Objects.Nodes.ResolveNames actually requires server restart, but should work without server restart)
NX-2183 (Daily Email Summary doesn't seem to resolve users properly in "Ack/Resolved by" column)
*
* 3.9.361
*
- Custom port number can be specified in MySQL and MariaDB database drivers
- MySQL subagent can be switched to use MariaDB driver
- Fixed bug in housekeeper (expired DCI data may not be deleted)
- Object filtering in object tree by exact IP address
- State filter in /objects endpoint in web API
- Fixed issues:
NX-30 (Show thresholds on graph is broken)
NX-127 (Implement System.CPU.Usage.IoWait in Solaris subagent)
NX-1448 (It is not possible to specify semicolon as external table separator)
NX-1450 (External parameters that returns process exit code)
NX-2157 (Macros are not expanded when uploading file via file delivery policy)
NX-2166 ("Hide value on last values" does not work)
NX-2168 (Divide by zero on core start)
NX-2170 (Macros in shell notification channel are not resolved)
*
* 3.9.334
*
- Fixed bar gauge color selection by active DCI threshold
- Bundled SQLite updated to version 3.36.0
- Windows crash dump handler writes compressed dump files
- Improved Juniper driver
- NXSL methods enableConfigurationPolling and enableStatusPolling moved from class "Node" to class "DataCollectionTarget"
- New method enableDataCollection in NXSL class "DataCollectionTarget"
- New agent parameters System.CurrentDate and System.TimeZone
- Fixed bug in cluster resource selection for table DCI
- Fixed possible server deadlock when zone proxies are in use
- Fixed issues:
NX-2107 (SQL error on server startup)
NX-2128 (Disabled DCIs with instance discovery generate instance DCIs)
NX-2131 (Migration from psql-timescale to psql is broken)
NX-2132 (nxdbmgr check should not delete orphaned idata/tdata records on Timescale database)
NX-2143 (MIB Explorer "Create Data Collection item..." reports error on Retention time 0 or blank, but is added as "default")
NX-2144 (Graph Title in Web GUI is truncated, seemingly due to an ampersand)
NX-2145 (Update HP iLO Template to include support for HP iLOs on G10 servers)
NX-2148 (MIB compiler throws syntax error if statements in TEXTUAL-CONVENTION definition are in non-standard order)
NX-2149 (Custom Attribute Inheritance - detached inherited custom attribute not deletable)
NX-2150 (nxshell session.modifyObject produces Variable not found exception with setSnmpAuthName)
*
* 3.9.298
*
- Improved file delivery policy editor
- Fixed bug in centralized agent upgrade on Windows
- New endpoint /events in web API for sending events
- Filtering by primary host name in web API endpoint /objects
- Fixed session agent crash on 32 bit Windows systems
- Fixed issues:
NX-2129 (File delivery policy on Windows Agent causing .part0 to be added to the filename)
NX-2130 (If file in file delivery policy is updated new version is appended to the old one instead of replacing it)
NX-2133 (Set subagent column as instance on table Agent.SubAgents)
NX-2134 (Agent crashes if invalid owner or group set in file delivery policy)
*
* 3.9.280
*
- Service manager view for nodes
- External audit logging via LEEF protocol
- Improved process table in Windows agent
- Windows service manager in GUI
- Process manager in GUI
- Optimized working with ICMP
- Object alias shown in geo map tooltips
- Geo map tooltips work in web UI
- Added option to hide other objects in object geolocation view
- Object names can be shown on geo maps
- Fixed issues with Chassis/Rack placement properties page save
- Fixed bug in standard deviation calculation in ping subagent
- Fixed incorrect limit on dashboard element span in UI property page
- Fixed file transfer issue when upgrading agents from Package Manager
- Fixed issues:
NX-2115 (Allow adding image in chassis properties without selecting a rack)
NX-2118 (Changes in ICMP statistic collection period are not applied until server restart)
NX-2119 (Agent table "ICMP.Targets" should have "Standard deviation" column)
NX-2121 (Status map view should show node aliases)
NX-2124 (Log parser hangs on lines longer than 4095 characters)
NX-2125 (Server incorrectly reads IP network mask from VMWare ESXi and vCenter)
*
* 3.9.235
*
- Fixed bug in NXSL function "trim"
- Fixed issues:
NX-2108 (3.9.229 Cannot start process (No such file or directory))
*
* 3.9.229
*
- Dashboards can be saved as images in desktop UI
- Database manager checks for access point objects without valid parent node
- Server does not report duplicate MAC addresses if interfaces are from same node
- New agent actions: Process.Terminate, Service.Start, Service.Stop
- Web API session inactivity timeout can be configured
- Fixed server deadlock related to multi-zone configuration
- Fixed bugs in external command execution
- Fixed small issues in influxdb driver
- Fixed deleted form network map object list load from database on startup
- Fixed rack placement object property page save
- Fixed bug in SQLite driver (incorrect reading of fields with null value)
- Fixed issues:
NX-1625 ("Icmp.MovingAvgPingTime(*)" need a way to specify sample size)
NX-2092 (Keep last known topology information when node goes down)
NX-2093 (Add new parameter to ping subagent that will calculate jitter as moving average on response time deltas)
NX-2101 ("Compile script" button should not be present in script preview in EPP rule list)
*
* 3.9.178
*
- Server installer on Windows has database initialization task unchecked when upgrading from pre 3.9 version
*
* 3.9.176
*
- Added option to push DCI data using Web API
- Fixed bug in file transfer to agent on Windows
- Fixed agent crash if file template is used in logwatch subagent
- Fixed object tools in alarm browser
- Server configuration tree logged on startup
- Fixed issues:
NX-2094 (Error ORA-01476 in Oracle subagent)
NX-2097 (Server and agent cannot load configuration if it is a symbolic link)
*
* 3.9.156
*
- Predefined object queries
- LDAP synchronization filter
- User's email and phone number synchronized with LDAP
- Bind9 subagent rewritten in C++ and uses HTTP API
- New NXSL function replace
- Added Geolocation.History.RetentionTime server configuration parameter and geolocation history clearing by housekeeper
- Added percentage value to pie chart
- Added drill down object for tube and pie charts
- Network map link color can be defined by script
- Added method to get all tooltip data of the network map in one request
- New NXSL functions to make web service custom requests (GET, POST, PUT, PATCH, DELETE)
- JQ used for json parsing in web service requests
- NXSL function assert() accepts second argument - diagnostic message
- If agent configuration contains errors agent starts anyway and reports configuration load failure
- Agent configuration tree logged on startup
- Fixed broken "Responsible Users" object property page
- Object management endpoints in web API
- Source build configuration script do not throw error if libjq, libcurl, libssh, libmosquitto, or OpenLDAP are not available unless they are explicitly required
- Cambium ePMP driver can read geo coordinates from device
- Improved InfluxDB driver
- Fixed issues:
NX-408 (Alarm log columns Ack by/Resolved by/Terminated by contain "admin" if not set)
NX-1548 (Allow monitoring of dynamic number of logs via Logwatch)
NX-1899 (Add description filter to Summary Table column definition)
NX-1903 (REST API AdHoc Summary Table - add ability to filter dci on description instead of just dciName)
NX-1964 (Windows installer unable to create user on MySQL 8)
NX-1995 (Create object endpoint for REST API)
NX-2030 (Use last known coordinates when re-adding node to network map)
NX-2046 (Get remote file fingerprint using file manager)
NX-2059 (Predefined object queries)
NX-2061 (Add changing file owner and changing file permissions functionality to file delivery policy)
NX-2063 (Detect conversion from group to super group in Telegram notification channel)
NX-2070 (Add notification log and server action execution log)
NX-2073 (Generate event when duplicate MAC address is detected on the network)
NX-2074 (DCI Table Last Value Column Widths are very large)
NX-2082 (File upload should support resume and consistency checks)
NX-2083 (Alarm list scrolls when alarms being added or removed)
NX-2086 (Notification channel driver for Google Chat)
NX-2087 (Incorrect values reported by WindowsFirewall.State)
NX-2088 (PostgreSQL driver reporting internal error "pResult is NULL in DrvExecute")
*
* 3.8.405
*
- Fixed potential data loss in InfluxDB driver
- Fixed invalid memory access in NXSL VM when using expression variables
- Fixed interface counters access by agent on FreeBSD 13
- Fixed bug in CAS server access
- Fixed bug in report definition processing
- Fixed server deadlock during proxy load rebalancing
- Read system description before interface list during configuration poll
- Separate debug tag for SMTP sender
*
* 3.8.382
*
- New method "enable8021xStatusPolling" in NXSL class "Node"
- Linux agent reports correct MTU for interfaces
- Data view created for report execution only if explicitly requested in report properties
- Fixed database upgrade issue on Microsoft SQL Server
- Fixed issues:
NX-2048 (More information in System.Services table)
NX-2052 (nxdbmgr cannot drop orphaned TDATA tables created by older server versions)
*
* 3.8.366
*
- Improved handling of partial or incorrect information in LLDP MIB (fixes topology building issues with Mikrotik devices)
- Fixed bug in discovering agent only nodes in remote zones
- Fixed interface object synchronization for physical links widget
- Fixed log name save for "Windows event log parser"
- Removed repeat count options from "Windows event log parser" and "Syslog parser"
- Added severity filter in Windows Event Log synchronization subagent
- Added event and alarm on agent tunnel connection problems
- Fixed issues:
NX-658 (Write poller statistics to debug log)
NX-673 (Perfomance Tab - missing "Stacked" and "Translucent")
NX-1510 (Special handling for user initiated agent restart to avoid node down or agent unreachable events)
NX-1589 (Error in database initialization on MS SQL 2017)
NX-1682 (SYS_SCRIPT_ERROR event is not happening when instance discovery filter script or transformation script has no closing bracket)
NX-1705 (DNS Lookup on Status Poll Change)
NX-1783 (When upgrading, agent installer asks for server IP, but does not update it in nxagentd.conf)
NX-1952 (Update IP address on interface to address resolved by DNS for nodes without agent)
NX-2040 (Periodically check if files used in file delivery policies are available on the server)
NX-2041 (Filter by Object ID (in Object Browser's filter) should match exact ID, not substring)
NX-2042 (Display EPP rule that created alarm in alarm log and alarm browser)
NX-2051 (Allow storing SYS_DB_QUERY_FAILED events to event log)
NX-2055 (Execution of some commands as agent actions may fail on Windows)
NX-2057 (Add filtering by alarm status (acknowledged, resolved) in Alarm Viewer dashboard element)
*
* 3.8.314
*
- Database manager can detect and delete orphaned data tables
- Event processing macro %A (alarm message) also works in rules following one that triggered alarm as well as when alarm is resolved or terminated by the rule
- Fixed agent crash on log parser rule with inverted match
- MIB compiler accepts object identifiers that starts with uppercase letter
- Implemented hash map to string conversion in NXSL
- Fixed save of node state
- Web API included into Web UI installer on Windows
- Fixed deployment issues with Web UI installer on Windows
- Fixed issues:
NX-227 (Create "nxdownload" utility)
NX-553 (CPU and Memory DCI support in Darwin)
NX-1006 (Node with all status poll sources disabled creates a down alarm)
NX-1057 (Ability to execute set of SQL commands on server start)
NX-1473 (System Description for Agents that are also running SNMP should be Agent's description, not SNMP's)
NX-1851 (nxdbmgr not checking for situation when DCI present in items, but not in object_properties)
NX-1882 (Add option for negative mask in File.Count, File.FolderCount, and File.Size)
NX-1947 (Server repeats SYS_IF_DOWN after SYS_NODE_UP even if interface was already down before SYS_NODE_DOWN)
NX-1976 (Add interface names to automatically generated IP topology maps)
NX-2043 (Delete "last agent contact" timestamp when isAgent capability switches off)
*
* 3.8.267
*
- Fixed server crash during scheduled task processing
- Fixed issues:
NX-2009 (Add notification channel driver "Shell command")
NX-2035 (Instance discovery using ICMP.Targets list crashes server)
NX-2037 (Save IP address of client connecting via WebAPI to audit log)
*
* 3.8.262
*
- Fixed server crash when accessing NXSL class metadata
- Fixed agent crash when parsing log files
- Fixed file handle leak in log parser subagent
- DCI Editor filter now search by description, parameter, and DCI ID
- Long polling can be disabled in Telegram driver
- Fixed Log Parser Policy save with empty agent action field
- Fixed issues:
NX-1770 (Add ability to filter by DCI name in DCI list)
NX-2033 (Incorrect interface name displayed in MAC address table for Mikrotik routers)
NX-2036 (Filter in DCI editor should search both description and parameter)
*
* 3.8.250
*
- Added notification channel driver for SNMP traps
- Event processing macro %K (alarm key) also works in rules following one that triggered alarm
- Improved Data Collection Editor and Policy Editor usability
- DCI instance used for custom attribute lookup when expanding %{} macro
- Fixed sorting for "Object query" dashboard element
- Fixed memory leak in server related to "Object query" dashboard element
- Fixed issues:
NX-2022 (Rack with custom height is incorrectly displayed)
NX-2028 (Use instance name for custom attribute search when expanding %{} macro)
NX-2029 (Line Chart General Time Period keeps reverting to "Back from now" when trying to use "Fixed time frame" option)
NX-2031 (HTTP proxy parameter configured in nxmc properties has no effect)
*
* 3.8.226
*
- Lower memory footprint of NXSL scripts
- Correct handling of agent policies by external subagents
- Added attribute "tunnel" to NXSL class "Node"
- Server runs configuration poll on node after agent upgrade
- File manager subagent does not register same root multiple times
- Fixed refresh issues in Object Details view
- Fixed visualization issues in switch port view
- Fixed incorrect root object filtering in dashboard elements "Event Monitor", "SNMP Trap Monitor", and "Syslog Monitor"
- Fixed issues:
NX-2014 (Create NXSL property on node object that gives reference to each type of proxy)
NX-2024 (Add "Max Wait Time" to Server.EventProcessors Internal Parameter Table)
*
* 3.8.193
*
- Fixed Timescale DB 2.x compatibility issues
- New methods isDirectChild, isDirectParent, isChild, isParent in NXSL class "NetObj"
- New NXSL function GetCurrentTimeMs
- Fixed possible server crash when agent tunnel is closing
- Always use UTF-8 instead of current system character encoding for exported CSV files
- Fixed process handle leak in Windows agent when external parameter providers are used
- Westerstrand SNMP device driver can read device geolocation
- NXSL function PollerTrace works in autobind filter scripts and instance discovery filter scripts
- Improved diagnostic output for manually started polls
- Improved network map tooltip data update
*
* 3.8.166
*
- Improved driver for H3C (now HPE) switches
- Fixed intermittent problems with SNMP communications via proxy agents
- Fixed multiple file download in file manager in web UI
- Fixed excessive server memory consumption when transferring file from client to agent over slow link
- Fixed occasional high CPU usage by server process
- Deleted unused job_history table
- Fixed graph refresh
- Fixed object synchronization issue in web UI
- Fixed memory leak in server
- Fixed incorrect sorting by "Source" column in user management view
- Fixed intermittent client disconnects
- Fixed interface synchronization for network map element on dasbhboad
- Fixed issues:
NX-804 (Validate scripts in all windows)
NX-1989 (Compile NXSL in dci instance discovery filter and container autobind filter)
NX-1990 (Add filter in Script Library)
NX-1996 (Retriggered event when node comes out of maintenance is missing value for currentValue (%4) parameter)
NX-2005 (Add ability to have formatting in Telegram notifications)
NX-2011 (NXSL inList function returns int32 instead of boolean)
*
* 3.8.120
*
- Improved reporting server
- Support for key based SSH authentication
- Web service proxy function in core agent now disabled by default
- Only HTTP and HTTPS are allowed in web service URLs
- Context configuration removed from global log parsers configuration views in UI
- New NXSL functions PollerTrace and SendNotification
- New method setNamedParameter in NXSL class Event
- Fixed bug in subnet mask correction
- Added Topology.RoutingTable internal DCI table
- Fixed bug on node creation
- Fixed issues:
NX-1437 (Show tunnel connection time in tunnel manager)
NX-1775 (Add deactivation event to list of thresholds in DCI properties)
NX-1988 (Show full user name in user selector dialogs)
NX-1991 (Incorrect handling of HTTP and communication errors when collecting data from web services)
NX-1992 (Properly parse : in web monitoring parameter name)
NX-1994 (Handle multiple agents connecting back to same node)
NX-1999 (Make routing table available as internal table)
NX-2000 (Snooze timer in EPP to avoid repeating actions)
NX-2001 (Add ability to put trace messages from hook scripts to text output of status/conf/etc poll)
NX-2004 (/objects/<container_id> REST API endpoint against container object returning error 46 - multiple JSON fields named flags)
*
* 3.7.145
*
- Fixed bug in interface and subnet creation hook scripts handling
*
* 3.7.144
*
- Target for event processing policy remote action can be given as node object ID
- Added agent parameters Agent.TCPProxy.IsEnabled and Agent.TCPProxy.ConnectionRequests
- Fixed bug in agent action execution from event processing policy
- Fixed incorrect boolean values handling in NXSL
- Fixed bug in "Find switch port" tool
- Fixed server crash when connection to agent is slow or unstable
*
* 3.7.130
*
- Per node SSH port configuration
- New user properties "email" and "phone number"
- Fixed broken reporting server connector
- Fixed issues:
NX-1081 (Some devices are not detected correctly by CATALYST-GENERIC driver)
NX-1663 (NXSL function GetDCIValue should read value from database if cache is not populated yet)
NX-1965 (Inconsistencies in address range add/edit dialog)
*
* 3.7.116
*
- New methods "appendAll" and "insertAll" in NXSL arrays
- DCI transformation test can be run from template data collection configuration
- Fixed bug in remote agent configuration update
- Fixed bug in object selection dialog in UI
- Fixed server hang on shutdown if initiated from remote GUI session
- Fixed issues:
NX-1875 (Error message is not cleared in list of notification channels)
*
* 3.7.95
*
- UI framework updated to Eclipse 4.17 / RAP 3.14
- Improved clipboard support in web UI
- Improved access control logic for enter/leave/schedule maintenance
- Improved generic Cisco driver
- Improved support for Cisco Nexus switches
- Added command line tool nxaevent for sending events to server via local agent
- New agent parameter Agent.IsRestartPending
- Default DCI instance retention time changed to 7 days
- Container auto bind and template auto apply for sensors, mobile devices, and access points is configurable and off by default
- Explicit boolean data type in NXSL
- NXSL regular expression matching operator returns boolean "false" instead of null value if there is no match
- New method setIfXTableUsageMode in NXSL class "Node"
- New methods enableAgentStatusPolling, enableICMPStatusPolling, and enableSNMPStatusPolling in NXSL class "Interface"
- SQL query trace in server can be enabled independently from global debug level and changed at runtime
- Fixed unrecoverable "objects out of sync" state on client
- Fixed issues with file following
- Fixed issues:
NX-770 (Instance discovery poll a node when an instance DCI is added)
NX-790 (Ability to disable 802.1x checking)
NX-1058 (Repeat event in DCI threshold may not be generated if repeat interval is the same as polling interval)
NX-1173 (Add bulk DCI update functionality)
NX-1469 (Show warning to user on attempt to force poll node in unmanaged state)
NX-1602 (Option to disable ICMP poll for individual child Interface objects)
NX-1623 (DCI > "Clear collected data" should refresh Last Values)
NX-1654 (NXMC slow when container or template with many nodes is expanded)
NX-1948 (Create nxaevent utility similar to nxapush)
NX-1956 (Allow applying templates to Access Points)
NX-1975 (Per DCI multiplier settings)
NX-1983 (Add automatic bind rules for clusters)
NX-1984 (File delivery policy incorrectly handles Russian letters)
NX-1985 (File name is cleaned on save in GUI log parser policy editor)
*
* 3.6.300
*
- Fixed bug in object tool filter configuration
- Fixed bug in map image save
- Fixed handling of tunnel options in Windows agent installer unattended mode
- Fixed issues:
NX-1520 (Object Details - Overview tab in desktop client is unusable when using dark gtk3 theme)
NX-1881 (Unable to open web browser from object tools for nodes have IPv6 address returned from DNS)
NX-1906 ("Save Resources" keeps on showing when closing the console)
NX-1943 (Dashboard element in 2nd column does not spans correctly)
NX-1944 (Add macro that will return all tags of event in concatenated form)
NX-1969 (Create default interface if node replies via SNMP, but provides empty interface list)
NX-1978 (Cleanup configuration and status poll textual output)
NX-1980 (Object Tools input field display name to wrap or input dialog to resize)
NX-1981 (Unable to create new DCI when filter is not empty in Data Collection Configuration)
NX-1982 (Export Configuration Tool - Unable to remove items from "Actions" and "Event Processing Rules")
*
* 3.6.273
*
- New NXSL function PostEventEx
- Origin timestamp can be set when event is being sent via Java API
- Fixed server memory leak and high CPU usage when using "server command" type object tools
*
* 3.6.269
*
- Fixed memory leak in server
*
* 3.6.264
*
- Fixed bug in agent connection setup via proxy
*
* 3.6.262
*
- Fixed bug causing random client and agent timeouts
- Fixed bug in database upgrade procedure
- Fixed bug in nxdbmgr reset-system-account
- Fixed issues:
NX-1977 (NXSL GetDCIValues() does not work on TimeScaleDB)
*
* 3.6.252
*
- Object categories
- Support for externally provisioned agent certificates
- New instance discovery method "internal table"
- Added option to validate server certificate on agent
- Fixed column sorting in Web Service Definition view
- Support for IPv6 in NXSL functions AddrInSubnet and AddrInRange
- New NXSL function GetServerQueueNames
- New NXSL functions for object search: FindObjectByGUID, FindNodeByAgentId, FindNodeByIPAddress, FindNodeByMACAddress, FindNodeBySysName
- nxdbmgr option to migrate log tables in background
- Windows event log synchronization, server side parsing and agent side filtering
- Added option not to save to database Windows event log and syslog filtered by server parser
- Maximum number of client sessions can be configured
- Added support for SNMP data types FLOAT, DOUBLE, INTEGER64, UINTEGER64
- Correct decoding of values inside OPAQUE SNMP varbinds
- Added view for object tools with output executed on multiple nodes
- Added synchronous methods and completion callbacks for object creation in Java API
- Fixed nxdbmgr crash on import
- New built-in agent action Agent.RotateLog
- Server performance optimization for handling large number of agent connections
- Performance optimization of SNMPv3 processing
- NXSL performance optimization
- Improved handling of external parameter providers in agent
- Added background polling option for external tables in agent
- Authentication method for LDAP users can be changed
- Support for mobile devices with NTCB/FLEX protocol
- Geolocation control for nodes, sensors, and mobile devices
- Fixed screenshot issues on Windows 10 with DPI scaling
- Fixed errors on graph properties modification
- Fixed sorting in summary table when one column has different data types
- Fixed issues:
NX-904 (Sensitive info should be hidden in Audit Log)
NX-1294 (Completed Scheduled Task Re-scheduling)
NX-1360 (Add ability to set custom icon for node)
NX-1416 (NetXMS Agents shutdown does not end ExternalParametersProviders)
NX-1823 (Using SSH login and password in object tools)
NX-1905 (Log Parser policy in Template Agent Policies does not automatically include Events in Export Configuration Tool)
NX-1907 (Add server configuration option to disable outdated SSL/TLS versions)
NX-1911 (Separate object name for use on maps)
NX-1931 ("Do not store" option for syslog)
NX-1933 (Update descriptions and units for server configuration variables)
NX-1951 (Moving a DCI to container deletes the DCI)
NX-1962 (Save time of last configuration poll across server restart)
*
* 3.5.152
*
- Fixed agent crash on thread pool statistic access
*
* 3.5.133
*
- Fixed server deadlock when unreachable node is deleted
- Fixed SNMPv3 performance issue
- Fixed issues:
NX-1966 (MySQL / MariaDB database access performance issues)
*
* 3.5.125
*
- Fixed network map filter script read form database
- Fixed server crash
- Fixed issues:
NX-1928 (nxdbmgr export/import does not work properly with TimescaleDB)
NX-1930 (NodeJS POST requests to NetXMS WebAPI fail with http error 500 internal error / error 46)
NX-1953 (Migration from MySQL to TimescaleDB fails)
NX-1960 (Instance discovered tables not removed after template removed)
*
* 3.5.90
*
- Added support for parallel event processing
- Improved SNMP proxy performance
- Support for SHA-2 based authentication in SNMP (SHA224, SHA256, SHA384, SHA512)
- Roaming mode for server
- Access to NXSL object's class metadata via __class attribute
- Access to NXSL object's attributes via __get method
- Invoke NXSL object's methods via __invoke method
- Added Hook::UnboundTunnelOpened and Hook::BoundTunnelOpened NXSL hooks
- Added per node trap flood detection
- New event processing macros %z (zone UIN) and %Z (zone name)
- Added Topology.WirelessStations and Topology.SwitchForwardingDatabase internal table metrics
- Option to disable reading of Windows performance counters metadata on configuration poll
- Alias (secondary name) for all network objects
- Wildcards in nxdbmgr "get" command
- Fixed modification flag for "Break" and "Action" fields in log praser policy
- Added cipVendorCode attribute and readInternalParameter, readInternalTable methods to NXSL node class
- Added cluster object itself to event log filter opened on the cluster
- Removed the limitation of one object for "Move to another container" action
- Implemented '/alarms/{alarm-id}' path for REST API
- Templates exported without GUID are assigned new GUID on import
- Support for non-ASCII database and login names in PostgreSQL driver
- Fixed issues:
NX-1594 (Alias (secondary name) for all network objects)
NX-1841 (Option to enumerate all attributes and methods of an object in NXSL)
NX-1879 (Unmanaged automatic network map is no more auto updated)
NX-1883 (Execute server script should allow to specify script parameters (those that are accessible via $ARGS))
NX-1884 (Do not show error while node is added to the cluster if the node is already there)
NX-1893 (Internal parameter to count total number of bound agent tunnels)
NX-1904 (REST API for specific node alarms returns Internal error 46)
NX-1908 (Expose FDB to NXSL)
NX-1914 (Removed deprecate AllowDirectNotifications server configuration setting)
NX-1919 (Internal parameters to count number of tunnels with agent, snmp, snmp trap, syslog proxies or with installed user agents)
NX-1924 (When importing event that has different GUID but matching name with already existing event, treat it as new event and give it a new name)
NX-1932 (DCI status in Template is not carried over in Export Configuration)
NX-1942 (Add property to actions in EPP "Do not run if timer is active")
NX-1945 (Memory leak in user support application when taking screenshots)
*
* 3.4.318
*
- Fixed bug with interface tab display in UI
*
* 3.4.314
*
- Fixed issues:
NX-1940 (AIX subagent may report incorrect file system size)
*
* 3.4.313
*
- Fixed issues:
NX-1938 (Changes in user groups are not saved to database)
*
* 3.4.310
*
- Added driver for SAF Tehnika Integra devices
- Improved handling of UNICODE characters in external parameter output on Windows
- Fixed UI crash when object query dashboard element is incorrectly configured
- Fixed issues:
NX-1916 (Device could be marked as supporting ENTITY MIB when it is in fact not supported)
NX-1921 (SQL query failed into alarm_events: 22001 ERROR: value too long for type character varying(2000))
NX-1922 (Spelling mistakes in Java API)
NX-1920 (Save deleted DCIs between restarts to delete it's data on housekeeper after restart)
*
* 3.4.284
*
- PostgreSQL monitoring subagent
- Improved driver for Cisco Nexus
- Improved LLDP based network topology discovery
- Correctly detect LLDP capability on Mikrotik devices
- New NXSL functions GetServerNode and GetServerNodeId
- New NXSL function SendMail
- Fixed UI bug with accessing collected performance data from data collection editor
- Configurable size of SNMP proxy thread pool on agent
- Housekeeper optimization
- Added drivers for Cambium Networks devices (ePMP and cnPilot)
- Fixed issues:
NX-498 (PostgreSQL monitoring sub-agent)
NX-1355 (Housekeeper process causing timeouts when creating new nodes)
NX-1863 (Logwatch fails on parsing large Windows Event Log events)
NX-1880 (Duplicate links on automatic maps with multiple seed nodes)
NX-1895 (After server restart GUI is not showing from where a custom attribute is inherited)
NX-1897 (ReadPersistentStorage returns incorrect value for non-existing key)
NX-1901 (Get node of active NetXMS server in NXSL)
NX-1910 (Spelling mistakes in Java API)
*
* 3.4.232
*
- Improved logic for node capability expiration
- "Reset identity" command line option in agent
- EtherNet/IP has priority over SNMP when reading hardware information
- Implemented Web API calls for DCI creation and modification
- Implemented Web API calls for reading last value of specific DCI
- NXSL function CreateDCI accepts numeric codes for data type and data origin
- Improved node matching for agent tunnel automatic binding
- Fixed bug that prevents PushDCIData NXSL function to work on chassis object
- Fixed bug in template import
- Fixed issues:
NX-1422 (SMTP HELO should be configurable)
NX-1886 (DCI Table using Script Origin ignores Column definition)
NX-1888 (Delete completed non-recurring scheduled tasks after configurable retention period)
NX-1890 (Object Name field in Create Node Object requires cleaning)
NX-1892 (Wrong format string on a map makes the map uneditable)
*
* 3.4.178
*
- Improved topology based event correlation
- New methods in NXSL class "Node": getInterfaceByIndex, getInterfaceByMACAddress, getInterfaceByName
- Method getInterface in NXSL class "Node" automatically detects if parameter is interface index, name, or MAC address
- Added built-in NXSL constant NXSL::SystemIsBigEndian
- Added NXSL hook for alarm state change (Hook::AlarmStateChange)
- Can pass arguments to NXSL script executed as EPP action
- Implemented agent metrics for available and cache memory on AIX
- New agent parameter WindowsFirewall.State on Windows
- Implemented disk latency parameters in Linux agent (System.IO.WaitTime, System.IO.ReadWaitTime, System.IO.WriteWaitTime)
- User agent tooltip message can be set via policy
- Fixed issues:
NX-470 (Hooks or events for alarm state change)
NX-763 (File Tail/Show should not access database directly)
NX-811 (System.IO.WaitTime unsupported on Linux)
NX-1043 (Windows installer cannot initialize Oracle database)
NX-1078 (Event correlation not working)
NX-1152 (Attempt to upload .npi pointing to non-existing installer lock up package manager on Windows)
NX-1176 (Handle routing loops during event correlation)
NX-1524 (Server configuration wizard is not visible on task bar)
NX-1556 (Add HMAC to every record in audit log table)
NX-1566 (NXSL Script Action to allow for parameters)
NX-1739 (When a node goes down and it's upstream port on a switch goes down, do not correlate those events)
NX-1753 (File downloads from agent and file upload to server should be logged to Audit Log)
NX-1801 (Strange if condition)
NX-1818 (Agent should remember servers for a specified time to send events when server reconnects)
NX-1832 (Export configuration does not detect referenced NXSL scripts within NXSL scripts)
NX-1837 (Store out of the box object tools as .xml files, not in database initialization script)
NX-1846 (Server crash when querying Audit Log)
NX-1848 (Add getGuid method to org.netxms.client.events.EventTemplate class in Java API)
NX-1853 (User Agent Notifications view in management console has no means to hide old notifications)
NX-1854 (When double-clicking a stacked graph in performance tab, it opens in a new view as non-stacked)
NX-1856 (Text in tooltip for user support application should be configurable)
NX-1860 (Parameters to get state of each Windows Firewall profile separately)
NX-1861 (Unable to add USM Credentials when zoning is ON)
NX-1862 (Lazy object synchronization breaks object-based link status display on maps)
NX-1865 (Remote Node using TLS Tunnel Added incorrectly if same name is resolvable on local NetXMS network)
NX-1866 (NXSL GetAvgDCIValue may not work with MySQL database)
NX-1867 (NXSL GetMaxDCIValue may return incorrect value)
*
* 3.3.350
*
- Replace backslash and comma as part of host and DCI names normalizing in InfluxDB driver
- Fixed bug in socket error reporting for agent tunnels
- Fixed VMGR subagent crash
- Fixed bug in agent policy deployment in 2.x compatibility mode
- Fixed bug in database export
- Fixed issues:
NX-1696 (Database export error)
NX-1868 (Zone SNMP Configuration SNMP v3 "Modify" button spelt incorrectly)
NX-1869 (Environment variables in file delivery policy expanded on save)
*
* 3.3.340
*
- Fixed bugs in SIP registration testing in Asterisk subagent
- Fixed memory leak in Asterisk subagent
*
* 3.3.330
*
- Fixed issue NX-1855 (NETXMS_FILE_STORE environment variable not using FileStore agent setting)
*
* 3.3.323
*
- Fixed bug in template import on server startup
*
* 3.3.315
*
- Fixed server crash on agent certificate renewal
*
* 3.3.314
*
- Fixed server crash when proxied SNMP device responds with "UDP port unreachable"
- Fixed issues:
NX-1575 (Ability to duplicate event configuration)
NX-1780 (Unable to add file to file delivery policy in management console on MacOS)
NX-1839 (Show alarm key in Alarm Details)
NX-1844 ('Get list of agent sessions' error in nxmc and webui)
NX-1845 (Context menu for Service Root shows Create sensor twice)
*
* 3.3.305
*
- Added driver for Moxa industrial routers
- Fixed server crash when receiving ill-formed SNMP response
- Fixed server crash when accessing zone object attributes from NXSL
- Fixed issues:
NX-1849 (Agent policy schema sqlite error in 3.3.285)
*
* 3.3.285
*
- Fixed server crash after scheduled task delete
- Fixed web UI login screen issues
*
* 3.3.277
*
- Option for blacklisting network device drivers
- Option for switching SNMP probing during configuration poll into single OID per request mode
- Automatic agent certificate renewal
- Value ranges in NXSL switch/case statement
- Explicit call of library functions in NXSL without "use" statement
- New attributes "instanceColumns" and "instanceColumnIndexes" in NXSL class "Table"
- New methods "readWebServiceList" and "readWebServiceParameter" in NXSL class "Node"
- New methods "applyTemplate" and "removeTemplate" in NXSL class "DataCollectionTarget"
- New NXSL functions: GetThreadPoolNames, sqrt
- New NXSL class "Template" that represents template object
- NXSL arrays can be implicitly converted to strings
- Implemented instance discovery method "Agent Table"
- Implemented instance discovery method "Windows Performance Counters"
- Added option for discarding collected performance data when database writer queue grows beyond limit
- Using timestamptz instead of integer for timestamp column in data collection tables on TimescaleDB
- Fixed issues:
NX-392 (Use object names from Windows performance counters for instance discovery)
NX-713 (Scheduled DCI will not work with offline DCI functionality)
NX-806 (NXSL: add method to lookup table row by instance)
NX-807 (NXSL: add method to lookup instance column ID without iterating over Table::columns)
NX-814 (NXSL: add new node attribute – isRemotelyManaged)
NX-1362 (Pattern matching for command output in SSH.Command parameter)
NX-1511 (Save and display user ID of maintenance mode initiator)
NX-1699 (Allow user turn on "Prevent automatic SNMP configuration changes" when creating node)
NX-1729 (L2 maps get broken after server restart - all icons get coordinates (0, 0))
NX-1732 (Option for discarding collected performance data when database writer queue grows beyond limit)
NX-1765 (HTML codes visible in cell when viewing Table DCI last values in web management console)
NX-1771 (Add NXSL constants)
NX-1788 (NXSL: add support for ranges in switch/case)
NX-1793 (Out of range error)
NX-1806 (Change order in which ping3.ndd is used during discovery or allow unloading/blacklist)
NX-1807 (TimescaleDB continuous aggregates, retention policies, etc.)
NX-1671 (Title from Object Tool's properties is not used anywhere)
NX-1808 (Template may not appear in object tree on import)
NX-1820 (Object deletion and negative reference count)
NX-1824 (Physical links - access denied)
NX-1827 (Maintenance mode filter in dashboard element "Status Map")
NX-1828 (Windows agent returns error for parameters System.FirewallProduct.* if built-in Windows Firewall is used)
NX-1830 (Some events sent by agent may be lost if multiple events sent almost simultaneously)
NX-1831 (Template path in node data collection configuration is incorrect)
NX-1834 (Add NXSL function "sqrt")
NX-1836 (Access attributes of template in auto-bind script)
NX-1840 (Ability to set communication option "this is address of remote management node" during node creation)
NX-1842 (Generate event when housekeeper process has started and finished)
*
* 3.2.472
*
- Improved alarm browser performance when displaying big number of alarms
- Fixed memory leak in server
- Fixed issue NX-1821 (Scheduled Task script not accepting parameters)
* 3.2.462
*
*
- Fixed bug in thread pool manager that can cause start of excessive number of threads
- Additional SSL trace output in agent
*
* 3.2.451
*
- Internal parameters for monitoring syncer performance (Syncer.RunTime.*)
- Improved notification handling in user support application
- Allow usage of chat ID as recipient address for Telegram
- Support for standard SSH configuration file in SSH subagent
- Environment variables from agent configuration file also set for user agent processes
- Improved hypervisor type detection by agent
- Tunnel option can be turned on in Windows agent installer
- Fixed issues with hardened file system permissions in Windows installer
- Added SMBIOS parameters support on FreeBSD
- Fixed issues:
NX-1635 (Log parser can skip lines in a log file)
NX-1737 (User Agent Startup and Recurring Notifications not working)
NX-1810 (Server can cash if scheduled task deleted while running)
NX-1812 (In the WebUI Filter in Alarm browser hiding column headers and first row when resized)
NX-1814 (Values of internal parameters Server.QueueSize.Average and Server.QueueSize.Current are inconsistent)
NX-1815 (FDB cannot be read on certain Cisco switches)