summaryrefslogtreecommitdiff
path: root/app/controllers/projects/environments/sample_metrics_controller.rb
diff options
context:
space:
mode:
Diffstat (limited to 'app/controllers/projects/environments/sample_metrics_controller.rb')
-rw-r--r--app/controllers/projects/environments/sample_metrics_controller.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/app/controllers/projects/environments/sample_metrics_controller.rb b/app/controllers/projects/environments/sample_metrics_controller.rb
index 79a7eab150b..9176c7cbd56 100644
--- a/app/controllers/projects/environments/sample_metrics_controller.rb
+++ b/app/controllers/projects/environments/sample_metrics_controller.rb
@@ -2,7 +2,7 @@
class Projects::Environments::SampleMetricsController < Projects::ApplicationController
def query
- result = Metrics::SampleMetricsService.new(params[:identifier]).query
+ result = Metrics::SampleMetricsService.new(params[:identifier], range_start: params[:start], range_end: params[:end]).query
if result
render json: { "status": "success", "data": { "resultType": "matrix", "result": result } }