├── .gitignore ├── CHANGELOG.md ├── CONTRIBUTORS ├── DEVELOPER.md ├── Gemfile ├── LICENSE ├── README.md ├── Rakefile ├── docs └── index.asciidoc ├── lib └── logstash │ └── inputs │ └── okta_system_log.rb ├── logstash-input-okta_system_log.gemspec └── spec └── inputs └── okta_system_log_spec.rb /.gitignore: -------------------------------------------------------------------------------- 1 | Gemfile.lock 2 | logstash-input-okta_system_log-*.gem 3 | -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SecurityRiskAdvisors/logstash-input-okta_system_log/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CONTRIBUTORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SecurityRiskAdvisors/logstash-input-okta_system_log/HEAD/CONTRIBUTORS -------------------------------------------------------------------------------- /DEVELOPER.md: -------------------------------------------------------------------------------- 1 | # logstash-input-okta_system_log 2 | -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SecurityRiskAdvisors/logstash-input-okta_system_log/HEAD/Gemfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SecurityRiskAdvisors/logstash-input-okta_system_log/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SecurityRiskAdvisors/logstash-input-okta_system_log/HEAD/README.md -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- 1 | require "logstash/devutils/rake" 2 | -------------------------------------------------------------------------------- /docs/index.asciidoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SecurityRiskAdvisors/logstash-input-okta_system_log/HEAD/docs/index.asciidoc -------------------------------------------------------------------------------- /lib/logstash/inputs/okta_system_log.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SecurityRiskAdvisors/logstash-input-okta_system_log/HEAD/lib/logstash/inputs/okta_system_log.rb -------------------------------------------------------------------------------- /logstash-input-okta_system_log.gemspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SecurityRiskAdvisors/logstash-input-okta_system_log/HEAD/logstash-input-okta_system_log.gemspec -------------------------------------------------------------------------------- /spec/inputs/okta_system_log_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SecurityRiskAdvisors/logstash-input-okta_system_log/HEAD/spec/inputs/okta_system_log_spec.rb --------------------------------------------------------------------------------