@nsshunt/stsdatamanagement 1.17.119 → 1.17.121
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.
- package/db-scripts/builddb.sql +3 -3
- package/package.json +1 -1
package/db-scripts/builddb.sql
CHANGED
|
@@ -852,7 +852,7 @@ BEGIN
|
|
|
852
852
|
-- Top level query
|
|
853
853
|
RETURN QUERY
|
|
854
854
|
select
|
|
855
|
-
'_',
|
|
855
|
+
'_'::character varying as serviceid,
|
|
856
856
|
sum(m.request_count_gauge)::integer as request_count_gauge,
|
|
857
857
|
sum(m.error_count_gauge)::integer as error_count_gauge,
|
|
858
858
|
sum(m.retry_count_gauge)::integer as retry_count_gauge,
|
|
@@ -1055,7 +1055,7 @@ BEGIN
|
|
|
1055
1055
|
END
|
|
1056
1056
|
$$;
|
|
1057
1057
|
|
|
1058
|
-
ALTER FUNCTION public.get_monitor_summary_by_serviceid()
|
|
1058
|
+
ALTER FUNCTION public.get_monitor_summary_by_serviceid(character varying)
|
|
1059
1059
|
OWNER TO postgres;
|
|
1060
1060
|
|
|
1061
1061
|
|
|
@@ -1148,7 +1148,7 @@ BEGIN
|
|
|
1148
1148
|
END
|
|
1149
1149
|
$$;
|
|
1150
1150
|
|
|
1151
|
-
ALTER FUNCTION public.get_monitor_summary_by_serviceinstanceid()
|
|
1151
|
+
ALTER FUNCTION public.get_monitor_summary_by_serviceinstanceid(character varying)
|
|
1152
1152
|
OWNER TO postgres;
|
|
1153
1153
|
|
|
1154
1154
|
|