Add more performance counter metrics to sqlserver input (#6465)
This commit is contained in:
parent
07faceadd5
commit
68d11e01ab
|
@ -592,11 +592,16 @@ WHERE (
|
||||||
'Background Writer pages/sec',
|
'Background Writer pages/sec',
|
||||||
'Percent Log Used',
|
'Percent Log Used',
|
||||||
'Log Send Queue KB',
|
'Log Send Queue KB',
|
||||||
'Redo Queue KB'
|
'Redo Queue KB',
|
||||||
|
'Mirrored Write Transactions/sec',
|
||||||
|
'Group Commit Time',
|
||||||
|
'Group Commits/sec'
|
||||||
)
|
)
|
||||||
) OR (
|
) OR (
|
||||||
object_name LIKE '%User Settable%'
|
object_name LIKE '%User Settable%'
|
||||||
OR object_name LIKE '%SQL Errors%'
|
OR object_name LIKE '%SQL Errors%'
|
||||||
|
) OR (
|
||||||
|
object_name LIKE 'SQLServer:Batch Resp Statistics%'
|
||||||
) OR (
|
) OR (
|
||||||
instance_name IN ('_Total')
|
instance_name IN ('_Total')
|
||||||
AND counter_name IN (
|
AND counter_name IN (
|
||||||
|
|
Loading…
Reference in New Issue