Server IP : 127.0.0.2 / Your IP : 3.135.218.109 Web Server : Apache/2.4.18 (Ubuntu) System : User : www-data ( ) PHP Version : 7.0.33-0ubuntu0.16.04.16 Disable Function : disk_free_space,disk_total_space,diskfreespace,dl,exec,fpaththru,getmyuid,getmypid,highlight_file,ignore_user_abord,leak,listen,link,opcache_get_configuration,opcache_get_status,passthru,pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,php_uname,phpinfo,posix_ctermid,posix_getcwd,posix_getegid,posix_geteuid,posix_getgid,posix_getgrgid,posix_getgrnam,posix_getgroups,posix_getlogin,posix_getpgid,posix_getpgrp,posix_getpid,posix,_getppid,posix_getpwnam,posix_getpwuid,posix_getrlimit,posix_getsid,posix_getuid,posix_isatty,posix_kill,posix_mkfifo,posix_setegid,posix_seteuid,posix_setgid,posix_setpgid,posix_setsid,posix_setuid,posix_times,posix_ttyname,posix_uname,pclose,popen,proc_open,proc_close,proc_get_status,proc_nice,proc_terminate,shell_exec,source,show_source,system,virtual MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : ON | Pkexec : ON Directory : /usr/share/augeas/lenses/dist/tests/ |
Upload File : |
(** * * This module is used to test the Splunk module for valid extractions. * Written by Tim Brigham. * This file is licensed under the LGPLv2+, like the rest of Augeas. **) module Test_splunk = (** inputs.conf **) let inputs = "[default] host = splunk-node-1.example.com enable_autocomplete_login = False [udp://514] connection_host = none source = test sourcetype = syslog " test Splunk.lns get inputs = { "target" = "default" { "host" = "splunk-node-1.example.com" } { "enable_autocomplete_login" = "False" } {}} { "target" = "udp://514" { "connection_host" = "none" } { "source" = "test" } { "sourcetype" = "syslog" } {}} (** web.conf **) let web = "[settings] enableSplunkWebSSL = 1 enable_autocomplete_login = False " test Splunk.lns get web = { "target" = "settings" { "enableSplunkWebSSL" = "1" } { "enable_autocomplete_login" = "False" } } (** props.conf **) let props = "[splunkd_stdout] PREFIX_SOURCETYPE = False SHOULD_LINEMERGE = False is_valid = False maxDist = 99 " test Splunk.lns get props = { "target" = "splunkd_stdout" { "PREFIX_SOURCETYPE" = "False" } { "SHOULD_LINEMERGE" = "False" } { "is_valid" = "False" } { "maxDist" = "99" } {}} (** tenants.conf **) let tenants = "[tenant:default] whitelist.0 = * " test Splunk.lns get tenants = { "target" = "tenant:default" { "whitelist.0" = "*" } } let server = "[license] active_group = Free master_uri = https://myserver.mydomain.com:8089 [general] serverName = splunk-node-1 trustedIP = 127.0.0.1 guid = XXXXXXX-XXXXXXX-XXXXXXX-XXXXXXX-XXXXXXXXXXXXX [sslConfig] sslKeysfilePassword = $1$XX2X4XX6XXXXXXXXX " test Splunk.lns get server = { "target" = "license" { "active_group" = "Free" } { "master_uri" = "https://myserver.mydomain.com:8089" } {}} { "target" = "general" { "serverName" = "splunk-node-1" } { "trustedIP" = "127.0.0.1" } { "guid" = "XXXXXXX-XXXXXXX-XXXXXXX-XXXXXXX-XXXXXXXXXXXXX" } {}} { "target" = "sslConfig" { "sslKeysfilePassword" = "$1$XX2X4XX6XXXXXXXXX" } {}} (* test anonymous attributes *) let anon = " # master serverName = splunk-node-1 # slave serverName = splunk-node-2 [general] serverName = splunk-node-3 " test Splunk.lns get anon = { ".anon" { } { "#comment" = "master" } { "serverName" = "splunk-node-1" } { } { "#comment" = "slave" } { "serverName" = "splunk-node-2" } { } } { "target" = "general" { "serverName" = "splunk-node-3" } { } } (* test empty value entry *) let override = " [general] # normal entry foo = bar # override entry foo = " test Splunk.lns get override = { ".anon" { } } { "target" = "general" { "#comment" = "normal entry" } { "foo" = "bar" } { "#comment" = "override entry" } { "foo" } }