首页
学习
活动
专区
圈层
工具
发布
社区首页 >问答首页 >xperf拒绝加载任何符号

xperf拒绝加载任何符号
EN

Stack Overflow用户
提问于 2012-05-11 09:34:56
回答 1查看 1K关注 0票数 0

使用以下命令行:

set _NT_SYMBOL_PATH=srv*C:\symbols*http://msdl.microsoft.com/downloads/symbols XPerf -on FILE_IO XPerf -d trace.etl XPerf -symbols verbose -i trace.etl > output.csv

我得到以下输出:

xperf:警告:为跟踪处理应用访问限制xperf:使用符号路径: srv*C:\symbols*http://msdl.microsoft.com/downloads/symbols xperf:使用可执行文件路径: srv*C:\symbols*http://msdl.microsoft.com/downloads/symbols XPerf:使用SymCache路径:\SymCache xperf: SymCache引擎版本: v1.1 xperf:可接受的最低SymCache版本: v1.1

xperf:可接受的最低SymCache版本: v1.1 1/2 100.0% 2/2 100.0%

代码语言:javascript
复制
            Warning: This trace does not contain the information needed to perform proper symbol decoding.
            It was most likely stopped improperly. Please consult the documentation for information on how
            to stop trace sessions (for example XPerf -stop <logger names> -d <merged.etl>)

            If you still have access to the machine on which this trace was collected, you can have XPerf
            add the required symbol information by running the following on that machine:

                    XPerf -merge <trace1.etl> <trace2.etl> ... <merged.etl>

            Running this command on any machine other than the one on which the trace was collected will
            result in incorrect symbol decoding.

我做错了什么?

EN

回答 1

Stack Overflow用户

发布于 2012-05-27 11:10:24

代码语言:javascript
复制
XPerf -merge trace.etl trace_with_correct_symbol_decoding_info.etl

现在,您可以使用原始命令解析trace_with_correct_symbol_decoding_info.etl:

代码语言:javascript
复制
XPerf -symbols verbose -i trace_with_correct_symbol_decoding_info.etl > output.csv

merge命令不仅可以合并多个etl文件,还可以“添加安全符号解码所需的图像识别信息”。

代码语言:javascript
复制
D:\>xperf -help merge
    Trace merge options:

    xperf -merge trace1.etl trace2.etl ... merged.etl

        -Merge      trace1.etl trace2.etl ... merged.etl Merge trace1.etl trace2.etl ... into
                                     merged.etl, also adding image identification
                                     information required for safe symbol
                                     decoding.
票数 0
EN
页面原文内容由Stack Overflow提供。腾讯云小微IT领域专用引擎提供翻译支持
原文链接:

https://stackoverflow.com/questions/10544294

复制
相关文章

相似问题

领券
问题归档专栏文章快讯文章归档关键词归档开发者手册归档开发者手册 Section 归档