@nsshunt/stsdatamanagement 1.17.112 → 1.17.114

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -143,7 +143,7 @@ CREATE OR REPLACE FUNCTION public.create_stsmonitor(
143
143
  _error_count_gauge integer, -- 15
144
144
  _retry_count_gauge integer, -- 16
145
145
  _authentication_count_gauge integer, -- 17
146
- _velocity_gauge integer, -- 18
146
+ _velocity_gauge numeric, -- 18
147
147
  _cpu_load_gauge numeric , -- 19
148
148
  _active_request_gauge integer, -- 20
149
149
  _connection_count_gauge integer, -- 21
@@ -355,7 +355,7 @@ ALTER FUNCTION public.create_stsmonitor(
355
355
  integer, -- 15
356
356
  integer, -- 16
357
357
  integer, -- 17
358
- integer, -- 18
358
+ numeric, -- 18 velocity
359
359
  numeric, -- 19 cpu
360
360
  integer, -- 20
361
361
  integer, -- 21
@@ -820,7 +820,7 @@ CREATE OR REPLACE FUNCTION public.get_monitor_summary()
820
820
  error_count_gauge integer,
821
821
  retry_count_gauge integer,
822
822
  authentication_count_gauge integer,
823
- velocity_gauge integer,
823
+ velocity_gauge numeric,
824
824
  cpu_load_gauge numeric,
825
825
  active_request_gauge integer,
826
826
  connection_count_gauge integer,
@@ -857,7 +857,7 @@ BEGIN
857
857
  sum(m.error_count_gauge)::integer as error_count_gauge,
858
858
  sum(m.retry_count_gauge)::integer as retry_count_gauge,
859
859
  sum(m.authentication_count_gauge)::integer as authentication_count_gauge,
860
- sum(m.velocity_gauge)::integer as velocity_gauge,
860
+ sum(m.velocity_gauge)::numeric as velocity_gauge,
861
861
  sum(m.cpu_load_gauge)::numeric as cpu_load_gauge,
862
862
  sum(m.active_request_gauge)::integer as active_request_gauge,
863
863
  sum(m.connection_count_gauge)::integer as connection_count_gauge,
@@ -905,7 +905,7 @@ CREATE OR REPLACE FUNCTION public.get_monitor_summary_by_serviceid(
905
905
  error_count_gauge integer,
906
906
  retry_count_gauge integer,
907
907
  authentication_count_gauge integer,
908
- velocity_gauge integer,
908
+ velocity_gauge numeric,
909
909
  cpu_load_gauge numeric,
910
910
  active_request_gauge integer,
911
911
  connection_count_gauge integer,
@@ -943,7 +943,7 @@ BEGIN
943
943
  sum(m.error_count_gauge)::integer as error_count_gauge,
944
944
  sum(m.retry_count_gauge)::integer as retry_count_gauge,
945
945
  sum(m.authentication_count_gauge)::integer as authentication_count_gauge,
946
- sum(m.velocity_gauge)::integer as velocity_gauge,
946
+ sum(m.velocity_gauge)::numeric as velocity_gauge,
947
947
  sum(m.cpu_load_gauge)::numeric as cpu_load_gauge,
948
948
  sum(m.active_request_gauge)::integer as active_request_gauge,
949
949
  sum(m.connection_count_gauge)::integer as connection_count_gauge,
@@ -997,7 +997,7 @@ CREATE OR REPLACE FUNCTION public.get_monitor_summary_by_serviceinstanceid(
997
997
  error_count_gauge integer,
998
998
  retry_count_gauge integer,
999
999
  authentication_count_gauge integer,
1000
- velocity_gauge integer,
1000
+ velocity_gauge numeric,
1001
1001
  cpu_load_gauge numeric,
1002
1002
  active_request_gauge integer,
1003
1003
  connection_count_gauge integer,
@@ -1037,7 +1037,7 @@ BEGIN
1037
1037
  sum(m.error_count_gauge)::integer as error_count_gauge,
1038
1038
  sum(m.retry_count_gauge)::integer as retry_count_gauge,
1039
1039
  sum(m.authentication_count_gauge)::integer as authentication_count_gauge,
1040
- sum(m.velocity_gauge)::integer as velocity_gauge,
1040
+ sum(m.velocity_gauge)::numeric as velocity_gauge,
1041
1041
  sum(m.cpu_load_gauge)::numeric as cpu_load_gauge,
1042
1042
  sum(m.active_request_gauge)::integer as active_request_gauge,
1043
1043
  sum(m.connection_count_gauge)::integer as connection_count_gauge,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@nsshunt/stsdatamanagement",
3
- "version": "1.17.112",
3
+ "version": "1.17.114",
4
4
  "description": "STS Data Management Modules, Utilities and Services",
5
5
  "main": "./dist/dbaccess.js",
6
6
  "types": "./types/dbaccess.d.ts",