Contents
A customer of mine was having problems with Audit Collection Services in SCOM 2019 UR3. I figured this information may prove helpful someday to someone. Enjoy!
SQL Queries
Here are some ACS SQL Queries you can utilize:
https://github.com/blakedrumm/SCOM-Scripts-and-SQL/tree/master/SQL%20Queries/OperationsManagerAC
Verify ACS collector performance
- Open Performance Monitor, right click on Start Menu and select run.
In run box type the following:perfmon.msc
-
Once Opened go to Monitoring Tools Folder, then right click on Performance Monitor and go to Properties:
-
Select the Data tab:
-
Clear the currently selected counters by removing each counter listed with the Remove Button, then select Add:
-
Locate the ACS Collector in available counters, select it, and click on the Add button:
This is how it should look when it is added:
-
Click OK to confirm the property settings.
-
Click on the following button to change the view type, change to Report:
- View your performance data for ACS:
Gather Partition Table History
You can run the following tsql query against the OperationsManagerAC
-- Status:
-- 0: active, set by collector
-- 1: inactive, mark for closing during collector startup & indexing, set manually
-- 2: archived, ready for deletion, set from outside the collector
-- 100 - 108: closed, indexing in progress
-- 109: indexing complete
select * from dtpartition order by partitionstarttime
Enable ACS Collector Logging
TraceFlags
TraceFlags consists of three groups that are OR’d (added) together. They are Verbosity Level, Component, and Log Output Method. Verbosity Level refers to the number and type of events that are logged to the trace log when trace logging is enabled, while Component can only be used if the Verbosity Level is set to Level Debug and is used to enable/disable logging for various internal components. Log Output Method is used to specify the location that tracing information is written to.
Verbosity Level settings
Value | Description |
---|---|
0x00000000 | No logging. |
0x00000001 | Level Error. Logs only errors. |
0x00000002 | Level Warning. Logs errors and warnings. |
0x00000003 | Level Informational. Logs errors, warnings, and information. |
0x00000004 | Level Debug. Logs everything and is very verbose. |
Component settings
Value | Description |
---|---|
0x00000010 | General |
0x00000020 | Networking |
0x00000080 | Event tracking |
Log Output Method settings
Value | Description |
---|---|
0x00020000 | Log to debug out |
0x00040000 | Log to the console, if available (only when running the collector from the command line) |
0x00080000 | Log to file in `%SystemRoot%\Temp` directory |
%SystemRoot% = C:\Windows\
Trace log files are located in the %SystemRoot%\Temp
directory. For the Collector, the log files are written to %SystemRoot%\Temp\AdtServer.log
and %SystemRoot%\Temp\AdtSrvDll.log
. When a log file fills to capacity, the system overwrites the oldest entries with the most recent entries. Log files have a default size of 1 MB and begin to overwrite the oldest entries once they are full.
- To enable logging, open RegEdit navigate to the following location:
HKEY_LOCAL_MACHINE\Software\Policies\Microsoft\AdtAgent\Parameters
-
Create the TraceFlags DWORD (32-bit) Value and set it to Hexadecimal
80003
unless otherwise advised. Trace logging begins immediately; no restart of the Collector is needed. Additionally, Change permission must be granted to%SystemRoot%\Temp
for the NetworkService account.Note
For example, to log errors, warnings, and information messages to a file change the traceflags registry value to
0x00080003
. This is a combination of0x00080000
[file] and0x00000003
[errors +warnings+informational]. - To disable logging, delete the TraceFlags value or set it to
0
.
Change the scheduled time the SQL Scripts run that are in the ACS Installation Folder
In order for you to change the time the jobs will run the partitioning, grooming and reindexing. You need to edit the dtConfig table and change the “table switch offset in seconds since midnight UTC” value to another time in UTC (Google UTC Converter):
Get current configuration:
select * from dtConfig
Get current SQL UTC time:
SELECT GETUTCDATE() AS 'Current UTC Time'
Get 10 minutes ahead of current UTC time:
SELECT DATEADD(MINUTE, 10, GETUTCDATE())
Get seconds from midnight for dtConfig “table switch offset in seconds since midnight UTC” ahead in seconds, in this example we add 10 minutes to the current UTC time:
Declare @d DateTime
Select @d = DATEADD(MINUTE, 10, GETUTCDATE())
Select (DatePart(HOUR, @d) * 3600) + (DatePart(MINUTE, @d) * 60) + DatePart(SECOND, @d)
Update configuration to midnight UTC, which is 7:00 PM (EST):
UPDATE [dbo].[dtConfig]
SET [Value] = 0 -- Default: 25200 (2:00 AM (EST))
WHERE [Id] = 4
GO
Be mindful that the scripts are usually run overnight when there is not alot of activity in the ACS Database. So take precautions if changing this when alot of logons/logoffs are happening in your environment.
Set filter for ACS Data
- On the ACS server, Go to the registry:
HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\services\AdtServer\Parameters
- Right click the key Parameters, select Permissions
- Select the row “Network service”
- Click edit
- Set “Apply to” as “This key and subkeys”
- Select Full control in the column Allow, click OK
- Run CMD as an Administrator
- Run the below command:
cd C:\Windows\System32\Security\AdtServer
- Run the below command to check current query we being used by SCOM ACS. (There should be a no filter clause to exclude the collected event):
adtadmin –getquery
- Run the following command to add filter for the collected events:
adtadmin /setquery /query:"SELECT * FROM AdtsEvent WHERE NOT (EventID=528 or EventID=540 or EventID=680)”
Note
Change the event IDs to the events you don’t want collected. See the below example for a basic filter. Since every environment has its own concerns, please double check which events can be ignored to reduce data collection amount.
adtadmin /setquery /query:"SELECT * FROM AdtsEvent WHERE NOT (((EventId=528 AND String01='5') OR (EventId=576 AND (String01='SeChangeNotifyPrivilege' OR HeaderDomain='NT Authority')) OR (EventId=538 OR EventId=566 OR EventId=672 OR EventId=680)))"
Install ACS from Command Line
In order to install the ACS Collector from the command line you are required to provide an XML, this an example of the XML that is required:
<?xml version="1.0" encoding="utf-8" ?>
<InstallationOptions>
<AcsCollector>
<!-- Interval (in seconds) between heartbeats. -->
<HeartBeatInterval>60</HeartBeatInterval>
<!-- Number of failed heart beats before collector
disconnects the forwarder. -->
<HeartBeatFailedCount>3</HeartBeatFailedCount>
<!-- Time (in seconds) to wait before disconnecting forwarders
which have not yet sent the initial data packet on a
new connection. -->
<ConnectNoDataThreshold>10</ConnectNoDataThreshold>
<!-- The TCP port on which the collector should listen
for forwarder connections. -->
<AdtAgentPort>51909</AdtAgentPort>
<!-- Maximum length of database queue. This value will be
rounded up to a power of two if necessary. -->
<MaximumQueueLength>0x40000</MaximumQueueLength>
<!-- Lower bound (in seconds) of randomly chosen backoff
time sent to agent if the collector is overloaded. -->
<BackOffMinTime>120</BackOffMinTime>
<!-- Upper bound (in seconds) of randomly chosen backoff
time sent to agent if the collector is overloaded. -->
<BackOffMaxTime>480</BackOffMaxTime>
<!-- (percentage of max queue length) -->
<BackOffThreshold>50</BackOffThreshold>
<!-- (percentage of max queue length) -->
<DisconnectThreshold>75</DisconnectThreshold>
<!-- Asset value new agents get assigned.
-1 means they get the value of their group instead. -->
<DefaultAssetValue>-1</DefaultAssetValue>
<!-- Group ID of the group new agents get assigned to. -->
<DefaultGroup>0</DefaultGroup>
<!-- Number of simultaneous database connections to use
for event insertion. -->
<DbEventConnections>8</DbEventConnections>
<!-- Number of simultaneous database connections to use
for string insertion. -->
<DbStringConnections>8</DbStringConnections>
<!-- Minimum asset value required in order to report
application log events regarding an agent. -->
<ReportThreshold>1</ReportThreshold>
<!-- Minimum asset value required in order to store events
from an agent. -->
<StoreThreshold>1</StoreThreshold>
<!-- (seconds) -->
<CheckPointInterval>198</CheckPointInterval>
<!-- (seconds) -->
<PurgingInterval>198</PurgingInterval>
<!-- If running in grooming mode, the collector only kicks
off a grooming cycle if the database queue has at most
MaxPurgingQueue entries. -->
<MaxPurgingQueue>500</MaxPurgingQueue>
<!-- 0 = Event timestamps will be reported in UTC.
1 = Event timestamps will be reported in local time. -->
<ConvertToLocalTime>1</ConvertToLocalTime>
<!-- Size (in bytes) of memory to use for caching principal data. -->
<PrincipalCacheSize>0x8000</PrincipalCacheSize>
<!-- Size (in bytes) of memory to use for caching string data. -->
<StringCacheSize>0x20000</StringCacheSize>
<!-- Time, in seconds, to backoff unwanted agents -->
<BackOffUnwanted>21600</BackOffUnwanted>
<!-- Maximum time (in minutes) a connection can exist before it
gets disconnected for rekeying purposes. -->
<TlsRekeyInterval>600</TlsRekeyInterval>
<!-- -->
<AcceptSockets>4</AcceptSockets>
<!-- Time, in seconds, before a new connection gets
disconnected if the client doesn't send any data -->
<MaxAcceptIdle>15</MaxAcceptIdle>
<!-- Time, in seconds, before a connection attempt times out -->
<MaxConnectIdle>15</MaxConnectIdle>
<!-- Interval (in seconds) between recalculation of queue
statistics. -->
<MinUpdateInterval>21</MinUpdateInterval>
<!-- Name of ODBC data source -->
<DataSource>acs</DataSource>
<!-- 0 = SQL Server runs on a different machine
1 = SQL Server runs on collector machine -->
<DbServerLocal>1</DbServerLocal>
<!-- Name of machine running SQL Server -->
<DbServerName>acs-sql</DbServerName>
<!-- Name of SQL Server instance to use. Usually blank. -->
<DbServerInstance></DbServerInstance>
<!-- Name of collector database -->
<DbName>OperationsManagerAC</DbName>
<!-- 0 = Specified data and log directories will be used.
1 = SQL Server's data and log directories will be used. -->
<UseDefaultPaths>1</UseDefaultPaths>
<!-- Path (on DB server) where data file should be created
Necessary only if UseDefaultPaths is set to 0 -->
<DataFilePath>d:\acsdata</DataFilePath>
<!-- Initial data file size in MB -->
<DbDataFileInitialSize>1024</DbDataFileInitialSize>
<!-- Maximum data file size in MB, 0 means unlimited -->
<DbDataFileMaximumSize>65536</DbDataFileMaximumSize>
<!-- File growth amount in MB -->
<DbDataFileIncrementSize>1024</DbDataFileIncrementSize>
<!-- Path (on DB server) where log file should be created.
Necessary only if UseDefaultPaths is set to 0 -->
<LogFilePath>e:\acslog</LogFilePath>
<!-- Initial log file size in MB -->
<DbLogFileInitialSize>128</DbLogFileInitialSize>
<!-- Maximum log file size in MB, 0 means unlimited -->
<DbLogFileMaximumSize>4096</DbLogFileMaximumSize>
<!-- File growth amount in MB -->
<DbLogFileIncrementSize>128</DbLogFileIncrementSize>
<!-- (hours) time to keep events -->
<EventRetentionPeriod>24</EventRetentionPeriod>
<!-- Number of partitions to use -->
<PartitionCount>1</PartitionCount>
<!-- Time when partition switching should occur.
Expressed in seconds since midnight in UTC -->
<PartitionSwitchOffset>0</PartitionSwitchOffset>
<!-- Type of authentication collector should use
when connecting to the database:
0 = Use SQL authentication (not recommended)
1 = Use Windows authentication (recommended) -->
<UseWindowsAuth>1</UseWindowsAuth>
<!-- only necessary when using SQL authentication -->
<DbUser>SampleAdtServerDbUser</DbUser>
<!-- only necessary when using SQL authentication -->
<DbPassword>SampleAdtServerDbPwd</DbPassword>
</AcsCollector>
</InstallationOptions>
Share on: