You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

53 lines
2.8 KiB

2 years ago
//
// AppMonitorAlarm.h
// AppMonitor
//
// Created by junzhan on 14-9-15.
// Copyright (c) 2014年 君展. All rights reserved.
//
#import <Foundation/Foundation.h>
#import "AppMonitorBase.h"
@interface AppMonitorAlarm : AppMonitorBase
/**
*
*
* @param page ,iOS要相同. :,; "业务名_页面名"("业务名"); . Shop_Detail, Shop_List
* @param monitorPoint ,iOS要相同,@
*
*/
+ (void)commitSuccessWithPage:(NSString *)page monitorPoint:(NSString *)monitorPoint;
/**
*
*
* @param page ,iOS要相同. :,; "业务名_页面名"("业务名"); . Shop_Detail, Shop_List
* @param monitorPoint ,iOS要相同,@
* @param errorCode MTOP请求则传MTOP的错误码,,便
* @param errorMsg MTOP请求则传MTOP的错误信息, , 便
*/
+ (void)commitFailWithPage:(NSString *)page monitorPoint:(NSString *)monitorPoint errorCode:(NSString *)errorCode errorMsg:(NSString *)errorMsg;
/**
*
*
* @param page ,iOS要相同. :,; "业务名_页面名"("业务名"); . Shop_Detail, Shop_List
* @param monitorPoint ,iOS要相同,@
* @arg
*/
+ (void)commitSuccessWithPage:(NSString *)page monitorPoint:(NSString *)monitorPoint arg:(NSString *)arg;
/**
*
*
* @param page ,iOS要相同. :,; "业务名_页面名"("业务名"); . Shop_Detail, Shop_List
* @param monitorPoint ,iOS要相同,@
* @param errorCode MTOP请求则传MTOP的错误码,,便
* @param errorMsg MTOP请求则传MTOP的错误信息, , 便
* @arg
*/
+ (void)commitFailWithPage:(NSString *)page monitorPoint:(NSString *)monitorPoint errorCode:(NSString *)errorCode errorMsg:(NSString *)errorMsg arg:(NSString *)arg;
@end