1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546
|
[[configuration]]
= Configuration
[partintro]
--
These are the higher-level configuration settings used by the configuration
files. <<actions,Actions>> and <<filters,filters>> are documented separately.
* <<envvars,Environment Variables>>
* <<actionfile,Action File>>
* <<configfile,Configuration File>>
--
[[envvars]]
== Environment Variables
WARNING: This functionality is experimental and may be changed or removed +
completely in a future release.
You can use environment variable references in both the
<<configfile,configuration file>> and the <<actionfile,action file>> to set
values that need to be configurable at runtime. To do this, use:
[source,sh]
-------
${VAR}
-------
Where `VAR` is the name of the environment variable.
Each variable reference is replaced at startup by the value of the environment
variable. The replacement is case-sensitive and occurs while the YAML file is
parsed, but before configuration schema validation. References to undefined
variables are replaced by `None` unless you specify a default value. To specify
a default value, use:
[source,sh]
-------
${VAR:default_value}
-------
Where `default_value` is the value to use if the environment variable is
undefined.
[IMPORTANT]
.Unsupported use cases
=================================================================
When using environment variables, the value must _only_ be the environment
variable.
Using extra text, such as:
[source,sh]
-------
logfile: ${LOGPATH}/extra/path/information/file.log
-------
is not supported at this time.
=================================================================
=== Examples
Here are some examples of configurations that use environment variables
and what each configuration looks like after replacement:
[options="header"]
|==================================
|Config source |Environment setting |Config after replacement
|`unit: ${UNIT}` |`export UNIT=days` |`unit: days`
|`unit: ${UNIT}` |no setting |`unit:`
|`unit: ${UNIT:days}` |no setting |`unit: days`
|`unit: ${UNIT:days}` |`export UNIT=hours` |`unit: hours`
|==================================
[[actionfile]]
== Action File
NOTE: You can use <<envvars,environment variables>> in your configuration
files.
An action file has the following structure:
[source,sh]
-----------
---
# Remember, leave a key empty if there is no value. None will be a string,
# not a Python "NoneType"
#
# Also remember that all examples have 'disable_action' set to True. If you
# want to use this action as a template, be sure to set this to False after
# copying it.
actions:
1:
action: ACTION1
description: OPTIONAL DESCRIPTION
options:
option1: value1
...
optionN: valueN
continue_if_exception: False
disable_action: True
filters:
- filtertype: *first*
filter_element1: value1
...
filter_elementN: valueN
- filtertype: *second*
filter_element1: value1
...
filter_elementN: valueN
2:
action: ACTION2
description: OPTIONAL DESCRIPTION
options:
option1: value1
...
optionN: valueN
continue_if_exception: False
disable_action: True
filters:
- filtertype: *first*
filter_element1: value1
...
filter_elementN: valueN
- filtertype: *second*
filter_element1: value1
...
filter_elementN: valueN
3:
action: ACTION3
...
4:
action: ACTION4
...
-----------
It is a YAML configuration file. The root key must be `actions`, after which
there can be any number of actions, nested underneath numbers. Actions will be
taken in the order they are completed.
The high-level elements of each numbered action are:
* <<actions,action>>
* <<description,description>>
* <<options,options>>
* <<filters,filters>>
In the case of the <<alias,alias action>>, there are two additional high-level
elements: `add` and `remove`, which are described in the <<alias,alias action>>
documentation.
[[description]]
=== description
This is an optional description which can help describe what the action and its
filters are supposed to do.
[source,yaml]
-------------
description: >- I can make the description span multiple
lines by putting ">-" at the beginning of the line,
as seen above. Subsequent lines must also be indented.
options:
option1: ...
-------------
[[configfile]]
== Configuration File
NOTE: The default location of the configuration file is `~/.curator/curator.yml`,
but another location can be specified using the `--config` flag on the
<<command-line,command-line>>.
NOTE: You can use <<envvars,environment variables>> in your configuration
files.
The configuration file contains client connection and settings for logging. It
looks like this:
[source,sh]
-----------
---
# Remember, leave a key empty if there is no value. None will be a string,
# not a Python "NoneType"
elasticsearch:
client:
hosts:
- http://127.0.0.1:9200
cloud_id:
ca_certs:
client_cert:
client_key:
verify_certs:
request_timeout: 30
other_settings:
master_only: False
username:
password:
api_key:
id:
api_key:
token:
logging:
loglevel: INFO
logfile:
logformat: default
blacklist: ['elastic_transport', 'urllib3']
-----------
It is a YAML configuration file. The two root keys must be `elasticsearch` and
`logging`. The subkeys of each of these will be described here.
There are other keys available for the `client` subkey of the `elasticsearch` root key, many of
which are listed https://es-client.readthedocs.io/en/latest/defaults.html[here].
The most commonly used ones (listed above) are described as follows:
[[hosts]]
=== hosts
IMPORTANT: All hosts must be in `HTTP[S]://FQDN.DOMAIN.TLD:PORT` form or they will be rejected and
Curator will exit with an error. The only exception to this is `HTTPS://FQDN.DOMAIN.TLD`
(without port), in which case `:443` is implicit, and is, in fact, appended automatically.
WARNING: If both `cloud_id` and `hosts` keys are populated an exception will be thrown and Curator will exit.
A `hosts` definition can be a single value:
[source,sh]
-----------
hosts: http://127.0.0.1:9200
-----------
Or multiple values in the 3 acceptable YAML ways to render sequences, or arrays:
WARNING: Curator can only work with one cluster at a time. Including clients
from multiple clusters in the `hosts` setting will result in errors.
Flow:
[source,sh]
-----------
hosts: [ "http://10.0.0.1:9200", "http://10.0.0.2:9200" ]
-----------
Spanning:
[source,sh]
-----------
hosts: [ "http://10.0.0.1:9200",
"http://10.0.0.2:9200" ]
-----------
Block:
[source,sh]
-----------
hosts:
- http://10.0.0.1:9200
- http://10.0.0.2:9200
-----------
[[cloud_id]]
=== cloud_id
The value should encapsulated in quotes because of the included colon:
[source,sh]
-----------
cloud_id: 'deployment_name:BIG_HASH_VALUE'
-----------
WARNING: If both `cloud_id` and `hosts` keys are populated an exception will be thrown and Curator will exit.
[[ca_certs]]
=== ca_certs
This should be a file path to your CA certificate, or left empty.
[source,sh]
-----------
ca_certs:
-----------
This setting allows the use of a specified CA certificate file to validate the
SSL certificate used by Elasticsearch.
There is no default.
include::inc_filepath.asciidoc[]
[[client_cert]]
=== client_cert
This should be a file path to a client certificate (public key), or left empty.
[source,sh]
-----------
client_cert:
-----------
Allows the use of a specified SSL client cert file to authenticate to
Elasticsearch. The file may contain both an SSL client certificate and an SSL
key, in which case <<client_key,client_key>> is not used. If specifying
`client_cert`, and the file specified does not also contain the key, use
<<client_key,client_key>> to specify the file containing the SSL key. The file
must be in PEM format, and the key part, if used, must be an unencrypted key in
PEM format as well.
include::inc_filepath.asciidoc[]
[[client_key]]
=== client_key
This should be a file path to a client key (private key), or left empty.
[source,sh]
-----------
client_key:
-----------
Allows the use of a specified SSL client key file to authenticate to
Elasticsearch. If using <<client_cert,client_cert>> and the file specified does
not also contain the key, use `client_key` to specify the file containing the
SSL key. The key file must be an unencrypted key in PEM format.
include::inc_filepath.asciidoc[]
[[verify_certs]]
=== verify_certs
This should be `True`, `False` or left empty.
[source,sh]
-----------
verify_certs:
-----------
If access to your Elasticsearch instance is protected by SSL encryption, you may
set `verify_certs` to `False` to disable SSL certificate verification.
Valid use cases for doing so include the use of self-signed certificates that
cannot be otherwise verified and would generate error messages.
WARNING: Setting `verify_certs` to `False` will likely result in a warning
message that your SSL certificates are not trusted. This is expected
behavior.
The default value is `True`.
[[request_timeout]]
=== request_timeout
This should be an integer number of seconds, or left empty.
[source,sh]
-----------
request_timeout:
-----------
You can change the default client connection timeout value with this setting.
The default value is `30` (seconds) should typically not be changed to be very
large. If a longer timeout is necessary for a given action, such as
<<snapshot,snapshot>>, <<restore,restore>>, or <<forcemerge,forcemerge>>, the
client timeout can be overridden on per action basis by setting
<<option_timeout_override,timeout_override>> in the action <<options,options>>.
There are default override values for some of those longer running actions.
[[master_only]]
=== master_only
This should be `True`, `False` or left empty.
[source,sh]
-----------
master_only:
-----------
In some situations, primarily with automated deployments, it makes sense to
install Curator on every node. But you wouldn’t want it to run on each node.
By setting `master_only` to `True`, this is possible. It tests for, and will
only continue running on the node that is the elected master.
WARNING: If `master_only` is `True`, and <<hosts,hosts>> has more than one
value, Curator will raise an Exception. This setting should _only_ be used
with a single host in <<hosts,hosts>>, as its utility centers around
deploying to all nodes in the cluster.
The default value is `False`.
[[username]]
=== username
The HTTP Basic Authentication username
[[password]]
=== password
The HTTP Basic Authentication password
[[id]]
=== id
This should be the `id` portion of an API Key pair.
[source,sh]
---------
api_key:
id:
---------
This setting combined with the other subkey `api_key` allows API Key authentication to an
Elasticsearch instance.
The default is empty.
[[api_key]]
=== api_key
This should be the `api_key` portion of an API Key pair.
[source,sh]
---------
api_key:
api_key:
---------
This setting combined with the other subkey `id` allows API Key authentication to an
Elasticsearch instance.
The default is empty.
[[token]]
=== token
This should be a base64 encoded representation of an API Key pair.
[source,sh]
---------
api_key:
token:
---------
This setting will override any values provided for the `id` or `api_key` subkeys of `api_key`.
The default is empty.
[[loglevel]]
=== loglevel
This should be `CRITICAL`, `ERROR`, `WARNING`, `INFO`, `DEBUG`, or left empty.
[source,sh]
-----------
loglevel:
-----------
Set the minimum acceptable log severity to display.
* `CRITICAL` will only display critical messages.
* `ERROR` will only display error and critical messages.
* `WARNING` will display error, warning, and critical messages.
* `INFO` will display informational, error, warning, and critical messages.
* `DEBUG` will display debug messages, in addition to all of the above.
The default value is `INFO`.
[[logfile]]
=== logfile
This should be a path to a log file, or left empty.
[source,sh]
-----------
logfile:
-----------
include::inc_filepath.asciidoc[]
The default value is empty, which will result in logging to `STDOUT`, or the
console.
[[logformat]]
=== logformat
This should `default`, `json`, `logstash`, `ecs` or left empty.
[source,sh]
-----------
logformat:
-----------
The `default` format looks like:
[source,sh]
-----------
2016-04-22 11:53:09,972 INFO Action #1: ACTIONNAME
-----------
The `json` or `logstash` formats look like:
[source,sh]
-----------
{"@timestamp": "2016-04-22T11:54:29.033Z", "function": "cli", "linenum": 178,
"loglevel": "INFO", "message": "Action #1: ACTIONNAME", "name": "curator.cli"}
-----------
The `ecs` format looks like:
[source,sh]
-----------
{"@timestamp":"2020-02-22T11:55:00.022Z","log.level":"info","message":"Action #1:
ACTIONNAME","ecs":{"version":"1.6.0"},"log":{"logger":"curator.cli","origin":
{"file":{"line":178,"name":"cli.py"},"function":"run"},"original":"Action #1:
ACTIONNAME"},"process":{"name":"MainProcess","pid":12345,"thread":
{"id":123456789886543,"name":"MainThread"}}}
-----------
The default value is `default`.
[[blacklist]]
=== blacklist
This should be an empty array `[]`, an array of log handler strings, or left
empty.
[source,sh]
-----------
blacklist: ['elastic_transport', 'urllib3']
-----------
The default value is `['elastic_transport', 'urllib3']`, which will result in
logs for the `elastic_transport` and `urllib3` Python modules _not_ being output.
These can be quite verbose, so unless you need them to debug an issue, you
should accept the default value.
TIP: If you do need to troubleshoot an issue, set `blacklist` to `[]`, which is
an empty array. Leaving it unset will result in the default behavior, which is
to filter out `elastic_transport` and `urllib3` log traffic.
|