We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
When specifying parameters, the use of = appears to be optional. In other words, both of these work:
=
$ scalyr query 'foo' --start 7/10/18 --end 7/11/18 --mode head (results) $ scalyr query 'foo' --start=7/10/18 --end=7/11/18 --mode=head (same results)
However, if you specify tail mode, you must use =:
tail
$ scalyr query 'foo' --start 7/10/18 --end 7/11/18 --mode tail usage: scalyr [-h] [--version] [--server SERVER] [--token TOKEN] [--verbose] [--no-escape-unicode] [--output {singleline,multiline,messageonly}] [--lines LINES] {timeseries-query,list-files,delete-file,create-timeseries,query,facet-query,numeric-query,timerseries-query,tail,get-file,put-file} [filter] scalyr: error: unrecognized arguments: --start 7/10/18 --end 7/11/18 --mode tail $ scalyr query 'foo' --start 7/10/18 --end 7/11/18 --mode=tail (results)
The text was updated successfully, but these errors were encountered:
Fixes issue scalyr#23
030a8f4
a2049f8
czerwingithub
No branches or pull requests
When specifying parameters, the use of
=
appears to be optional. In other words, both of these work:However, if you specify
tail
mode, you must use=
:The text was updated successfully, but these errors were encountered: