Skip to content

Commit e60d24a

Browse files
committed
Fix build issues
1 parent 793a443 commit e60d24a

File tree

2 files changed

+13
-14
lines changed

2 files changed

+13
-14
lines changed

.openpublishing.redirection.json

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -3828,11 +3828,6 @@
38283828
"redirect_url": "/azure/sentinel/data-connectors-reference",
38293829
"redirect_document_id": false
38303830
},
3831-
{
3832-
"source_path_from_root": "/articles/sentinel/data-connectors/windows-firewall-events-via-ama.md",
3833-
"redirect_url": "/azure/sentinel/data-connectors-reference",
3834-
"redirect_document_id": false
3835-
},
38363831
{
38373832
"source_path_from_root": "/articles/private-link/tutorial-private-endpoint-webapp-portal.md",
38383833
"redirect_url": "/azure/private-link/create-private-endpoint-portal",

articles/sentinel/data-connectors/vmware-vcenter.md

Lines changed: 13 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -88,23 +88,27 @@ So we advice to capture the logs into custom table **vcenter_CL** using below in
8888
sudo /opt/microsoft/omsagent/bin/service_control restart
8989
6. Modify /etc/rsyslog.conf file - add below template preferably at the beginning / before directives section
9090

91-
$template vcenter,"%timestamp% %hostname% %msg%\ n"
91+
`$template vcenter,"%timestamp% %hostname% %msg%\ n"`
9292

9393
**Note - There is no space between slash(\\) and character 'n' in above command.**
9494

9595
7. Create a custom conf file in /etc/rsyslog.d/ for example 10-vcenter.conf and add following filter conditions.
9696

97-
Download config file [10-vCenter.conf](https://aka.ms/sentinel-vcenter-conf)
97+
Download config file [10-vCenter.conf](https://aka.ms/sentinel-vcenter-conf)
9898

99-
With an added statement you will need to create a filter which will specify the logs coming from the vcenter server to be forwarded to the custom table.
99+
With an added statement you will need to create a filter which will specify the logs coming from the vcenter server to be forwarded to the custom table.
100100

101-
reference: [Filter Conditions — rsyslog 8.18.0.master documentation](https://rsyslog.readthedocs.io/en/latest/configuration/filters.html)
101+
reference: [Filter Conditions — rsyslog 8.18.0.master documentation](https://rsyslog.readthedocs.io/en/latest/configuration/filters.html)
102+
103+
Here is an example of filtering that can be defined, this is not complete and will require additional testing for each installation.
104+
105+
```json
106+
if $rawmsg contains "vcenter-server" then @@127.0.0.1:22033;vcenter
107+
& stop
108+
if $rawmsg contains "vpxd" then @@127.0.0.1:22033;vcenter
109+
& stop
110+
```
102111

103-
Here is an example of filtering that can be defined, this is not complete and will require additional testing for each installation.
104-
if $rawmsg contains "vcenter-server" then @@127.0.0.1:22033;vcenter
105-
& stop
106-
if $rawmsg contains "vpxd" then @@127.0.0.1:22033;vcenter
107-
& stop
108112

109113
8. Restart rsyslog
110114
systemctl restart rsyslog

0 commit comments

Comments
 (0)