Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[Feature] Add report for top viewed pages #958

Open
wants to merge 3 commits into
base: develop
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 9 additions & 9 deletions deploy/publisher.js
Original file line number Diff line number Diff line change
Expand Up @@ -20,26 +20,26 @@ const bree = new Bree({
timeout: "1",
interval: "15m",
},
// Runs `../jobs/analytics.usa.gov_daily.js` 1 minute after the process starts and then at
// Runs `../jobs/analytics.usa.gov_daily.js` 2 minute after the process starts and then at
// 10:01 AM every day going forward.
{
name: "analytics.usa.gov_daily",
timeout: "1m",
interval: "at 10:01 am",
timeout: "2m",
interval: "at 10:02 am",
},
// Runs `../jobs/daily.js` 2 minutes after the process starts and then at
// Runs `../jobs/daily.js` 4 minutes after the process starts and then at
// 10:02 AM every day going forward.
{
name: "daily",
timeout: "2m",
interval: "at 10:02 am",
timeout: "4m",
interval: "at 10:04 am",
},
// Runs `../jobs/api.js` 3 minutes after the process starts and then at
// Runs `../jobs/api.js` 6 minutes after the process starts and then at
// 10:03 AM every day going forward.
{
name: "api",
timeout: "3m",
interval: "at 10:03 am",
timeout: "6m",
interval: "at 10:06 am",
},
],
});
Expand Down
Loading