diff --git a/.github/ISSUE_TEMPLATE/api-services-portal-bug-issue-template.md b/.github/ISSUE_TEMPLATE/api-services-portal-bug-issue-template.md index 8bfdf401b..e15d1b148 100644 --- a/.github/ISSUE_TEMPLATE/api-services-portal-bug-issue-template.md +++ b/.github/ISSUE_TEMPLATE/api-services-portal-bug-issue-template.md @@ -2,7 +2,7 @@ name: API Services Portal Bug Issue Template about: Generic template for bug GitHub issues title: '' -labels: bug, jira +labels: bug assignees: '' --- diff --git a/.github/ISSUE_TEMPLATE/api-services-portal-feature-request-issue-template.md b/.github/ISSUE_TEMPLATE/api-services-portal-feature-request-issue-template.md index bb70f1f5f..76d8157d0 100644 --- a/.github/ISSUE_TEMPLATE/api-services-portal-feature-request-issue-template.md +++ b/.github/ISSUE_TEMPLATE/api-services-portal-feature-request-issue-template.md @@ -2,7 +2,7 @@ name: API Services Portal Feature Request Issue Template about: Generic template for feature request GitHub issues title: '' -labels: enhancement, jira +labels: enhancement assignees: '' --- diff --git a/feeds/prometheus/index.js b/feeds/prometheus/index.js index d885020e4..00025509a 100644 --- a/feeds/prometheus/index.js +++ b/feeds/prometheus/index.js @@ -8,27 +8,27 @@ const log = Logger('prometheus'); const queryRanges = [ { - query: 'sum(increase(kong_http_status[1d])) by (service,code)', + query: 'sum(increase(kong_http_requests_total[1d])) by (service,code)', step: 60 * 60 * 24, id: 'kong_http_requests_daily_service_code', }, { - query: 'sum(increase(kong_http_status[60m])) by (service,namespace)', + query: 'sum(increase(kong_http_requests_total[60m])) by (service,namespace)', step: 60 * 60, id: 'kong_http_requests_hourly_service', }, { - query: 'sum(increase(kong_http_status[60m])) by (namespace)', + query: 'sum(increase(kong_http_requests_total[60m])) by (namespace)', step: 60 * 60, id: 'kong_http_requests_hourly_namespace', }, { - query: 'sum(increase(kong_http_status[1d])) by (namespace)', + query: 'sum(increase(kong_http_requests_total[1d])) by (namespace)', step: 60 * 60 * 24, id: 'kong_http_requests_daily_namespace', }, { - query: 'sum(increase(kong_http_status[1d]))', + query: 'sum(increase(kong_http_requests_total[1d]))', step: 60 * 60 * 24, id: 'kong_http_requests_daily', },