├── .github └── workflows │ └── auto-approve.yml ├── .gitignore ├── .kitchen.yml ├── Berksfile ├── Gemfile ├── LICENSE ├── README.md ├── Rakefile ├── Vagrantfile ├── bats ├── compat_debian.bats ├── compat_redhat.bats ├── configtest_debian.bats ├── configtest_redhat.bats ├── override_debian.bats ├── override_redhat.bats ├── reload_debian.bats ├── reload_redhat.bats ├── render ├── restart_debian.bats ├── restart_redhat.bats ├── start_debian.bats ├── start_redhat.bats ├── status_debian.bats ├── status_redhat.bats ├── stop_debian.bats ├── stop_redhat.bats ├── stubs │ └── stub ├── test_helper.bash ├── usage_debian.bats └── usage_redhat.bats ├── bin ├── gem_downloader ├── gem_installer └── pkg_build ├── config ├── patches │ └── ruby │ │ ├── ruby-2.1-openssl-mode-patch.patch │ │ └── ruby-2.6.7_c99.patch ├── projects │ ├── google-fluentd.rb │ └── rpm │ │ └── google-fluentd-start-service.spec └── software │ ├── bundler.rb │ ├── fluentd-ui.rb │ ├── fluentd.rb │ ├── jemalloc.rb │ ├── openssl.rb │ ├── postgresql.rb │ ├── ruby.rb │ ├── td-agent-cleanup.rb │ ├── td-agent-files.rb │ ├── td-agent-ui.rb │ ├── td-agent.rb │ ├── td.rb │ └── xz.rb ├── core_gems.rb ├── docker ├── Dockerfile └── entrypoint.sh ├── lib └── gems_parser.rb ├── omnibus.rb ├── omnibus.rb.example ├── plugin_gems.rb ├── resources ├── google-fluentd │ └── rpm │ │ └── spec.erb └── td-agent │ ├── dmg │ ├── background.png │ └── icon.png │ └── pkg │ ├── background.png │ ├── license.html.erb │ └── welcome.html.erb ├── spec ├── localhost │ └── td_agent_spec.rb └── spec_helper.rb ├── templates ├── etc │ ├── init.d │ │ ├── deb │ │ │ └── td-agent │ │ └── rpm │ │ │ └── td-agent │ └── td-agent │ │ ├── logrotate.d │ │ └── td-agent.logrotate │ │ ├── prelink.conf.d │ │ └── td-agent.conf │ │ ├── td-agent.conf │ │ └── td-agent.conf.tmpl ├── package-scripts │ └── td-agent │ │ ├── deb │ │ ├── postinst │ │ ├── postrm │ │ └── prerm │ │ ├── pkg │ │ └── postinstall │ │ └── rpm │ │ ├── post │ │ ├── posttrans │ │ ├── postun │ │ └── preun ├── td-agent.plist.erb └── usr │ ├── bin │ └── td.erb │ └── sbin │ ├── td-agent-gem.erb │ ├── td-agent-ui.erb │ └── td-agent.erb ├── ui_gems.rb └── windows-installer ├── VERSION ├── eventlog_rb_replacement.txt ├── fluent-template.conf ├── generate_sdl_agent_exe.ps1 ├── setup.nsi ├── stackdriver_header.bmp ├── stackdriver_language_util.nsh ├── stackdriver_license.txt ├── stackdriver_logo.ico ├── stackdriver_ui.nsh ├── stackdriver_util.nsh └── stackdriver_welcome.bmp /.github/workflows/auto-approve.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/google-fluentd/HEAD/.github/workflows/auto-approve.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/google-fluentd/HEAD/.gitignore -------------------------------------------------------------------------------- /.kitchen.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/google-fluentd/HEAD/.kitchen.yml -------------------------------------------------------------------------------- /Berksfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/google-fluentd/HEAD/Berksfile -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/google-fluentd/HEAD/Gemfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/google-fluentd/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/google-fluentd/HEAD/README.md -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/google-fluentd/HEAD/Rakefile -------------------------------------------------------------------------------- /Vagrantfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/google-fluentd/HEAD/Vagrantfile -------------------------------------------------------------------------------- /bats/compat_debian.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/google-fluentd/HEAD/bats/compat_debian.bats -------------------------------------------------------------------------------- /bats/compat_redhat.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/google-fluentd/HEAD/bats/compat_redhat.bats -------------------------------------------------------------------------------- /bats/configtest_debian.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/google-fluentd/HEAD/bats/configtest_debian.bats -------------------------------------------------------------------------------- /bats/configtest_redhat.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/google-fluentd/HEAD/bats/configtest_redhat.bats -------------------------------------------------------------------------------- /bats/override_debian.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/google-fluentd/HEAD/bats/override_debian.bats -------------------------------------------------------------------------------- /bats/override_redhat.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/google-fluentd/HEAD/bats/override_redhat.bats -------------------------------------------------------------------------------- /bats/reload_debian.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/google-fluentd/HEAD/bats/reload_debian.bats -------------------------------------------------------------------------------- /bats/reload_redhat.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/google-fluentd/HEAD/bats/reload_redhat.bats -------------------------------------------------------------------------------- /bats/render: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/google-fluentd/HEAD/bats/render -------------------------------------------------------------------------------- /bats/restart_debian.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/google-fluentd/HEAD/bats/restart_debian.bats -------------------------------------------------------------------------------- /bats/restart_redhat.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/google-fluentd/HEAD/bats/restart_redhat.bats -------------------------------------------------------------------------------- /bats/start_debian.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/google-fluentd/HEAD/bats/start_debian.bats -------------------------------------------------------------------------------- /bats/start_redhat.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/google-fluentd/HEAD/bats/start_redhat.bats -------------------------------------------------------------------------------- /bats/status_debian.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/google-fluentd/HEAD/bats/status_debian.bats -------------------------------------------------------------------------------- /bats/status_redhat.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/google-fluentd/HEAD/bats/status_redhat.bats -------------------------------------------------------------------------------- /bats/stop_debian.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/google-fluentd/HEAD/bats/stop_debian.bats -------------------------------------------------------------------------------- /bats/stop_redhat.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/google-fluentd/HEAD/bats/stop_redhat.bats -------------------------------------------------------------------------------- /bats/stubs/stub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/google-fluentd/HEAD/bats/stubs/stub -------------------------------------------------------------------------------- /bats/test_helper.bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/google-fluentd/HEAD/bats/test_helper.bash -------------------------------------------------------------------------------- /bats/usage_debian.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/google-fluentd/HEAD/bats/usage_debian.bats -------------------------------------------------------------------------------- /bats/usage_redhat.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/google-fluentd/HEAD/bats/usage_redhat.bats -------------------------------------------------------------------------------- /bin/gem_downloader: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/google-fluentd/HEAD/bin/gem_downloader -------------------------------------------------------------------------------- /bin/gem_installer: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/google-fluentd/HEAD/bin/gem_installer -------------------------------------------------------------------------------- /bin/pkg_build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/google-fluentd/HEAD/bin/pkg_build -------------------------------------------------------------------------------- /config/patches/ruby/ruby-2.1-openssl-mode-patch.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/google-fluentd/HEAD/config/patches/ruby/ruby-2.1-openssl-mode-patch.patch -------------------------------------------------------------------------------- /config/patches/ruby/ruby-2.6.7_c99.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/google-fluentd/HEAD/config/patches/ruby/ruby-2.6.7_c99.patch -------------------------------------------------------------------------------- /config/projects/google-fluentd.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/google-fluentd/HEAD/config/projects/google-fluentd.rb -------------------------------------------------------------------------------- /config/projects/rpm/google-fluentd-start-service.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/google-fluentd/HEAD/config/projects/rpm/google-fluentd-start-service.spec -------------------------------------------------------------------------------- /config/software/bundler.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/google-fluentd/HEAD/config/software/bundler.rb -------------------------------------------------------------------------------- /config/software/fluentd-ui.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/google-fluentd/HEAD/config/software/fluentd-ui.rb -------------------------------------------------------------------------------- /config/software/fluentd.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/google-fluentd/HEAD/config/software/fluentd.rb -------------------------------------------------------------------------------- /config/software/jemalloc.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/google-fluentd/HEAD/config/software/jemalloc.rb -------------------------------------------------------------------------------- /config/software/openssl.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/google-fluentd/HEAD/config/software/openssl.rb -------------------------------------------------------------------------------- /config/software/postgresql.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/google-fluentd/HEAD/config/software/postgresql.rb -------------------------------------------------------------------------------- /config/software/ruby.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/google-fluentd/HEAD/config/software/ruby.rb -------------------------------------------------------------------------------- /config/software/td-agent-cleanup.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/google-fluentd/HEAD/config/software/td-agent-cleanup.rb -------------------------------------------------------------------------------- /config/software/td-agent-files.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/google-fluentd/HEAD/config/software/td-agent-files.rb -------------------------------------------------------------------------------- /config/software/td-agent-ui.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/google-fluentd/HEAD/config/software/td-agent-ui.rb -------------------------------------------------------------------------------- /config/software/td-agent.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/google-fluentd/HEAD/config/software/td-agent.rb -------------------------------------------------------------------------------- /config/software/td.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/google-fluentd/HEAD/config/software/td.rb -------------------------------------------------------------------------------- /config/software/xz.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/google-fluentd/HEAD/config/software/xz.rb -------------------------------------------------------------------------------- /core_gems.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/google-fluentd/HEAD/core_gems.rb -------------------------------------------------------------------------------- /docker/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/google-fluentd/HEAD/docker/Dockerfile -------------------------------------------------------------------------------- /docker/entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/google-fluentd/HEAD/docker/entrypoint.sh -------------------------------------------------------------------------------- /lib/gems_parser.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/google-fluentd/HEAD/lib/gems_parser.rb -------------------------------------------------------------------------------- /omnibus.rb: -------------------------------------------------------------------------------- 1 | append_timestamp false 2 | -------------------------------------------------------------------------------- /omnibus.rb.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/google-fluentd/HEAD/omnibus.rb.example -------------------------------------------------------------------------------- /plugin_gems.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/google-fluentd/HEAD/plugin_gems.rb -------------------------------------------------------------------------------- /resources/google-fluentd/rpm/spec.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/google-fluentd/HEAD/resources/google-fluentd/rpm/spec.erb -------------------------------------------------------------------------------- /resources/td-agent/dmg/background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/google-fluentd/HEAD/resources/td-agent/dmg/background.png -------------------------------------------------------------------------------- /resources/td-agent/dmg/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/google-fluentd/HEAD/resources/td-agent/dmg/icon.png -------------------------------------------------------------------------------- /resources/td-agent/pkg/background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/google-fluentd/HEAD/resources/td-agent/pkg/background.png -------------------------------------------------------------------------------- /resources/td-agent/pkg/license.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/google-fluentd/HEAD/resources/td-agent/pkg/license.html.erb -------------------------------------------------------------------------------- /resources/td-agent/pkg/welcome.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/google-fluentd/HEAD/resources/td-agent/pkg/welcome.html.erb -------------------------------------------------------------------------------- /spec/localhost/td_agent_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/google-fluentd/HEAD/spec/localhost/td_agent_spec.rb -------------------------------------------------------------------------------- /spec/spec_helper.rb: -------------------------------------------------------------------------------- 1 | require 'serverspec' 2 | 3 | set :backend, :exec 4 | 5 | -------------------------------------------------------------------------------- /templates/etc/init.d/deb/td-agent: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/google-fluentd/HEAD/templates/etc/init.d/deb/td-agent -------------------------------------------------------------------------------- /templates/etc/init.d/rpm/td-agent: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/google-fluentd/HEAD/templates/etc/init.d/rpm/td-agent -------------------------------------------------------------------------------- /templates/etc/td-agent/logrotate.d/td-agent.logrotate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/google-fluentd/HEAD/templates/etc/td-agent/logrotate.d/td-agent.logrotate -------------------------------------------------------------------------------- /templates/etc/td-agent/prelink.conf.d/td-agent.conf: -------------------------------------------------------------------------------- 1 | -b <%= install_path %>/embedded/bin/ruby 2 | 3 | -------------------------------------------------------------------------------- /templates/etc/td-agent/td-agent.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/google-fluentd/HEAD/templates/etc/td-agent/td-agent.conf -------------------------------------------------------------------------------- /templates/etc/td-agent/td-agent.conf.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/google-fluentd/HEAD/templates/etc/td-agent/td-agent.conf.tmpl -------------------------------------------------------------------------------- /templates/package-scripts/td-agent/deb/postinst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/google-fluentd/HEAD/templates/package-scripts/td-agent/deb/postinst -------------------------------------------------------------------------------- /templates/package-scripts/td-agent/deb/postrm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/google-fluentd/HEAD/templates/package-scripts/td-agent/deb/postrm -------------------------------------------------------------------------------- /templates/package-scripts/td-agent/deb/prerm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/google-fluentd/HEAD/templates/package-scripts/td-agent/deb/prerm -------------------------------------------------------------------------------- /templates/package-scripts/td-agent/pkg/postinstall: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/google-fluentd/HEAD/templates/package-scripts/td-agent/pkg/postinstall -------------------------------------------------------------------------------- /templates/package-scripts/td-agent/rpm/post: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/google-fluentd/HEAD/templates/package-scripts/td-agent/rpm/post -------------------------------------------------------------------------------- /templates/package-scripts/td-agent/rpm/posttrans: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/google-fluentd/HEAD/templates/package-scripts/td-agent/rpm/posttrans -------------------------------------------------------------------------------- /templates/package-scripts/td-agent/rpm/postun: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /templates/package-scripts/td-agent/rpm/preun: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/google-fluentd/HEAD/templates/package-scripts/td-agent/rpm/preun -------------------------------------------------------------------------------- /templates/td-agent.plist.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/google-fluentd/HEAD/templates/td-agent.plist.erb -------------------------------------------------------------------------------- /templates/usr/bin/td.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/google-fluentd/HEAD/templates/usr/bin/td.erb -------------------------------------------------------------------------------- /templates/usr/sbin/td-agent-gem.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/google-fluentd/HEAD/templates/usr/sbin/td-agent-gem.erb -------------------------------------------------------------------------------- /templates/usr/sbin/td-agent-ui.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/google-fluentd/HEAD/templates/usr/sbin/td-agent-ui.erb -------------------------------------------------------------------------------- /templates/usr/sbin/td-agent.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/google-fluentd/HEAD/templates/usr/sbin/td-agent.erb -------------------------------------------------------------------------------- /ui_gems.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/google-fluentd/HEAD/ui_gems.rb -------------------------------------------------------------------------------- /windows-installer/VERSION: -------------------------------------------------------------------------------- 1 | v1-23 2 | -------------------------------------------------------------------------------- /windows-installer/eventlog_rb_replacement.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/google-fluentd/HEAD/windows-installer/eventlog_rb_replacement.txt -------------------------------------------------------------------------------- /windows-installer/fluent-template.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/google-fluentd/HEAD/windows-installer/fluent-template.conf -------------------------------------------------------------------------------- /windows-installer/generate_sdl_agent_exe.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/google-fluentd/HEAD/windows-installer/generate_sdl_agent_exe.ps1 -------------------------------------------------------------------------------- /windows-installer/setup.nsi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/google-fluentd/HEAD/windows-installer/setup.nsi -------------------------------------------------------------------------------- /windows-installer/stackdriver_header.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/google-fluentd/HEAD/windows-installer/stackdriver_header.bmp -------------------------------------------------------------------------------- /windows-installer/stackdriver_language_util.nsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/google-fluentd/HEAD/windows-installer/stackdriver_language_util.nsh -------------------------------------------------------------------------------- /windows-installer/stackdriver_license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/google-fluentd/HEAD/windows-installer/stackdriver_license.txt -------------------------------------------------------------------------------- /windows-installer/stackdriver_logo.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/google-fluentd/HEAD/windows-installer/stackdriver_logo.ico -------------------------------------------------------------------------------- /windows-installer/stackdriver_ui.nsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/google-fluentd/HEAD/windows-installer/stackdriver_ui.nsh -------------------------------------------------------------------------------- /windows-installer/stackdriver_util.nsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/google-fluentd/HEAD/windows-installer/stackdriver_util.nsh -------------------------------------------------------------------------------- /windows-installer/stackdriver_welcome.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/google-fluentd/HEAD/windows-installer/stackdriver_welcome.bmp --------------------------------------------------------------------------------