Skip to content

Commit

Permalink
Revert "Use 60s resolution in graph"
Browse files Browse the repository at this point in the history
This reverts commit 0043a42.
  • Loading branch information
hcho3 committed Apr 29, 2024
1 parent 0043a42 commit 4628122
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions dashboard/index.php
Original file line number Diff line number Diff line change
Expand Up @@ -15,15 +15,15 @@
'MetricName' => 'TodayEC2SpendingUSD',
'StartTime' => $start_time,
'EndTime' => $end_time,
'Period' => 60,
'Period' => 120,
'Statistics' => array('Maximum')
));
$budget_metric = $client->getMetricStatistics(array(
'Namespace' => 'XGBoostCICostWatcher',
'MetricName' => 'DailyBudgetUSD',
'StartTime' => $start_time,
'EndTime' => $end_time,
'Period' => 60,
'Period' => 120,
'Statistics' => array('Maximum')
));

Expand Down

0 comments on commit 4628122

Please sign in to comment.