Skip to content

Commit

Permalink
fix: Add new programs to vmware map
Browse files Browse the repository at this point in the history
  • Loading branch information
rfaircloth-splunk committed Jun 4, 2020
1 parent 4d3a9a6 commit 84f77d1
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 5 deletions.
8 changes: 6 additions & 2 deletions package/etc/conf.d/filters/VMware/vsphere.conf
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
filter f_vmware_all {
#begin base vmware
program("cimslp", flags(ignore-case))
program("applmgmt-audit", flags(ignore-case))
or program("cimslp", flags(ignore-case))
or program("Fdm", flags(ignore-case))
or program("Hostd", flags(ignore-case))
or program("hostd-probe", flags(ignore-case))
Expand All @@ -12,6 +13,7 @@ filter f_vmware_all {
or program("sdrsInjector", flags(ignore-case))
or program("sfcb-.*", flags(ignore-case))
or program("storageRM", flags(ignore-case))
or program("updatemgr", flags(ignore-case))
or program("vmafdd", flags(ignore-case))
or program("vmcad", flags(ignore-case))
or program("vmdird", flags(ignore-case))
Expand Down Expand Up @@ -63,7 +65,9 @@ filter f_vmware_nsx {
program("nsx-.*", flags(ignore-case))
};
filter f_vmware_vcenter {
program("vmafdd", flags(ignore-case))
program("applmgmt-audit", flags(ignore-case))
or program("updatemgr", flags(ignore-case))
or program("vmafdd", flags(ignore-case))
or program("vmcad", flags(ignore-case))
or program("vmdird", flags(ignore-case))
or program("vmon", flags(ignore-case))
Expand Down
4 changes: 2 additions & 2 deletions package/etc/conf.d/log_paths/lp-sc4s_internal.conf.tmpl
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ log {
{{- end}}

{{- if eq (getenv "SC4S_DEBUG_STDOUT" "yes") "no"}}
destination(d_stdout);
#destination(d_stdout);
{{- end}}

{{- if (print (getenv "SC4S_DEST_GLOBAL_ALTERNATES")) }}
Expand Down Expand Up @@ -56,7 +56,7 @@ log {
};

{{- if eq (getenv "SC4S_DEBUG_STDOUT" "no") "yes"}}
destination(d_stdout);
#destination(d_stdout);
{{- end}}
};
flags(flow-control,final);
Expand Down
1 change: 1 addition & 0 deletions package/etc/syslog-ng.conf.tmpl
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,7 @@ options {
normalize-hostnames(yes);
on-error(fallback-to-string);
frac-digits(3);
use-rcptid(yes);
};


Expand Down
2 changes: 1 addition & 1 deletion tests/docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ services:
context: ../package
hostname: sc4s
#When this is enabled test_common will fail
command: -det
command: -dvt
ports:
- "514"
- "601"
Expand Down

0 comments on commit 84f77d1

Please sign in to comment.