lib/logstash/inputs/jdbc.rb in logstash-input-jdbc-1.0.0 vs lib/logstash/inputs/jdbc.rb in logstash-input-jdbc-1.0.1
- old
+ new
@@ -17,23 +17,23 @@
# `jdbc_driver_library` configuration option.
#
# ==== Scheduling
#
# Input from this plugin can be scheduled to run periodically according to a specific
-# schedule. This scheduling syntax is powered by [rufus-scheduler](https://github.com/jmettraux/rufus-scheduler).
+# schedule. This scheduling syntax is powered by https://github.com/jmettraux/rufus-scheduler[rufus-scheduler].
# The syntax is cron-like with some extensions specific to Rufus (e.g. timezone support ).
#
# Examples:
#
# |==========================================================
-# | * 5 * 1-3 * | will execute every minute of 5am every day of January through March.
-# | 0 * * * * | will execute on the 0th minute of every hour every day.
-# | 0 6 * * * America/Chicago | will execute at 6:00am (UTC/GMT -5) every day.
+# | `* 5 * 1-3 *` | will execute every minute of 5am every day of January through March.
+# | `0 * * * *` | will execute on the 0th minute of every hour every day.
+# | `0 6 * * * America/Chicago` | will execute at 6:00am (UTC/GMT -5) every day.
# |==========================================================
#
#
-# Further documentation describing this syntax can be found [here](https://github.com/jmettraux/rufus-scheduler#parsing-cronlines-and-time-strings)
+# Further documentation describing this syntax can be found https://github.com/jmettraux/rufus-scheduler#parsing-cronlines-and-time-strings[here].
#
# ==== State
#
# The plugin will persist the `sql_last_start` parameter in the form of a
# metadata file stored in the configured `last_run_metadata_path`. Upon shutting down,
@@ -88,12 +88,11 @@
#
# Some parameters are built-in and can be used from within your queries.
# Here is the list:
#
# |==========================================================
-# |sql_last_start | The last time a statement was executed. This is set to
-# | | Thursday, 1 January 1970 before any query is run, and updated
-# | | accordingly after first query is run.
+# |sql_last_start | The last time a statement was executed. This is set to Thursday, 1 January 1970
+# before any query is run, and updated accordingly after first query is run.
# |==========================================================
#
class LogStash::Inputs::Jdbc < LogStash::Inputs::Base
include LogStash::PluginMixins::Jdbc
config_name "jdbc"