elasticsearch/docs/reference/commands/croneval.asciidoc
edh-oss 3c23a9e9cd
[DOCS] Remove [testenv="gold+"] attributes (#79309)
Changes:

* Removes several `[testenv="gold+"]` attributes from the docs. `gold+` is not a valid [subscription level](https://www.elastic.co/subscriptions) or testenv value.
* Moves two `[testenv="basic"]` attributes to the file header. This makes the `testenv` placement consistent and fixes the yml file generated from `docs/reference/snapshot-restore/register-repository.asciidoc`.

Co-authored-by: James Rodewig <40268737+jrodewig@users.noreply.github.com>
2021-10-27 16:32:30 -04:00

55 lines
1.3 KiB
Text

[[elasticsearch-croneval]]
== elasticsearch-croneval
Validates and evaluates a <<cron-expressions,cron expression>>.
[discrete]
=== Synopsis
[source,shell]
--------------------------------------------------
bin/elasticsearch-croneval <expression>
[-c, --count <integer>] [-h, --help]
([-s, --silent] | [-v, --verbose])
--------------------------------------------------
[discrete]
=== Description
This command enables you to verify that your
cron expressions are valid for use with
{es} and produce the expected results.
This command is provided in the `$ES_HOME/bin` directory.
[discrete]
[[elasticsearch-croneval-parameters]]
=== Parameters
`-c, --count` <Integer>::
The number of future times this expression will be triggered. The default
value is `10`.
`-d, --detail`::
Shows detail for invalid cron expression. It will print the stacktrace if the
expression is not valid.
`-h, --help`::
Returns all of the command parameters.
`-s, --silent`::
Shows minimal output.
`-v, --verbose`::
Shows verbose output.
[discrete]
=== Example
If the cron expression is valid, the following command displays the next
20 times that the schedule will be triggered:
[source,bash]
--------------------------------------------------
bin/elasticsearch-croneval "0 0/1 * * * ?" -c 20
--------------------------------------------------