问题描述

在Azure Cloud Service的实例中,收集到各种 Error Event 内容,本文针对所收集的三种Event进行解析。

1: This operation is not supported on this filesystem. (0x89000020) 
<Event xmlns='http://schemas.microsoft.com/win/2004/08/events/event'>
    <System>
        <Provider Name='Microsoft-Windows-Defrag' />
        <EventID Qualifiers='32768'>257</EventID>
        <Level>2</Level>
        <Task>0</Task>
        <Keywords>0x80000000000000</Keywords>
        <TimeCreated SystemTime='2021-11-08T02:30:00.000000000Z' />
        <EventRecordID>2465</EventRecordID>
        <Channel>Application</Channel>
        <Computer>RD00155D439EE2</Computer>
        <Security />
    </System>
    <EventData>
        <Data>SYSTEM</Data>
        <Data>This operation is not supported on this filesystem. (0x89000020)</Data>
        <Binary>00000000A40500005105000000000000629468641336AAB85B55B1B5B038000000000000</Binary>
    </EventData>
</Event>
 2: Perflib 1010 D:\\Windows\\System32\\winspool.drv
<Event xmlns='http://schemas.microsoft.com/win/2004/08/events/event'>
    <System>
        <Provider Name='Microsoft-Windows-Perflib' Guid='{13B197BD-7CEE-4B4E-8DD0-59314CE374CE}' EventSourceName='Perflib' />
        <EventID Qualifiers='49152'>1010</EventID>
        <Version>0</Version>
        <Level>2</Level>
        <Task>0</Task>
        <Opcode>0</Opcode>
        <Keywords>0x80000000000000</Keywords>
        <TimeCreated SystemTime='2021-11-08T01:54:07.000000000Z' />
        <EventRecordID>2464</EventRecordID>
        <Correlation />
        <Execution ProcessID='0' ThreadID='0' />
        <Channel>Application</Channel>
        <Computer>RD00155D43BA04</Computer>
        <Security />
    </System>
    <UserData>
        <EventXML xmlns='Perflib'>
            <param1>D:\\Windows\\System32\\winspool.drv</param1>
            <param2>Spooler</param2>
            <binaryDataSize>8</binaryDataSize>
            <binaryData>BA06000000000000</binaryData>
        </EventXML>
    </UserData>
</Event>
 3: 1008 D:\\Windows\\System32\\bitsperf.dll
<Event xmlns='http://schemas.microsoft.com/win/2004/08/events/event'>
    <System>
        <Provider Name='Microsoft-Windows-Perflib' Guid='{13B197BD-7CEE-4B4E-8DD0-59314CE374CE}' EventSourceName='Perflib' />
        <EventID Qualifiers='49152'>1008</EventID>
        <Version>0</Version>
        <Level>2</Level>
        <Task>0</Task>
        <Opcode>0</Opcode>
        <Keywords>0x80000000000000</Keywords>
        <TimeCreated SystemTime='2021-11-08T01:54:07.000000000Z' />
        <EventRecordID>2463</EventRecordID>
        <Correlation />
        <Execution ProcessID='0' ThreadID='0' />
        <Channel>Application</Channel>
        <Computer>RD00155D43BA04</Computer>
        <Security />
    </System>
    <UserData>
        <EventXML xmlns='Perflib'>
            <param1>BITS</param1>
            <param2>D:\\Windows\\System32\\bitsperf.dll</param2>
            <binaryDataSize>8</binaryDataSize>
            <binaryData>0200000000000000</binaryData>
        </EventXML>
    </UserData>
</Event>

问题解答

1: This operation is not supported on this filesystem. (0x89000020)

<Event xmlns='http://schemas.microsoft.com/win/2004/08/events/event'>
<System>
<Provider Name='Microsoft-Windows-Defrag' />
<EventID Qualifiers='32768'>257</EventID>
<Level>2</Level>
<Task>0</Task>
<Keywords>0x80000000000000</Keywords>
<TimeCreated SystemTime='2021-11-08T02:30:00.000000000Z' />
<EventRecordID>2465</EventRecordID>
<Channel>Application</Channel>
<Computer>RD00155D439EE2</Computer>
<Security />
</System>
<EventData>
<Data>SYSTEM</Data>
<Data>This operation is not supported on this filesystem. (0x89000020)</Data>
<Binary>00000000A40500005105000000000000629468641336AAB85B55B1B5B038000000000000</Binary>
</EventData>
</Event>

Defrag 是windows系统的磁盘上进行碎片文件进行整理以提高系统性能。 以上的错误就是Windows在进行碎片整理时出的错误。

Event ID: 257. The volume was not optimized because an error was encountered: This operation is not supported on this filesystem. (0x89000020) : https://social.technet.microsoft.com/Forums/en-US/ee11d4c9-a95c-4536-a438-bf9bbffcec4f/event-id-257-the-volume-was-not-optimized-because-an-error-was-encountered-this-operation-is-not

Defrag: https://learn.microsoft.com/en-us/windows-server/administration/windows-commands/defrag

2: Perflib 1010 D:\\Windows\\System32\\winspool.drv

<Event xmlns='http://schemas.microsoft.com/win/2004/08/events/event'>
<System>
<Provider Name='Microsoft-Windows-Perflib' Guid='{13B197BD-7CEE-4B4E-8DD0-59314CE374CE}' EventSourceName='Perflib' />
<EventID Qualifiers='49152'>1010</EventID>
<Version>0</Version>
<Level>2</Level>
<Task>0</Task>
<Opcode>0</Opcode>
<Keywords>0x80000000000000</Keywords>
<TimeCreated SystemTime='2021-11-08T01:54:07.000000000Z' />
<EventRecordID>2464</EventRecordID>
<Correlation />
<Execution ProcessID='0' ThreadID='0' />
<Channel>Application</Channel>
<Computer>RD00155D43BA04</Computer>
<Security />
</System>
<UserData>
<EventXML xmlns='Perflib'>
<param1>D:\\Windows\\System32\\winspool.drv</param1>
<param2>Spooler</param2>
<binaryDataSize>8</binaryDataSize>
<binaryData>BA06000000000000</binaryData>
</EventXML>
</UserData>
</Event>

Perfilb的1010事件是在使用某个DLL时返回的错误,winspool.drv ( Windows Printer Spooler)这个文件是windows打印机的后台程序。参考:https://www.processlibrary.com/en/directory/files/winspool/22326/

3: 1008 D:\\Windows\\System32\\bitsperf.dll

<Event xmlns='http://schemas.microsoft.com/win/2004/08/events/event'>
<System>
<Provider Name='Microsoft-Windows-Perflib' Guid='{13B197BD-7CEE-4B4E-8DD0-59314CE374CE}' EventSourceName='Perflib' />
<EventID Qualifiers='49152'>1008</EventID>
<Version>0</Version>
<Level>2</Level>
<Task>0</Task>
<Opcode>0</Opcode>
<Keywords>0x80000000000000</Keywords>
<TimeCreated SystemTime='2021-11-08T01:54:07.000000000Z' />
<EventRecordID>2463</EventRecordID>
<Correlation />
<Execution ProcessID='0' ThreadID='0' />
<Channel>Application</Channel>
<Computer>RD00155D43BA04</Computer>
<Security />
</System>
<UserData>
<EventXML xmlns='Perflib'>
<param1>BITS</param1>
<param2>D:\\Windows\\System32\\bitsperf.dll</param2>
<binaryDataSize>8</binaryDataSize>
<binaryData>0200000000000000</binaryData>
</EventXML>
</UserData>
</Event>

这个报错内容中提到bitsperf.dll是一个用于收集performance的dll。参考: https://www.processlibrary.com/en/directory/files/bitsperf/4587/ , https://freek.ws/2015/05/16/how-to-fix-perflib-error-1008/

【Azure 云服务】Azure Cloud Service中的错误事件 Error Event(Defrag/Perflib) 解答的更多相关文章

  1. 【Azure 云服务】Azure Cloud Service 创建 Alert 指南 [基于旧版 Alert(Classic)不可用情况下]

    问题描述 在Azure云服务(Cloud Service)创建Alert(Classic)时候遇见失败消息:"Failed to update alert testclassicalertr ...

  2. 【Azure 云服务】在Cloud Service的代码中如何修改IIS Application Pool的配置呢? 比如IdleTimeout, startMode, Recycling.PeriodicRestart.Time等

    什么是 PaaS?Platform as a Service 平台即服务 (PaaS) 是云中的完整开发和部署环境,你可以使用其中资源交付内容,从基于云的简单应用到启用云的复杂企业应用程序皆可.你以即 ...

  3. 【Azure 云服务】Azure Cloud Service在发布新部署后遇见不能RDP(远程连接)到实例时如何处理?

    Azure 云服务是PaaS 的一个示例. 与 Azure 应用服务一样,此技术设计用于支持可缩放.可靠且运营成本低廉的应用程序. 同样,应用服务托管在虚拟机 (VM) 上,Azure 云服务也是如此 ...

  4. Azure 云服务中的实例端点

    Azure云服务(cloud Servive)中有三种端点类型(endpoint type):输入端点(input);内部端点(internal);实例端点(InstanceInput) 1.输入端点 ...

  5. 【Azure 云服务】为Azure云服务配置上自签名的SSL证书步骤

    问题描述 在使用Azure Cloud Service(云服务),默认的情况下都是使用的 HTTP 服务,通过 Visual Studio 2022 创建的默认 Cloud Service项目中,在S ...

  6. 调试 Azure 云服务项目的方法

    调试 Azure 云服务项目 在菜单栏中选择“调试”>“启动调试”(键盘操作:F5). 重要提示 如果未将 Azure 云服务项目设置为启动项目,当你单击按钮以触发断点时,将出现以下错误:“外部 ...

  7. 【Azure 云服务】如何从Azure Cloud Service中获取项目的部署文件

    问题描述 在历史已经部署的云服务(Azure Cloud Service)中,如何获取到项目在很久以前的部署包文件呢? 解决办法 1)如果部署云服务是通过门户上传部署包到存储账号中,则可以直接从存储账 ...

  8. 【Azure 云服务】Azure Cloud Service 为 Web Role(IIS Host)增加自定义字段 (把HTTP Request Header中的User-Agent字段增加到IIS输出日志中)

    问题描述 把Web Role服务发布到Azure Cloud Service后,需要在IIS的输出日志中,把每一个请求的HTTP Request Header中的User-Agent内容也输出到日志中 ...

  9. 利用VisualVM监测Azure云服务中的Java应用

    在做Java开发的时候,我们需要在上线之前对程序进行压力测试,对程序的性能进行全面的监控,了解JVM的CPU,内存,GC,classes,线程等等信息,或者在程序上线运行的过程当中以便于诊断问题或者对 ...

  10. 跟我学Windows Azure 四 Cloud Service中的WebRole与WorkRole,及他们之间的通信

    Cloud Service 中WebRole就相当与我们的WebSite,而WorkRole相当与我们在服务器上写了个Windows Service,站在高可用的角度上来讲,Cloud Service ...

随机推荐

  1. vue3封装搜索表单组件

    seacrch 表单完成的功能 1.根据配置json配置项自动生成表单 ok 2.是响应式的排版 ok 3.点击搜索按钮会向上抛出值 ok 4.点击重置按钮会自动清空数据,不需要父组件额外的处理 ok ...

  2. vue3.0中reactive的正确使用姿势

    场景 在项目开发的时候,前端肯定是先写静态页面 在静态页面写好之后 然后就可以与后端对接数据了[高兴] 但是在对接接口的时候 我们会发现后端返回来的字段与前端在页面上写的可能不一致 这个时候有意思的事 ...

  3. vue中v-show你不知道的用法 created computed mounted的执行顺序

    我们都知道,v-show的值是一个布尔类型的. 我通过这个值进行显示或者隐藏. 但是有些时候,这个值是true还是false,我们需要去进行计算 此时我们就可以使用v-show="XXX() ...

  4. Go 匿名函数与闭包

    Go 匿名函数与闭包 匿名函数和闭包是一些编程语言中的重要概念,它们在Go语言中也有重要的应用.让我们来详细介绍这两个概念,并提供示例代码来帮助理解. 目录 Go 匿名函数与闭包 一.匿名函数(Ano ...

  5. silce的扩容,截取,使用规范总结

    切片 什么是slice slice的创建使用 slice使用的一点规范 slice和数组的区别 slice的append是如何发生的 复制Slice和Map注意事项 接收 Slice 和 Map 作为 ...

  6. SpringBoot实现动态数据源配置

    场景描述: 前一阵子接手的新项目中需要使用2个数据源. 一个叫行云数据库,一个叫OceanBase数据库. 就是说,我有时候查询要查行云的数据,有时候查询要查 OceanBase 的数据,咋办? 废话 ...

  7. 基于知识图谱的电影知识问答系统:训练TF-IDF 向量算法和朴素贝叶斯分类器、在 Neo4j 中查询

    基于知识图谱的电影知识问答系统:训练TF-IDF 向量算法和朴素贝叶斯分类器.在 Neo4j 中查询 1.项目介绍 训练 TF-IDF 向量算法和朴素贝叶斯分类器,预测用户文本所属的问题类别 使用分词 ...

  8. 绝对凶器!NVIDIA Titan Z细节全曝光

    AMD Radeon R9 295X2已经拉开了新一代双芯卡皇大战的序幕,接下来就等NVIDIA GeForce GTX Titan Z的登场了.最新消息显示,它比原计划推迟了一个星期,将在5月8日正 ...

  9. tp使用workerman消息推送

    安装 首先通过 composer 安装 composer require topthink/think-worker SocketServer 在命令行启动服务端 php think worker:s ...

  10. TP5图片处理常见问题

    一.Class 'think\Image' not found composer require topthink/think-image 装上了扩展控制器头部加了 use think\Image然后 ...