|
5 | 5 | # |
6 | 6 |
|
7 | 7 | # List of messengers that will dispatch records. valid values are |
8 | | -# ssm,logstash,noop. You can specify more than one messenger. (list value) |
| 8 | +# ssmv4,ssm,noop,logstash,ssmv2. You can specify more than one messenger. (list |
| 9 | +# value) |
9 | 10 | #messengers = noop |
10 | 11 |
|
11 | 12 | # Spool directory. (string value) |
|
62 | 63 | # Which extractor to use for getting the data. If you do not specify anything, |
63 | 64 | # nova will be used. (string value) |
64 | 65 | # Possible values: |
65 | | -# ceilometer - <No description provided> |
66 | 66 | # nova - <No description provided> |
67 | 67 | #extractor = nova |
68 | 68 |
|
| 69 | +# |
| 70 | +# From oslo.config |
| 71 | +# |
| 72 | + |
| 73 | +# Path to a config file to use. Multiple config files can be specified, with |
| 74 | +# values in later files taking precedence. Defaults to %(default)s. This option |
| 75 | +# must be set from the command-line. (unknown value) |
| 76 | +#config_file = ['~/.project/project.conf', '~/project.conf', '/etc/project/project.conf', '/etc/project.conf'] |
| 77 | + |
| 78 | +# Path to a config directory to pull `*.conf` files from. This file set is |
| 79 | +# sorted, so as to provide a predictable parse order if individual options are |
| 80 | +# over-ridden. The set is parsed after the file(s) specified via previous |
| 81 | +# --config-file, arguments hence over-ridden options in the directory take |
| 82 | +# precedence. This option must be set from the command-line. (list value) |
| 83 | +#config_dir = ~/.project/project.conf.d/,~/project.conf.d/,/etc/project/project.conf.d/,/etc/project.conf.d/ |
| 84 | + |
| 85 | +# Lists configuration groups that provide more details for accessing |
| 86 | +# configuration settings from locations other than local files. (list value) |
| 87 | +#config_source = |
| 88 | + |
69 | 89 | # |
70 | 90 | # From oslo.log |
71 | 91 | # |
|
320 | 340 | #port = 5000 |
321 | 341 |
|
322 | 342 |
|
| 343 | +[sample_remote_file_source] |
| 344 | +# Example of using a remote_file source |
| 345 | +# |
| 346 | +# remote_file: A backend driver for remote files served through http[s]. |
| 347 | +# |
| 348 | +# Required options: |
| 349 | +# - uri: URI containing the file location. |
| 350 | +# |
| 351 | +# Non-required options: |
| 352 | +# - ca_path: The path to a CA_BUNDLE file or directory with |
| 353 | +# certificates of trusted CAs. |
| 354 | +# |
| 355 | +# - client_cert: Client side certificate, as a single file path |
| 356 | +# containing either the certificate only or the |
| 357 | +# private key and the certificate. |
| 358 | +# |
| 359 | +# - client_key: Client side private key, in case client_cert is |
| 360 | +# specified but does not includes the private key. |
| 361 | + |
| 362 | +# |
| 363 | +# From oslo.config |
| 364 | +# |
| 365 | + |
| 366 | +# The name of the driver that can load this configuration source. (string |
| 367 | +# value) |
| 368 | +# |
| 369 | +# This option has a sample default set, which means that |
| 370 | +# its actual default value may vary from the one documented |
| 371 | +# below. |
| 372 | +#driver = remote_file |
| 373 | + |
| 374 | +# Required option with the URI of the extra configuration file's location. (uri |
| 375 | +# value) |
| 376 | +# |
| 377 | +# This option has a sample default set, which means that |
| 378 | +# its actual default value may vary from the one documented |
| 379 | +# below. |
| 380 | +#uri = https://example.com/my-configuration.ini |
| 381 | + |
| 382 | +# The path to a CA_BUNDLE file or directory with certificates of trusted CAs. |
| 383 | +# (string value) |
| 384 | +# |
| 385 | +# This option has a sample default set, which means that |
| 386 | +# its actual default value may vary from the one documented |
| 387 | +# below. |
| 388 | +#ca_path = /etc/ca-certificates |
| 389 | + |
| 390 | +# Client side certificate, as a single file path containing either the |
| 391 | +# certificate only or the private key and the certificate. (string value) |
| 392 | +# |
| 393 | +# This option has a sample default set, which means that |
| 394 | +# its actual default value may vary from the one documented |
| 395 | +# below. |
| 396 | +#client_cert = /etc/ca-certificates/service-client-keystore |
| 397 | + |
| 398 | +# Client side private key, in case client_cert is specified but does not |
| 399 | +# includes the private key. (string value) |
| 400 | +#client_key = <None> |
| 401 | + |
| 402 | + |
323 | 403 | [ssm] |
324 | 404 |
|
325 | 405 | # |
|
0 commit comments