📄 cim_log.mof
字号:
// Copyright (c) 2005 DMTF. All rights reserved.// <change cr="ArchCR00066.004" type="add">Add UmlPackagePath// qualifier values to CIM Schema.</change>// ==================================================================// CIM_Log// ================================================================== [UMLPackagePath ( "CIM::System::Logs" ), Abstract, Version ( "2.9.0" ), Description ( "Log represents any type of event, error or informational " "register or chronicle. The object describes the existence of " "the log and its characteristics. Log does not dictate the form " "of the data represented or how records/messages are stored in " "the log and/or accessed. Subclasses will define the " "appropriate methods and behavior.")]class CIM_Log : CIM_EnabledLogicalElement { [Description ( "Maximum number of records that can be captured in the Log. " "If undefined, a value of zero should be specified.")] uint64 MaxNumberOfRecords; [Description ( "Current number of records in the Log."), Gauge] uint64 CurrentNumberOfRecords; [Description ( "Requests that the Log be cleared of all entries. \n" "The return value should be 0 if the request was " "successfully executed, 1 if the request is not supported, " "and some other value, as indicated by the ValueMap/Values " "qualifiers, if an error occurred."), ValueMap { "0", "1", "2", "3", "4", "5", "6..0x0FFF", "0x1000..0x7FFF", "0x8000.." }, Values { "Completed with no error", "Not Supported", "Unspecified Error", "Timeout", "Failed", "Invalid Parameter", "DMTF_Reserved", "Method_Reserved", "Vendor_Reserved" }] uint32 ClearLog(); };
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -