Skip to content

Commit

Permalink
change lookback mins to 7 days (#853)
Browse files Browse the repository at this point in the history
Co-authored-by: Bryan Burkholder <[email protected]>
  • Loading branch information
vthacker and bryanlb authored Apr 16, 2024
1 parent 0f0b4bd commit 977b298
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -132,7 +132,7 @@ protected static long convertToMicroSeconds(Instant instant) {
}

private static final Logger LOG = LoggerFactory.getLogger(ZipkinService.class);
private static long LOOKBACK_MINS = 60 * 24;
private static long LOOKBACK_MINS = 60 * 24 * 7;

private static final int MAX_SPANS = 20_000;

Expand Down

0 comments on commit 977b298

Please sign in to comment.