source
stringclasses
1 value
repo
stringlengths
5
63
repo_url
stringlengths
24
82
path
stringlengths
5
167
language
stringclasses
1 value
license
stringclasses
5 values
stars
int64
10
51.4k
ref
stringclasses
23 values
size_bytes
int64
200
258k
text
stringlengths
137
258k
github
fluent/fluentd
https://github.com/fluent/fluentd
test/command/test_ca_generate.rb
Ruby
apache-2.0
13,530
master
2,171
require_relative '../helper' require 'flexmock/test_unit' require 'tmpdir' require 'fluent/command/ca_generate' require 'fluent/event' class TestFluentCaGenerate < ::Test::Unit::TestCase def test_generate_ca_pair cert, key = Fluent::CaGenerate.generate_ca_pair(Fluent::CaGenerate::DEFAULT_OPTIONS) assert_eq...
github
fluent/fluentd
https://github.com/fluent/fluentd
test/command/test_cap_ctl.rb
Ruby
apache-2.0
13,530
master
2,824
require_relative '../helper' require 'tempfile' require 'fluent/command/cap_ctl' class TestFluentCapCtl < Test::Unit::TestCase setup do omit "This environment does not handle Linux capability" unless defined?(CapNG) end sub_test_case "success" do test "clear capability" do logs = capture_stdout d...
github
fluent/fluentd
https://github.com/fluent/fluentd
test/command/test_fluentd.rb
Ruby
apache-2.0
13,530
master
55,316
require_relative '../helper' # require 'fluent/command/fluentd' # don't require it... it runs immediately require 'fileutils' require 'timeout' require 'securerandom' require 'fluent/file_wrapper' class TestFluentdCommand < ::Test::Unit::TestCase SUPERVISOR_PID_PATTERN = /starting fluentd-[.0-9]+ pid=(\d+)/ WORK...
github
fluent/fluentd
https://github.com/fluent/fluentd
test/command/test_cat.rb
Ruby
apache-2.0
13,530
master
3,901
require_relative '../helper' require 'test-unit' require 'open3' require 'fluent/plugin/output' require 'fluent/plugin/in_forward' require 'fluent/plugin/out_secondary_file' require 'fluent/test/driver/output' require 'fluent/test/driver/input' class TestFluentCat < ::Test::Unit::TestCase def setup Fluent::Test...
github
fluent/fluentd
https://github.com/fluent/fluentd
test/command/test_plugin_generator.rb
Ruby
apache-2.0
13,530
master
3,593
require_relative '../helper' require 'pathname' require 'fluent/command/plugin_generator' class TestFluentPluginGenerator < Test::Unit::TestCase TEMP_DIR = "tmp/plugin_generator" setup do FileUtils.mkdir_p(TEMP_DIR) @pwd = Dir.pwd Dir.chdir(TEMP_DIR) end teardown do Dir.chdir(@pwd) FileUt...
github
fluent/fluentd
https://github.com/fluent/fluentd
test/command/test_ctl.rb
Ruby
apache-2.0
13,530
master
1,621
require_relative '../helper' require 'test-unit' require 'win32/event' if Fluent.windows? require 'fluent/command/ctl' class TestFluentdCtl < ::Test::Unit::TestCase def assert_win32_event(event_name, command, pid_or_svcname) event = Win32::Event.new(event_name) ipc = Win32::Ipc.new(event.handle) ret = ...
github
fluent/fluentd
https://github.com/fluent/fluentd
test/command/test_plugin_config_formatter.rb
Ruby
apache-2.0
13,530
master
10,157
require_relative '../helper' require 'pathname' require 'fluent/command/plugin_config_formatter' require 'fluent/plugin/input' require 'fluent/plugin/output' require 'fluent/plugin/filter' require 'fluent/plugin/parser' require 'fluent/plugin/formatter' class TestFluentPluginConfigFormatter < Test::Unit::TestCase c...
github
fluent/fluentd
https://github.com/fluent/fluentd
test/command/test_binlog_reader.rb
Ruby
apache-2.0
13,530
master
10,960
require_relative '../helper' require 'json' require 'flexmock/test_unit' require 'fluent/command/binlog_reader' require 'fluent/event' class TestFluentBinlogReader < ::Test::Unit::TestCase module ::BinlogReaderCommand class Dummy < Base def call; end end end def suppress_stdout out = StringI...
github
fluent/fluentd
https://github.com/fluent/fluentd
lib/fluent/fluent_log_event_router.rb
Ruby
apache-2.0
13,530
master
4,475
# # Fluentd # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, so...
github
fluent/fluentd
https://github.com/fluent/fluentd
lib/fluent/configurable.rb
Ruby
apache-2.0
13,530
master
6,621
# # Fluentd # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, so...
github
fluent/fluentd
https://github.com/fluent/fluentd
lib/fluent/oj_options.rb
Ruby
apache-2.0
13,530
master
1,261
require 'fluent/config/types' module Fluent class OjOptions OPTIONS = { 'bigdecimal_load': :symbol, 'mode': :symbol, 'use_to_json': :bool } ALLOWED_VALUES = { 'bigdecimal_load': %i[bigdecimal float auto], 'mode': %i[strict null compat json rails custom] } DEFAULTS ...
github
fluent/fluentd
https://github.com/fluent/fluentd
lib/fluent/file_wrapper.rb
Ruby
apache-2.0
13,530
master
3,976
# # Fluentd # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, so...
github
fluent/fluentd
https://github.com/fluent/fluentd
lib/fluent/plugin_helper.rb
Ruby
apache-2.0
13,530
master
2,299
# # Fluentd # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, so...
github
fluent/fluentd
https://github.com/fluent/fluentd
lib/fluent/winsvc.rb
Ruby
apache-2.0
13,530
master
3,393
# # Fluentd # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, so...
github
fluent/fluentd
https://github.com/fluent/fluentd
lib/fluent/error.rb
Ruby
apache-2.0
13,530
master
1,004
# # Fluentd # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, so...
github
fluent/fluentd
https://github.com/fluent/fluentd
lib/fluent/test.rb
Ruby
apache-2.0
13,530
master
1,847
# # Fluentd # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, so...
github
fluent/fluentd
https://github.com/fluent/fluentd
lib/fluent/tls.rb
Ruby
apache-2.0
13,530
master
4,156
# # Fluentd # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, so...
github
fluent/fluentd
https://github.com/fluent/fluentd
lib/fluent/registry.rb
Ruby
apache-2.0
13,530
master
3,210
# # Fluentd # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, so...
github
fluent/fluentd
https://github.com/fluent/fluentd
lib/fluent/system_config.rb
Ruby
apache-2.0
13,530
master
7,963
# # Fluent # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, sof...
github
fluent/fluentd
https://github.com/fluent/fluentd
lib/fluent/formatter.rb
Ruby
apache-2.0
13,530
master
772
# # Fluentd # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, so...
github
fluent/fluentd
https://github.com/fluent/fluentd
lib/fluent/unique_id.rb
Ruby
apache-2.0
13,530
master
1,094
# # Fluentd # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, so...
github
fluent/fluentd
https://github.com/fluent/fluentd
lib/fluent/output.rb
Ruby
apache-2.0
13,530
master
1,076
# # Fluentd # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, so...
github
fluent/fluentd
https://github.com/fluent/fluentd
lib/fluent/ext_monitor_require.rb
Ruby
apache-2.0
13,530
master
883
# # Fluentd # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, so...
github
fluent/fluentd
https://github.com/fluent/fluentd
lib/fluent/event.rb
Ruby
apache-2.0
13,530
master
8,469
# # Fluentd # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, so...
github
fluent/fluentd
https://github.com/fluent/fluentd
lib/fluent/source_only_buffer_agent.rb
Ruby
apache-2.0
13,530
master
3,817
# # Fluentd # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, so...
github
fluent/fluentd
https://github.com/fluent/fluentd
lib/fluent/plugin.rb
Ruby
apache-2.0
13,530
master
7,545
# # Fluentd # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, so...
github
fluent/fluentd
https://github.com/fluent/fluentd
lib/fluent/timezone.rb
Ruby
apache-2.0
13,530
master
4,869
# # Fluentd # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, so...
github
fluent/fluentd
https://github.com/fluent/fluentd
lib/fluent/root_agent.rb
Ruby
apache-2.0
13,530
master
18,739
# # Fluentd # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, so...
github
fluent/fluentd
https://github.com/fluent/fluentd
lib/fluent/event_router.rb
Ruby
apache-2.0
13,530
master
8,855
# # Fluentd # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, so...
github
fluent/fluentd
https://github.com/fluent/fluentd
lib/fluent/daemon.rb
Ruby
apache-2.0
13,530
master
408
#!/usr/bin/env ruby # -*- coding: utf-8 -*- here = File.dirname(__FILE__) $LOAD_PATH << File.expand_path(File.join(here, '..')) require 'serverengine' require 'fluent/supervisor' server_module = Fluent.const_get(ARGV[0]) worker_module = Fluent.const_get(ARGV[1]) params = JSON.parse(ARGV[2]) ServerEngine::Daemon.run_...
github
fluent/fluentd
https://github.com/fluent/fluentd
lib/fluent/load.rb
Ruby
apache-2.0
13,530
master
719
require 'socket' require 'fcntl' require 'time' require 'stringio' require 'fileutils' require 'json' require 'yajl' require 'uri' require 'msgpack' require 'strptime' begin require 'sigdump/setup' rescue # ignore setup error on Win or similar platform which doesn't support signal end require 'cool.io' require 'fl...
github
fluent/fluentd
https://github.com/fluent/fluentd
lib/fluent/static_config_analysis.rb
Ruby
apache-2.0
13,530
master
5,549
# # Fluentd # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, so...
github
fluent/fluentd
https://github.com/fluent/fluentd
lib/fluent/clock.rb
Ruby
apache-2.0
13,530
master
1,729
# # Fluentd # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, so...
github
fluent/fluentd
https://github.com/fluent/fluentd
lib/fluent/log.rb
Ruby
apache-2.0
13,530
master
23,154
# # Fluentd # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, so...
github
fluent/fluentd
https://github.com/fluent/fluentd
lib/fluent/parser.rb
Ruby
apache-2.0
13,530
master
766
# # Fluentd # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, so...
github
fluent/fluentd
https://github.com/fluent/fluentd
lib/fluent/agent.rb
Ruby
apache-2.0
13,530
master
5,067
# # Fluentd # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, so...
github
fluent/fluentd
https://github.com/fluent/fluentd
lib/fluent/input.rb
Ruby
apache-2.0
13,530
master
669
# # Fluentd # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, so...
github
fluent/fluentd
https://github.com/fluent/fluentd
lib/fluent/filter.rb
Ruby
apache-2.0
13,530
master
672
# # Fluentd # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, so...
github
fluent/fluentd
https://github.com/fluent/fluentd
lib/fluent/daemonizer.rb
Ruby
apache-2.0
13,530
master
2,372
# # Fluentd # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, so...
github
fluent/fluentd
https://github.com/fluent/fluentd
lib/fluent/mixin.rb
Ruby
apache-2.0
13,530
master
1,132
# # Fluentd # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, so...
github
fluent/fluentd
https://github.com/fluent/fluentd
lib/fluent/variable_store.rb
Ruby
apache-2.0
13,530
master
1,083
# # Fluentd # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, so...
github
fluent/fluentd
https://github.com/fluent/fluentd
lib/fluent/rpc.rb
Ruby
apache-2.0
13,530
master
2,652
# # Fluentd # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, so...
github
fluent/fluentd
https://github.com/fluent/fluentd
lib/fluent/match.rb
Ruby
apache-2.0
13,530
master
4,061
# # Fluentd # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, so...
github
fluent/fluentd
https://github.com/fluent/fluentd
lib/fluent/win32api.rb
Ruby
apache-2.0
13,530
master
1,133
# # Fluentd # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, so...
github
fluent/fluentd
https://github.com/fluent/fluentd
lib/fluent/version.rb
Ruby
apache-2.0
13,530
master
629
# # Fluentd # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, so...
github
fluent/fluentd
https://github.com/fluent/fluentd
lib/fluent/supervisor.rb
Ruby
apache-2.0
13,530
master
44,376
# # Fluentd # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, so...
github
fluent/fluentd
https://github.com/fluent/fluentd
lib/fluent/label.rb
Ruby
apache-2.0
13,530
master
1,190
# # Fluentd # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, so...
github
fluent/fluentd
https://github.com/fluent/fluentd
lib/fluent/process.rb
Ruby
apache-2.0
13,530
master
778
# # Fluentd # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, so...
github
fluent/fluentd
https://github.com/fluent/fluentd
lib/fluent/msgpack_factory.rb
Ruby
apache-2.0
13,530
master
3,323
# # Fluentd # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, so...
github
fluent/fluentd
https://github.com/fluent/fluentd
lib/fluent/env.rb
Ruby
apache-2.0
13,530
master
1,411
# # Fluentd # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, so...
github
fluent/fluentd
https://github.com/fluent/fluentd
lib/fluent/plugin_id.rb
Ruby
apache-2.0
13,530
master
2,704
# # Fluent # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, sof...
github
fluent/fluentd
https://github.com/fluent/fluentd
lib/fluent/counter.rb
Ruby
apache-2.0
13,530
master
694
# # Fluentd # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, so...
github
fluent/fluentd
https://github.com/fluent/fluentd
lib/fluent/time.rb
Ruby
apache-2.0
13,530
master
16,286
# # Fluentd # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, so...
github
fluent/fluentd
https://github.com/fluent/fluentd
lib/fluent/config.rb
Ruby
apache-2.0
13,530
master
3,268
# # Fluent # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, sof...
github
fluent/fluentd
https://github.com/fluent/fluentd
lib/fluent/output_chain.rb
Ruby
apache-2.0
13,530
master
792
# # Fluentd # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, so...
github
fluent/fluentd
https://github.com/fluent/fluentd
lib/fluent/engine.rb
Ruby
apache-2.0
13,530
master
7,840
# # Fluentd # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, so...
github
fluent/fluentd
https://github.com/fluent/fluentd
lib/fluent/capability.rb
Ruby
apache-2.0
13,530
master
1,851
# # Fluent # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, sof...
github
fluent/fluentd
https://github.com/fluent/fluentd
lib/fluent/plugin/out_buffer.rb
Ruby
apache-2.0
13,530
master
1,179
# # Fluentd # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, so...
github
fluent/fluentd
https://github.com/fluent/fluentd
lib/fluent/plugin/formatter_out_file.rb
Ruby
apache-2.0
13,530
master
1,667
# # Fluentd # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, so...
github
fluent/fluentd
https://github.com/fluent/fluentd
lib/fluent/plugin/output.rb
Ruby
apache-2.0
13,530
master
66,331
# # Fluentd # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, so...
github
fluent/fluentd
https://github.com/fluent/fluentd
lib/fluent/plugin/base.rb
Ruby
apache-2.0
13,530
master
5,884
# # Fluentd # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, so...
github
fluent/fluentd
https://github.com/fluent/fluentd
lib/fluent/plugin/out_stream.rb
Ruby
apache-2.0
13,530
master
3,116
# # Fluentd # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, so...
github
fluent/fluentd
https://github.com/fluent/fluentd
lib/fluent/plugin/sd_static.rb
Ruby
apache-2.0
13,530
master
2,120
# # Fluentd # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, so...
github
fluent/fluentd
https://github.com/fluent/fluentd
lib/fluent/plugin/formatter_hash.rb
Ruby
apache-2.0
13,530
master
982
# # Fluentd # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, so...
github
fluent/fluentd
https://github.com/fluent/fluentd
lib/fluent/plugin/parser_nginx.rb
Ruby
apache-2.0
13,530
master
1,098
# # Fluentd # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, so...
github
fluent/fluentd
https://github.com/fluent/fluentd
lib/fluent/plugin/file_util.rb
Ruby
apache-2.0
13,530
master
692
# # Fluentd # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, so...
github
fluent/fluentd
https://github.com/fluent/fluentd
lib/fluent/plugin/parser_apache_error.rb
Ruby
apache-2.0
13,530
master
933
# # Fluentd # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, so...
github
fluent/fluentd
https://github.com/fluent/fluentd
lib/fluent/plugin/bare_output.rb
Ruby
apache-2.0
13,530
master
2,952
# # Fluentd # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, so...
github
fluent/fluentd
https://github.com/fluent/fluentd
lib/fluent/plugin/metrics_local.rb
Ruby
apache-2.0
13,530
master
2,015
# # Fluentd # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, so...
github
fluent/fluentd
https://github.com/fluent/fluentd
lib/fluent/plugin/filter_grep.rb
Ruby
apache-2.0
13,530
master
7,736
# # Fluentd # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, so...
github
fluent/fluentd
https://github.com/fluent/fluentd
lib/fluent/plugin/out_secondary_file.rb
Ruby
apache-2.0
13,530
master
4,912
# # Fluentd # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, so...
github
fluent/fluentd
https://github.com/fluent/fluentd
lib/fluent/plugin/parser_multiline.rb
Ruby
apache-2.0
13,530
master
4,396
# # Fluentd # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, so...
github
fluent/fluentd
https://github.com/fluent/fluentd
lib/fluent/plugin/compressable.rb
Ruby
apache-2.0
13,530
master
4,341
# # Fluentd # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, so...
github
fluent/fluentd
https://github.com/fluent/fluentd
lib/fluent/plugin/buf_file.rb
Ruby
apache-2.0
13,530
master
10,239
# # Fluentd # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, so...
github
fluent/fluentd
https://github.com/fluent/fluentd
lib/fluent/plugin/formatter_msgpack.rb
Ruby
apache-2.0
13,530
master
888
# # Fluentd # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, so...
github
fluent/fluentd
https://github.com/fluent/fluentd
lib/fluent/plugin/out_copy.rb
Ruby
apache-2.0
13,530
master
3,735
# # Fluentd # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, so...
github
fluent/fluentd
https://github.com/fluent/fluentd
lib/fluent/plugin/parser_ltsv.rb
Ruby
apache-2.0
13,530
master
1,580
# # Fluentd # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, so...
github
fluent/fluentd
https://github.com/fluent/fluentd
lib/fluent/plugin/formatter_ltsv.rb
Ruby
apache-2.0
13,530
master
1,419
# # Fluentd # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, so...
github
fluent/fluentd
https://github.com/fluent/fluentd
lib/fluent/plugin/out_stdout.rb
Ruby
apache-2.0
13,530
master
2,119
# # Fluentd # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, so...
github
fluent/fluentd
https://github.com/fluent/fluentd
lib/fluent/plugin/out_roundrobin.rb
Ruby
apache-2.0
13,530
master
1,915
# # Fluentd # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, so...
github
fluent/fluentd
https://github.com/fluent/fluentd
lib/fluent/plugin/in_unix.rb
Ruby
apache-2.0
13,530
master
4,532
# # Fluentd # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, so...
github
fluent/fluentd
https://github.com/fluent/fluentd
lib/fluent/plugin/parser_tsv.rb
Ruby
apache-2.0
13,530
master
1,248
# # Fluentd # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, so...
github
fluent/fluentd
https://github.com/fluent/fluentd
lib/fluent/plugin/formatter_tsv.rb
Ruby
apache-2.0
13,530
master
1,315
# # Fluentd # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, so...
github
fluent/fluentd
https://github.com/fluent/fluentd
lib/fluent/plugin/parser_apache.rb
Ruby
apache-2.0
13,530
master
1,037
# # Fluentd # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, so...
github
fluent/fluentd
https://github.com/fluent/fluentd
lib/fluent/plugin/storage_local.rb
Ruby
apache-2.0
13,530
master
5,752
# # Fluentd # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, so...
github
fluent/fluentd
https://github.com/fluent/fluentd
lib/fluent/plugin/socket_util.rb
Ruby
apache-2.0
13,530
master
698
# # Fluentd # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, so...
github
fluent/fluentd
https://github.com/fluent/fluentd
lib/fluent/plugin/buf_memory.rb
Ruby
apache-2.0
13,530
master
980
# # Fluentd # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, so...
github
fluent/fluentd
https://github.com/fluent/fluentd
lib/fluent/plugin/in_object_space.rb
Ruby
apache-2.0
13,530
master
2,038
# # Fluentd # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, so...
github
fluent/fluentd
https://github.com/fluent/fluentd
lib/fluent/plugin/formatter_single_value.rb
Ruby
apache-2.0
13,530
master
1,083
# # Fluentd # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, so...
github
fluent/fluentd
https://github.com/fluent/fluentd
lib/fluent/plugin/service_discovery.rb
Ruby
apache-2.0
13,530
master
1,630
# # Fluentd # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, so...
github
fluent/fluentd
https://github.com/fluent/fluentd
lib/fluent/plugin/parser_regexp.rb
Ruby
apache-2.0
13,530
master
2,157
# # Fluentd # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, so...
github
fluent/fluentd
https://github.com/fluent/fluentd
lib/fluent/plugin/sd_file.rb
Ruby
apache-2.0
13,530
master
3,880
# # Fluentd # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, so...
github
fluent/fluentd
https://github.com/fluent/fluentd
lib/fluent/plugin/in_monitor_agent.rb
Ruby
apache-2.0
13,530
master
12,272
# # Fluentd # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, so...
github
fluent/fluentd
https://github.com/fluent/fluentd
lib/fluent/plugin/in_exec.rb
Ruby
apache-2.0
13,530
master
4,113
# # Fluentd # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, so...
github
fluent/fluentd
https://github.com/fluent/fluentd
lib/fluent/plugin/out_forward.rb
Ruby
apache-2.0
13,530
master
31,390
# # Fluentd # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, so...
github
fluent/fluentd
https://github.com/fluent/fluentd
lib/fluent/plugin/parser_msgpack.rb
Ruby
apache-2.0
13,530
master
1,858
# # Fluentd # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, so...
github
fluent/fluentd
https://github.com/fluent/fluentd
lib/fluent/plugin/out_http.rb
Ruby
apache-2.0
13,530
master
13,904
# # Fluentd # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, so...
github
fluent/fluentd
https://github.com/fluent/fluentd
lib/fluent/plugin/buf_file_single.rb
Ruby
apache-2.0
13,530
master
10,324
# # Fluentd # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, so...
github
fluent/fluentd
https://github.com/fluent/fluentd
lib/fluent/plugin/formatter_csv.rb
Ruby
apache-2.0
13,530
master
3,004
# # Fluentd # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, so...
github
fluent/fluentd
https://github.com/fluent/fluentd
lib/fluent/plugin/in_sample.rb
Ruby
apache-2.0
13,530
master
4,774
# # Fluentd # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, so...