fluentd222 1.16.2-x86_64-linux
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +7 -0
 - data/.deepsource.toml +13 -0
 - data/.github/ISSUE_TEMPLATE/bug_report.yaml +71 -0
 - data/.github/ISSUE_TEMPLATE/config.yml +5 -0
 - data/.github/ISSUE_TEMPLATE/feature_request.yaml +39 -0
 - data/.github/ISSUE_TEMPLATE.md +17 -0
 - data/.github/PULL_REQUEST_TEMPLATE.md +14 -0
 - data/.github/workflows/stale-actions.yml +24 -0
 - data/.github/workflows/test-ruby-head.yaml +31 -0
 - data/.github/workflows/test.yaml +32 -0
 - data/.gitignore +30 -0
 - data/ADOPTERS.md +5 -0
 - data/AUTHORS +2 -0
 - data/CHANGELOG.md +2720 -0
 - data/CONTRIBUTING.md +45 -0
 - data/GOVERNANCE.md +55 -0
 - data/Gemfile +9 -0
 - data/GithubWorkflow.md +78 -0
 - data/LICENSE +202 -0
 - data/MAINTAINERS.md +13 -0
 - data/README.md +75 -0
 - data/Rakefile +79 -0
 - data/SECURITY.md +14 -0
 - data/bin/fluent-binlog-reader +7 -0
 - data/bin/fluent-ca-generate +6 -0
 - data/bin/fluent-cap-ctl +7 -0
 - data/bin/fluent-cat +5 -0
 - data/bin/fluent-ctl +7 -0
 - data/bin/fluent-debug +5 -0
 - data/bin/fluent-gem +9 -0
 - data/bin/fluent-plugin-config-format +5 -0
 - data/bin/fluent-plugin-generate +5 -0
 - data/bin/fluentd +15 -0
 - data/code-of-conduct.md +3 -0
 - data/docs/SECURITY_AUDIT.pdf +0 -0
 - data/example/copy_roundrobin.conf +39 -0
 - data/example/counter.conf +18 -0
 - data/example/filter_stdout.conf +22 -0
 - data/example/in_forward.conf +14 -0
 - data/example/in_forward_client.conf +37 -0
 - data/example/in_forward_shared_key.conf +15 -0
 - data/example/in_forward_tls.conf +14 -0
 - data/example/in_forward_users.conf +24 -0
 - data/example/in_forward_workers.conf +21 -0
 - data/example/in_http.conf +16 -0
 - data/example/in_out_forward.conf +17 -0
 - data/example/in_sample_blocks.conf +17 -0
 - data/example/in_sample_with_compression.conf +23 -0
 - data/example/in_syslog.conf +15 -0
 - data/example/in_tail.conf +14 -0
 - data/example/in_tcp.conf +13 -0
 - data/example/in_udp.conf +13 -0
 - data/example/logevents.conf +25 -0
 - data/example/multi_filters.conf +61 -0
 - data/example/out_copy.conf +20 -0
 - data/example/out_exec_filter.conf +42 -0
 - data/example/out_file.conf +13 -0
 - data/example/out_forward.conf +35 -0
 - data/example/out_forward_buf_file.conf +23 -0
 - data/example/out_forward_client.conf +109 -0
 - data/example/out_forward_heartbeat_none.conf +16 -0
 - data/example/out_forward_sd.conf +17 -0
 - data/example/out_forward_shared_key.conf +36 -0
 - data/example/out_forward_tls.conf +18 -0
 - data/example/out_forward_users.conf +65 -0
 - data/example/out_null.conf +36 -0
 - data/example/sd.yaml +8 -0
 - data/example/secondary_file.conf +42 -0
 - data/example/suppress_config_dump.conf +7 -0
 - data/example/v0_12_filter.conf +78 -0
 - data/example/v1_literal_example.conf +36 -0
 - data/example/worker_section.conf +36 -0
 - data/fluent.conf +139 -0
 - data/fluentd.gemspec +54 -0
 - data/lib/fluent/agent.rb +168 -0
 - data/lib/fluent/capability.rb +87 -0
 - data/lib/fluent/clock.rb +66 -0
 - data/lib/fluent/command/binlog_reader.rb +244 -0
 - data/lib/fluent/command/bundler_injection.rb +45 -0
 - data/lib/fluent/command/ca_generate.rb +184 -0
 - data/lib/fluent/command/cap_ctl.rb +174 -0
 - data/lib/fluent/command/cat.rb +365 -0
 - data/lib/fluent/command/ctl.rb +180 -0
 - data/lib/fluent/command/debug.rb +103 -0
 - data/lib/fluent/command/fluentd.rb +374 -0
 - data/lib/fluent/command/plugin_config_formatter.rb +308 -0
 - data/lib/fluent/command/plugin_generator.rb +365 -0
 - data/lib/fluent/compat/call_super_mixin.rb +76 -0
 - data/lib/fluent/compat/detach_process_mixin.rb +33 -0
 - data/lib/fluent/compat/exec_util.rb +129 -0
 - data/lib/fluent/compat/file_util.rb +54 -0
 - data/lib/fluent/compat/filter.rb +68 -0
 - data/lib/fluent/compat/formatter.rb +111 -0
 - data/lib/fluent/compat/formatter_utils.rb +85 -0
 - data/lib/fluent/compat/handle_tag_and_time_mixin.rb +62 -0
 - data/lib/fluent/compat/handle_tag_name_mixin.rb +53 -0
 - data/lib/fluent/compat/input.rb +49 -0
 - data/lib/fluent/compat/output.rb +721 -0
 - data/lib/fluent/compat/output_chain.rb +60 -0
 - data/lib/fluent/compat/parser.rb +310 -0
 - data/lib/fluent/compat/parser_utils.rb +40 -0
 - data/lib/fluent/compat/propagate_default.rb +62 -0
 - data/lib/fluent/compat/record_filter_mixin.rb +34 -0
 - data/lib/fluent/compat/set_tag_key_mixin.rb +50 -0
 - data/lib/fluent/compat/set_time_key_mixin.rb +69 -0
 - data/lib/fluent/compat/socket_util.rb +165 -0
 - data/lib/fluent/compat/string_util.rb +34 -0
 - data/lib/fluent/compat/structured_format_mixin.rb +26 -0
 - data/lib/fluent/compat/type_converter.rb +90 -0
 - data/lib/fluent/config/basic_parser.rb +123 -0
 - data/lib/fluent/config/configure_proxy.rb +424 -0
 - data/lib/fluent/config/dsl.rb +152 -0
 - data/lib/fluent/config/element.rb +265 -0
 - data/lib/fluent/config/error.rb +44 -0
 - data/lib/fluent/config/literal_parser.rb +286 -0
 - data/lib/fluent/config/parser.rb +107 -0
 - data/lib/fluent/config/section.rb +272 -0
 - data/lib/fluent/config/types.rb +249 -0
 - data/lib/fluent/config/v1_parser.rb +192 -0
 - data/lib/fluent/config/yaml_parser/fluent_value.rb +47 -0
 - data/lib/fluent/config/yaml_parser/loader.rb +108 -0
 - data/lib/fluent/config/yaml_parser/parser.rb +166 -0
 - data/lib/fluent/config/yaml_parser/section_builder.rb +107 -0
 - data/lib/fluent/config/yaml_parser.rb +56 -0
 - data/lib/fluent/config.rb +89 -0
 - data/lib/fluent/configurable.rb +201 -0
 - data/lib/fluent/counter/base_socket.rb +44 -0
 - data/lib/fluent/counter/client.rb +297 -0
 - data/lib/fluent/counter/error.rb +86 -0
 - data/lib/fluent/counter/mutex_hash.rb +163 -0
 - data/lib/fluent/counter/server.rb +273 -0
 - data/lib/fluent/counter/store.rb +205 -0
 - data/lib/fluent/counter/validator.rb +145 -0
 - data/lib/fluent/counter.rb +23 -0
 - data/lib/fluent/daemon.rb +13 -0
 - data/lib/fluent/daemonizer.rb +88 -0
 - data/lib/fluent/engine.rb +253 -0
 - data/lib/fluent/env.rb +40 -0
 - data/lib/fluent/error.rb +37 -0
 - data/lib/fluent/event.rb +330 -0
 - data/lib/fluent/event_router.rb +315 -0
 - data/lib/fluent/ext_monitor_require.rb +28 -0
 - data/lib/fluent/file_wrapper.rb +137 -0
 - data/lib/fluent/filter.rb +21 -0
 - data/lib/fluent/fluent_log_event_router.rb +139 -0
 - data/lib/fluent/formatter.rb +23 -0
 - data/lib/fluent/input.rb +21 -0
 - data/lib/fluent/label.rb +46 -0
 - data/lib/fluent/load.rb +34 -0
 - data/lib/fluent/log/console_adapter.rb +66 -0
 - data/lib/fluent/log.rb +752 -0
 - data/lib/fluent/match.rb +187 -0
 - data/lib/fluent/mixin.rb +31 -0
 - data/lib/fluent/msgpack_factory.rb +111 -0
 - data/lib/fluent/oj_options.rb +61 -0
 - data/lib/fluent/output.rb +29 -0
 - data/lib/fluent/output_chain.rb +23 -0
 - data/lib/fluent/parser.rb +23 -0
 - data/lib/fluent/plugin/bare_output.rb +104 -0
 - data/lib/fluent/plugin/base.rb +214 -0
 - data/lib/fluent/plugin/buf_file.rb +242 -0
 - data/lib/fluent/plugin/buf_file_single.rb +254 -0
 - data/lib/fluent/plugin/buf_memory.rb +34 -0
 - data/lib/fluent/plugin/buffer/chunk.rb +240 -0
 - data/lib/fluent/plugin/buffer/file_chunk.rb +413 -0
 - data/lib/fluent/plugin/buffer/file_single_chunk.rb +310 -0
 - data/lib/fluent/plugin/buffer/memory_chunk.rb +91 -0
 - data/lib/fluent/plugin/buffer.rb +941 -0
 - data/lib/fluent/plugin/compressable.rb +96 -0
 - data/lib/fluent/plugin/exec_util.rb +22 -0
 - data/lib/fluent/plugin/file_util.rb +22 -0
 - data/lib/fluent/plugin/filter.rb +127 -0
 - data/lib/fluent/plugin/filter_grep.rb +189 -0
 - data/lib/fluent/plugin/filter_parser.rb +130 -0
 - data/lib/fluent/plugin/filter_record_transformer.rb +324 -0
 - data/lib/fluent/plugin/filter_stdout.rb +53 -0
 - data/lib/fluent/plugin/formatter.rb +75 -0
 - data/lib/fluent/plugin/formatter_csv.rb +78 -0
 - data/lib/fluent/plugin/formatter_hash.rb +35 -0
 - data/lib/fluent/plugin/formatter_json.rb +59 -0
 - data/lib/fluent/plugin/formatter_ltsv.rb +44 -0
 - data/lib/fluent/plugin/formatter_msgpack.rb +33 -0
 - data/lib/fluent/plugin/formatter_out_file.rb +53 -0
 - data/lib/fluent/plugin/formatter_single_value.rb +36 -0
 - data/lib/fluent/plugin/formatter_stdout.rb +76 -0
 - data/lib/fluent/plugin/formatter_tsv.rb +40 -0
 - data/lib/fluent/plugin/in_debug_agent.rb +71 -0
 - data/lib/fluent/plugin/in_dummy.rb +18 -0
 - data/lib/fluent/plugin/in_exec.rb +110 -0
 - data/lib/fluent/plugin/in_forward.rb +473 -0
 - data/lib/fluent/plugin/in_gc_stat.rb +72 -0
 - data/lib/fluent/plugin/in_http.rb +677 -0
 - data/lib/fluent/plugin/in_monitor_agent.rb +412 -0
 - data/lib/fluent/plugin/in_object_space.rb +93 -0
 - data/lib/fluent/plugin/in_sample.rb +141 -0
 - data/lib/fluent/plugin/in_syslog.rb +276 -0
 - data/lib/fluent/plugin/in_tail/group_watch.rb +204 -0
 - data/lib/fluent/plugin/in_tail/position_file.rb +269 -0
 - data/lib/fluent/plugin/in_tail.rb +1299 -0
 - data/lib/fluent/plugin/in_tcp.rb +226 -0
 - data/lib/fluent/plugin/in_udp.rb +92 -0
 - data/lib/fluent/plugin/in_unix.rb +195 -0
 - data/lib/fluent/plugin/input.rb +75 -0
 - data/lib/fluent/plugin/metrics.rb +119 -0
 - data/lib/fluent/plugin/metrics_local.rb +96 -0
 - data/lib/fluent/plugin/multi_output.rb +195 -0
 - data/lib/fluent/plugin/out_copy.rb +120 -0
 - data/lib/fluent/plugin/out_exec.rb +105 -0
 - data/lib/fluent/plugin/out_exec_filter.rb +319 -0
 - data/lib/fluent/plugin/out_file.rb +340 -0
 - data/lib/fluent/plugin/out_forward/ack_handler.rb +176 -0
 - data/lib/fluent/plugin/out_forward/connection_manager.rb +113 -0
 - data/lib/fluent/plugin/out_forward/error.rb +28 -0
 - data/lib/fluent/plugin/out_forward/failure_detector.rb +84 -0
 - data/lib/fluent/plugin/out_forward/handshake_protocol.rb +125 -0
 - data/lib/fluent/plugin/out_forward/load_balancer.rb +114 -0
 - data/lib/fluent/plugin/out_forward/socket_cache.rb +142 -0
 - data/lib/fluent/plugin/out_forward.rb +826 -0
 - data/lib/fluent/plugin/out_http.rb +275 -0
 - data/lib/fluent/plugin/out_null.rb +74 -0
 - data/lib/fluent/plugin/out_relabel.rb +32 -0
 - data/lib/fluent/plugin/out_roundrobin.rb +84 -0
 - data/lib/fluent/plugin/out_secondary_file.rb +148 -0
 - data/lib/fluent/plugin/out_stdout.rb +74 -0
 - data/lib/fluent/plugin/out_stream.rb +130 -0
 - data/lib/fluent/plugin/output.rb +1603 -0
 - data/lib/fluent/plugin/owned_by_mixin.rb +41 -0
 - data/lib/fluent/plugin/parser.rb +274 -0
 - data/lib/fluent/plugin/parser_apache.rb +28 -0
 - data/lib/fluent/plugin/parser_apache2.rb +88 -0
 - data/lib/fluent/plugin/parser_apache_error.rb +26 -0
 - data/lib/fluent/plugin/parser_csv.rb +114 -0
 - data/lib/fluent/plugin/parser_json.rb +96 -0
 - data/lib/fluent/plugin/parser_ltsv.rb +51 -0
 - data/lib/fluent/plugin/parser_msgpack.rb +50 -0
 - data/lib/fluent/plugin/parser_multiline.rb +152 -0
 - data/lib/fluent/plugin/parser_nginx.rb +28 -0
 - data/lib/fluent/plugin/parser_none.rb +36 -0
 - data/lib/fluent/plugin/parser_regexp.rb +68 -0
 - data/lib/fluent/plugin/parser_syslog.rb +496 -0
 - data/lib/fluent/plugin/parser_tsv.rb +42 -0
 - data/lib/fluent/plugin/sd_file.rb +156 -0
 - data/lib/fluent/plugin/sd_srv.rb +135 -0
 - data/lib/fluent/plugin/sd_static.rb +58 -0
 - data/lib/fluent/plugin/service_discovery.rb +65 -0
 - data/lib/fluent/plugin/socket_util.rb +22 -0
 - data/lib/fluent/plugin/storage.rb +84 -0
 - data/lib/fluent/plugin/storage_local.rb +162 -0
 - data/lib/fluent/plugin/string_util.rb +22 -0
 - data/lib/fluent/plugin.rb +206 -0
 - data/lib/fluent/plugin_helper/cert_option.rb +191 -0
 - data/lib/fluent/plugin_helper/child_process.rb +369 -0
 - data/lib/fluent/plugin_helper/compat_parameters.rb +343 -0
 - data/lib/fluent/plugin_helper/counter.rb +51 -0
 - data/lib/fluent/plugin_helper/event_emitter.rb +100 -0
 - data/lib/fluent/plugin_helper/event_loop.rb +170 -0
 - data/lib/fluent/plugin_helper/extract.rb +104 -0
 - data/lib/fluent/plugin_helper/formatter.rb +147 -0
 - data/lib/fluent/plugin_helper/http_server/app.rb +79 -0
 - data/lib/fluent/plugin_helper/http_server/compat/server.rb +92 -0
 - data/lib/fluent/plugin_helper/http_server/compat/ssl_context_extractor.rb +52 -0
 - data/lib/fluent/plugin_helper/http_server/compat/webrick_handler.rb +58 -0
 - data/lib/fluent/plugin_helper/http_server/methods.rb +35 -0
 - data/lib/fluent/plugin_helper/http_server/request.rb +42 -0
 - data/lib/fluent/plugin_helper/http_server/router.rb +54 -0
 - data/lib/fluent/plugin_helper/http_server/server.rb +94 -0
 - data/lib/fluent/plugin_helper/http_server/ssl_context_builder.rb +41 -0
 - data/lib/fluent/plugin_helper/http_server.rb +135 -0
 - data/lib/fluent/plugin_helper/inject.rb +154 -0
 - data/lib/fluent/plugin_helper/metrics.rb +129 -0
 - data/lib/fluent/plugin_helper/parser.rb +147 -0
 - data/lib/fluent/plugin_helper/record_accessor.rb +207 -0
 - data/lib/fluent/plugin_helper/retry_state.rb +219 -0
 - data/lib/fluent/plugin_helper/server.rb +828 -0
 - data/lib/fluent/plugin_helper/service_discovery/manager.rb +146 -0
 - data/lib/fluent/plugin_helper/service_discovery/round_robin_balancer.rb +43 -0
 - data/lib/fluent/plugin_helper/service_discovery.rb +125 -0
 - data/lib/fluent/plugin_helper/socket.rb +288 -0
 - data/lib/fluent/plugin_helper/socket_option.rb +98 -0
 - data/lib/fluent/plugin_helper/storage.rb +349 -0
 - data/lib/fluent/plugin_helper/thread.rb +180 -0
 - data/lib/fluent/plugin_helper/timer.rb +92 -0
 - data/lib/fluent/plugin_helper.rb +75 -0
 - data/lib/fluent/plugin_id.rb +93 -0
 - data/lib/fluent/process.rb +22 -0
 - data/lib/fluent/registry.rb +117 -0
 - data/lib/fluent/root_agent.rb +372 -0
 - data/lib/fluent/rpc.rb +95 -0
 - data/lib/fluent/static_config_analysis.rb +194 -0
 - data/lib/fluent/supervisor.rb +1076 -0
 - data/lib/fluent/system_config.rb +189 -0
 - data/lib/fluent/test/base.rb +78 -0
 - data/lib/fluent/test/driver/base.rb +231 -0
 - data/lib/fluent/test/driver/base_owned.rb +83 -0
 - data/lib/fluent/test/driver/base_owner.rb +135 -0
 - data/lib/fluent/test/driver/event_feeder.rb +98 -0
 - data/lib/fluent/test/driver/filter.rb +61 -0
 - data/lib/fluent/test/driver/formatter.rb +30 -0
 - data/lib/fluent/test/driver/input.rb +31 -0
 - data/lib/fluent/test/driver/multi_output.rb +53 -0
 - data/lib/fluent/test/driver/output.rb +102 -0
 - data/lib/fluent/test/driver/parser.rb +30 -0
 - data/lib/fluent/test/driver/storage.rb +30 -0
 - data/lib/fluent/test/driver/test_event_router.rb +45 -0
 - data/lib/fluent/test/filter_test.rb +77 -0
 - data/lib/fluent/test/formatter_test.rb +65 -0
 - data/lib/fluent/test/helpers.rb +134 -0
 - data/lib/fluent/test/input_test.rb +174 -0
 - data/lib/fluent/test/log.rb +79 -0
 - data/lib/fluent/test/output_test.rb +156 -0
 - data/lib/fluent/test/parser_test.rb +70 -0
 - data/lib/fluent/test/startup_shutdown.rb +44 -0
 - data/lib/fluent/test.rb +58 -0
 - data/lib/fluent/time.rb +512 -0
 - data/lib/fluent/timezone.rb +171 -0
 - data/lib/fluent/tls.rb +81 -0
 - data/lib/fluent/unique_id.rb +39 -0
 - data/lib/fluent/variable_store.rb +40 -0
 - data/lib/fluent/version.rb +21 -0
 - data/lib/fluent/win32api.rb +38 -0
 - data/lib/fluent/winsvc.rb +100 -0
 - data/templates/new_gem/Gemfile +3 -0
 - data/templates/new_gem/README.md.erb +43 -0
 - data/templates/new_gem/Rakefile +13 -0
 - data/templates/new_gem/fluent-plugin.gemspec.erb +27 -0
 - data/templates/new_gem/lib/fluent/plugin/filter.rb.erb +14 -0
 - data/templates/new_gem/lib/fluent/plugin/formatter.rb.erb +14 -0
 - data/templates/new_gem/lib/fluent/plugin/input.rb.erb +11 -0
 - data/templates/new_gem/lib/fluent/plugin/output.rb.erb +11 -0
 - data/templates/new_gem/lib/fluent/plugin/parser.rb.erb +15 -0
 - data/templates/new_gem/lib/fluent/plugin/storage.rb.erb +40 -0
 - data/templates/new_gem/test/helper.rb.erb +7 -0
 - data/templates/new_gem/test/plugin/test_filter.rb.erb +18 -0
 - data/templates/new_gem/test/plugin/test_formatter.rb.erb +18 -0
 - data/templates/new_gem/test/plugin/test_input.rb.erb +18 -0
 - data/templates/new_gem/test/plugin/test_output.rb.erb +18 -0
 - data/templates/new_gem/test/plugin/test_parser.rb.erb +18 -0
 - data/templates/new_gem/test/plugin/test_storage.rb.erb +18 -0
 - data/templates/plugin_config_formatter/param.md-compact.erb +25 -0
 - data/templates/plugin_config_formatter/param.md-table.erb +10 -0
 - data/templates/plugin_config_formatter/param.md.erb +34 -0
 - data/templates/plugin_config_formatter/section.md.erb +12 -0
 - data/test/command/test_binlog_reader.rb +362 -0
 - data/test/command/test_ca_generate.rb +70 -0
 - data/test/command/test_cap_ctl.rb +100 -0
 - data/test/command/test_cat.rb +128 -0
 - data/test/command/test_ctl.rb +56 -0
 - data/test/command/test_fluentd.rb +1291 -0
 - data/test/command/test_plugin_config_formatter.rb +397 -0
 - data/test/command/test_plugin_generator.rb +109 -0
 - data/test/compat/test_calls_super.rb +166 -0
 - data/test/compat/test_parser.rb +92 -0
 - data/test/config/assertions.rb +42 -0
 - data/test/config/test_config_parser.rb +551 -0
 - data/test/config/test_configurable.rb +1784 -0
 - data/test/config/test_configure_proxy.rb +604 -0
 - data/test/config/test_dsl.rb +415 -0
 - data/test/config/test_element.rb +518 -0
 - data/test/config/test_literal_parser.rb +309 -0
 - data/test/config/test_plugin_configuration.rb +56 -0
 - data/test/config/test_section.rb +191 -0
 - data/test/config/test_system_config.rb +195 -0
 - data/test/config/test_types.rb +408 -0
 - data/test/counter/test_client.rb +563 -0
 - data/test/counter/test_error.rb +44 -0
 - data/test/counter/test_mutex_hash.rb +179 -0
 - data/test/counter/test_server.rb +589 -0
 - data/test/counter/test_store.rb +258 -0
 - data/test/counter/test_validator.rb +137 -0
 - data/test/helper.rb +155 -0
 - data/test/helpers/fuzzy_assert.rb +89 -0
 - data/test/helpers/process_extenstion.rb +33 -0
 - data/test/log/test_console_adapter.rb +110 -0
 - data/test/plugin/data/2010/01/20100102-030405.log +0 -0
 - data/test/plugin/data/2010/01/20100102-030406.log +0 -0
 - data/test/plugin/data/2010/01/20100102.log +0 -0
 - data/test/plugin/data/log/bar +0 -0
 - data/test/plugin/data/log/foo/bar.log +0 -0
 - data/test/plugin/data/log/foo/bar2 +0 -0
 - data/test/plugin/data/log/test.log +0 -0
 - data/test/plugin/data/sd_file/config +11 -0
 - data/test/plugin/data/sd_file/config.json +17 -0
 - data/test/plugin/data/sd_file/config.yaml +11 -0
 - data/test/plugin/data/sd_file/config.yml +11 -0
 - data/test/plugin/data/sd_file/invalid_config.yml +7 -0
 - data/test/plugin/in_tail/test_fifo.rb +121 -0
 - data/test/plugin/in_tail/test_io_handler.rb +150 -0
 - data/test/plugin/in_tail/test_position_file.rb +346 -0
 - data/test/plugin/out_forward/test_ack_handler.rb +140 -0
 - data/test/plugin/out_forward/test_connection_manager.rb +145 -0
 - data/test/plugin/out_forward/test_handshake_protocol.rb +112 -0
 - data/test/plugin/out_forward/test_load_balancer.rb +106 -0
 - data/test/plugin/out_forward/test_socket_cache.rb +174 -0
 - data/test/plugin/test_bare_output.rb +131 -0
 - data/test/plugin/test_base.rb +247 -0
 - data/test/plugin/test_buf_file.rb +1314 -0
 - data/test/plugin/test_buf_file_single.rb +898 -0
 - data/test/plugin/test_buf_memory.rb +42 -0
 - data/test/plugin/test_buffer.rb +1434 -0
 - data/test/plugin/test_buffer_chunk.rb +209 -0
 - data/test/plugin/test_buffer_file_chunk.rb +871 -0
 - data/test/plugin/test_buffer_file_single_chunk.rb +611 -0
 - data/test/plugin/test_buffer_memory_chunk.rb +339 -0
 - data/test/plugin/test_compressable.rb +87 -0
 - data/test/plugin/test_file_util.rb +96 -0
 - data/test/plugin/test_filter.rb +368 -0
 - data/test/plugin/test_filter_grep.rb +697 -0
 - data/test/plugin/test_filter_parser.rb +731 -0
 - data/test/plugin/test_filter_record_transformer.rb +577 -0
 - data/test/plugin/test_filter_stdout.rb +207 -0
 - data/test/plugin/test_formatter_csv.rb +136 -0
 - data/test/plugin/test_formatter_hash.rb +38 -0
 - data/test/plugin/test_formatter_json.rb +61 -0
 - data/test/plugin/test_formatter_ltsv.rb +70 -0
 - data/test/plugin/test_formatter_msgpack.rb +28 -0
 - data/test/plugin/test_formatter_out_file.rb +116 -0
 - data/test/plugin/test_formatter_single_value.rb +44 -0
 - data/test/plugin/test_formatter_tsv.rb +76 -0
 - data/test/plugin/test_in_debug_agent.rb +49 -0
 - data/test/plugin/test_in_exec.rb +261 -0
 - data/test/plugin/test_in_forward.rb +1178 -0
 - data/test/plugin/test_in_gc_stat.rb +62 -0
 - data/test/plugin/test_in_http.rb +1102 -0
 - data/test/plugin/test_in_monitor_agent.rb +922 -0
 - data/test/plugin/test_in_object_space.rb +66 -0
 - data/test/plugin/test_in_sample.rb +190 -0
 - data/test/plugin/test_in_syslog.rb +505 -0
 - data/test/plugin/test_in_tail.rb +3125 -0
 - data/test/plugin/test_in_tcp.rb +328 -0
 - data/test/plugin/test_in_udp.rb +296 -0
 - data/test/plugin/test_in_unix.rb +181 -0
 - data/test/plugin/test_input.rb +137 -0
 - data/test/plugin/test_metadata.rb +89 -0
 - data/test/plugin/test_metrics.rb +294 -0
 - data/test/plugin/test_metrics_local.rb +96 -0
 - data/test/plugin/test_multi_output.rb +204 -0
 - data/test/plugin/test_out_copy.rb +308 -0
 - data/test/plugin/test_out_exec.rb +312 -0
 - data/test/plugin/test_out_exec_filter.rb +606 -0
 - data/test/plugin/test_out_file.rb +1038 -0
 - data/test/plugin/test_out_forward.rb +1361 -0
 - data/test/plugin/test_out_http.rb +429 -0
 - data/test/plugin/test_out_null.rb +105 -0
 - data/test/plugin/test_out_relabel.rb +28 -0
 - data/test/plugin/test_out_roundrobin.rb +146 -0
 - data/test/plugin/test_out_secondary_file.rb +458 -0
 - data/test/plugin/test_out_stdout.rb +205 -0
 - data/test/plugin/test_out_stream.rb +103 -0
 - data/test/plugin/test_output.rb +1334 -0
 - data/test/plugin/test_output_as_buffered.rb +2024 -0
 - data/test/plugin/test_output_as_buffered_backup.rb +363 -0
 - data/test/plugin/test_output_as_buffered_compress.rb +179 -0
 - data/test/plugin/test_output_as_buffered_overflow.rb +250 -0
 - data/test/plugin/test_output_as_buffered_retries.rb +966 -0
 - data/test/plugin/test_output_as_buffered_secondary.rb +882 -0
 - data/test/plugin/test_output_as_standard.rb +374 -0
 - data/test/plugin/test_owned_by.rb +34 -0
 - data/test/plugin/test_parser.rb +399 -0
 - data/test/plugin/test_parser_apache.rb +42 -0
 - data/test/plugin/test_parser_apache2.rb +47 -0
 - data/test/plugin/test_parser_apache_error.rb +45 -0
 - data/test/plugin/test_parser_csv.rb +200 -0
 - data/test/plugin/test_parser_json.rb +138 -0
 - data/test/plugin/test_parser_labeled_tsv.rb +160 -0
 - data/test/plugin/test_parser_multiline.rb +111 -0
 - data/test/plugin/test_parser_nginx.rb +88 -0
 - data/test/plugin/test_parser_none.rb +52 -0
 - data/test/plugin/test_parser_regexp.rb +284 -0
 - data/test/plugin/test_parser_syslog.rb +650 -0
 - data/test/plugin/test_parser_tsv.rb +122 -0
 - data/test/plugin/test_sd_file.rb +228 -0
 - data/test/plugin/test_sd_srv.rb +230 -0
 - data/test/plugin/test_storage.rb +166 -0
 - data/test/plugin/test_storage_local.rb +335 -0
 - data/test/plugin/test_string_util.rb +26 -0
 - data/test/plugin_helper/data/cert/cert-key.pem +27 -0
 - data/test/plugin_helper/data/cert/cert-with-CRLF.pem +19 -0
 - data/test/plugin_helper/data/cert/cert-with-no-newline.pem +19 -0
 - data/test/plugin_helper/data/cert/cert.pem +19 -0
 - data/test/plugin_helper/data/cert/cert_chains/ca-cert-key.pem +27 -0
 - data/test/plugin_helper/data/cert/cert_chains/ca-cert.pem +20 -0
 - data/test/plugin_helper/data/cert/cert_chains/cert-key.pem +27 -0
 - data/test/plugin_helper/data/cert/cert_chains/cert.pem +40 -0
 - data/test/plugin_helper/data/cert/empty.pem +0 -0
 - data/test/plugin_helper/data/cert/generate_cert.rb +125 -0
 - data/test/plugin_helper/data/cert/with_ca/ca-cert-key-pass.pem +30 -0
 - data/test/plugin_helper/data/cert/with_ca/ca-cert-key.pem +27 -0
 - data/test/plugin_helper/data/cert/with_ca/ca-cert-pass.pem +20 -0
 - data/test/plugin_helper/data/cert/with_ca/ca-cert.pem +20 -0
 - data/test/plugin_helper/data/cert/with_ca/cert-key-pass.pem +30 -0
 - data/test/plugin_helper/data/cert/with_ca/cert-key.pem +27 -0
 - data/test/plugin_helper/data/cert/with_ca/cert-pass.pem +21 -0
 - data/test/plugin_helper/data/cert/with_ca/cert.pem +21 -0
 - data/test/plugin_helper/data/cert/without_ca/cert-key-pass.pem +30 -0
 - data/test/plugin_helper/data/cert/without_ca/cert-key.pem +27 -0
 - data/test/plugin_helper/data/cert/without_ca/cert-pass.pem +20 -0
 - data/test/plugin_helper/data/cert/without_ca/cert.pem +20 -0
 - data/test/plugin_helper/http_server/test_app.rb +65 -0
 - data/test/plugin_helper/http_server/test_route.rb +32 -0
 - data/test/plugin_helper/service_discovery/test_manager.rb +93 -0
 - data/test/plugin_helper/service_discovery/test_round_robin_balancer.rb +21 -0
 - data/test/plugin_helper/test_cert_option.rb +25 -0
 - data/test/plugin_helper/test_child_process.rb +862 -0
 - data/test/plugin_helper/test_compat_parameters.rb +358 -0
 - data/test/plugin_helper/test_event_emitter.rb +80 -0
 - data/test/plugin_helper/test_event_loop.rb +52 -0
 - data/test/plugin_helper/test_extract.rb +194 -0
 - data/test/plugin_helper/test_formatter.rb +255 -0
 - data/test/plugin_helper/test_http_server_helper.rb +372 -0
 - data/test/plugin_helper/test_inject.rb +561 -0
 - data/test/plugin_helper/test_metrics.rb +137 -0
 - data/test/plugin_helper/test_parser.rb +264 -0
 - data/test/plugin_helper/test_record_accessor.rb +238 -0
 - data/test/plugin_helper/test_retry_state.rb +1006 -0
 - data/test/plugin_helper/test_server.rb +1895 -0
 - data/test/plugin_helper/test_service_discovery.rb +165 -0
 - data/test/plugin_helper/test_socket.rb +146 -0
 - data/test/plugin_helper/test_storage.rb +542 -0
 - data/test/plugin_helper/test_thread.rb +164 -0
 - data/test/plugin_helper/test_timer.rb +130 -0
 - data/test/scripts/exec_script.rb +32 -0
 - data/test/scripts/fluent/plugin/formatter1/formatter_test1.rb +7 -0
 - data/test/scripts/fluent/plugin/formatter2/formatter_test2.rb +7 -0
 - data/test/scripts/fluent/plugin/formatter_known.rb +8 -0
 - data/test/scripts/fluent/plugin/out_test.rb +81 -0
 - data/test/scripts/fluent/plugin/out_test2.rb +80 -0
 - data/test/scripts/fluent/plugin/parser_known.rb +4 -0
 - data/test/test_capability.rb +74 -0
 - data/test/test_clock.rb +164 -0
 - data/test/test_config.rb +369 -0
 - data/test/test_configdsl.rb +148 -0
 - data/test/test_daemonizer.rb +91 -0
 - data/test/test_engine.rb +203 -0
 - data/test/test_event.rb +531 -0
 - data/test/test_event_router.rb +348 -0
 - data/test/test_event_time.rb +199 -0
 - data/test/test_file_wrapper.rb +53 -0
 - data/test/test_filter.rb +121 -0
 - data/test/test_fluent_log_event_router.rb +99 -0
 - data/test/test_formatter.rb +369 -0
 - data/test/test_input.rb +31 -0
 - data/test/test_log.rb +1076 -0
 - data/test/test_match.rb +148 -0
 - data/test/test_mixin.rb +351 -0
 - data/test/test_msgpack_factory.rb +50 -0
 - data/test/test_oj_options.rb +55 -0
 - data/test/test_output.rb +278 -0
 - data/test/test_plugin.rb +251 -0
 - data/test/test_plugin_classes.rb +370 -0
 - data/test/test_plugin_helper.rb +81 -0
 - data/test/test_plugin_id.rb +119 -0
 - data/test/test_process.rb +14 -0
 - data/test/test_root_agent.rb +951 -0
 - data/test/test_static_config_analysis.rb +177 -0
 - data/test/test_supervisor.rb +821 -0
 - data/test/test_test_drivers.rb +136 -0
 - data/test/test_time_formatter.rb +301 -0
 - data/test/test_time_parser.rb +362 -0
 - data/test/test_tls.rb +65 -0
 - data/test/test_unique_id.rb +47 -0
 - data/test/test_variable_store.rb +65 -0
 - metadata +1183 -0
 
| 
         @@ -0,0 +1,496 @@ 
     | 
|
| 
      
 1 
     | 
    
         
            +
            #
         
     | 
| 
      
 2 
     | 
    
         
            +
            # Fluentd
         
     | 
| 
      
 3 
     | 
    
         
            +
            #
         
     | 
| 
      
 4 
     | 
    
         
            +
            #    Licensed under the Apache License, Version 2.0 (the "License");
         
     | 
| 
      
 5 
     | 
    
         
            +
            #    you may not use this file except in compliance with the License.
         
     | 
| 
      
 6 
     | 
    
         
            +
            #    You may obtain a copy of the License at
         
     | 
| 
      
 7 
     | 
    
         
            +
            #
         
     | 
| 
      
 8 
     | 
    
         
            +
            #        http://www.apache.org/licenses/LICENSE-2.0
         
     | 
| 
      
 9 
     | 
    
         
            +
            #
         
     | 
| 
      
 10 
     | 
    
         
            +
            #    Unless required by applicable law or agreed to in writing, software
         
     | 
| 
      
 11 
     | 
    
         
            +
            #    distributed under the License is distributed on an "AS IS" BASIS,
         
     | 
| 
      
 12 
     | 
    
         
            +
            #    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
         
     | 
| 
      
 13 
     | 
    
         
            +
            #    See the License for the specific language governing permissions and
         
     | 
| 
      
 14 
     | 
    
         
            +
            #    limitations under the License.
         
     | 
| 
      
 15 
     | 
    
         
            +
            #
         
     | 
| 
      
 16 
     | 
    
         
            +
             
     | 
| 
      
 17 
     | 
    
         
            +
            require 'fluent/plugin/parser'
         
     | 
| 
      
 18 
     | 
    
         
            +
             
     | 
| 
      
 19 
     | 
    
         
            +
            require 'fluent/time'
         
     | 
| 
      
 20 
     | 
    
         
            +
             
     | 
| 
      
 21 
     | 
    
         
            +
            module Fluent
         
     | 
| 
      
 22 
     | 
    
         
            +
              module Plugin
         
     | 
| 
      
 23 
     | 
    
         
            +
                class SyslogParser < Parser
         
     | 
| 
      
 24 
     | 
    
         
            +
                  Plugin.register_parser('syslog', self)
         
     | 
| 
      
 25 
     | 
    
         
            +
             
     | 
| 
      
 26 
     | 
    
         
            +
                  # TODO: Remove them since these regexps are no longer needed. but keep them for compatibility for now
         
     | 
| 
      
 27 
     | 
    
         
            +
                  # From existence TextParser pattern
         
     | 
| 
      
 28 
     | 
    
         
            +
                  REGEXP = /^(?<time>[^ ]*\s*[^ ]* [^ ]*) (?<host>[^ ]*) (?<ident>[^ :\[]*)(?:\[(?<pid>[0-9]+)\])?(?:[^\:]*\:)? *(?<message>.*)$/
         
     | 
| 
      
 29 
     | 
    
         
            +
                  # From in_syslog default pattern
         
     | 
| 
      
 30 
     | 
    
         
            +
                  REGEXP_WITH_PRI = /^\<(?<pri>[0-9]+)\>(?<time>[^ ]* {1,2}[^ ]* [^ ]*) (?<host>[^ ]*) (?<ident>[^ :\[]*)(?:\[(?<pid>[0-9]+)\])?(?:[^\:]*\:)? *(?<message>.*)$/
         
     | 
| 
      
 31 
     | 
    
         
            +
                  REGEXP_RFC5424 = <<~'EOS'.chomp
         
     | 
| 
      
 32 
     | 
    
         
            +
                    (?<time>[^ ]+) (?<host>[!-~]{1,255}) (?<ident>[!-~]{1,48}) (?<pid>[!-~]{1,128}) (?<msgid>[!-~]{1,32}) (?<extradata>(?:\-|(?:\[.*?(?<!\\)\])+))(?: (?<message>.+))?
         
     | 
| 
      
 33 
     | 
    
         
            +
                  EOS
         
     | 
| 
      
 34 
     | 
    
         
            +
                  REGEXP_RFC5424_NO_PRI = Regexp.new(<<~'EOS'.chomp % REGEXP_RFC5424, Regexp::MULTILINE)
         
     | 
| 
      
 35 
     | 
    
         
            +
                    \A%s\z
         
     | 
| 
      
 36 
     | 
    
         
            +
                  EOS
         
     | 
| 
      
 37 
     | 
    
         
            +
                  REGEXP_RFC5424_WITH_PRI = Regexp.new(<<~'EOS'.chomp % REGEXP_RFC5424, Regexp::MULTILINE)
         
     | 
| 
      
 38 
     | 
    
         
            +
                    \A<(?<pri>[0-9]{1,3})\>[1-9]\d{0,2} %s\z
         
     | 
| 
      
 39 
     | 
    
         
            +
                  EOS
         
     | 
| 
      
 40 
     | 
    
         
            +
             
     | 
| 
      
 41 
     | 
    
         
            +
                  REGEXP_DETECT_RFC5424 = /^\<[0-9]{1,3}\>[1-9]\d{0,2}/
         
     | 
| 
      
 42 
     | 
    
         
            +
             
     | 
| 
      
 43 
     | 
    
         
            +
                  RFC3164_WITHOUT_TIME_AND_PRI_REGEXP = /(?<host>[^ ]*) (?<ident>[^ :\[]*)(?:\[(?<pid>[0-9]+)\])?(?:[^\:]*\:)? *(?<message>.*)$/
         
     | 
| 
      
 44 
     | 
    
         
            +
                  RFC3164_CAPTURES = RFC3164_WITHOUT_TIME_AND_PRI_REGEXP.names.freeze
         
     | 
| 
      
 45 
     | 
    
         
            +
                  RFC3164_PRI_REGEXP = /^<(?<pri>[0-9]{1,3})>/
         
     | 
| 
      
 46 
     | 
    
         
            +
             
     | 
| 
      
 47 
     | 
    
         
            +
                  RFC5424_WITHOUT_TIME_AND_PRI_REGEXP = /(?<host>[!-~]{1,255}) (?<ident>[!-~]{1,48}) (?<pid>[!-~]{1,128}) (?<msgid>[!-~]{1,32}) (?<extradata>(?:\-|(?:\[.*?(?<!\\)\])+))(?: (?<message>.+))?\z/m
         
     | 
| 
      
 48 
     | 
    
         
            +
                  RFC5424_CAPTURES = RFC5424_WITHOUT_TIME_AND_PRI_REGEXP.names.freeze
         
     | 
| 
      
 49 
     | 
    
         
            +
                  RFC5424_PRI_REGEXP = /^<(?<pri>\d{1,3})>\d\d{0,2}\s/
         
     | 
| 
      
 50 
     | 
    
         
            +
             
     | 
| 
      
 51 
     | 
    
         
            +
                  config_set_default :time_format, "%b %d %H:%M:%S"
         
     | 
| 
      
 52 
     | 
    
         
            +
                  desc 'If the incoming logs have priority prefix, e.g. <9>, set true'
         
     | 
| 
      
 53 
     | 
    
         
            +
                  config_param :with_priority, :bool, default: false
         
     | 
| 
      
 54 
     | 
    
         
            +
                  desc 'Specify protocol format'
         
     | 
| 
      
 55 
     | 
    
         
            +
                  config_param :message_format, :enum, list: [:rfc3164, :rfc5424, :auto], default: :rfc3164
         
     | 
| 
      
 56 
     | 
    
         
            +
                  desc 'Specify time format for event time for rfc5424 protocol'
         
     | 
| 
      
 57 
     | 
    
         
            +
                  config_param :rfc5424_time_format, :string, default: "%Y-%m-%dT%H:%M:%S.%L%z"
         
     | 
| 
      
 58 
     | 
    
         
            +
                  desc 'The parser type used to parse syslog message'
         
     | 
| 
      
 59 
     | 
    
         
            +
                  config_param :parser_engine, :enum, list: [:regexp, :string], default: :regexp, alias: :parser_type
         
     | 
| 
      
 60 
     | 
    
         
            +
                  desc 'support colonless ident in string parser'
         
     | 
| 
      
 61 
     | 
    
         
            +
                  config_param :support_colonless_ident, :bool, default: true
         
     | 
| 
      
 62 
     | 
    
         
            +
             
     | 
| 
      
 63 
     | 
    
         
            +
                  def initialize
         
     | 
| 
      
 64 
     | 
    
         
            +
                    super
         
     | 
| 
      
 65 
     | 
    
         
            +
                    @mutex = Mutex.new
         
     | 
| 
      
 66 
     | 
    
         
            +
                    @regexp = nil
         
     | 
| 
      
 67 
     | 
    
         
            +
                    @regexp3164 = nil
         
     | 
| 
      
 68 
     | 
    
         
            +
                    @regexp5424 = nil
         
     | 
| 
      
 69 
     | 
    
         
            +
                    @regexp_parser = nil
         
     | 
| 
      
 70 
     | 
    
         
            +
                    @time_parser_rfc3164 = nil
         
     | 
| 
      
 71 
     | 
    
         
            +
                    @time_parser_rfc5424 = nil
         
     | 
| 
      
 72 
     | 
    
         
            +
                    @space_count_rfc3164 = nil
         
     | 
| 
      
 73 
     | 
    
         
            +
                    @space_count_rfc5424 = nil
         
     | 
| 
      
 74 
     | 
    
         
            +
                    @skip_space_count_rfc3164 = false
         
     | 
| 
      
 75 
     | 
    
         
            +
                    @skip_space_count_rfc5424 = false
         
     | 
| 
      
 76 
     | 
    
         
            +
                    @time_parser_rfc5424_without_subseconds = nil
         
     | 
| 
      
 77 
     | 
    
         
            +
                  end
         
     | 
| 
      
 78 
     | 
    
         
            +
             
     | 
| 
      
 79 
     | 
    
         
            +
                  def configure(conf)
         
     | 
| 
      
 80 
     | 
    
         
            +
                    super
         
     | 
| 
      
 81 
     | 
    
         
            +
             
     | 
| 
      
 82 
     | 
    
         
            +
                    @regexp_parser = @parser_engine == :regexp
         
     | 
| 
      
 83 
     | 
    
         
            +
                    @regexp = case @message_format
         
     | 
| 
      
 84 
     | 
    
         
            +
                              when :rfc3164
         
     | 
| 
      
 85 
     | 
    
         
            +
                                if @regexp_parser
         
     | 
| 
      
 86 
     | 
    
         
            +
                                  class << self
         
     | 
| 
      
 87 
     | 
    
         
            +
                                    alias_method :parse, :parse_rfc3164_regex
         
     | 
| 
      
 88 
     | 
    
         
            +
                                  end
         
     | 
| 
      
 89 
     | 
    
         
            +
                                else
         
     | 
| 
      
 90 
     | 
    
         
            +
                                  class << self
         
     | 
| 
      
 91 
     | 
    
         
            +
                                    alias_method :parse, :parse_rfc3164
         
     | 
| 
      
 92 
     | 
    
         
            +
                                  end
         
     | 
| 
      
 93 
     | 
    
         
            +
                                end
         
     | 
| 
      
 94 
     | 
    
         
            +
                                setup_time_parser_3164(@time_format)
         
     | 
| 
      
 95 
     | 
    
         
            +
                                RFC3164_WITHOUT_TIME_AND_PRI_REGEXP
         
     | 
| 
      
 96 
     | 
    
         
            +
                              when :rfc5424
         
     | 
| 
      
 97 
     | 
    
         
            +
                                if @regexp_parser
         
     | 
| 
      
 98 
     | 
    
         
            +
                                  class << self
         
     | 
| 
      
 99 
     | 
    
         
            +
                                    alias_method :parse, :parse_rfc5424_regex
         
     | 
| 
      
 100 
     | 
    
         
            +
                                  end
         
     | 
| 
      
 101 
     | 
    
         
            +
                                else
         
     | 
| 
      
 102 
     | 
    
         
            +
                                  class << self
         
     | 
| 
      
 103 
     | 
    
         
            +
                                    alias_method :parse, :parse_rfc5424
         
     | 
| 
      
 104 
     | 
    
         
            +
                                  end
         
     | 
| 
      
 105 
     | 
    
         
            +
                                end
         
     | 
| 
      
 106 
     | 
    
         
            +
                                @time_format = @rfc5424_time_format unless conf.has_key?('time_format')
         
     | 
| 
      
 107 
     | 
    
         
            +
                                setup_time_parser_5424(@time_format)
         
     | 
| 
      
 108 
     | 
    
         
            +
                                RFC5424_WITHOUT_TIME_AND_PRI_REGEXP
         
     | 
| 
      
 109 
     | 
    
         
            +
                              when :auto
         
     | 
| 
      
 110 
     | 
    
         
            +
                                class << self
         
     | 
| 
      
 111 
     | 
    
         
            +
                                  alias_method :parse, :parse_auto
         
     | 
| 
      
 112 
     | 
    
         
            +
                                end
         
     | 
| 
      
 113 
     | 
    
         
            +
                                setup_time_parser_3164(@time_format)
         
     | 
| 
      
 114 
     | 
    
         
            +
                                setup_time_parser_5424(@rfc5424_time_format)
         
     | 
| 
      
 115 
     | 
    
         
            +
                                nil
         
     | 
| 
      
 116 
     | 
    
         
            +
                              end
         
     | 
| 
      
 117 
     | 
    
         
            +
             
     | 
| 
      
 118 
     | 
    
         
            +
                    if @regexp_parser
         
     | 
| 
      
 119 
     | 
    
         
            +
                      @regexp3164 = RFC3164_WITHOUT_TIME_AND_PRI_REGEXP
         
     | 
| 
      
 120 
     | 
    
         
            +
                      @regexp5424 = RFC5424_WITHOUT_TIME_AND_PRI_REGEXP
         
     | 
| 
      
 121 
     | 
    
         
            +
                    end
         
     | 
| 
      
 122 
     | 
    
         
            +
                  end
         
     | 
| 
      
 123 
     | 
    
         
            +
             
     | 
| 
      
 124 
     | 
    
         
            +
                  def setup_time_parser_3164(time_fmt)
         
     | 
| 
      
 125 
     | 
    
         
            +
                    @time_parser_rfc3164 = time_parser_create(format: time_fmt)
         
     | 
| 
      
 126 
     | 
    
         
            +
                    if ['%b %d %H:%M:%S', '%b %d %H:%M:%S.%N'].include?(time_fmt)
         
     | 
| 
      
 127 
     | 
    
         
            +
                      @skip_space_count_rfc3164 = true
         
     | 
| 
      
 128 
     | 
    
         
            +
                    end
         
     | 
| 
      
 129 
     | 
    
         
            +
                    @space_count_rfc3164 = time_fmt.squeeze(' ').count(' ') + 1
         
     | 
| 
      
 130 
     | 
    
         
            +
                  end
         
     | 
| 
      
 131 
     | 
    
         
            +
             
     | 
| 
      
 132 
     | 
    
         
            +
                  def setup_time_parser_5424(time_fmt)
         
     | 
| 
      
 133 
     | 
    
         
            +
                    @time_parser_rfc5424 = time_parser_create(format: time_fmt)
         
     | 
| 
      
 134 
     | 
    
         
            +
                    @time_parser_rfc5424_without_subseconds = time_parser_create(format: "%Y-%m-%dT%H:%M:%S%z")
         
     | 
| 
      
 135 
     | 
    
         
            +
                    @skip_space_count_rfc5424 = time_fmt.count(' ').zero?
         
     | 
| 
      
 136 
     | 
    
         
            +
                    @space_count_rfc5424 = time_fmt.squeeze(' ').count(' ') + 1
         
     | 
| 
      
 137 
     | 
    
         
            +
                  end
         
     | 
| 
      
 138 
     | 
    
         
            +
             
     | 
| 
      
 139 
     | 
    
         
            +
                  # this method is for tests
         
     | 
| 
      
 140 
     | 
    
         
            +
                  def patterns
         
     | 
| 
      
 141 
     | 
    
         
            +
                    {'format' => @regexp, 'time_format' => @time_format}
         
     | 
| 
      
 142 
     | 
    
         
            +
                  end
         
     | 
| 
      
 143 
     | 
    
         
            +
             
     | 
| 
      
 144 
     | 
    
         
            +
                  def parse(text)
         
     | 
| 
      
 145 
     | 
    
         
            +
                    # This is overwritten in configure
         
     | 
| 
      
 146 
     | 
    
         
            +
                  end
         
     | 
| 
      
 147 
     | 
    
         
            +
             
     | 
| 
      
 148 
     | 
    
         
            +
                  def parse_auto(text, &block)
         
     | 
| 
      
 149 
     | 
    
         
            +
                    if REGEXP_DETECT_RFC5424.match?(text)
         
     | 
| 
      
 150 
     | 
    
         
            +
                      if @regexp_parser
         
     | 
| 
      
 151 
     | 
    
         
            +
                        parse_rfc5424_regex(text, &block)
         
     | 
| 
      
 152 
     | 
    
         
            +
                      else
         
     | 
| 
      
 153 
     | 
    
         
            +
                        parse_rfc5424(text, &block)
         
     | 
| 
      
 154 
     | 
    
         
            +
                      end
         
     | 
| 
      
 155 
     | 
    
         
            +
                    else
         
     | 
| 
      
 156 
     | 
    
         
            +
                      if @regexp_parser
         
     | 
| 
      
 157 
     | 
    
         
            +
                        parse_rfc3164_regex(text, &block)
         
     | 
| 
      
 158 
     | 
    
         
            +
                      else
         
     | 
| 
      
 159 
     | 
    
         
            +
                        parse_rfc3164(text, &block)
         
     | 
| 
      
 160 
     | 
    
         
            +
                      end
         
     | 
| 
      
 161 
     | 
    
         
            +
                    end
         
     | 
| 
      
 162 
     | 
    
         
            +
                  end
         
     | 
| 
      
 163 
     | 
    
         
            +
             
     | 
| 
      
 164 
     | 
    
         
            +
                  SPLIT_CHAR = ' '.freeze
         
     | 
| 
      
 165 
     | 
    
         
            +
             
     | 
| 
      
 166 
     | 
    
         
            +
                  def parse_rfc3164_regex(text, &block)
         
     | 
| 
      
 167 
     | 
    
         
            +
                    idx = 0
         
     | 
| 
      
 168 
     | 
    
         
            +
                    record = {}
         
     | 
| 
      
 169 
     | 
    
         
            +
             
     | 
| 
      
 170 
     | 
    
         
            +
                    if @with_priority
         
     | 
| 
      
 171 
     | 
    
         
            +
                      if RFC3164_PRI_REGEXP.match?(text)
         
     | 
| 
      
 172 
     | 
    
         
            +
                        v = text.index('>')
         
     | 
| 
      
 173 
     | 
    
         
            +
                        record['pri'] = text[1..v].to_i # trim `<` and ``>
         
     | 
| 
      
 174 
     | 
    
         
            +
                        idx = v + 1
         
     | 
| 
      
 175 
     | 
    
         
            +
                      else
         
     | 
| 
      
 176 
     | 
    
         
            +
                        yield(nil, nil)
         
     | 
| 
      
 177 
     | 
    
         
            +
                        return
         
     | 
| 
      
 178 
     | 
    
         
            +
                      end
         
     | 
| 
      
 179 
     | 
    
         
            +
                    end
         
     | 
| 
      
 180 
     | 
    
         
            +
             
     | 
| 
      
 181 
     | 
    
         
            +
                    i = idx - 1
         
     | 
| 
      
 182 
     | 
    
         
            +
                    sq = false
         
     | 
| 
      
 183 
     | 
    
         
            +
                    @space_count_rfc3164.times do
         
     | 
| 
      
 184 
     | 
    
         
            +
                      while text[i + 1] == SPLIT_CHAR
         
     | 
| 
      
 185 
     | 
    
         
            +
                        sq = true
         
     | 
| 
      
 186 
     | 
    
         
            +
                        i += 1
         
     | 
| 
      
 187 
     | 
    
         
            +
                      end
         
     | 
| 
      
 188 
     | 
    
         
            +
             
     | 
| 
      
 189 
     | 
    
         
            +
                      i = text.index(SPLIT_CHAR, i + 1)
         
     | 
| 
      
 190 
     | 
    
         
            +
                    end
         
     | 
| 
      
 191 
     | 
    
         
            +
             
     | 
| 
      
 192 
     | 
    
         
            +
                    time_str = sq ? text.slice(idx, i - idx).squeeze(SPLIT_CHAR) : text.slice(idx, i - idx)
         
     | 
| 
      
 193 
     | 
    
         
            +
                    time = @mutex.synchronize { @time_parser_rfc3164.parse(time_str) }
         
     | 
| 
      
 194 
     | 
    
         
            +
                    if @keep_time_key
         
     | 
| 
      
 195 
     | 
    
         
            +
                      record['time'] = time_str
         
     | 
| 
      
 196 
     | 
    
         
            +
                    end
         
     | 
| 
      
 197 
     | 
    
         
            +
             
     | 
| 
      
 198 
     | 
    
         
            +
                    parse_plain(@regexp3164, time, text, i + 1, record, RFC3164_CAPTURES, &block)
         
     | 
| 
      
 199 
     | 
    
         
            +
                  end
         
     | 
| 
      
 200 
     | 
    
         
            +
             
     | 
| 
      
 201 
     | 
    
         
            +
                  def parse_rfc5424_regex(text, &block)
         
     | 
| 
      
 202 
     | 
    
         
            +
                    idx = 0
         
     | 
| 
      
 203 
     | 
    
         
            +
                    record = {}
         
     | 
| 
      
 204 
     | 
    
         
            +
             
     | 
| 
      
 205 
     | 
    
         
            +
                    if @with_priority
         
     | 
| 
      
 206 
     | 
    
         
            +
                      if (m = RFC5424_PRI_REGEXP.match(text))
         
     | 
| 
      
 207 
     | 
    
         
            +
                        record['pri'] = m['pri'].to_i
         
     | 
| 
      
 208 
     | 
    
         
            +
                        idx = m.end(0)
         
     | 
| 
      
 209 
     | 
    
         
            +
                      else
         
     | 
| 
      
 210 
     | 
    
         
            +
                        yield(nil, nil)
         
     | 
| 
      
 211 
     | 
    
         
            +
                        return
         
     | 
| 
      
 212 
     | 
    
         
            +
                      end
         
     | 
| 
      
 213 
     | 
    
         
            +
                    end
         
     | 
| 
      
 214 
     | 
    
         
            +
             
     | 
| 
      
 215 
     | 
    
         
            +
                    i = idx - 1
         
     | 
| 
      
 216 
     | 
    
         
            +
                    sq = false
         
     | 
| 
      
 217 
     | 
    
         
            +
                    @space_count_rfc5424.times {
         
     | 
| 
      
 218 
     | 
    
         
            +
                      while text[i + 1] == SPLIT_CHAR
         
     | 
| 
      
 219 
     | 
    
         
            +
                        sq = true
         
     | 
| 
      
 220 
     | 
    
         
            +
                        i += 1
         
     | 
| 
      
 221 
     | 
    
         
            +
                      end
         
     | 
| 
      
 222 
     | 
    
         
            +
             
     | 
| 
      
 223 
     | 
    
         
            +
                      i = text.index(SPLIT_CHAR, i + 1)
         
     | 
| 
      
 224 
     | 
    
         
            +
                    }
         
     | 
| 
      
 225 
     | 
    
         
            +
             
     | 
| 
      
 226 
     | 
    
         
            +
                    time_str = sq ? text.slice(idx, i - idx).squeeze(SPLIT_CHAR) : text.slice(idx, i - idx)
         
     | 
| 
      
 227 
     | 
    
         
            +
                    time = @mutex.synchronize do
         
     | 
| 
      
 228 
     | 
    
         
            +
                      begin
         
     | 
| 
      
 229 
     | 
    
         
            +
                        @time_parser_rfc5424.parse(time_str)
         
     | 
| 
      
 230 
     | 
    
         
            +
                      rescue Fluent::TimeParser::TimeParseError => e
         
     | 
| 
      
 231 
     | 
    
         
            +
                        log.trace(e)
         
     | 
| 
      
 232 
     | 
    
         
            +
                        @time_parser_rfc5424_without_subseconds.parse(time_str)
         
     | 
| 
      
 233 
     | 
    
         
            +
                      end
         
     | 
| 
      
 234 
     | 
    
         
            +
                    end
         
     | 
| 
      
 235 
     | 
    
         
            +
             
     | 
| 
      
 236 
     | 
    
         
            +
                    if @keep_time_key
         
     | 
| 
      
 237 
     | 
    
         
            +
                      record['time'] = time_str
         
     | 
| 
      
 238 
     | 
    
         
            +
                    end
         
     | 
| 
      
 239 
     | 
    
         
            +
                    parse_plain(@regexp5424, time, text, i + 1, record, RFC5424_CAPTURES, &block)
         
     | 
| 
      
 240 
     | 
    
         
            +
                  end
         
     | 
| 
      
 241 
     | 
    
         
            +
             
     | 
| 
      
 242 
     | 
    
         
            +
                  # @param time [EventTime]
         
     | 
| 
      
 243 
     | 
    
         
            +
                  # @param idx [Integer] note: this argument is needed to avoid string creation
         
     | 
| 
      
 244 
     | 
    
         
            +
                  # @param record [Hash]
         
     | 
| 
      
 245 
     | 
    
         
            +
                  # @param capture_list [Array] for performance
         
     | 
| 
      
 246 
     | 
    
         
            +
                  def parse_plain(re, time, text, idx, record, capture_list, &block)
         
     | 
| 
      
 247 
     | 
    
         
            +
                    m = re.match(text, idx)
         
     | 
| 
      
 248 
     | 
    
         
            +
                    if m.nil?
         
     | 
| 
      
 249 
     | 
    
         
            +
                      yield nil, nil
         
     | 
| 
      
 250 
     | 
    
         
            +
                      return
         
     | 
| 
      
 251 
     | 
    
         
            +
                    end
         
     | 
| 
      
 252 
     | 
    
         
            +
             
     | 
| 
      
 253 
     | 
    
         
            +
                    capture_list.each { |name|
         
     | 
| 
      
 254 
     | 
    
         
            +
                      if value = (m[name] rescue nil)
         
     | 
| 
      
 255 
     | 
    
         
            +
                        case name
         
     | 
| 
      
 256 
     | 
    
         
            +
                        when "message"
         
     | 
| 
      
 257 
     | 
    
         
            +
                          value.chomp!
         
     | 
| 
      
 258 
     | 
    
         
            +
                          record[name] = value
         
     | 
| 
      
 259 
     | 
    
         
            +
                        else
         
     | 
| 
      
 260 
     | 
    
         
            +
                          record[name] = value
         
     | 
| 
      
 261 
     | 
    
         
            +
                        end
         
     | 
| 
      
 262 
     | 
    
         
            +
                      end
         
     | 
| 
      
 263 
     | 
    
         
            +
                    }
         
     | 
| 
      
 264 
     | 
    
         
            +
             
     | 
| 
      
 265 
     | 
    
         
            +
                    if @estimate_current_event
         
     | 
| 
      
 266 
     | 
    
         
            +
                      time ||= Fluent::EventTime.now
         
     | 
| 
      
 267 
     | 
    
         
            +
                    end
         
     | 
| 
      
 268 
     | 
    
         
            +
             
     | 
| 
      
 269 
     | 
    
         
            +
                    yield time, record
         
     | 
| 
      
 270 
     | 
    
         
            +
                  end
         
     | 
| 
      
 271 
     | 
    
         
            +
             
     | 
| 
      
 272 
     | 
    
         
            +
                  def parse_rfc3164(text, &block)
         
     | 
| 
      
 273 
     | 
    
         
            +
                    pri = nil
         
     | 
| 
      
 274 
     | 
    
         
            +
                    cursor = 0
         
     | 
| 
      
 275 
     | 
    
         
            +
                    if @with_priority
         
     | 
| 
      
 276 
     | 
    
         
            +
                      if text.start_with?('<'.freeze)
         
     | 
| 
      
 277 
     | 
    
         
            +
                        i = text.index('>'.freeze, 1)
         
     | 
| 
      
 278 
     | 
    
         
            +
                        if i < 2
         
     | 
| 
      
 279 
     | 
    
         
            +
                          yield nil, nil
         
     | 
| 
      
 280 
     | 
    
         
            +
                          return
         
     | 
| 
      
 281 
     | 
    
         
            +
                        end
         
     | 
| 
      
 282 
     | 
    
         
            +
                        pri = text.slice(1, i - 1).to_i
         
     | 
| 
      
 283 
     | 
    
         
            +
                        cursor = i + 1
         
     | 
| 
      
 284 
     | 
    
         
            +
                      else
         
     | 
| 
      
 285 
     | 
    
         
            +
                        yield nil, nil
         
     | 
| 
      
 286 
     | 
    
         
            +
                        return
         
     | 
| 
      
 287 
     | 
    
         
            +
                      end
         
     | 
| 
      
 288 
     | 
    
         
            +
                    end
         
     | 
| 
      
 289 
     | 
    
         
            +
             
     | 
| 
      
 290 
     | 
    
         
            +
                    if @skip_space_count_rfc3164
         
     | 
| 
      
 291 
     | 
    
         
            +
                      # header part
         
     | 
| 
      
 292 
     | 
    
         
            +
                      time_size = 15 # skip Mmm dd hh:mm:ss
         
     | 
| 
      
 293 
     | 
    
         
            +
                      time_end = text[cursor + time_size]
         
     | 
| 
      
 294 
     | 
    
         
            +
                      if time_end == SPLIT_CHAR
         
     | 
| 
      
 295 
     | 
    
         
            +
                        time_str = text.slice(cursor, time_size)
         
     | 
| 
      
 296 
     | 
    
         
            +
                        cursor += 16 # time + ' '
         
     | 
| 
      
 297 
     | 
    
         
            +
                      elsif time_end == '.'.freeze
         
     | 
| 
      
 298 
     | 
    
         
            +
                        # support subsecond time
         
     | 
| 
      
 299 
     | 
    
         
            +
                        i = text.index(SPLIT_CHAR, time_size)
         
     | 
| 
      
 300 
     | 
    
         
            +
                        time_str = text.slice(cursor, i - cursor)
         
     | 
| 
      
 301 
     | 
    
         
            +
                        cursor = i + 1
         
     | 
| 
      
 302 
     | 
    
         
            +
                      else
         
     | 
| 
      
 303 
     | 
    
         
            +
                        yield nil, nil
         
     | 
| 
      
 304 
     | 
    
         
            +
                        return
         
     | 
| 
      
 305 
     | 
    
         
            +
                      end
         
     | 
| 
      
 306 
     | 
    
         
            +
                    else
         
     | 
| 
      
 307 
     | 
    
         
            +
                      i = cursor - 1
         
     | 
| 
      
 308 
     | 
    
         
            +
                      sq = false
         
     | 
| 
      
 309 
     | 
    
         
            +
                      @space_count_rfc3164.times do
         
     | 
| 
      
 310 
     | 
    
         
            +
                        while text[i + 1] == SPLIT_CHAR
         
     | 
| 
      
 311 
     | 
    
         
            +
                          sq = true
         
     | 
| 
      
 312 
     | 
    
         
            +
                          i += 1
         
     | 
| 
      
 313 
     | 
    
         
            +
                        end
         
     | 
| 
      
 314 
     | 
    
         
            +
                        i = text.index(SPLIT_CHAR, i + 1)
         
     | 
| 
      
 315 
     | 
    
         
            +
                      end
         
     | 
| 
      
 316 
     | 
    
         
            +
             
     | 
| 
      
 317 
     | 
    
         
            +
                      time_str = sq ? text.slice(idx, i - cursor).squeeze(SPLIT_CHAR) : text.slice(cursor, i - cursor)
         
     | 
| 
      
 318 
     | 
    
         
            +
                      cursor = i + 1
         
     | 
| 
      
 319 
     | 
    
         
            +
                    end
         
     | 
| 
      
 320 
     | 
    
         
            +
             
     | 
| 
      
 321 
     | 
    
         
            +
                    i = text.index(SPLIT_CHAR, cursor)
         
     | 
| 
      
 322 
     | 
    
         
            +
                    if i.nil?
         
     | 
| 
      
 323 
     | 
    
         
            +
                      yield nil, nil
         
     | 
| 
      
 324 
     | 
    
         
            +
                      return
         
     | 
| 
      
 325 
     | 
    
         
            +
                    end
         
     | 
| 
      
 326 
     | 
    
         
            +
                    host_size = i - cursor
         
     | 
| 
      
 327 
     | 
    
         
            +
                    host = text.slice(cursor, host_size)
         
     | 
| 
      
 328 
     | 
    
         
            +
                    cursor += host_size + 1
         
     | 
| 
      
 329 
     | 
    
         
            +
             
     | 
| 
      
 330 
     | 
    
         
            +
                    record = {'host' => host}
         
     | 
| 
      
 331 
     | 
    
         
            +
                    record['pri'] = pri if pri
         
     | 
| 
      
 332 
     | 
    
         
            +
             
     | 
| 
      
 333 
     | 
    
         
            +
                    i = text.index(SPLIT_CHAR, cursor)
         
     | 
| 
      
 334 
     | 
    
         
            +
             
     | 
| 
      
 335 
     | 
    
         
            +
                    # message part
         
     | 
| 
      
 336 
     | 
    
         
            +
                    msg = if i.nil?  # for 'only non-space content case'
         
     | 
| 
      
 337 
     | 
    
         
            +
                            text.slice(cursor, text.bytesize)
         
     | 
| 
      
 338 
     | 
    
         
            +
                          else
         
     | 
| 
      
 339 
     | 
    
         
            +
                            if text[i - 1] == ':'.freeze
         
     | 
| 
      
 340 
     | 
    
         
            +
                              if text[i - 2] == ']'.freeze
         
     | 
| 
      
 341 
     | 
    
         
            +
                                left_braket_pos = text.index('['.freeze, cursor)
         
     | 
| 
      
 342 
     | 
    
         
            +
                                record['ident'] = text.slice(cursor, left_braket_pos - cursor)
         
     | 
| 
      
 343 
     | 
    
         
            +
                                record['pid'] = text.slice(left_braket_pos + 1, i - left_braket_pos - 3) # remove '[' / ']:'
         
     | 
| 
      
 344 
     | 
    
         
            +
                              else
         
     | 
| 
      
 345 
     | 
    
         
            +
                                record['ident'] = text.slice(cursor, i - cursor - 1)
         
     | 
| 
      
 346 
     | 
    
         
            +
                              end
         
     | 
| 
      
 347 
     | 
    
         
            +
                              text.slice(i + 1, text.bytesize)
         
     | 
| 
      
 348 
     | 
    
         
            +
                            else
         
     | 
| 
      
 349 
     | 
    
         
            +
                              if @support_colonless_ident
         
     | 
| 
      
 350 
     | 
    
         
            +
                                if text[i - 1] == ']'.freeze
         
     | 
| 
      
 351 
     | 
    
         
            +
                                  left_braket_pos = text.index('['.freeze, cursor)
         
     | 
| 
      
 352 
     | 
    
         
            +
                                  record['ident'] = text.slice(cursor, left_braket_pos - cursor)
         
     | 
| 
      
 353 
     | 
    
         
            +
                                  record['pid'] = text.slice(left_braket_pos + 1, i - left_braket_pos - 2) # remove '[' / ']'
         
     | 
| 
      
 354 
     | 
    
         
            +
                                else
         
     | 
| 
      
 355 
     | 
    
         
            +
                                  record['ident'] = text.slice(cursor, i - cursor)
         
     | 
| 
      
 356 
     | 
    
         
            +
                                end
         
     | 
| 
      
 357 
     | 
    
         
            +
                                text.slice(i + 1, text.bytesize)
         
     | 
| 
      
 358 
     | 
    
         
            +
                              else
         
     | 
| 
      
 359 
     | 
    
         
            +
                                text.slice(cursor, text.bytesize)
         
     | 
| 
      
 360 
     | 
    
         
            +
                              end
         
     | 
| 
      
 361 
     | 
    
         
            +
                            end
         
     | 
| 
      
 362 
     | 
    
         
            +
                          end
         
     | 
| 
      
 363 
     | 
    
         
            +
                    msg.chomp!
         
     | 
| 
      
 364 
     | 
    
         
            +
                    record['message'] = msg
         
     | 
| 
      
 365 
     | 
    
         
            +
             
     | 
| 
      
 366 
     | 
    
         
            +
                    time = @time_parser_rfc3164.parse(time_str)
         
     | 
| 
      
 367 
     | 
    
         
            +
                    record['time'] = time_str if @keep_time_key
         
     | 
| 
      
 368 
     | 
    
         
            +
             
     | 
| 
      
 369 
     | 
    
         
            +
                    yield time, record
         
     | 
| 
      
 370 
     | 
    
         
            +
                  end
         
     | 
| 
      
 371 
     | 
    
         
            +
             
     | 
| 
      
 372 
     | 
    
         
            +
                  NILVALUE = '-'.freeze
         
     | 
| 
      
 373 
     | 
    
         
            +
             
     | 
| 
      
 374 
     | 
    
         
            +
                  def parse_rfc5424(text, &block)
         
     | 
| 
      
 375 
     | 
    
         
            +
                    pri = nil
         
     | 
| 
      
 376 
     | 
    
         
            +
                    cursor = 0
         
     | 
| 
      
 377 
     | 
    
         
            +
                    if @with_priority
         
     | 
| 
      
 378 
     | 
    
         
            +
                      if text.start_with?('<'.freeze)
         
     | 
| 
      
 379 
     | 
    
         
            +
                        i = text.index('>'.freeze, 1)
         
     | 
| 
      
 380 
     | 
    
         
            +
                        if i < 2
         
     | 
| 
      
 381 
     | 
    
         
            +
                          yield nil, nil
         
     | 
| 
      
 382 
     | 
    
         
            +
                          return
         
     | 
| 
      
 383 
     | 
    
         
            +
                        end
         
     | 
| 
      
 384 
     | 
    
         
            +
                        pri = text.slice(1, i - 1).to_i
         
     | 
| 
      
 385 
     | 
    
         
            +
                        i = text.index(SPLIT_CHAR, i)
         
     | 
| 
      
 386 
     | 
    
         
            +
                        cursor = i + 1
         
     | 
| 
      
 387 
     | 
    
         
            +
                      else
         
     | 
| 
      
 388 
     | 
    
         
            +
                        yield nil, nil
         
     | 
| 
      
 389 
     | 
    
         
            +
                        return
         
     | 
| 
      
 390 
     | 
    
         
            +
                      end
         
     | 
| 
      
 391 
     | 
    
         
            +
                    end
         
     | 
| 
      
 392 
     | 
    
         
            +
             
     | 
| 
      
 393 
     | 
    
         
            +
                    # timestamp part
         
     | 
| 
      
 394 
     | 
    
         
            +
                    if @skip_space_count_rfc5424
         
     | 
| 
      
 395 
     | 
    
         
            +
                      i = text.index(SPLIT_CHAR, cursor)
         
     | 
| 
      
 396 
     | 
    
         
            +
                      time_str = text.slice(cursor, i - cursor)
         
     | 
| 
      
 397 
     | 
    
         
            +
                      cursor = i + 1
         
     | 
| 
      
 398 
     | 
    
         
            +
                    else
         
     | 
| 
      
 399 
     | 
    
         
            +
                      i = cursor - 1
         
     | 
| 
      
 400 
     | 
    
         
            +
                      sq = false
         
     | 
| 
      
 401 
     | 
    
         
            +
                      @space_count_rfc5424.times do
         
     | 
| 
      
 402 
     | 
    
         
            +
                        while text[i + 1] == SPLIT_CHAR
         
     | 
| 
      
 403 
     | 
    
         
            +
                          sq = true
         
     | 
| 
      
 404 
     | 
    
         
            +
                          i += 1
         
     | 
| 
      
 405 
     | 
    
         
            +
                        end
         
     | 
| 
      
 406 
     | 
    
         
            +
                        i = text.index(SPLIT_CHAR, i + 1)
         
     | 
| 
      
 407 
     | 
    
         
            +
                      end
         
     | 
| 
      
 408 
     | 
    
         
            +
             
     | 
| 
      
 409 
     | 
    
         
            +
                      time_str = sq ? text.slice(idx, i - cursor).squeeze(SPLIT_CHAR) : text.slice(cursor, i - cursor)
         
     | 
| 
      
 410 
     | 
    
         
            +
                      cursor = i + 1
         
     | 
| 
      
 411 
     | 
    
         
            +
                    end
         
     | 
| 
      
 412 
     | 
    
         
            +
             
     | 
| 
      
 413 
     | 
    
         
            +
                    # Repeat same code for the performance
         
     | 
| 
      
 414 
     | 
    
         
            +
             
     | 
| 
      
 415 
     | 
    
         
            +
                    # host part
         
     | 
| 
      
 416 
     | 
    
         
            +
                    i = text.index(SPLIT_CHAR, cursor)
         
     | 
| 
      
 417 
     | 
    
         
            +
                    unless i
         
     | 
| 
      
 418 
     | 
    
         
            +
                      yield nil, nil
         
     | 
| 
      
 419 
     | 
    
         
            +
                      return
         
     | 
| 
      
 420 
     | 
    
         
            +
                    end
         
     | 
| 
      
 421 
     | 
    
         
            +
                    slice_size = i - cursor
         
     | 
| 
      
 422 
     | 
    
         
            +
                    host = text.slice(cursor, slice_size)
         
     | 
| 
      
 423 
     | 
    
         
            +
                    cursor += slice_size + 1
         
     | 
| 
      
 424 
     | 
    
         
            +
             
     | 
| 
      
 425 
     | 
    
         
            +
                    # ident part
         
     | 
| 
      
 426 
     | 
    
         
            +
                    i = text.index(SPLIT_CHAR, cursor)
         
     | 
| 
      
 427 
     | 
    
         
            +
                    unless i
         
     | 
| 
      
 428 
     | 
    
         
            +
                      yield nil, nil
         
     | 
| 
      
 429 
     | 
    
         
            +
                      return
         
     | 
| 
      
 430 
     | 
    
         
            +
                    end
         
     | 
| 
      
 431 
     | 
    
         
            +
                    slice_size = i - cursor
         
     | 
| 
      
 432 
     | 
    
         
            +
                    ident = text.slice(cursor, slice_size)
         
     | 
| 
      
 433 
     | 
    
         
            +
                    cursor += slice_size + 1
         
     | 
| 
      
 434 
     | 
    
         
            +
             
     | 
| 
      
 435 
     | 
    
         
            +
                    # pid part
         
     | 
| 
      
 436 
     | 
    
         
            +
                    i = text.index(SPLIT_CHAR, cursor)
         
     | 
| 
      
 437 
     | 
    
         
            +
                    unless i
         
     | 
| 
      
 438 
     | 
    
         
            +
                      yield nil, nil
         
     | 
| 
      
 439 
     | 
    
         
            +
                      return
         
     | 
| 
      
 440 
     | 
    
         
            +
                    end
         
     | 
| 
      
 441 
     | 
    
         
            +
                    slice_size = i - cursor
         
     | 
| 
      
 442 
     | 
    
         
            +
                    pid = text.slice(cursor, slice_size)
         
     | 
| 
      
 443 
     | 
    
         
            +
                    cursor += slice_size + 1
         
     | 
| 
      
 444 
     | 
    
         
            +
             
     | 
| 
      
 445 
     | 
    
         
            +
                    # msgid part
         
     | 
| 
      
 446 
     | 
    
         
            +
                    i = text.index(SPLIT_CHAR, cursor)
         
     | 
| 
      
 447 
     | 
    
         
            +
                    unless i
         
     | 
| 
      
 448 
     | 
    
         
            +
                      yield nil, nil
         
     | 
| 
      
 449 
     | 
    
         
            +
                      return
         
     | 
| 
      
 450 
     | 
    
         
            +
                    end
         
     | 
| 
      
 451 
     | 
    
         
            +
                    slice_size = i - cursor
         
     | 
| 
      
 452 
     | 
    
         
            +
                    msgid = text.slice(cursor, slice_size)
         
     | 
| 
      
 453 
     | 
    
         
            +
                    cursor += slice_size + 1
         
     | 
| 
      
 454 
     | 
    
         
            +
             
     | 
| 
      
 455 
     | 
    
         
            +
                    record = {'host' => host, 'ident' => ident, 'pid' => pid, 'msgid' => msgid}
         
     | 
| 
      
 456 
     | 
    
         
            +
                    record['pri'] = pri if pri
         
     | 
| 
      
 457 
     | 
    
         
            +
             
     | 
| 
      
 458 
     | 
    
         
            +
                    # extradata part
         
     | 
| 
      
 459 
     | 
    
         
            +
                    ed_start = text[cursor]
         
     | 
| 
      
 460 
     | 
    
         
            +
                    if ed_start == NILVALUE
         
     | 
| 
      
 461 
     | 
    
         
            +
                      record['extradata'] = NILVALUE
         
     | 
| 
      
 462 
     | 
    
         
            +
                      cursor += 1
         
     | 
| 
      
 463 
     | 
    
         
            +
                    else
         
     | 
| 
      
 464 
     | 
    
         
            +
                      start = cursor
         
     | 
| 
      
 465 
     | 
    
         
            +
                      i = text.index('] '.freeze, cursor)
         
     | 
| 
      
 466 
     | 
    
         
            +
                      extradata = if i
         
     | 
| 
      
 467 
     | 
    
         
            +
                                    diff = i + 1 - start # calculate ']' position
         
     | 
| 
      
 468 
     | 
    
         
            +
                                    cursor += diff
         
     | 
| 
      
 469 
     | 
    
         
            +
                                    text.slice(start, diff)
         
     | 
| 
      
 470 
     | 
    
         
            +
                                  else  # No message part case
         
     | 
| 
      
 471 
     | 
    
         
            +
                                    cursor = text.bytesize
         
     | 
| 
      
 472 
     | 
    
         
            +
                                    text.slice(start, cursor)
         
     | 
| 
      
 473 
     | 
    
         
            +
                                  end
         
     | 
| 
      
 474 
     | 
    
         
            +
                      extradata.tr!("\\".freeze, ''.freeze)
         
     | 
| 
      
 475 
     | 
    
         
            +
                      record['extradata'] = extradata
         
     | 
| 
      
 476 
     | 
    
         
            +
                    end
         
     | 
| 
      
 477 
     | 
    
         
            +
             
     | 
| 
      
 478 
     | 
    
         
            +
                    # message part
         
     | 
| 
      
 479 
     | 
    
         
            +
                    if cursor != text.bytesize
         
     | 
| 
      
 480 
     | 
    
         
            +
                      msg = text.slice(cursor + 1, text.bytesize)
         
     | 
| 
      
 481 
     | 
    
         
            +
                      msg.chomp!
         
     | 
| 
      
 482 
     | 
    
         
            +
                      record['message'] = msg
         
     | 
| 
      
 483 
     | 
    
         
            +
                    end
         
     | 
| 
      
 484 
     | 
    
         
            +
             
     | 
| 
      
 485 
     | 
    
         
            +
                    time = begin
         
     | 
| 
      
 486 
     | 
    
         
            +
                             @time_parser_rfc5424.parse(time_str)
         
     | 
| 
      
 487 
     | 
    
         
            +
                           rescue Fluent::TimeParser::TimeParseError
         
     | 
| 
      
 488 
     | 
    
         
            +
                             @time_parser_rfc5424_without_subseconds.parse(time_str)
         
     | 
| 
      
 489 
     | 
    
         
            +
                           end
         
     | 
| 
      
 490 
     | 
    
         
            +
                    record['time'] = time_str if @keep_time_key
         
     | 
| 
      
 491 
     | 
    
         
            +
             
     | 
| 
      
 492 
     | 
    
         
            +
                    yield time, record
         
     | 
| 
      
 493 
     | 
    
         
            +
                  end
         
     | 
| 
      
 494 
     | 
    
         
            +
                end
         
     | 
| 
      
 495 
     | 
    
         
            +
              end
         
     | 
| 
      
 496 
     | 
    
         
            +
            end
         
     | 
| 
         @@ -0,0 +1,42 @@ 
     | 
|
| 
      
 1 
     | 
    
         
            +
            #
         
     | 
| 
      
 2 
     | 
    
         
            +
            # Fluentd
         
     | 
| 
      
 3 
     | 
    
         
            +
            #
         
     | 
| 
      
 4 
     | 
    
         
            +
            #    Licensed under the Apache License, Version 2.0 (the "License");
         
     | 
| 
      
 5 
     | 
    
         
            +
            #    you may not use this file except in compliance with the License.
         
     | 
| 
      
 6 
     | 
    
         
            +
            #    You may obtain a copy of the License at
         
     | 
| 
      
 7 
     | 
    
         
            +
            #
         
     | 
| 
      
 8 
     | 
    
         
            +
            #        http://www.apache.org/licenses/LICENSE-2.0
         
     | 
| 
      
 9 
     | 
    
         
            +
            #
         
     | 
| 
      
 10 
     | 
    
         
            +
            #    Unless required by applicable law or agreed to in writing, software
         
     | 
| 
      
 11 
     | 
    
         
            +
            #    distributed under the License is distributed on an "AS IS" BASIS,
         
     | 
| 
      
 12 
     | 
    
         
            +
            #    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
         
     | 
| 
      
 13 
     | 
    
         
            +
            #    See the License for the specific language governing permissions and
         
     | 
| 
      
 14 
     | 
    
         
            +
            #    limitations under the License.
         
     | 
| 
      
 15 
     | 
    
         
            +
            #
         
     | 
| 
      
 16 
     | 
    
         
            +
             
     | 
| 
      
 17 
     | 
    
         
            +
            require 'fluent/plugin/parser'
         
     | 
| 
      
 18 
     | 
    
         
            +
             
     | 
| 
      
 19 
     | 
    
         
            +
            module Fluent
         
     | 
| 
      
 20 
     | 
    
         
            +
              module Plugin
         
     | 
| 
      
 21 
     | 
    
         
            +
                class TSVParser < Parser
         
     | 
| 
      
 22 
     | 
    
         
            +
                  Plugin.register_parser('tsv', self)
         
     | 
| 
      
 23 
     | 
    
         
            +
             
     | 
| 
      
 24 
     | 
    
         
            +
                  desc 'Names of fields included in each lines'
         
     | 
| 
      
 25 
     | 
    
         
            +
                  config_param :keys, :array, value_type: :string
         
     | 
| 
      
 26 
     | 
    
         
            +
                  desc 'The delimiter character (or string) of TSV values'
         
     | 
| 
      
 27 
     | 
    
         
            +
                  config_param :delimiter, :string, default: "\t"
         
     | 
| 
      
 28 
     | 
    
         
            +
             
     | 
| 
      
 29 
     | 
    
         
            +
                  def configure(conf)
         
     | 
| 
      
 30 
     | 
    
         
            +
                    super
         
     | 
| 
      
 31 
     | 
    
         
            +
                    @key_num = @keys.length
         
     | 
| 
      
 32 
     | 
    
         
            +
                  end
         
     | 
| 
      
 33 
     | 
    
         
            +
             
     | 
| 
      
 34 
     | 
    
         
            +
                  def parse(text)
         
     | 
| 
      
 35 
     | 
    
         
            +
                    values = text.split(@delimiter, @key_num)
         
     | 
| 
      
 36 
     | 
    
         
            +
                    r = Hash[@keys.zip(values)]
         
     | 
| 
      
 37 
     | 
    
         
            +
                    time, record = convert_values(parse_time(r), r)
         
     | 
| 
      
 38 
     | 
    
         
            +
                    yield time, record
         
     | 
| 
      
 39 
     | 
    
         
            +
                  end
         
     | 
| 
      
 40 
     | 
    
         
            +
                end
         
     | 
| 
      
 41 
     | 
    
         
            +
              end
         
     | 
| 
      
 42 
     | 
    
         
            +
            end
         
     | 
| 
         @@ -0,0 +1,156 @@ 
     | 
|
| 
      
 1 
     | 
    
         
            +
            #
         
     | 
| 
      
 2 
     | 
    
         
            +
            # Fluentd
         
     | 
| 
      
 3 
     | 
    
         
            +
            #
         
     | 
| 
      
 4 
     | 
    
         
            +
            #    Licensed under the Apache License, Version 2.0 (the "License");
         
     | 
| 
      
 5 
     | 
    
         
            +
            #    you may not use this file except in compliance with the License.
         
     | 
| 
      
 6 
     | 
    
         
            +
            #    You may obtain a copy of the License at
         
     | 
| 
      
 7 
     | 
    
         
            +
            #
         
     | 
| 
      
 8 
     | 
    
         
            +
            #        http://www.apache.org/licenses/LICENSE-2.0
         
     | 
| 
      
 9 
     | 
    
         
            +
            #
         
     | 
| 
      
 10 
     | 
    
         
            +
            #    Unless required by applicable law or agreed to in writing, software
         
     | 
| 
      
 11 
     | 
    
         
            +
            #    distributed under the License is distributed on an "AS IS" BASIS,
         
     | 
| 
      
 12 
     | 
    
         
            +
            #    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
         
     | 
| 
      
 13 
     | 
    
         
            +
            #    See the License for the specific language governing permissions and
         
     | 
| 
      
 14 
     | 
    
         
            +
            #    limitations under the License.
         
     | 
| 
      
 15 
     | 
    
         
            +
            #
         
     | 
| 
      
 16 
     | 
    
         
            +
             
     | 
| 
      
 17 
     | 
    
         
            +
            require 'cool.io'
         
     | 
| 
      
 18 
     | 
    
         
            +
             
     | 
| 
      
 19 
     | 
    
         
            +
            require 'fluent/plugin_helper'
         
     | 
| 
      
 20 
     | 
    
         
            +
            require 'fluent/plugin/service_discovery'
         
     | 
| 
      
 21 
     | 
    
         
            +
             
     | 
| 
      
 22 
     | 
    
         
            +
            module Fluent
         
     | 
| 
      
 23 
     | 
    
         
            +
              module Plugin
         
     | 
| 
      
 24 
     | 
    
         
            +
                class FileServiceDiscovery < ServiceDiscovery
         
     | 
| 
      
 25 
     | 
    
         
            +
                  include PluginHelper::Mixin
         
     | 
| 
      
 26 
     | 
    
         
            +
             
     | 
| 
      
 27 
     | 
    
         
            +
                  Plugin.register_sd('file', self)
         
     | 
| 
      
 28 
     | 
    
         
            +
             
     | 
| 
      
 29 
     | 
    
         
            +
                  DEFAULT_FILE_TYPE = :yaml
         
     | 
| 
      
 30 
     | 
    
         
            +
                  DEFAUT_WEIGHT = 60
         
     | 
| 
      
 31 
     | 
    
         
            +
                  DEFAULT_SD_FILE_PATH = ENV['DEFAULT_SD_FILE_PATH'] || '/etc/fluent/sd.yaml'
         
     | 
| 
      
 32 
     | 
    
         
            +
             
     | 
| 
      
 33 
     | 
    
         
            +
                  helpers :event_loop
         
     | 
| 
      
 34 
     | 
    
         
            +
             
     | 
| 
      
 35 
     | 
    
         
            +
                  config_param :path, :string, default: DEFAULT_SD_FILE_PATH
         
     | 
| 
      
 36 
     | 
    
         
            +
                  config_param :conf_encoding, :string, default: 'utf-8'
         
     | 
| 
      
 37 
     | 
    
         
            +
             
     | 
| 
      
 38 
     | 
    
         
            +
                  def initialize
         
     | 
| 
      
 39 
     | 
    
         
            +
                    super
         
     | 
| 
      
 40 
     | 
    
         
            +
             
     | 
| 
      
 41 
     | 
    
         
            +
                    @file_type = nil
         
     | 
| 
      
 42 
     | 
    
         
            +
                  end
         
     | 
| 
      
 43 
     | 
    
         
            +
             
     | 
| 
      
 44 
     | 
    
         
            +
                  def configure(conf)
         
     | 
| 
      
 45 
     | 
    
         
            +
                    super
         
     | 
| 
      
 46 
     | 
    
         
            +
             
     | 
| 
      
 47 
     | 
    
         
            +
                    unless File.exist?(@path)
         
     | 
| 
      
 48 
     | 
    
         
            +
                      raise Fluent::ConfigError, "sd_file: path=#{@path} not found"
         
     | 
| 
      
 49 
     | 
    
         
            +
                    end
         
     | 
| 
      
 50 
     | 
    
         
            +
             
     | 
| 
      
 51 
     | 
    
         
            +
                    @file_type = File.basename(@path).split('.', 2).last.to_sym
         
     | 
| 
      
 52 
     | 
    
         
            +
                    unless %i[yaml yml json].include?(@file_type)
         
     | 
| 
      
 53 
     | 
    
         
            +
                      @file_type = DEFAULT_FILE_TYPE
         
     | 
| 
      
 54 
     | 
    
         
            +
                    end
         
     | 
| 
      
 55 
     | 
    
         
            +
             
     | 
| 
      
 56 
     | 
    
         
            +
                    @services = fetch_server_info
         
     | 
| 
      
 57 
     | 
    
         
            +
                  end
         
     | 
| 
      
 58 
     | 
    
         
            +
             
     | 
| 
      
 59 
     | 
    
         
            +
                  def start(queue)
         
     | 
| 
      
 60 
     | 
    
         
            +
                    watcher = StatWatcher.new(@path, @log) do |_prev, _cur|
         
     | 
| 
      
 61 
     | 
    
         
            +
                      refresh_file(queue)
         
     | 
| 
      
 62 
     | 
    
         
            +
                    end
         
     | 
| 
      
 63 
     | 
    
         
            +
                    event_loop_attach(watcher)
         
     | 
| 
      
 64 
     | 
    
         
            +
             
     | 
| 
      
 65 
     | 
    
         
            +
                    super()
         
     | 
| 
      
 66 
     | 
    
         
            +
                  end
         
     | 
| 
      
 67 
     | 
    
         
            +
             
     | 
| 
      
 68 
     | 
    
         
            +
                  private
         
     | 
| 
      
 69 
     | 
    
         
            +
             
     | 
| 
      
 70 
     | 
    
         
            +
                  def parser
         
     | 
| 
      
 71 
     | 
    
         
            +
                    @parser ||=
         
     | 
| 
      
 72 
     | 
    
         
            +
                      case @file_type
         
     | 
| 
      
 73 
     | 
    
         
            +
                      when :yaml, :yml
         
     | 
| 
      
 74 
     | 
    
         
            +
                        require 'yaml'
         
     | 
| 
      
 75 
     | 
    
         
            +
                        -> (v) { YAML.safe_load(v).map }
         
     | 
| 
      
 76 
     | 
    
         
            +
                      when :json
         
     | 
| 
      
 77 
     | 
    
         
            +
                        require 'json'
         
     | 
| 
      
 78 
     | 
    
         
            +
                        -> (v) { JSON.parse(v) }
         
     | 
| 
      
 79 
     | 
    
         
            +
                      end
         
     | 
| 
      
 80 
     | 
    
         
            +
                  end
         
     | 
| 
      
 81 
     | 
    
         
            +
             
     | 
| 
      
 82 
     | 
    
         
            +
                  def refresh_file(queue)
         
     | 
| 
      
 83 
     | 
    
         
            +
                    s =
         
     | 
| 
      
 84 
     | 
    
         
            +
                      begin
         
     | 
| 
      
 85 
     | 
    
         
            +
                        fetch_server_info
         
     | 
| 
      
 86 
     | 
    
         
            +
                      rescue => e
         
     | 
| 
      
 87 
     | 
    
         
            +
                        @log.error("sd_file: #{e}")
         
     | 
| 
      
 88 
     | 
    
         
            +
                        return
         
     | 
| 
      
 89 
     | 
    
         
            +
                      end
         
     | 
| 
      
 90 
     | 
    
         
            +
             
     | 
| 
      
 91 
     | 
    
         
            +
                    if s.nil?
         
     | 
| 
      
 92 
     | 
    
         
            +
                      # if any error occurs, skip this turn
         
     | 
| 
      
 93 
     | 
    
         
            +
                      return
         
     | 
| 
      
 94 
     | 
    
         
            +
                    end
         
     | 
| 
      
 95 
     | 
    
         
            +
             
     | 
| 
      
 96 
     | 
    
         
            +
                    diff = []
         
     | 
| 
      
 97 
     | 
    
         
            +
                    join = s - @services
         
     | 
| 
      
 98 
     | 
    
         
            +
                    # Need service_in first to guarantee that server exist at least one all time.
         
     | 
| 
      
 99 
     | 
    
         
            +
                    join.each do |j|
         
     | 
| 
      
 100 
     | 
    
         
            +
                      diff << ServiceDiscovery.service_in_msg(j)
         
     | 
| 
      
 101 
     | 
    
         
            +
                    end
         
     | 
| 
      
 102 
     | 
    
         
            +
             
     | 
| 
      
 103 
     | 
    
         
            +
                    drain = @services - s
         
     | 
| 
      
 104 
     | 
    
         
            +
                    drain.each do |d|
         
     | 
| 
      
 105 
     | 
    
         
            +
                      diff << ServiceDiscovery.service_out_msg(d)
         
     | 
| 
      
 106 
     | 
    
         
            +
                    end
         
     | 
| 
      
 107 
     | 
    
         
            +
             
     | 
| 
      
 108 
     | 
    
         
            +
                    @services = s
         
     | 
| 
      
 109 
     | 
    
         
            +
             
     | 
| 
      
 110 
     | 
    
         
            +
                    diff.each do |a|
         
     | 
| 
      
 111 
     | 
    
         
            +
                      queue.push(a)
         
     | 
| 
      
 112 
     | 
    
         
            +
                    end
         
     | 
| 
      
 113 
     | 
    
         
            +
                  end
         
     | 
| 
      
 114 
     | 
    
         
            +
             
     | 
| 
      
 115 
     | 
    
         
            +
                  def fetch_server_info
         
     | 
| 
      
 116 
     | 
    
         
            +
                    config_data =
         
     | 
| 
      
 117 
     | 
    
         
            +
                      begin
         
     | 
| 
      
 118 
     | 
    
         
            +
                        File.open(@path, "r:#{@conf_encoding}:utf-8", &:read)
         
     | 
| 
      
 119 
     | 
    
         
            +
                      rescue => e
         
     | 
| 
      
 120 
     | 
    
         
            +
                        raise Fluent::ConfigError, "sd_file: path=#{@path} couldn't open #{e}"
         
     | 
| 
      
 121 
     | 
    
         
            +
                      end
         
     | 
| 
      
 122 
     | 
    
         
            +
             
     | 
| 
      
 123 
     | 
    
         
            +
                    parser.call(config_data).map do |s|
         
     | 
| 
      
 124 
     | 
    
         
            +
                      Service.new(
         
     | 
| 
      
 125 
     | 
    
         
            +
                        :file,
         
     | 
| 
      
 126 
     | 
    
         
            +
                        s.fetch('host'),
         
     | 
| 
      
 127 
     | 
    
         
            +
                        s.fetch('port'),
         
     | 
| 
      
 128 
     | 
    
         
            +
                        s['name'],
         
     | 
| 
      
 129 
     | 
    
         
            +
                        s.fetch('weight', DEFAUT_WEIGHT),
         
     | 
| 
      
 130 
     | 
    
         
            +
                        s['standby'],
         
     | 
| 
      
 131 
     | 
    
         
            +
                        s['username'],
         
     | 
| 
      
 132 
     | 
    
         
            +
                        s['password'],
         
     | 
| 
      
 133 
     | 
    
         
            +
                        s['shared_key'],
         
     | 
| 
      
 134 
     | 
    
         
            +
                      )
         
     | 
| 
      
 135 
     | 
    
         
            +
                    end
         
     | 
| 
      
 136 
     | 
    
         
            +
                  rescue KeyError => e
         
     | 
| 
      
 137 
     | 
    
         
            +
                    raise Fluent::ConfigError, "#{e}. Service must have `host` and `port`"
         
     | 
| 
      
 138 
     | 
    
         
            +
                  end
         
     | 
| 
      
 139 
     | 
    
         
            +
             
     | 
| 
      
 140 
     | 
    
         
            +
                  class StatWatcher < Coolio::StatWatcher
         
     | 
| 
      
 141 
     | 
    
         
            +
                    def initialize(path, log, &callback)
         
     | 
| 
      
 142 
     | 
    
         
            +
                      @path = path
         
     | 
| 
      
 143 
     | 
    
         
            +
                      @log = log
         
     | 
| 
      
 144 
     | 
    
         
            +
                      @callback = callback
         
     | 
| 
      
 145 
     | 
    
         
            +
                      super(@path)
         
     | 
| 
      
 146 
     | 
    
         
            +
                    end
         
     | 
| 
      
 147 
     | 
    
         
            +
             
     | 
| 
      
 148 
     | 
    
         
            +
                    def on_change(prev_stat, cur_stat)
         
     | 
| 
      
 149 
     | 
    
         
            +
                      @callback.call(prev_stat, cur_stat)
         
     | 
| 
      
 150 
     | 
    
         
            +
                    rescue => e
         
     | 
| 
      
 151 
     | 
    
         
            +
                      @log.error(e)
         
     | 
| 
      
 152 
     | 
    
         
            +
                    end
         
     | 
| 
      
 153 
     | 
    
         
            +
                  end
         
     | 
| 
      
 154 
     | 
    
         
            +
                end
         
     | 
| 
      
 155 
     | 
    
         
            +
              end
         
     | 
| 
      
 156 
     | 
    
         
            +
            end
         
     |