mirror of
https://github.com/fleetdm/fleet
synced 2026-05-23 17:08:53 +00:00
Allow users to schedule queries to run every 15 minutes (#1928)
* Add new 15-min interval option to schedule
This commit is contained in:
parent
6d2ae02efd
commit
56157617c6
2 changed files with 2 additions and 0 deletions
1
changes/1925-add-15-min-interval-schedule
Normal file
1
changes/1925-add-15-min-interval-schedule
Normal file
|
|
@ -0,0 +1 @@
|
|||
Add new 15-minute interval option to schedule page
|
||||
|
|
@ -7,6 +7,7 @@ export const DEFAULT_GRAVATAR_LINK =
|
|||
"https://fleetdm.com/images/permanent/icon-avatar-default-128x128-2x.png";
|
||||
|
||||
export const FREQUENCY_DROPDOWN_OPTIONS = [
|
||||
{ value: 900, label: "Every 15 minutes" },
|
||||
{ value: 3600, label: "Every hour" },
|
||||
{ value: 21600, label: "Every 6 hours" },
|
||||
{ value: 43200, label: "Every 12 hours" },
|
||||
|
|
|
|||
Loading…
Reference in a new issue