代码拉取完成,页面将自动刷新
/*
* Copyright (C) 2021-2022 Huawei Device Co., Ltd.
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
/**
* @file
* @kit PerformanceAnalysisKit
*/
import type { AsyncCallback } from './@ohos.base';
/**
* This module provides the capability to query faultlog data.
* This module is deprecated since 18, please use hiAppEvent to monitor APP_CRASH and APP_FREEZE event
* @namespace FaultLogger
* @syscap SystemCapability.HiviewDFX.Hiview.FaultLogger
* @since 8
* @deprecated since 18
* @useinstead ohos.hiviewdfx.hiAppEvent
*/
declare namespace FaultLogger {
/**
* The type of fault type.
* @enum { number }
* @syscap SystemCapability.HiviewDFX.Hiview.FaultLogger
* @since 8
* @deprecated since 18
*/
enum FaultType {
/**
* NO_SPECIFIC log type not distinguished.
* @syscap SystemCapability.HiviewDFX.Hiview.FaultLogger
* @since 8
* @deprecated since 18
*/
NO_SPECIFIC = 0,
/**
* CPP_CRASH CPP crash log type.
* @syscap SystemCapability.HiviewDFX.Hiview.FaultLogger
* @since 8
* @deprecated since 18
*/
CPP_CRASH = 2,
/**
* JS_CRASH JS crash log type.
* @syscap SystemCapability.HiviewDFX.Hiview.FaultLogger
* @since 8
* @deprecated since 18
*/
JS_CRASH = 3,
/**
* APP_FREEZE app freeze log type.
* @syscap SystemCapability.HiviewDFX.Hiview.FaultLogger
* @since 8
* @deprecated since 18
*/
APP_FREEZE = 4,
}
/**
* Query the result of the current application FaultLog in callback Mode.
* @param { FaultType } faultType - Fault type to query
* @param { AsyncCallback<Array<FaultLogInfo>> } callback - Faultlog information data callback function
* @syscap SystemCapability.HiviewDFX.Hiview.FaultLogger
* @since 8
* @deprecated since 9
* @useinstead ohos.faultlogger/FaultLogger#query
*/
function querySelfFaultLog(faultType: FaultType, callback: AsyncCallback<Array<FaultLogInfo>>): void;
/**
* Query the result of the current application FaultLog in return promise mode.
* @param { FaultType } faultType - Fault type to query
* @returns { Promise<Array<FaultLogInfo>> } return faultlog information data by promise
* @syscap SystemCapability.HiviewDFX.Hiview.FaultLogger
* @since 8
* @deprecated since 9
* @useinstead ohos.faultlogger/FaultLogger#query
*/
function querySelfFaultLog(faultType: FaultType): Promise<Array<FaultLogInfo>>;
/**
* Query the result of the current application FaultLog in callback Mode.
* @param { FaultType } faultType - Fault type to query
* @param { AsyncCallback<Array<FaultLogInfo>> } callback - Faultlog information data callback function
* @throws { BusinessError } 401 - The parameter check failed, Parameter type error
* @throws { BusinessError } 801 - The specified SystemCapability name was not found
* @throws { BusinessError } 10600001 - The service is not started or is faulty
* @syscap SystemCapability.HiviewDFX.Hiview.FaultLogger
* @since 9
* @deprecated since 18
*/
function query(faultType: FaultType, callback: AsyncCallback<Array<FaultLogInfo>>): void;
/**
* Query the result of the current application FaultLog in return promise mode.
* @param { FaultType } faultType - Fault type to query
* @returns { Promise<Array<FaultLogInfo>> } return faultlog information data by promise
* @throws { BusinessError } 401 - The parameter check failed, Parameter type error
* @throws { BusinessError } 801 - The specified SystemCapability name was not found
* @throws { BusinessError } 10600001 - The service is not started or is faulty
* @syscap SystemCapability.HiviewDFX.Hiview.FaultLogger
* @since 9
* @deprecated since 18
*/
function query(faultType: FaultType): Promise<Array<FaultLogInfo>>;
/**
* FaultLog information data structure.
* @interface FaultLogInfo
* @syscap SystemCapability.HiviewDFX.Hiview.FaultLogger
* @since 8
* @deprecated since 18
*/
interface FaultLogInfo {
/**
* Process id.
* @type { number }
* @syscap SystemCapability.HiviewDFX.Hiview.FaultLogger
* @since 8
* @deprecated since 18
*/
pid: number;
/**
* User id.
* @type { number }
* @syscap SystemCapability.HiviewDFX.Hiview.FaultLogger
* @since 8
* @deprecated since 18
*/
uid: number;
/**
* Fault type.
* @type { FaultType }
* @syscap SystemCapability.HiviewDFX.Hiview.FaultLogger
* @since 8
* @deprecated since 18
*/
type: FaultType;
/**
* Second level timestamp.
* @type { number }
* @syscap SystemCapability.HiviewDFX.Hiview.FaultLogger
* @since 8
* @deprecated since 18
*/
timestamp: number;
/**
* Fault reason.
* @type { string }
* @syscap SystemCapability.HiviewDFX.Hiview.FaultLogger
* @since 8
* @deprecated since 18
*/
reason: string;
/**
* Fault module.
* @type { string }
* @syscap SystemCapability.HiviewDFX.Hiview.FaultLogger
* @since 8
* @deprecated since 18
*/
module: string;
/**
* Fault summary.
* @type { string }
* @syscap SystemCapability.HiviewDFX.Hiview.FaultLogger
* @since 8
* @deprecated since 18
*/
summary: string;
/**
* Fault log.
* @type { string }
* @syscap SystemCapability.HiviewDFX.Hiview.FaultLogger
* @since 8
* @deprecated since 18
*/
fullLog: string;
}
}
export default FaultLogger;
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。