标题: [系统相关] 批处理怎么获取性能计数器的信息 [打印本页]
作者: trsjtrj 时间: 2015-1-12 18:53 标题: 批处理怎么获取性能计数器的信息
例如获取一下性能信息,参考 http://blog.163.com/hc_ranxu/blog/static/36723182201333111640791/
Monitor_Others_to_DB 其它监控,写入数据库 每5分钟
虚拟内存: Paging File : % user age
网卡等待, SQLServer: Wait statistic: network io : 平均等待时间
IO等待 SQLServer: Wait statistic: Page IO latch waits : 平均等待时间
磁盘: PhysiscalDisk % Disk Time, Avg. Disk Bytes/Transfer,
错误数: SQLServer: SQL error: _Total
缓存命中率: SQLServer: SQL Server Buffer Manager : Buffer Cache Hit Ratio
每秒收到的Transact-SQL命令批数,每秒编译数,每秒重编译数: SQL Server:SQL Statistics: Batch Requests/sec , SQL Compilations/sec, SQL Re-Compilations/sec
作者: DAIC 时间: 2015-1-12 22:06
你是用方法2把数据存入文本文件了吗?
你想从文本文件里面获取哪些信息呢?
作者: trsjtrj 时间: 2015-1-13 11:14
回复 2# DAIC
没有,我找到办法获取信息了
wmic path win32_perfformatteddata_perfos_processor get PercentUserTime
但是返回值有三个,怎么取最大值?
作者: terse 时间: 2015-1-13 11:46
- @echo off & setlocal enabledelayedexpansion
- for /f "skip=1" %%a in ('wmic path win32_perfformatteddata_perfos_processor get PercentUserTime') do (
- for %%a in (%%a) do if !n! lss %%a set n=%%a
- )
- echo !n!
- pause
复制代码
作者: trsjtrj 时间: 2015-1-22 11:53
回复 4# terse
谢谢
请问你知道它为什么是返回三个值的吗?而且返回项是一样的,但是三个值却是不一样。
作者: DAIC 时间: 2015-1-22 13:19
回复 5# trsjtrj
因为是多核CPU
作者: trsjtrj 时间: 2015-1-22 14:49
双核的为什么出来三个值呢?单核的出来两个值。取那个值才是正确的?
欢迎光临 批处理之家 (http://bathome.net./) |
Powered by Discuz! 7.2 |