Skip to content

Commit d5edc0a

Browse files
committed
SOC Operator - Update $minDate calculation in EventsProcedure to use a 5-day range instead of 1 week
1 parent 0dd7897 commit d5edc0a

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

app/Http/Procedures/EventsProcedure.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -230,7 +230,7 @@ public function socOperator(JsonRpcRequest $request): array
230230
}
231231

232232
$user = $request->user();
233-
$minDate = Carbon::now()->utc()->startOfDay()->subWeek();
233+
$minDate = Carbon::now()->utc()->startOfDay()->subDays(5);
234234
$maxDate = Carbon::now()->utc()->endOfDay();
235235

236236
Log::debug("Building SOC operator report for server {$server->name} ({$server->ip()})...");

0 commit comments

Comments
 (0)