diff --git a/RELEASENOTES b/RELEASENOTES index 66fedd8..e96d780 100644 --- a/RELEASENOTES +++ b/RELEASENOTES @@ -3,6 +3,17 @@ Kronometrix Kernel Stats Module Releases -Kronometrix 1.8.2 - September 2018 -Kernel: FBSD 10.4 64bit -Products: K500 ISO/USB IMG + 1.8.6 December 2018 + + Update OpenResty latest 1.15.6.1 (ARM64 support) + Update Redis latest 4.0.12 (ARM64 support) + New platform management and observability features + Smart Alarms improvements + Health-check data feed improvements + New Summary Statistic Functions and improvements + Faster built-in applications, load and rendering time + ICT End-User performance availability fixes + Indoor Air Quality user interface fixes and improvements + Aviation meteorology improvements + General meteorology improvements + diff --git a/config/linux/nginx.agg.conf.arm b/config/linux/nginx.agg.conf.arm deleted file mode 100755 index 7b70556..0000000 --- a/config/linux/nginx.agg.conf.arm +++ /dev/null @@ -1,45 +0,0 @@ -worker_processes 1; -error_log logs/error.agg.log; -pid logs/nginx.agg.pid; - -events { - use epoll; - worker_connections 1024; - multi_accept on; -} - -http { - include mime.types; - default_type application/octet-stream; - - # access_log logs/access.agg.log.gz combined gzip flush=5m; - access_log off; - - ## General Options - sendfile on; - sendfile_max_chunk 512k; - tcp_nopush on; - tcp_nodelay on; - - keepalive_timeout 60; - reset_timedout_connection on; - - gzip off; - - lua_package_path ";;${prefix}../app/?.lua;"; - lua_code_cache on; - - lua_max_running_timers 1024; - lua_shared_dict agg_locks 1m; - lua_shared_dict agg_workers 1m; - lua_shared_dict aggregates 10m; - lua_shared_dict agg_count 10m; - lua_shared_dict agg_data 50m; - init_worker_by_lua_file "../app/aggregates.lua"; - - server { - listen 127.0.0.1:9003; - index index.html; - root ../static; - } -} diff --git a/config/linux/nginx.agg.conf.x64 b/config/linux/nginx.agg.conf.x64 deleted file mode 100755 index d12eaff..0000000 --- a/config/linux/nginx.agg.conf.x64 +++ /dev/null @@ -1,44 +0,0 @@ -worker_processes 2; -error_log logs/error.agg.log; -pid logs/nginx.agg.pid; - -events { - use epoll; - worker_connections 16384; - multi_accept on; -} - -http { - include mime.types; - default_type application/octet-stream; - - # access_log logs/access.agg.log.gz combined gzip flush=5m; - access_log off; - - ## General Options - sendfile off; # disable double caching for ZFS - tcp_nopush off; # sendfile=off so tcp_nopush can not be used - tcp_nodelay on; - - keepalive_timeout 60; - reset_timedout_connection on; - - gzip off; - - lua_package_path ";;${prefix}../app/?.lua;"; - lua_code_cache on; - - lua_max_running_timers 1024; - lua_shared_dict agg_locks 1m; - lua_shared_dict agg_workers 1m; - lua_shared_dict aggregates 10m; - lua_shared_dict agg_count 10m; - lua_shared_dict agg_data 50m; - init_worker_by_lua_file "../app/aggregates.lua"; - - server { - listen 127.0.0.1:9003; - index index.html; - root ../static; - } -} diff --git a/config/linux/nginx.aux.conf.arm b/config/linux/nginx.aux.conf.arm deleted file mode 100755 index a579e48..0000000 --- a/config/linux/nginx.aux.conf.arm +++ /dev/null @@ -1,49 +0,0 @@ -worker_processes 1; -error_log logs/error.aux.log; -pid logs/nginx.aux.pid; - -events { - use epoll; - worker_connections 1024; - multi_accept on; -} - -http { - include mime.types; - default_type application/octet-stream; - - # access_log logs/access.aux.log.gz combined gzip flush=5m; - access_log off; - - ## General Options - sendfile on; - sendfile_max_chunk 512k; - tcp_nopush on; - tcp_nodelay on; - - keepalive_timeout 60; - reset_timedout_connection on; - - gzip off; - - lua_package_path ";;${prefix}../app/?.lua;"; - lua_code_cache on; - - lua_max_running_timers 8192; - lua_max_pending_timers 8192; - - lua_shared_dict timer_locks 10m; - lua_shared_dict timer_workers 1m; - lua_shared_dict timers 10m; - lua_shared_dict timer_count 10m; - lua_shared_dict timer_data 50m; - lua_shared_dict timer_thresholds 10m; - init_by_lua_file "../app/init.lua"; - init_worker_by_lua_file "../app/timer.lua"; - - server { - listen 127.0.0.1:9004; - index index.html; - root ../static; - } -} diff --git a/config/linux/nginx.aux.conf.x64 b/config/linux/nginx.aux.conf.x64 deleted file mode 100755 index 021bde0..0000000 --- a/config/linux/nginx.aux.conf.x64 +++ /dev/null @@ -1,48 +0,0 @@ -worker_processes 1; -error_log logs/error.aux.log; -pid logs/nginx.aux.pid; - -events { - use epoll; - worker_connections 16384; - multi_accept on; -} - -http { - include mime.types; - default_type application/octet-stream; - - # access_log logs/access.aux.log.gz combined gzip flush=5m; - access_log off; - - ## General Options - sendfile off; # disable double caching for ZFS - tcp_nopush off; # sendfile=off so tcp_nopush can not be used - tcp_nodelay on; - - keepalive_timeout 60; - reset_timedout_connection on; - - gzip off; - - lua_package_path ";;${prefix}../app/?.lua;"; - lua_code_cache on; - - lua_max_running_timers 8192; - lua_max_pending_timers 8192; - - lua_shared_dict timer_locks 10m; - lua_shared_dict timer_workers 1m; - lua_shared_dict timers 10m; - lua_shared_dict timer_count 10m; - lua_shared_dict timer_data 50m; - lua_shared_dict timer_thresholds 10m; - init_by_lua_file "../app/init.lua"; - init_worker_by_lua_file "../app/timer.lua"; - - server { - listen 127.0.0.1:9004; - index index.html; - root ../static; - } -} diff --git a/config/linux/nginx.conf.arm b/config/linux/nginx.conf.arm deleted file mode 100755 index 4f1b08a..0000000 --- a/config/linux/nginx.conf.arm +++ /dev/null @@ -1,43 +0,0 @@ -worker_processes 1; -error_log logs/error.log; - -events { - use epoll; - worker_connections 1024; - multi_accept on; -} - -http { - include mime.types; - default_type application/octet-stream; - - # access_log logs/access.log.gz combined gzip flush=5m; - access_log off; - - ## General Options - sendfile on; - sendfile_max_chunk 512k; - tcp_nopush on; - tcp_nodelay on; - - keepalive_timeout 60; - reset_timedout_connection on; - - gzip off; - - lua_package_path ";;${prefix}../app/?.lua;"; - lua_code_cache on; - - lua_shared_dict timer_locks 1m; - init_by_lua_file "../app/init.lua"; - init_worker_by_lua_file "../app/timer.lua"; - - server { - listen 9002; - index index.html; - root ../static; - - # include application routes; this path is relative to this conf file! - include ../../app/conf/*.conf; - } -} diff --git a/config/linux/nginx.conf.x64 b/config/linux/nginx.conf.x64 deleted file mode 100755 index 5820ff5..0000000 --- a/config/linux/nginx.conf.x64 +++ /dev/null @@ -1,43 +0,0 @@ -worker_processes 4; -error_log logs/error.log; - -events { - use epoll; - worker_connections 16384; - multi_accept on; -} - -http { - include mime.types; - default_type application/octet-stream; - - # access_log logs/access.log.gz combined gzip flush=5m; - access_log off; - - ## General Options - sendfile on; - sendfile_max_chunk 512k; - tcp_nopush on; - tcp_nodelay on; - - keepalive_timeout 60; - reset_timedout_connection on; - - gzip off; - - lua_package_path ";;${prefix}../app/?.lua;"; - lua_code_cache on; - - lua_shared_dict timer_locks 1m; - init_by_lua_file "../app/init.lua"; - init_worker_by_lua_file "../app/timer.lua"; - - server { - listen 9002; - index index.html; - root ../static; - - # include application routes; this path is relative to this conf file! - include ../../app/conf/*.conf; - } -} diff --git a/config/linux/nginx.stats.conf.arm b/config/linux/nginx.stats.conf.arm deleted file mode 100755 index 9cb9d0c..0000000 --- a/config/linux/nginx.stats.conf.arm +++ /dev/null @@ -1,60 +0,0 @@ -worker_processes 1; -error_log logs/error.stats.log; -pid logs/nginx.stats.pid; - -events { - use epoll; - worker_connections 1024; - multi_accept on; -} - -http { - - upstream aggregates { - server 127.0.0.1:9003; - keepalive 32; - } - - include mime.types; - default_type application/octet-stream; - - # access_log logs/access.stats.log.gz combined gzip flush=5m; - access_log off; - - ## General Options - sendfile on; - sendfile_max_chunk 512k; - tcp_nopush on; - tcp_nodelay on; - - keepalive_timeout 60; - reset_timedout_connection on; - - gzip off; - - lua_package_path ";;${prefix}../app/?.lua;"; - lua_code_cache on; - lua_check_client_abort on; - - # platform websocket stats - lua_shared_dict websockets 10m; - init_by_lua_file "../app/init.lua"; - - server { - listen 127.0.0.1:9002; - index index.html; - root ../static; - - # include application routes; this path is relative to this conf file! - include ../../app/conf/kernel.conf; - } - - server { - listen 127.0.0.1:9102; - index index.html; - root ../static; - - # include application routes; this path is relative to this conf file! - include ../../app/conf/kernel-api.conf; - } -} diff --git a/config/linux/nginx.stats.conf.x64 b/config/linux/nginx.stats.conf.x64 deleted file mode 100755 index 175a427..0000000 --- a/config/linux/nginx.stats.conf.x64 +++ /dev/null @@ -1,59 +0,0 @@ -worker_processes 4; -error_log logs/error.stats.log; -pid logs/nginx.stats.pid; - -events { - use epoll; - worker_connections 16384; - multi_accept on; -} - -http { - - upstream aggregates { - server 127.0.0.1:9003; - keepalive 32; - } - - include mime.types; - default_type application/octet-stream; - - # access_log logs/access.stats.log.gz combined gzip flush=5m; - access_log off; - - ## General Options - sendfile off; # disable double caching for ZFS - tcp_nopush off; # sendfile=off so tcp_nopush can not be used - tcp_nodelay on; - - keepalive_timeout 60; - reset_timedout_connection on; - - gzip off; - - lua_package_path ";;${prefix}../app/?.lua;"; - lua_code_cache on; - lua_check_client_abort on; - - # platform websocket stats - lua_shared_dict websockets 10m; - init_by_lua_file "../app/init.lua"; - - server { - listen 127.0.0.1:9002; - index index.html; - root ../static; - - # include application routes; this path is relative to this conf file! - include ../../app/conf/kernel.conf; - } - - server { - listen 127.0.0.1:9102; - index index.html; - root ../static; - - # include application routes; this path is relative to this conf file! - include ../../app/conf/kernel-api.conf; - } -}