-
Notifications
You must be signed in to change notification settings - Fork 1
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
Add NTCE and hotspots summary commands #23
Conversation
src/lib/functions/get_time_period.sh
Outdated
3m) | ||
echo 0 | ||
;; | ||
1h) | ||
echo 1 | ||
;; | ||
3h) | ||
echo 2 | ||
;; | ||
24h) | ||
echo 3 | ||
;; | ||
*) | ||
echo "Unknown time period ${1}" && exit 1 | ||
;; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
[shfmt] reported by reviewdog 🐶
3m) | |
echo 0 | |
;; | |
1h) | |
echo 1 | |
;; | |
3h) | |
echo 2 | |
;; | |
24h) | |
echo 3 | |
;; | |
*) | |
echo "Unknown time period ${1}" && exit 1 | |
;; | |
3m) | |
echo 0 | |
;; | |
1h) | |
echo 1 | |
;; | |
3h) | |
echo 2 | |
;; | |
24h) | |
echo 3 | |
;; | |
*) | |
echo "Unknown time period ${1}" && exit 1 | |
;; |
keencli
Outdated
@@ -2233,7 +3037,7 @@ keencli_self_test_parse_requirements() { | |||
|
|||
# :command.initialize | |||
initialize() { | |||
version="0.3.0" | |||
version="0.3.4" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
[bashly] reported by reviewdog 🐶
version="0.3.4" | |
version="0.4.0" |
src/bashly.yml
Outdated
|
||
application - segmentation of traffic based on applications | ||
|
||
group - Segmentation of traffic based on general types, such |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
[yamllint] reported by reviewdog 🐶
[error] line too long (84 > 80 characters) (line-length)
keencli
Outdated
echo 3 | ||
;; | ||
*) | ||
echo "Unknown time period ${1}" && exit 1 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
[bashly] reported by reviewdog 🐶
echo "Unknown time period ${1}" && exit 1 | |
error "Unknown time period ${1}" |
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
keencli
Outdated
3m) | ||
echo 0 | ||
;; | ||
1h) | ||
echo 1 | ||
;; | ||
3h) | ||
echo 2 | ||
;; | ||
24h) | ||
echo 3 | ||
;; | ||
*) | ||
echo "Unknown time period ${1}" && exit 1 | ||
;; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
[bashly] reported by reviewdog 🐶
3m) | |
echo 0 | |
;; | |
1h) | |
echo 1 | |
;; | |
3h) | |
echo 2 | |
;; | |
24h) | |
echo 3 | |
;; | |
*) | |
echo "Unknown time period ${1}" && exit 1 | |
;; | |
3m) | |
echo 0 | |
;; | |
1h) | |
echo 1 | |
;; | |
3h) | |
echo 2 | |
;; | |
24h) | |
echo 3 | |
;; | |
*) | |
error "Unknown time period ${1}" | |
;; |
No description provided.