Author | Chrissy LeMaire (@cl), netnerds.net |
Availability | Windows, Linux, macOS |
Want to see the source code for this command? Check out Get-DbaPfDataCollectorCounterSample on GitHub.
Want to see the Bill Of Health for this command? Check out Get-DbaPfDataCollectorCounterSample.
Gets Performance Counter Samples.
Gets Performance Counter Samples.
Get-DbaPfDataCollectorCounterSample
[[-ComputerName] <DbaInstanceParameter[]>]
[[-Credential] <PSCredential>]
[[-CollectorSet] <String[]>]
[[-Collector] <String[]>]
[[-Counter] <String[]>]
[-Continuous]
[[-ListSet]]
[[-MaxSamples] <Int32>]
[[-SampleInterval] <Int32>]
[[-InputObject] <Object[]>]
[-EnableException]
[<CommonParameters>]
PS C:\> Get-DbaPfDataCollectorCounterSample
Gets a single sample for all counters for all Collector Sets on localhost.
PS C:\> Get-DbaPfDataCollectorCounterSample -Counter '\Processor(_Total)\% Processor Time'
Gets a single sample for all counters for all Collector Sets on localhost.
PS C:\> Get-DbaPfDataCollectorCounter -ComputerName sql2017, sql2016 | Out-GridView -PassThru | Get-DbaPfDataCollectorCounterSample -MaxSamples 10
Gets 10 samples for all counters for all Collector Sets for servers sql2016 and sql2017.
PS C:\> Get-DbaPfDataCollectorCounterSample -ComputerName sql2017
Gets a single sample for all counters for all Collector Sets on sql2017.
PS C:\> Get-DbaPfDataCollectorCounterSample -ComputerName sql2017, sql2016 -Credential ad\sqldba -CollectorSet 'System Correlation'
Gets a single sample for all counters for the 'System Correlation' CollectorSet on sql2017 and sql2016 using alternative credentials.
PS C:\> Get-DbaPfDataCollectorCounterSample -CollectorSet 'System Correlation'
Gets a single sample for all counters for the 'System Correlation' CollectorSet.
The target computer. Defaults to localhost.
Alias | |
Required | False |
Pipeline | false |
Default Value | $env:COMPUTERNAME |
Allows you to login to servers using alternative credentials. To use:
$scred = Get-Credential, then pass $scred object to the -Credential parameter.
Alias | |
Required | False |
Pipeline | false |
Default Value |
The Collector Set name.
Alias | DataCollectorSet |
Required | False |
Pipeline | false |
Default Value |
The Collector name.
Alias | DataCollector |
Required | False |
Pipeline | false |
Default Value |
The Counter name. This must be in the form of '\Processor(_Total)% Processor Time'.
Alias | |
Required | False |
Pipeline | false |
Default Value |
If this switch is enabled, samples will be retrieved continuously until you press CTRL+C. By default, this command gets only one counter sample. You can use the SampleInterval parameter to set the
interval for continuous sampling.
Alias | |
Required | False |
Pipeline | false |
Default Value | False |
Gets the specified performance counter sets on the computers. Enter the names of the counter sets. Wildcards are permitted.
Alias | |
Required | False |
Pipeline | false |
Default Value |
Specifies the number of samples to get from each counter. The default is 1 sample. To get samples continuously (no maximum sample size), use the Continuous parameter.
To collect a very large data set, consider running a Get-DbaPfDataCollectorCounterSample command as a Windows PowerShell background job.
Alias | |
Required | False |
Pipeline | false |
Default Value | 0 |
Specifies the time between samples in seconds. The minimum value and the default value are 1 second.
Alias | |
Required | False |
Pipeline | false |
Default Value | 0 |
Accepts the object output by Get-DbaPfDataCollectorCounter via the pipeline.
Alias | |
Required | False |
Pipeline | true (ByValue) |
Default Value |
By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message.
This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting.
Using this switch turns this "nice by default" feature off and enables you to catch exceptions with your own try/catch.
Alias | |
Required | False |
Pipeline | false |
Default Value | False |