├── .drone.yml ├── .gitignore ├── Gemfile ├── Gemfile.lock ├── README.md ├── Rakefile ├── assets ├── AddTrustExternalCARoot-2048.pem ├── cacert.pem └── msi │ ├── files │ ├── Sensu-en-us.wxl │ ├── Sensu.wxs │ ├── assets │ │ ├── LICENSE.rtf │ │ ├── banner_background.bmp │ │ ├── dialog_background.bmp │ │ ├── sensu.ico │ │ ├── sensu_16x16.ico │ │ └── sensu_32x32.ico │ ├── sensu-client.exe.config │ ├── sensu-client.xml │ └── sensu-install.bat │ └── templates │ └── Sensu-Config.wxi.erb ├── docker_build.sh ├── docker_run.sh ├── dockerfiles ├── centos-i386 ├── centos-x86_64 ├── debian-amd64 └── debian-i386 ├── pkg_scripts ├── deb │ ├── postinst │ ├── postrm │ └── prerm └── rpm │ ├── post │ ├── postun │ ├── pre │ └── preun ├── recipes ├── autoconf.rake ├── libyaml.rake ├── openssl.rake ├── openssl_windows.rake ├── ruby.rake ├── ruby_windows.rake ├── ruby_windows_devkit.rake ├── runit.rake ├── sensu.rake ├── sensu_bin_stubs.rake ├── sensu_configs.rake ├── sensu_msi.rake ├── sensu_plugin_1.2.0.rake ├── sensu_plugin_1.4.2.rake ├── winsw.rake └── zlib.rake ├── runit_scripts ├── sensu-ctl.rb ├── sensu-runsvdir.sh ├── sensu-sv-log.sh └── sensu-sv-run.sh.erb └── sensu_configs ├── bin └── sensu-install ├── default └── sensu ├── init.d ├── sensu-api ├── sensu-client ├── sensu-server └── sensu-service ├── logrotate.d └── sensu ├── sensu ├── conf.d │ └── README.md └── config.json.example ├── systemd ├── README.md ├── sensu-api.service ├── sensu-client.service ├── sensu-runsvdir.service └── sensu-server.service └── upstart ├── sensu-api.conf ├── sensu-client.conf ├── sensu-runsvdir.conf └── sensu-server.conf /.drone.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensu/sensu-build/HEAD/.drone.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensu/sensu-build/HEAD/.gitignore -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensu/sensu-build/HEAD/Gemfile -------------------------------------------------------------------------------- /Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensu/sensu-build/HEAD/Gemfile.lock -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensu/sensu-build/HEAD/README.md -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensu/sensu-build/HEAD/Rakefile -------------------------------------------------------------------------------- /assets/AddTrustExternalCARoot-2048.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensu/sensu-build/HEAD/assets/AddTrustExternalCARoot-2048.pem -------------------------------------------------------------------------------- /assets/cacert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensu/sensu-build/HEAD/assets/cacert.pem -------------------------------------------------------------------------------- /assets/msi/files/Sensu-en-us.wxl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensu/sensu-build/HEAD/assets/msi/files/Sensu-en-us.wxl -------------------------------------------------------------------------------- /assets/msi/files/Sensu.wxs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensu/sensu-build/HEAD/assets/msi/files/Sensu.wxs -------------------------------------------------------------------------------- /assets/msi/files/assets/LICENSE.rtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensu/sensu-build/HEAD/assets/msi/files/assets/LICENSE.rtf -------------------------------------------------------------------------------- /assets/msi/files/assets/banner_background.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensu/sensu-build/HEAD/assets/msi/files/assets/banner_background.bmp -------------------------------------------------------------------------------- /assets/msi/files/assets/dialog_background.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensu/sensu-build/HEAD/assets/msi/files/assets/dialog_background.bmp -------------------------------------------------------------------------------- /assets/msi/files/assets/sensu.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensu/sensu-build/HEAD/assets/msi/files/assets/sensu.ico -------------------------------------------------------------------------------- /assets/msi/files/assets/sensu_16x16.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensu/sensu-build/HEAD/assets/msi/files/assets/sensu_16x16.ico -------------------------------------------------------------------------------- /assets/msi/files/assets/sensu_32x32.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensu/sensu-build/HEAD/assets/msi/files/assets/sensu_32x32.ico -------------------------------------------------------------------------------- /assets/msi/files/sensu-client.exe.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensu/sensu-build/HEAD/assets/msi/files/sensu-client.exe.config -------------------------------------------------------------------------------- /assets/msi/files/sensu-client.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensu/sensu-build/HEAD/assets/msi/files/sensu-client.xml -------------------------------------------------------------------------------- /assets/msi/files/sensu-install.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensu/sensu-build/HEAD/assets/msi/files/sensu-install.bat -------------------------------------------------------------------------------- /assets/msi/templates/Sensu-Config.wxi.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensu/sensu-build/HEAD/assets/msi/templates/Sensu-Config.wxi.erb -------------------------------------------------------------------------------- /docker_build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensu/sensu-build/HEAD/docker_build.sh -------------------------------------------------------------------------------- /docker_run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensu/sensu-build/HEAD/docker_run.sh -------------------------------------------------------------------------------- /dockerfiles/centos-i386: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensu/sensu-build/HEAD/dockerfiles/centos-i386 -------------------------------------------------------------------------------- /dockerfiles/centos-x86_64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensu/sensu-build/HEAD/dockerfiles/centos-x86_64 -------------------------------------------------------------------------------- /dockerfiles/debian-amd64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensu/sensu-build/HEAD/dockerfiles/debian-amd64 -------------------------------------------------------------------------------- /dockerfiles/debian-i386: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensu/sensu-build/HEAD/dockerfiles/debian-i386 -------------------------------------------------------------------------------- /pkg_scripts/deb/postinst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensu/sensu-build/HEAD/pkg_scripts/deb/postinst -------------------------------------------------------------------------------- /pkg_scripts/deb/postrm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensu/sensu-build/HEAD/pkg_scripts/deb/postrm -------------------------------------------------------------------------------- /pkg_scripts/deb/prerm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensu/sensu-build/HEAD/pkg_scripts/deb/prerm -------------------------------------------------------------------------------- /pkg_scripts/rpm/post: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensu/sensu-build/HEAD/pkg_scripts/rpm/post -------------------------------------------------------------------------------- /pkg_scripts/rpm/postun: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensu/sensu-build/HEAD/pkg_scripts/rpm/postun -------------------------------------------------------------------------------- /pkg_scripts/rpm/pre: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensu/sensu-build/HEAD/pkg_scripts/rpm/pre -------------------------------------------------------------------------------- /pkg_scripts/rpm/preun: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensu/sensu-build/HEAD/pkg_scripts/rpm/preun -------------------------------------------------------------------------------- /recipes/autoconf.rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensu/sensu-build/HEAD/recipes/autoconf.rake -------------------------------------------------------------------------------- /recipes/libyaml.rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensu/sensu-build/HEAD/recipes/libyaml.rake -------------------------------------------------------------------------------- /recipes/openssl.rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensu/sensu-build/HEAD/recipes/openssl.rake -------------------------------------------------------------------------------- /recipes/openssl_windows.rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensu/sensu-build/HEAD/recipes/openssl_windows.rake -------------------------------------------------------------------------------- /recipes/ruby.rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensu/sensu-build/HEAD/recipes/ruby.rake -------------------------------------------------------------------------------- /recipes/ruby_windows.rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensu/sensu-build/HEAD/recipes/ruby_windows.rake -------------------------------------------------------------------------------- /recipes/ruby_windows_devkit.rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensu/sensu-build/HEAD/recipes/ruby_windows_devkit.rake -------------------------------------------------------------------------------- /recipes/runit.rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensu/sensu-build/HEAD/recipes/runit.rake -------------------------------------------------------------------------------- /recipes/sensu.rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensu/sensu-build/HEAD/recipes/sensu.rake -------------------------------------------------------------------------------- /recipes/sensu_bin_stubs.rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensu/sensu-build/HEAD/recipes/sensu_bin_stubs.rake -------------------------------------------------------------------------------- /recipes/sensu_configs.rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensu/sensu-build/HEAD/recipes/sensu_configs.rake -------------------------------------------------------------------------------- /recipes/sensu_msi.rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensu/sensu-build/HEAD/recipes/sensu_msi.rake -------------------------------------------------------------------------------- /recipes/sensu_plugin_1.2.0.rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensu/sensu-build/HEAD/recipes/sensu_plugin_1.2.0.rake -------------------------------------------------------------------------------- /recipes/sensu_plugin_1.4.2.rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensu/sensu-build/HEAD/recipes/sensu_plugin_1.4.2.rake -------------------------------------------------------------------------------- /recipes/winsw.rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensu/sensu-build/HEAD/recipes/winsw.rake -------------------------------------------------------------------------------- /recipes/zlib.rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensu/sensu-build/HEAD/recipes/zlib.rake -------------------------------------------------------------------------------- /runit_scripts/sensu-ctl.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensu/sensu-build/HEAD/runit_scripts/sensu-ctl.rb -------------------------------------------------------------------------------- /runit_scripts/sensu-runsvdir.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensu/sensu-build/HEAD/runit_scripts/sensu-runsvdir.sh -------------------------------------------------------------------------------- /runit_scripts/sensu-sv-log.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | exec svlogd -tt ./main 3 | -------------------------------------------------------------------------------- /runit_scripts/sensu-sv-run.sh.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensu/sensu-build/HEAD/runit_scripts/sensu-sv-run.sh.erb -------------------------------------------------------------------------------- /sensu_configs/bin/sensu-install: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensu/sensu-build/HEAD/sensu_configs/bin/sensu-install -------------------------------------------------------------------------------- /sensu_configs/default/sensu: -------------------------------------------------------------------------------- 1 | EMBEDDED_RUBY=true 2 | -------------------------------------------------------------------------------- /sensu_configs/init.d/sensu-api: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensu/sensu-build/HEAD/sensu_configs/init.d/sensu-api -------------------------------------------------------------------------------- /sensu_configs/init.d/sensu-client: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensu/sensu-build/HEAD/sensu_configs/init.d/sensu-client -------------------------------------------------------------------------------- /sensu_configs/init.d/sensu-server: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensu/sensu-build/HEAD/sensu_configs/init.d/sensu-server -------------------------------------------------------------------------------- /sensu_configs/init.d/sensu-service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensu/sensu-build/HEAD/sensu_configs/init.d/sensu-service -------------------------------------------------------------------------------- /sensu_configs/logrotate.d/sensu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensu/sensu-build/HEAD/sensu_configs/logrotate.d/sensu -------------------------------------------------------------------------------- /sensu_configs/sensu/conf.d/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensu/sensu-build/HEAD/sensu_configs/sensu/conf.d/README.md -------------------------------------------------------------------------------- /sensu_configs/sensu/config.json.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensu/sensu-build/HEAD/sensu_configs/sensu/config.json.example -------------------------------------------------------------------------------- /sensu_configs/systemd/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensu/sensu-build/HEAD/sensu_configs/systemd/README.md -------------------------------------------------------------------------------- /sensu_configs/systemd/sensu-api.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensu/sensu-build/HEAD/sensu_configs/systemd/sensu-api.service -------------------------------------------------------------------------------- /sensu_configs/systemd/sensu-client.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensu/sensu-build/HEAD/sensu_configs/systemd/sensu-client.service -------------------------------------------------------------------------------- /sensu_configs/systemd/sensu-runsvdir.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensu/sensu-build/HEAD/sensu_configs/systemd/sensu-runsvdir.service -------------------------------------------------------------------------------- /sensu_configs/systemd/sensu-server.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensu/sensu-build/HEAD/sensu_configs/systemd/sensu-server.service -------------------------------------------------------------------------------- /sensu_configs/upstart/sensu-api.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensu/sensu-build/HEAD/sensu_configs/upstart/sensu-api.conf -------------------------------------------------------------------------------- /sensu_configs/upstart/sensu-client.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensu/sensu-build/HEAD/sensu_configs/upstart/sensu-client.conf -------------------------------------------------------------------------------- /sensu_configs/upstart/sensu-runsvdir.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensu/sensu-build/HEAD/sensu_configs/upstart/sensu-runsvdir.conf -------------------------------------------------------------------------------- /sensu_configs/upstart/sensu-server.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensu/sensu-build/HEAD/sensu_configs/upstart/sensu-server.conf --------------------------------------------------------------------------------