博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
logstash retrying failed action with response code: 429
阅读量:6077 次
发布时间:2019-06-20

本文共 7885 字,大约阅读时间需要 26 分钟。

https://blog.csdn.net/alan_liuyue/article/details/78926015

https://blog.csdn.net/ypc123ypc/article/details/69945031

 

 

Usage:    bin/logstash [OPTIONS]Options:    -n, --node.name NAME          Specify the name of this logstash instance, if no value is given                                  it will default to the current hostname.                                   (default: "localhost")    -f, --path.config CONFIG_PATH Load the logstash config from a specific file                                  or directory.  If a directory is given, all                                  files in that directory will be concatenated                                  in lexicographical order and then parsed as a                                  single config file. You can also specify                                  wildcards (globs) and any matched files will                                  be loaded in the order described above.    -e, --config.string CONFIG_STRING Use the given string as the configuration                                  data. Same syntax as the config file. If no                                  input is specified, then the following is                                  used as the default input:                                  "input { stdin { type => stdin } }"                                  and if no output is specified, then the                                  following is used as the default output:                                  "output { stdout { codec => rubydebug } }"                                  If you wish to use both defaults, please use                                  the empty string for the '-e' flag.                                   (default: nil)    --modules MODULES             Load Logstash modules.                                  Modules can be defined using multiple instances                                  '--modules module1 --modules module2',                                     or comma-separated syntax                                  '--modules=module1,module2'                                  Cannot be used in conjunction with '-e' or '-f'                                  Use of '--modules' will override modules declared                                  in the 'logstash.yml' file.    -M, --modules.variable MODULES_VARIABLE Load variables for module template.                                  Multiple instances of '-M' or                                  '--modules.variable' are supported.                                  Ignored if '--modules' flag is not used.                                  Should be in the format of                                  '-M "MODULE_NAME.var.PLUGIN_TYPE.PLUGIN_NAME.VARIABLE_NAME=VALUE"'                                  as in                                  '-M "example.var.filter.mutate.fieldname=fieldvalue"'    --setup                       Load index template into Elasticsearch, and saved searches,                                   index-pattern, visualizations, and dashboards into Kibana when                                  running modules.                                   (default: false)    -w, --pipeline.workers COUNT  Sets the number of pipeline workers to run.                                   (default: 4)    -b, --pipeline.batch.size SIZE Size of batches the pipeline is to work in.                                   (default: 125)    -u, --pipeline.batch.delay DELAY_IN_MS When creating pipeline batches, how long to wait while polling                                  for the next event.                                   (default: 5)    --pipeline.unsafe_shutdown    Force logstash to exit during shutdown even                                  if there are still inflight events in memory.                                  By default, logstash will refuse to quit until all                                  received events have been pushed to the outputs.                                   (default: false)    --path.data PATH              This should point to a writable directory. Logstash                                  will use this directory whenever it needs to store                                  data. Plugins will also have access to this path.                                   (default: "/data/package/logstash/data")    -p, --path.plugins PATH       A path of where to find plugins. This flag                                  can be given multiple times to include                                  multiple paths. Plugins are expected to be                                  in a specific directory hierarchy:                                  'PATH/logstash/TYPE/NAME.rb' where TYPE is                                  'inputs' 'filters', 'outputs' or 'codecs'                                  and NAME is the name of the plugin.                                   (default: [])    -l, --path.logs PATH          Write logstash internal logs to the given                                  file. Without this flag, logstash will emit                                  logs to standard output.                                   (default: "/data/package/logstash/logs")    --log.level LEVEL             Set the log level for logstash. Possible values are:                                    - fatal                                    - error                                    - warn                                    - info                                    - debug                                    - trace                                   (default: "info")    --config.debug                Print the compiled config ruby code out as a debug log (you must also have --log.level=debug enabled).                                  WARNING: This will include any 'password' options passed to plugin configs as plaintext, and may result                                  in plaintext passwords appearing in your logs!                                   (default: false)    -i, --interactive SHELL       Drop to shell instead of running as normal.                                  Valid shells are "irb" and "pry"    -V, --version                 Emit the version of logstash and its friends,                                  then exit.    -t, --config.test_and_exit    Check configuration for valid syntax and then exit.                                   (default: false)    -r, --config.reload.automatic Monitor configuration changes and reload                                  whenever it is changed.                                  NOTE: use SIGHUP to manually reload the config                                   (default: false)    --config.reload.interval RELOAD_INTERVAL How frequently to poll the configuration location                                  for changes, in seconds.                                   (default: 3)    --http.host HTTP_HOST         Web API binding host (default: "127.0.0.1")    --http.port HTTP_PORT         Web API http port (default: 9600..9700)    --log.format FORMAT           Specify if Logstash should write its own logs in JSON form (one                                  event per line) or in plain text (using Ruby's Object#inspect)                                   (default: "plain")    --path.settings SETTINGS_DIR  Directory containing logstash.yml file. This can also be                                  set through the LS_SETTINGS_DIR environment variable.                                   (default: "/data/package/logstash/config")    --verbose                     Set the log level to info.                                  DEPRECATED: use --log.level=info instead.    --debug                       Set the log level to debug.                                  DEPRECATED: use --log.level=debug instead.    --quiet                       Set the log level to info.                                  DEPRECATED: use --log.level=quiet instead.    -h, --help                    print help

 

你可能感兴趣的文章
c#插入数据库
查看>>
0922继承,练习题目-作业
查看>>
数论--高斯消元法
查看>>
用 Java 实现的日志切割清理工具(源代码下载)
查看>>
尚学堂java答案解析 第二章
查看>>
Struts2+JSON+JQUERY DEMO
查看>>
nodejs下的express安装
查看>>
Ubuntu root 密码 sudo passwd
查看>>
STL - C++ 11的Lambda表达式(下)
查看>>
Redis学习系列二之.Net开发环境搭建及基础数据结构String字符串
查看>>
JS 总结
查看>>
面向切面编程(AOP)
查看>>
第三次作业
查看>>
JDBC编程:使用 Statement 修改数据库
查看>>
ES6学习笔记(二)
查看>>
http 请求类
查看>>
elasticsearch 服务安全配置
查看>>
R3.4.0安装包时报错“需要TRUE/FALSE值的地方不可以用缺少值”,需升级到R3.5.0
查看>>
Java学习3_一些基础3_16.5.7
查看>>
通过PowerShell获取域名whois信息
查看>>