├── Digram22.png ├── Elastic-POC ├── .vscode │ ├── launch.json │ └── tasks.json ├── docker-compose-fluentd.yml ├── docker-compose-kafka.yml ├── docker-compose.yml ├── dockerfile ├── fluentd │ └── conf │ │ └── fluent.conf ├── logging │ ├── .vscode │ │ ├── launch.json │ │ └── tasks.json │ ├── Controllers │ │ └── WeatherForecastController.cs │ ├── Program.cs │ ├── Properties │ │ └── launchSettings.json │ ├── Startup.cs │ ├── WeatherForecast.cs │ ├── appsettings.Development.json │ ├── appsettings.json │ ├── bin │ │ └── Debug │ │ │ └── netcoreapp3.1 │ │ │ ├── Confluent.Kafka.dll │ │ │ ├── Properties │ │ │ └── launchSettings.json │ │ │ ├── Serilog.Extensions.Logging.dll │ │ │ ├── Serilog.Sinks.Kafka.dll │ │ │ ├── Serilog.Sinks.PeriodicBatching.dll │ │ │ ├── Serilog.dll │ │ │ ├── appsettings.Development.json │ │ │ ├── appsettings.json │ │ │ ├── logging │ │ │ ├── logging.deps.json │ │ │ ├── logging.dll │ │ │ ├── logging.pdb │ │ │ ├── logging.runtimeconfig.dev.json │ │ │ ├── logging.runtimeconfig.json │ │ │ └── runtimes │ │ │ ├── linux-x64 │ │ │ └── native │ │ │ │ ├── alpine-librdkafka.so │ │ │ │ ├── centos7-librdkafka.so │ │ │ │ ├── debian9-librdkafka.so │ │ │ │ └── librdkafka.so │ │ │ ├── osx-x64 │ │ │ └── native │ │ │ │ └── librdkafka.dylib │ │ │ ├── win-x64 │ │ │ └── native │ │ │ │ ├── librdkafka.dll │ │ │ │ ├── librdkafkacpp.dll │ │ │ │ ├── libzstd.dll │ │ │ │ ├── msvcp120.dll │ │ │ │ ├── msvcr120.dll │ │ │ │ └── zlib.dll │ │ │ └── win-x86 │ │ │ └── native │ │ │ ├── librdkafka.dll │ │ │ ├── librdkafkacpp.dll │ │ │ ├── libzstd.dll │ │ │ ├── msvcp120.dll │ │ │ ├── msvcr120.dll │ │ │ └── zlib.dll │ ├── logging.csproj │ └── obj │ │ ├── Debug │ │ └── netcoreapp3.1 │ │ │ ├── logging │ │ │ ├── logging.AssemblyInfo.cs │ │ │ ├── logging.AssemblyInfoInputs.cache │ │ │ ├── logging.MvcApplicationPartsAssemblyInfo.cache │ │ │ ├── logging.RazorTargetAssemblyInfo.cache │ │ │ ├── logging.assets.cache │ │ │ ├── logging.csproj.CopyComplete │ │ │ ├── logging.csproj.CoreCompileInputs.cache │ │ │ ├── logging.csproj.FileListAbsolute.txt │ │ │ ├── logging.csprojAssemblyReference.cache │ │ │ ├── logging.dll │ │ │ ├── logging.genruntimeconfig.cache │ │ │ ├── logging.pdb │ │ │ ├── project.razor.json │ │ │ └── staticwebassets │ │ │ ├── logging.StaticWebAssets.Manifest.cache │ │ │ └── logging.StaticWebAssets.xml │ │ ├── logging.csproj.nuget.dgspec.json │ │ ├── logging.csproj.nuget.g.props │ │ ├── logging.csproj.nuget.g.targets │ │ ├── project.assets.json │ │ └── project.nuget.cache ├── logstash_pipeline │ └── logstash.conf └── logstash_settings │ └── logstash.yml ├── README.md └── ruby-kafka └── kafkaconnector.rb /Digram22.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ragoob/fluentd_logging_kafka/HEAD/Digram22.png -------------------------------------------------------------------------------- /Elastic-POC/.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ragoob/fluentd_logging_kafka/HEAD/Elastic-POC/.vscode/launch.json -------------------------------------------------------------------------------- /Elastic-POC/.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ragoob/fluentd_logging_kafka/HEAD/Elastic-POC/.vscode/tasks.json -------------------------------------------------------------------------------- /Elastic-POC/docker-compose-fluentd.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ragoob/fluentd_logging_kafka/HEAD/Elastic-POC/docker-compose-fluentd.yml -------------------------------------------------------------------------------- /Elastic-POC/docker-compose-kafka.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ragoob/fluentd_logging_kafka/HEAD/Elastic-POC/docker-compose-kafka.yml -------------------------------------------------------------------------------- /Elastic-POC/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ragoob/fluentd_logging_kafka/HEAD/Elastic-POC/docker-compose.yml -------------------------------------------------------------------------------- /Elastic-POC/dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ragoob/fluentd_logging_kafka/HEAD/Elastic-POC/dockerfile -------------------------------------------------------------------------------- /Elastic-POC/fluentd/conf/fluent.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ragoob/fluentd_logging_kafka/HEAD/Elastic-POC/fluentd/conf/fluent.conf -------------------------------------------------------------------------------- /Elastic-POC/logging/.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ragoob/fluentd_logging_kafka/HEAD/Elastic-POC/logging/.vscode/launch.json -------------------------------------------------------------------------------- /Elastic-POC/logging/.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ragoob/fluentd_logging_kafka/HEAD/Elastic-POC/logging/.vscode/tasks.json -------------------------------------------------------------------------------- /Elastic-POC/logging/Controllers/WeatherForecastController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ragoob/fluentd_logging_kafka/HEAD/Elastic-POC/logging/Controllers/WeatherForecastController.cs -------------------------------------------------------------------------------- /Elastic-POC/logging/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ragoob/fluentd_logging_kafka/HEAD/Elastic-POC/logging/Program.cs -------------------------------------------------------------------------------- /Elastic-POC/logging/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ragoob/fluentd_logging_kafka/HEAD/Elastic-POC/logging/Properties/launchSettings.json -------------------------------------------------------------------------------- /Elastic-POC/logging/Startup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ragoob/fluentd_logging_kafka/HEAD/Elastic-POC/logging/Startup.cs -------------------------------------------------------------------------------- /Elastic-POC/logging/WeatherForecast.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ragoob/fluentd_logging_kafka/HEAD/Elastic-POC/logging/WeatherForecast.cs -------------------------------------------------------------------------------- /Elastic-POC/logging/appsettings.Development.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ragoob/fluentd_logging_kafka/HEAD/Elastic-POC/logging/appsettings.Development.json -------------------------------------------------------------------------------- /Elastic-POC/logging/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ragoob/fluentd_logging_kafka/HEAD/Elastic-POC/logging/appsettings.json -------------------------------------------------------------------------------- /Elastic-POC/logging/bin/Debug/netcoreapp3.1/Confluent.Kafka.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ragoob/fluentd_logging_kafka/HEAD/Elastic-POC/logging/bin/Debug/netcoreapp3.1/Confluent.Kafka.dll -------------------------------------------------------------------------------- /Elastic-POC/logging/bin/Debug/netcoreapp3.1/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ragoob/fluentd_logging_kafka/HEAD/Elastic-POC/logging/bin/Debug/netcoreapp3.1/Properties/launchSettings.json -------------------------------------------------------------------------------- /Elastic-POC/logging/bin/Debug/netcoreapp3.1/Serilog.Extensions.Logging.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ragoob/fluentd_logging_kafka/HEAD/Elastic-POC/logging/bin/Debug/netcoreapp3.1/Serilog.Extensions.Logging.dll -------------------------------------------------------------------------------- /Elastic-POC/logging/bin/Debug/netcoreapp3.1/Serilog.Sinks.Kafka.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ragoob/fluentd_logging_kafka/HEAD/Elastic-POC/logging/bin/Debug/netcoreapp3.1/Serilog.Sinks.Kafka.dll -------------------------------------------------------------------------------- /Elastic-POC/logging/bin/Debug/netcoreapp3.1/Serilog.Sinks.PeriodicBatching.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ragoob/fluentd_logging_kafka/HEAD/Elastic-POC/logging/bin/Debug/netcoreapp3.1/Serilog.Sinks.PeriodicBatching.dll -------------------------------------------------------------------------------- /Elastic-POC/logging/bin/Debug/netcoreapp3.1/Serilog.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ragoob/fluentd_logging_kafka/HEAD/Elastic-POC/logging/bin/Debug/netcoreapp3.1/Serilog.dll -------------------------------------------------------------------------------- /Elastic-POC/logging/bin/Debug/netcoreapp3.1/appsettings.Development.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ragoob/fluentd_logging_kafka/HEAD/Elastic-POC/logging/bin/Debug/netcoreapp3.1/appsettings.Development.json -------------------------------------------------------------------------------- /Elastic-POC/logging/bin/Debug/netcoreapp3.1/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ragoob/fluentd_logging_kafka/HEAD/Elastic-POC/logging/bin/Debug/netcoreapp3.1/appsettings.json -------------------------------------------------------------------------------- /Elastic-POC/logging/bin/Debug/netcoreapp3.1/logging: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ragoob/fluentd_logging_kafka/HEAD/Elastic-POC/logging/bin/Debug/netcoreapp3.1/logging -------------------------------------------------------------------------------- /Elastic-POC/logging/bin/Debug/netcoreapp3.1/logging.deps.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ragoob/fluentd_logging_kafka/HEAD/Elastic-POC/logging/bin/Debug/netcoreapp3.1/logging.deps.json -------------------------------------------------------------------------------- /Elastic-POC/logging/bin/Debug/netcoreapp3.1/logging.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ragoob/fluentd_logging_kafka/HEAD/Elastic-POC/logging/bin/Debug/netcoreapp3.1/logging.dll -------------------------------------------------------------------------------- /Elastic-POC/logging/bin/Debug/netcoreapp3.1/logging.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ragoob/fluentd_logging_kafka/HEAD/Elastic-POC/logging/bin/Debug/netcoreapp3.1/logging.pdb -------------------------------------------------------------------------------- /Elastic-POC/logging/bin/Debug/netcoreapp3.1/logging.runtimeconfig.dev.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ragoob/fluentd_logging_kafka/HEAD/Elastic-POC/logging/bin/Debug/netcoreapp3.1/logging.runtimeconfig.dev.json -------------------------------------------------------------------------------- /Elastic-POC/logging/bin/Debug/netcoreapp3.1/logging.runtimeconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ragoob/fluentd_logging_kafka/HEAD/Elastic-POC/logging/bin/Debug/netcoreapp3.1/logging.runtimeconfig.json -------------------------------------------------------------------------------- /Elastic-POC/logging/bin/Debug/netcoreapp3.1/runtimes/linux-x64/native/alpine-librdkafka.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ragoob/fluentd_logging_kafka/HEAD/Elastic-POC/logging/bin/Debug/netcoreapp3.1/runtimes/linux-x64/native/alpine-librdkafka.so -------------------------------------------------------------------------------- /Elastic-POC/logging/bin/Debug/netcoreapp3.1/runtimes/linux-x64/native/centos7-librdkafka.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ragoob/fluentd_logging_kafka/HEAD/Elastic-POC/logging/bin/Debug/netcoreapp3.1/runtimes/linux-x64/native/centos7-librdkafka.so -------------------------------------------------------------------------------- /Elastic-POC/logging/bin/Debug/netcoreapp3.1/runtimes/linux-x64/native/debian9-librdkafka.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ragoob/fluentd_logging_kafka/HEAD/Elastic-POC/logging/bin/Debug/netcoreapp3.1/runtimes/linux-x64/native/debian9-librdkafka.so -------------------------------------------------------------------------------- /Elastic-POC/logging/bin/Debug/netcoreapp3.1/runtimes/linux-x64/native/librdkafka.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ragoob/fluentd_logging_kafka/HEAD/Elastic-POC/logging/bin/Debug/netcoreapp3.1/runtimes/linux-x64/native/librdkafka.so -------------------------------------------------------------------------------- /Elastic-POC/logging/bin/Debug/netcoreapp3.1/runtimes/osx-x64/native/librdkafka.dylib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ragoob/fluentd_logging_kafka/HEAD/Elastic-POC/logging/bin/Debug/netcoreapp3.1/runtimes/osx-x64/native/librdkafka.dylib -------------------------------------------------------------------------------- /Elastic-POC/logging/bin/Debug/netcoreapp3.1/runtimes/win-x64/native/librdkafka.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ragoob/fluentd_logging_kafka/HEAD/Elastic-POC/logging/bin/Debug/netcoreapp3.1/runtimes/win-x64/native/librdkafka.dll -------------------------------------------------------------------------------- /Elastic-POC/logging/bin/Debug/netcoreapp3.1/runtimes/win-x64/native/librdkafkacpp.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ragoob/fluentd_logging_kafka/HEAD/Elastic-POC/logging/bin/Debug/netcoreapp3.1/runtimes/win-x64/native/librdkafkacpp.dll -------------------------------------------------------------------------------- /Elastic-POC/logging/bin/Debug/netcoreapp3.1/runtimes/win-x64/native/libzstd.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ragoob/fluentd_logging_kafka/HEAD/Elastic-POC/logging/bin/Debug/netcoreapp3.1/runtimes/win-x64/native/libzstd.dll -------------------------------------------------------------------------------- /Elastic-POC/logging/bin/Debug/netcoreapp3.1/runtimes/win-x64/native/msvcp120.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ragoob/fluentd_logging_kafka/HEAD/Elastic-POC/logging/bin/Debug/netcoreapp3.1/runtimes/win-x64/native/msvcp120.dll -------------------------------------------------------------------------------- /Elastic-POC/logging/bin/Debug/netcoreapp3.1/runtimes/win-x64/native/msvcr120.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ragoob/fluentd_logging_kafka/HEAD/Elastic-POC/logging/bin/Debug/netcoreapp3.1/runtimes/win-x64/native/msvcr120.dll -------------------------------------------------------------------------------- /Elastic-POC/logging/bin/Debug/netcoreapp3.1/runtimes/win-x64/native/zlib.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ragoob/fluentd_logging_kafka/HEAD/Elastic-POC/logging/bin/Debug/netcoreapp3.1/runtimes/win-x64/native/zlib.dll -------------------------------------------------------------------------------- /Elastic-POC/logging/bin/Debug/netcoreapp3.1/runtimes/win-x86/native/librdkafka.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ragoob/fluentd_logging_kafka/HEAD/Elastic-POC/logging/bin/Debug/netcoreapp3.1/runtimes/win-x86/native/librdkafka.dll -------------------------------------------------------------------------------- /Elastic-POC/logging/bin/Debug/netcoreapp3.1/runtimes/win-x86/native/librdkafkacpp.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ragoob/fluentd_logging_kafka/HEAD/Elastic-POC/logging/bin/Debug/netcoreapp3.1/runtimes/win-x86/native/librdkafkacpp.dll -------------------------------------------------------------------------------- /Elastic-POC/logging/bin/Debug/netcoreapp3.1/runtimes/win-x86/native/libzstd.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ragoob/fluentd_logging_kafka/HEAD/Elastic-POC/logging/bin/Debug/netcoreapp3.1/runtimes/win-x86/native/libzstd.dll -------------------------------------------------------------------------------- /Elastic-POC/logging/bin/Debug/netcoreapp3.1/runtimes/win-x86/native/msvcp120.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ragoob/fluentd_logging_kafka/HEAD/Elastic-POC/logging/bin/Debug/netcoreapp3.1/runtimes/win-x86/native/msvcp120.dll -------------------------------------------------------------------------------- /Elastic-POC/logging/bin/Debug/netcoreapp3.1/runtimes/win-x86/native/msvcr120.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ragoob/fluentd_logging_kafka/HEAD/Elastic-POC/logging/bin/Debug/netcoreapp3.1/runtimes/win-x86/native/msvcr120.dll -------------------------------------------------------------------------------- /Elastic-POC/logging/bin/Debug/netcoreapp3.1/runtimes/win-x86/native/zlib.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ragoob/fluentd_logging_kafka/HEAD/Elastic-POC/logging/bin/Debug/netcoreapp3.1/runtimes/win-x86/native/zlib.dll -------------------------------------------------------------------------------- /Elastic-POC/logging/logging.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ragoob/fluentd_logging_kafka/HEAD/Elastic-POC/logging/logging.csproj -------------------------------------------------------------------------------- /Elastic-POC/logging/obj/Debug/netcoreapp3.1/logging: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ragoob/fluentd_logging_kafka/HEAD/Elastic-POC/logging/obj/Debug/netcoreapp3.1/logging -------------------------------------------------------------------------------- /Elastic-POC/logging/obj/Debug/netcoreapp3.1/logging.AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ragoob/fluentd_logging_kafka/HEAD/Elastic-POC/logging/obj/Debug/netcoreapp3.1/logging.AssemblyInfo.cs -------------------------------------------------------------------------------- /Elastic-POC/logging/obj/Debug/netcoreapp3.1/logging.AssemblyInfoInputs.cache: -------------------------------------------------------------------------------- 1 | a5991f3ddb11d74d36a0f51535274ea327af13a6 2 | -------------------------------------------------------------------------------- /Elastic-POC/logging/obj/Debug/netcoreapp3.1/logging.MvcApplicationPartsAssemblyInfo.cache: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Elastic-POC/logging/obj/Debug/netcoreapp3.1/logging.RazorTargetAssemblyInfo.cache: -------------------------------------------------------------------------------- 1 | 276b98852f0fbc6d78394ad0a29ac91af1b557e9 2 | -------------------------------------------------------------------------------- /Elastic-POC/logging/obj/Debug/netcoreapp3.1/logging.assets.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ragoob/fluentd_logging_kafka/HEAD/Elastic-POC/logging/obj/Debug/netcoreapp3.1/logging.assets.cache -------------------------------------------------------------------------------- /Elastic-POC/logging/obj/Debug/netcoreapp3.1/logging.csproj.CopyComplete: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Elastic-POC/logging/obj/Debug/netcoreapp3.1/logging.csproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- 1 | 09b7f42396a53604dcb10de5ae8de7e04cdf6f46 2 | -------------------------------------------------------------------------------- /Elastic-POC/logging/obj/Debug/netcoreapp3.1/logging.csproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ragoob/fluentd_logging_kafka/HEAD/Elastic-POC/logging/obj/Debug/netcoreapp3.1/logging.csproj.FileListAbsolute.txt -------------------------------------------------------------------------------- /Elastic-POC/logging/obj/Debug/netcoreapp3.1/logging.csprojAssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ragoob/fluentd_logging_kafka/HEAD/Elastic-POC/logging/obj/Debug/netcoreapp3.1/logging.csprojAssemblyReference.cache -------------------------------------------------------------------------------- /Elastic-POC/logging/obj/Debug/netcoreapp3.1/logging.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ragoob/fluentd_logging_kafka/HEAD/Elastic-POC/logging/obj/Debug/netcoreapp3.1/logging.dll -------------------------------------------------------------------------------- /Elastic-POC/logging/obj/Debug/netcoreapp3.1/logging.genruntimeconfig.cache: -------------------------------------------------------------------------------- 1 | 86c8e15dd33445635927cfaf398408205fd11473 2 | -------------------------------------------------------------------------------- /Elastic-POC/logging/obj/Debug/netcoreapp3.1/logging.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ragoob/fluentd_logging_kafka/HEAD/Elastic-POC/logging/obj/Debug/netcoreapp3.1/logging.pdb -------------------------------------------------------------------------------- /Elastic-POC/logging/obj/Debug/netcoreapp3.1/project.razor.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ragoob/fluentd_logging_kafka/HEAD/Elastic-POC/logging/obj/Debug/netcoreapp3.1/project.razor.json -------------------------------------------------------------------------------- /Elastic-POC/logging/obj/Debug/netcoreapp3.1/staticwebassets/logging.StaticWebAssets.Manifest.cache: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Elastic-POC/logging/obj/Debug/netcoreapp3.1/staticwebassets/logging.StaticWebAssets.xml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Elastic-POC/logging/obj/logging.csproj.nuget.dgspec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ragoob/fluentd_logging_kafka/HEAD/Elastic-POC/logging/obj/logging.csproj.nuget.dgspec.json -------------------------------------------------------------------------------- /Elastic-POC/logging/obj/logging.csproj.nuget.g.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ragoob/fluentd_logging_kafka/HEAD/Elastic-POC/logging/obj/logging.csproj.nuget.g.props -------------------------------------------------------------------------------- /Elastic-POC/logging/obj/logging.csproj.nuget.g.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ragoob/fluentd_logging_kafka/HEAD/Elastic-POC/logging/obj/logging.csproj.nuget.g.targets -------------------------------------------------------------------------------- /Elastic-POC/logging/obj/project.assets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ragoob/fluentd_logging_kafka/HEAD/Elastic-POC/logging/obj/project.assets.json -------------------------------------------------------------------------------- /Elastic-POC/logging/obj/project.nuget.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ragoob/fluentd_logging_kafka/HEAD/Elastic-POC/logging/obj/project.nuget.cache -------------------------------------------------------------------------------- /Elastic-POC/logstash_pipeline/logstash.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ragoob/fluentd_logging_kafka/HEAD/Elastic-POC/logstash_pipeline/logstash.conf -------------------------------------------------------------------------------- /Elastic-POC/logstash_settings/logstash.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ragoob/fluentd_logging_kafka/HEAD/Elastic-POC/logstash_settings/logstash.yml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ragoob/fluentd_logging_kafka/HEAD/README.md -------------------------------------------------------------------------------- /ruby-kafka/kafkaconnector.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ragoob/fluentd_logging_kafka/HEAD/ruby-kafka/kafkaconnector.rb --------------------------------------------------------------------------------