1060ff233Sopenharmony_ci#  Copyright (c) 2022 Huawei Device Co., Ltd.
2060ff233Sopenharmony_ci#  Licensed under the Apache License, Version 2.0 (the "License");
3060ff233Sopenharmony_ci#  you may not use this file except in compliance with the License.
4060ff233Sopenharmony_ci#  You may obtain a copy of the License at
5060ff233Sopenharmony_ci#
6060ff233Sopenharmony_ci#      http://www.apache.org/licenses/LICENSE-2.0
7060ff233Sopenharmony_ci#
8060ff233Sopenharmony_ci#  Unless required by applicable law or agreed to in writing, software
9060ff233Sopenharmony_ci#  distributed under the License is distributed on an "AS IS" BASIS,
10060ff233Sopenharmony_ci#  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
11060ff233Sopenharmony_ci#  See the License for the specific language governing permissions and
12060ff233Sopenharmony_ci#  limitations under the License.
13060ff233Sopenharmony_ci
14060ff233Sopenharmony_ci#####################################################
15060ff233Sopenharmony_ci#     below is the format of defining event         #
16060ff233Sopenharmony_ci#####################################################
17060ff233Sopenharmony_ci#domain: domain name.  [Only one domain name can be defined at the top]
18060ff233Sopenharmony_ci#
19060ff233Sopenharmony_ci#author: the author name who defined this event.
20060ff233Sopenharmony_ci#date: the date when this event was defined, format is YYYY-MM-DD.
21060ff233Sopenharmony_ci#logged: source file which refer to this event.
22060ff233Sopenharmony_ci#usage: the usage of this event.
23060ff233Sopenharmony_ci#//Define event name and event properties.
24060ff233Sopenharmony_ci#@EVENT_NAME: the event definition part begin.
25060ff233Sopenharmony_ci#  // __BASE is used for defining the basic info of the event.
26060ff233Sopenharmony_ci#  // "type" optional values are: FAULT, STATISTICS, SECURITY, BEHAVIOR.
27060ff233Sopenharmony_ci#  // "level" optional values are: CRITICAL, MINOR.
28060ff233Sopenharmony_ci#  // "tag" set tags with may used by subscriber of this event, multiple tags devided by space.
29060ff233Sopenharmony_ci#  // "desc" full description of this event.
30060ff233Sopenharmony_ci#  @PARAMETER: {type: parameter type, arrsize: array length(optional), desc: parameter description}.
31060ff233Sopenharmony_ci#  // follow the __BASE block, each line defines a parameter of this event.
32060ff233Sopenharmony_ci#  // "type" optional values are: INT8, UINT8, INT16, UINT16, INT32, UINT32, INT64, UINT64, FLOAT, DOUBLE, STRING.
33060ff233Sopenharmony_ci#  // "arrsize" of the parameter is an array, set a non-zero value.
34060ff233Sopenharmony_ci#  // "desc" full description of this parameter.
35060ff233Sopenharmony_ci
36060ff233Sopenharmony_ci#####################################################
37060ff233Sopenharmony_ci#           SoftBus hisysevent definition           #
38060ff233Sopenharmony_ci#####################################################
39060ff233Sopenharmony_ci
40060ff233Sopenharmony_cidomain: DSOFTBUS
41060ff233Sopenharmony_ci
42060ff233Sopenharmony_ciDISCOVER_BEHAVIOR:
43060ff233Sopenharmony_ci  __BASE: {type: BEHAVIOR, level: MINOR, desc: discovery behavior }
44060ff233Sopenharmony_ci  ORG_PKG: {type: STRING, desc: organization module name }
45060ff233Sopenharmony_ci  FUNC: {type: STRING, desc: current function name }
46060ff233Sopenharmony_ci  HOST_PKG: {type: STRING, desc: host module name }
47060ff233Sopenharmony_ci  BIZ_SCENE: {type: INT32, desc: business scene }
48060ff233Sopenharmony_ci  BIZ_STAGE: {type: INT32, desc: business stage }
49060ff233Sopenharmony_ci  STAGE_RES: {type: INT32, desc: stage result }
50060ff233Sopenharmony_ci  ERROR_CODE: { type: INT32, desc: error code }
51060ff233Sopenharmony_ci  INIT_TYPE: { type: INT32, desc: init type }
52060ff233Sopenharmony_ci  SERVER_TYPE: { type: INT32, desc: server type }
53060ff233Sopenharmony_ci  INTERFACE_FUNC_TYPE: { type: INT32, desc: interface func type }
54060ff233Sopenharmony_ci  CAPABILITY_BIT: { type: INT32, desc: capability bit map }
55060ff233Sopenharmony_ci  CAPABILITY_DATA: { type: INT32, desc: capability data }
56060ff233Sopenharmony_ci  BLE_TURN_STATE: { type: INT32, desc: ble turn state }
57060ff233Sopenharmony_ci  IP_LINK_STATUS: { type: INT32, desc: ip link status }
58060ff233Sopenharmony_ci  COAP_CHANGE_TYPE: { type: INT32, desc: coap change type }
59060ff233Sopenharmony_ci  BROADCAST_TYPE: { type: INT32, desc: broadcast type }
60060ff233Sopenharmony_ci  BROADCAST_FREQ: { type: INT32, desc: broadcast frequency }
61060ff233Sopenharmony_ci  SCAN_TYPE: { type: INT32, desc: scan type }
62060ff233Sopenharmony_ci  SCAN_CYCLE: { type: STRING, desc: scan duty cycle }
63060ff233Sopenharmony_ci  DISC_TYPE: { type: INT32, desc: discovery type }
64060ff233Sopenharmony_ci  DISC_MODE: { type: INT32, desc: discovery mode }
65060ff233Sopenharmony_ci  FIRST_DISCOVERY_TIME: { type: INT32, desc: time consuming to discover for the first time }
66060ff233Sopenharmony_ci  LOCAL_NET_ID: { type: STRING, desc: local device net id }
67060ff233Sopenharmony_ci  PEER_IP: { type: STRING, desc: peer device ip }
68060ff233Sopenharmony_ci  PEER_BR_MAC: { type: STRING, desc: peer device br mac }
69060ff233Sopenharmony_ci  PEER_BLE_MAC: { type: STRING, desc: peer device ble mac }
70060ff233Sopenharmony_ci  PEER_WIFI_MAC: { type: STRING, desc: peer device wifi mac }
71060ff233Sopenharmony_ci  PEER_PORT: { type: STRING, desc: peer device port }
72060ff233Sopenharmony_ci  PEER_NET_ID: { type: STRING, desc: peer device net id }
73060ff233Sopenharmony_ci  PEER_DEV_TYPE: { type: STRING, desc: peer device type }
74060ff233Sopenharmony_ci  OS_TYPE: { type: INT32, desc: peer os type}
75060ff233Sopenharmony_ci
76060ff233Sopenharmony_ciDISCOVER_AUDIT:
77060ff233Sopenharmony_ci  __BASE: {type: SECURITY, level: CRITICAL, desc: discovery security audit }
78060ff233Sopenharmony_ci  ORG_PKG: {type: STRING, desc: organization module name }
79060ff233Sopenharmony_ci  FUNC: {type: STRING, desc: current function name }
80060ff233Sopenharmony_ci  HOST_PKG: {type: STRING, desc: host module name }
81060ff233Sopenharmony_ci  BIZ_SCENE: {type: INT32, desc: business scene }
82060ff233Sopenharmony_ci  RESULT: { type: INT32, desc: deal result }
83060ff233Sopenharmony_ci  ERROR_CODE: { type: INT32, desc: error code }
84060ff233Sopenharmony_ci  AUDIT_TYPE: {type: INT32, desc: audit type }
85060ff233Sopenharmony_ci  BROADCAST_TYPE: { type: INT32, desc: broadcast type }
86060ff233Sopenharmony_ci  BROADCAST_FREQ: { type: INT32, desc: broadcast frequency }
87060ff233Sopenharmony_ci  ADV_COUNT: { type: INT32, desc: advertise count }
88060ff233Sopenharmony_ci  ADV_DURATION: { type: INT32, desc: advertise duration }
89060ff233Sopenharmony_ci  SCAN_INTERVAL: { type: INT32, desc: scan interval }
90060ff233Sopenharmony_ci  SCAN_WINDOW: { type: INT32, desc: scan window }
91060ff233Sopenharmony_ci  DISC_MODE: { type: INT32, desc: discovery mode }
92060ff233Sopenharmony_ci  MEDIUM_TYPE: { type: INT32, desc: medium type }
93060ff233Sopenharmony_ci  ADV_CHANNEL: { type: INT32, desc: adv channel }
94060ff233Sopenharmony_ci  SCAN_TYPE: { type: INT32, desc: scan type }
95060ff233Sopenharmony_ci  SCAN_ID: { type: INT32, desc: scan id }
96060ff233Sopenharmony_ci  SCAN_LISTENER_ID: { type: INT32, desc: scan listener id }
97060ff233Sopenharmony_ci  LOCAL_UDID: { type: STRING, desc: local device udid }
98060ff233Sopenharmony_ci  LOCAL_DEV_NAME: { type: STRING, desc: local device name }
99060ff233Sopenharmony_ci  LOCAL_DEV_TYPE: { type: STRING, desc: local device type }
100060ff233Sopenharmony_ci  LOCAL_ACCOUNT_HASH: { type: STRING, desc: local account hash }
101060ff233Sopenharmony_ci  LOCAL_CAPABILITY_BITMAP: { type: INT32, desc: local capability bitmap }
102060ff233Sopenharmony_ci  LOCAL_CUST_DATA: { type: STRING, desc: local cust data }
103060ff233Sopenharmony_ci  LOCAL_IP: { type: STRING, desc: local device ip }
104060ff233Sopenharmony_ci  LOCAL_PORT: { type: INT32, desc: local device port }
105060ff233Sopenharmony_ci  LOCAL_BR_MAC: { type: STRING, desc: local device br mac }
106060ff233Sopenharmony_ci  LOCAL_BLE_MAC: { type: STRING, desc: local device ble mac }
107060ff233Sopenharmony_ci  PEER_UDID: { type: STRING, desc: peer device udid }
108060ff233Sopenharmony_ci  PEER_DEV_NAME: { type: STRING, desc: peer device name }
109060ff233Sopenharmony_ci  PEER_DEV_TYPE: { type: STRING, desc: peer device type }
110060ff233Sopenharmony_ci  PEER_ACCOUNT_HASH: { type: STRING, desc: peer account hash }
111060ff233Sopenharmony_ci  PEER_CAPABILITY_BITMAP: { type: INT32, desc: peer capability bitmap }
112060ff233Sopenharmony_ci  PEER_CUST_DATA: { type: STRING, desc: peer cust data }
113060ff233Sopenharmony_ci  PEER_IP: { type: STRING, desc: peer device ip }
114060ff233Sopenharmony_ci  PEER_PORT: { type: INT32, desc: peer device port }
115060ff233Sopenharmony_ci  PEER_BR_MAC: { type: STRING, desc: peer device br mac }
116060ff233Sopenharmony_ci  PEER_BLE_MAC: { type: STRING, desc: peer device ble mac }
117060ff233Sopenharmony_ci  ERR_MSG: { type: STRING, desc: error message }
118060ff233Sopenharmony_ci  ADDITIONAL_INFO: { type: STRING, desc: additional information }
119060ff233Sopenharmony_ci
120060ff233Sopenharmony_ciBUSCENTER_BEHAVIOR:
121060ff233Sopenharmony_ci  __BASE: {type: BEHAVIOR, level: MINOR, desc: bus center behavior }
122060ff233Sopenharmony_ci  ORG_PKG: {type: STRING, desc: organization module name }
123060ff233Sopenharmony_ci  FUNC: {type: STRING, desc: current function name }
124060ff233Sopenharmony_ci  HOST_PKG: {type: STRING, desc: host module name }
125060ff233Sopenharmony_ci  TO_CALL_PKG: {type: STRING, desc: to call module name }
126060ff233Sopenharmony_ci  BIZ_SCENE: {type: INT32, desc: business scene }
127060ff233Sopenharmony_ci  BIZ_STAGE: {type: INT32, desc: business stage }
128060ff233Sopenharmony_ci  STAGE_RES: {type: INT32, desc: stage result }
129060ff233Sopenharmony_ci  ERROR_CODE: { type: INT32, desc: error code }
130060ff233Sopenharmony_ci  AUTH_ID: { type: INT32, desc: auth id }
131060ff233Sopenharmony_ci  DISC_SERVER_TYPE: {type: INT32, desc: disc server type }
132060ff233Sopenharmony_ci  GEAR_CYCLE: {type: INT32, desc: gear cycle }
133060ff233Sopenharmony_ci  GEAR_DURATION: {type: INT32, desc: gear duration }
134060ff233Sopenharmony_ci  CONN_ID: { type: INT32, desc: connection id }
135060ff233Sopenharmony_ci  AUTH_LINK_TYPE: { type: INT32, desc: auth link type }
136060ff233Sopenharmony_ci  AUTH_COST_TIME: { type: INT32, desc: auth cost time }
137060ff233Sopenharmony_ci  LNN_TYPE: { type: INT32, desc: lnn type }
138060ff233Sopenharmony_ci  ONLINE_NUM: { type: INT32, desc: current online device num }
139060ff233Sopenharmony_ci  PEER_DEV_ABILITY: { type: INT32, desc: peer device ability }
140060ff233Sopenharmony_ci  ONLINE_TYPE: { type: INT32, desc: online type }
141060ff233Sopenharmony_ci  OS_TYPE: { type: INT32, desc: os type }
142060ff233Sopenharmony_ci  CONN_ONLINE_REASON: { type: UINT32, desc: connect online reason }
143060ff233Sopenharmony_ci  STRATEGY_FOR_LNN_BLE: { type: UINT32, desc: strategy for lnn ble }
144060ff233Sopenharmony_ci  PEER_DEV_INFO: { type: STRING, desc: peer device lnn info }
145060ff233Sopenharmony_ci  PEER_IP: { type: STRING, desc: peer device ip }
146060ff233Sopenharmony_ci  PEER_BR_MAC: { type: STRING, desc: peer device br mac }
147060ff233Sopenharmony_ci  PEER_BLE_MAC: { type: STRING, desc: peer device ble mac }
148060ff233Sopenharmony_ci  PEER_WIFI_MAC: { type: STRING, desc: peer device wifi mac }
149060ff233Sopenharmony_ci  PEER_PORT: { type: STRING, desc: peer device port }
150060ff233Sopenharmony_ci  PEER_UDID: { type: STRING, desc: peer device udid }
151060ff233Sopenharmony_ci  PEER_NET_ID: { type: STRING, desc: peer device net id }
152060ff233Sopenharmony_ci  LOCAL_DEV_TYPE: { type: STRING, desc: local device type }
153060ff233Sopenharmony_ci  PEER_DEV_TYPE: { type: STRING, desc: peer device type }
154060ff233Sopenharmony_ci  LOCAL_UDID_HASH: { type: STRING, desc: local device udid hash}
155060ff233Sopenharmony_ci  PEER_UDID_HASH: { type: STRING, desc: peer device udid hash}
156060ff233Sopenharmony_ci
157060ff233Sopenharmony_ciBUSCENTER_AUDIT:
158060ff233Sopenharmony_ci  __BASE: {type: SECURITY, level: CRITICAL, desc: bus center security audit }
159060ff233Sopenharmony_ci  BIZ_SCENE: {type: INT32, desc: business scene }
160060ff233Sopenharmony_ci  BIZ_STAGE: {type: INT32, desc: business stage }
161060ff233Sopenharmony_ci  ORG_PKG: {type: STRING, desc: organization module name }
162060ff233Sopenharmony_ci  FUNC: {type: STRING, desc: current function name }
163060ff233Sopenharmony_ci  HOST_PKG: {type: STRING, desc: host module name }
164060ff233Sopenharmony_ci  RESULT: {type: INT32, desc: deal result }
165060ff233Sopenharmony_ci  ERROR_CODE: {type: INT32, desc: error code }
166060ff233Sopenharmony_ci  AUDIT_TYPE: {type: INT32, desc: audit type }
167060ff233Sopenharmony_ci  CONN_ID: {type: INT32, desc: connection id }
168060ff233Sopenharmony_ci  AUTH_LINK_TYPE: {type: INT32, desc: auth link type }
169060ff233Sopenharmony_ci  AUTH_REQUEST_ID: {type: INT32, desc: auth request id }
170060ff233Sopenharmony_ci  ONLINE_NUM: {type: INT32, desc: current online device num }
171060ff233Sopenharmony_ci  LOCAL_IP: {type: STRING, desc: local device ip }
172060ff233Sopenharmony_ci  LOCAL_BR_MAC: {type: STRING, desc: local device br mac }
173060ff233Sopenharmony_ci  LOCAL_BLE_MAC: {type: STRING, desc: local device ble mac }
174060ff233Sopenharmony_ci  LOCAL_UDID: {type: STRING, desc: local device udid }
175060ff233Sopenharmony_ci  LOCAL_NETWORK_ID: {type: STRING, desc: local device network id }
176060ff233Sopenharmony_ci  LOCAL_DEV_NAME: {type: STRING, desc: local device name }
177060ff233Sopenharmony_ci  PEER_IP: {type: STRING, desc: peer device ip }
178060ff233Sopenharmony_ci  PEER_BR_MAC: {type: STRING, desc: peer device br mac }
179060ff233Sopenharmony_ci  PEER_BLE_MAC: {type: STRING, desc: peer device ble mac }
180060ff233Sopenharmony_ci  PEER_UDID: {type: STRING, desc: peer device udid }
181060ff233Sopenharmony_ci  PEER_NETWORK_ID: {type: STRING, desc: peer device network id }
182060ff233Sopenharmony_ci  PEER_DEV_NAME: {type: STRING, desc: peer device name }
183060ff233Sopenharmony_ci  LOCAL_AUTH_PORT: {type: INT32, desc: local device auth port}
184060ff233Sopenharmony_ci  LOCAL_PROXY_PORT: {type: INT32, desc: local device proxy port }
185060ff233Sopenharmony_ci  LOCAL_SESSION_PORT: {type: INT32, desc: local device session port }
186060ff233Sopenharmony_ci  LOCAL_DEV_TYPE: {type: INT32, desc: local device type }
187060ff233Sopenharmony_ci  PEER_AUTH_PORT: {type: INT32, desc: peer device auth port }
188060ff233Sopenharmony_ci  PEER_PROXY_PORT: {type: INT32, desc: peer device proxy port }
189060ff233Sopenharmony_ci  PEER_SESSION_PORT: {type: INT32, desc: peer device session port }
190060ff233Sopenharmony_ci  PEER_DEV_TYPE: {type: INT32, desc: peer device type }
191060ff233Sopenharmony_ci  ATTACK_TIMES: {type: INT32, desc: attack times }
192060ff233Sopenharmony_ci  BE_ATTACKED_PORT: {type: INT32, desc: be attacked port }
193060ff233Sopenharmony_ci  HEARTBEAT_EVENT_TYPE: {type: INT32, desc: heartbeat event type }
194060ff233Sopenharmony_ci
195060ff233Sopenharmony_ciTRANSPORT_BEHAVIOR:
196060ff233Sopenharmony_ci  __BASE: {type: BEHAVIOR, level: MINOR, desc: transport behavior }
197060ff233Sopenharmony_ci  ORG_PKG: {type: STRING, desc: organization module name }
198060ff233Sopenharmony_ci  FUNC: {type: STRING, desc: current function name }
199060ff233Sopenharmony_ci  HOST_PKG: {type: STRING, desc: host module name }
200060ff233Sopenharmony_ci  TO_CALL_PKG: {type: STRING, desc: to call module name }
201060ff233Sopenharmony_ci  BIZ_SCENE: {type: INT32, desc: business scene }
202060ff233Sopenharmony_ci  BIZ_STAGE: {type: INT32, desc: business stage }
203060ff233Sopenharmony_ci  STAGE_RES: {type: INT32, desc: stage result }
204060ff233Sopenharmony_ci  ERROR_CODE: { type: INT32, desc: error code }
205060ff233Sopenharmony_ci  SESSION_NAME: {type: STRING, desc: session name }
206060ff233Sopenharmony_ci  DATA_TYPE: { type: INT32, desc: channel data type }
207060ff233Sopenharmony_ci  LOGIC_CHAN_TYPE: { type: INT32, desc: logic channel type }
208060ff233Sopenharmony_ci  LANE_ID: { type: INT32, desc: lane id }
209060ff233Sopenharmony_ci  PREFER_LINK_TYPE: { type: INT32, desc: preferred link type }
210060ff233Sopenharmony_ci  LANE_TRANS_TYPE: { type: INT32, desc: transport lane data type }
211060ff233Sopenharmony_ci  CHAN_ID: { type: INT32, desc: channel id }
212060ff233Sopenharmony_ci  REQ_ID: { type: INT32, desc: request id }
213060ff233Sopenharmony_ci  CONN_ID: { type: INT32, desc: connection id }
214060ff233Sopenharmony_ci  LINK_TYPE: { type: INT32, desc: link type }
215060ff233Sopenharmony_ci  AUTH_ID: { type: INT32, desc: auth id }
216060ff233Sopenharmony_ci  SOCKET_FD: { type: INT32, desc: socket fd }
217060ff233Sopenharmony_ci  TIME_CONSUMING: { type: INT32, desc: total cost time}
218060ff233Sopenharmony_ci  CHAN_SCORE: { type: INT32, desc: channel score }
219060ff233Sopenharmony_ci  PEER_CHAN_ID: { type: INT32, desc: peer channel id }
220060ff233Sopenharmony_ci  PEER_NET_ID: { type: STRING, desc: peer device net id }
221060ff233Sopenharmony_ci  PEER_UDID: { type: STRING, desc: peer udid }
222060ff233Sopenharmony_ci  PEER_DEV_VER: { type: STRING, desc: peer device build version }
223060ff233Sopenharmony_ci  LOCAL_UDID: { type: STRING, desc: local udid }
224060ff233Sopenharmony_ci  OS_TYPE: { type: INT32, desc: os type }
225060ff233Sopenharmony_ci  DEVICE_STATE: { type: INT32, desc: device state }
226060ff233Sopenharmony_ci  FIRST_TOKEN_NAME: { type: STRING, desc: first token name }
227060ff233Sopenharmony_ci  FIRST_TOKEN_ID: { type: UINT32, desc: first token id }
228060ff233Sopenharmony_ci  FIRST_TOKEN_TYPE: { type: INT32, desc: first token type }
229060ff233Sopenharmony_ci
230060ff233Sopenharmony_ciTRANSPORT_AUDIT:
231060ff233Sopenharmony_ci  __BASE: {type: SECURITY, level: CRITICAL, desc: transport recurity audit }
232060ff233Sopenharmony_ci  ORG_PKG: {type: STRING, desc: business module name }
233060ff233Sopenharmony_ci  FUNC: {type: STRING, desc: function name }
234060ff233Sopenharmony_ci  HOST_PKG: {type: STRING, desc: host module name }
235060ff233Sopenharmony_ci  BIZ_SCENE: {type: INT32, desc: business scene }
236060ff233Sopenharmony_ci  RESULT: {type: INT32, desc: deal result }
237060ff233Sopenharmony_ci  ERROR_CODE: { type: INT32, desc: error code }
238060ff233Sopenharmony_ci  AUDIT_TYPE: {type: INT32, desc: audit type }
239060ff233Sopenharmony_ci  LOCAL_IP: { type: STRING, desc: local device ip }
240060ff233Sopenharmony_ci  LOCAL_PORT: { type: STRING, desc: local device port }
241060ff233Sopenharmony_ci  LOCAL_DEV_ID: { type: STRING, desc: local device id }
242060ff233Sopenharmony_ci  LOCAL_DEV_TYPE: { type: INT32, desc: local device type }
243060ff233Sopenharmony_ci  LOCAL_SESS_NAME: { type: STRING, desc: local session name }
244060ff233Sopenharmony_ci  LOCAL_CHANNEL_ID: { type: INT32, desc: local channel id }
245060ff233Sopenharmony_ci  PEER_IP: { type: STRING, desc: peer device ip }
246060ff233Sopenharmony_ci  PEER_PORT: { type: STRING, desc: peer device port }
247060ff233Sopenharmony_ci  PEER_DEV_ID: { type: STRING, desc: peer device id }
248060ff233Sopenharmony_ci  PEER_DEV_TYPE: { type: INT32, desc: peer device type }
249060ff233Sopenharmony_ci  PEER_SESS_NAME: { type: STRING, desc: peer session name }
250060ff233Sopenharmony_ci  PEER_CHANNEL_ID: { type: INT32, desc: peer channel id }
251060ff233Sopenharmony_ci  CHANNEL_TYPE: { type: INT32, desc: channel type }
252060ff233Sopenharmony_ci  AUTH_ID: { type: INT32, desc: auth id }
253060ff233Sopenharmony_ci  REQ_ID: { type: INT32, desc: request id }
254060ff233Sopenharmony_ci  LINK_TYPE: { type: INT32, desc: link type }
255060ff233Sopenharmony_ci  CONN_ID: { type: INT32, desc: connection id }
256060ff233Sopenharmony_ci  SOCKET_FD: { type: INT32, desc: socket fd }
257060ff233Sopenharmony_ci  DATA_TYPE: { type: INT32, desc: channel data type }
258060ff233Sopenharmony_ci  DATA_LEN: { type: INT32, desc: channel data length }
259060ff233Sopenharmony_ci  DATA_SEQ: { type: INT32, desc: channel data seq }
260060ff233Sopenharmony_ci  COST_TIME: { type: INT32, desc: total cost time}
261060ff233Sopenharmony_ci  DATA_TRAFFIC: { type: INT32, desc: data traffic }
262060ff233Sopenharmony_ci  REQ_COUNT: { type: INT32, desc: request cpunt }
263060ff233Sopenharmony_ci
264060ff233Sopenharmony_ciCONNECTION_BEHAVIOR:
265060ff233Sopenharmony_ci  __BASE: {type: BEHAVIOR, level: MINOR, desc: connection behavior }
266060ff233Sopenharmony_ci  ORG_PKG: {type: STRING, desc: organization module name }
267060ff233Sopenharmony_ci  FUNC: {type: STRING, desc: current function name }
268060ff233Sopenharmony_ci  HOST_PKG: {type: STRING, desc: host module name }
269060ff233Sopenharmony_ci  TO_CALL_PKG: {type: STRING, desc: to call module name }
270060ff233Sopenharmony_ci  BIZ_SCENE: {type: INT32, desc: business scene }
271060ff233Sopenharmony_ci  BIZ_STAGE: {type: INT32, desc: business stage }
272060ff233Sopenharmony_ci  STAGE_RES: {type: INT32, desc: stage result }
273060ff233Sopenharmony_ci  ERROR_CODE: { type: INT32, desc: error code }
274060ff233Sopenharmony_ci  CONN_ID: { type: INT32, desc: connection id }
275060ff233Sopenharmony_ci  REQ_ID: { type: INT32, desc: request id }
276060ff233Sopenharmony_ci  LINK_TYPE: { type: INT32, desc: link type }
277060ff233Sopenharmony_ci  AUTH_TYPE: { type: INT32, desc: auth type }
278060ff233Sopenharmony_ci  AUTH_ID: { type: INT32, desc: auth id }
279060ff233Sopenharmony_ci  LNN_TYPE: { type: STRING, desc: lnn type }
280060ff233Sopenharmony_ci  EXPECT_ROLE: { type: INT32, desc: expect role }
281060ff233Sopenharmony_ci  COST_TIME: { type: INT32, desc: total cost time }
282060ff233Sopenharmony_ci  RSSI: { type: INT32, desc: rssi }
283060ff233Sopenharmony_ci  CHLOAD: { type: INT32, desc: chload }
284060ff233Sopenharmony_ci  FREQ: { type: INT32, desc: frequency }
285060ff233Sopenharmony_ci  CONN_PROTOCOL: { type: INT32, desc: connection protocol }
286060ff233Sopenharmony_ci  CONN_ROLE: { type: INT32, desc: connection role }
287060ff233Sopenharmony_ci  CONN_RC_DELTA: { type: INT32, desc: connection request count delta }
288060ff233Sopenharmony_ci  CONN_RC: { type: INT32, desc: connection request count }
289060ff233Sopenharmony_ci  SUPT_FEATURE: { type: INT32, desc: support feature }
290060ff233Sopenharmony_ci  MODULE_ID: { type: INT32, desc: module id }
291060ff233Sopenharmony_ci  PROTOCOL_TYPE: { type: UINT32, desc: protocol type }
292060ff233Sopenharmony_ci  FD: { type: INT32, desc: local fd }
293060ff233Sopenharmony_ci  CFD: { type: INT32, desc: client fd when local is server side }
294060ff233Sopenharmony_ci  CHALLENGE_CODE: { type: STRING, desc: challenge code }
295060ff233Sopenharmony_ci  PEER_IP: { type: STRING, desc: peer device ip }
296060ff233Sopenharmony_ci  PEER_BR_MAC: { type: STRING, desc: peer device br mac }
297060ff233Sopenharmony_ci  PEER_BLE_MAC: { type: STRING, desc: peer device ble mac }
298060ff233Sopenharmony_ci  PEER_WIFI_MAC: { type: STRING, desc: peer device wifi mac }
299060ff233Sopenharmony_ci  PEER_PORT: { type: STRING, desc: peer device port }
300060ff233Sopenharmony_ci  PEER_NET_ID: { type: STRING, desc: peer network id }
301060ff233Sopenharmony_ci  PEER_UDID: { type: STRING, desc: peer udid }
302060ff233Sopenharmony_ci  PEER_DEV_TYPE: { type: STRING, desc: peer device type }
303060ff233Sopenharmony_ci  LOCAL_NET_ID: { type: STRING, desc: local network id }
304060ff233Sopenharmony_ci  BOOT_LINK_TYPE: { type: INT32, desc: boot link type }
305060ff233Sopenharmony_ci  IS_RENEGOTIATE: { type: INT32, desc: is renegotiate }
306060ff233Sopenharmony_ci  IS_REUSE: { type: INT32, desc: is reuse }
307060ff233Sopenharmony_ci  NEGOTIATE_TIME: { type: UINT64, desc: negotiate time }
308060ff233Sopenharmony_ci  LINK_TIME: { type: UINT64, desc: link time }
309060ff233Sopenharmony_ci
310060ff233Sopenharmony_ciCONNECTION_AUDIT:
311060ff233Sopenharmony_ci  __BASE: {type: SECURITY, level: CRITICAL, desc: connection security audit }
312060ff233Sopenharmony_ci  ORG_PKG: {type: STRING, desc: organization module name }
313060ff233Sopenharmony_ci  FUNC: {type: STRING, desc: current function name }
314060ff233Sopenharmony_ci  HOST_PKG: {type: STRING, desc: host module name }
315060ff233Sopenharmony_ci  TO_CALL_PKG: {type: STRING, desc: to call module name }
316060ff233Sopenharmony_ci  BIZ_SCENE: {type: INT32, desc: business scene }
317060ff233Sopenharmony_ci  ERROR_CODE: { type: INT32, desc: error code }
318060ff233Sopenharmony_ci  AUDIT_TYPE: {type: INT32, desc: audit type }
319060ff233Sopenharmony_ci  CONN_ID: { type: INT32, desc: connection id }
320060ff233Sopenharmony_ci  REQ_ID: { type: INT32, desc: request id }
321060ff233Sopenharmony_ci  LINK_TYPE: { type: INT32, desc: link type }
322060ff233Sopenharmony_ci  EXPECT_ROLE: { type: INT32, desc: expect role }
323060ff233Sopenharmony_ci  COST_TIME: { type: INT32, desc: total cost time}
324060ff233Sopenharmony_ci  CONN_TIMES: { type: INT32, desc: connect times }
325060ff233Sopenharmony_ci  FREQ: { type: STRING, desc: frequency}
326060ff233Sopenharmony_ci  CHALLENGE_CODE: { type: STRING, desc: challenge code }
327060ff233Sopenharmony_ci  PEER_BR_MAC: { type: STRING, desc: peer device br mac }
328060ff233Sopenharmony_ci  LOCAL_BR_MAC: { type: STRING, desc: local br mac }
329060ff233Sopenharmony_ci  PEER_BLE_MAC: { type: STRING, desc: peer device ble mac }
330060ff233Sopenharmony_ci  LOCAL_BLE_MAC: { type: STRING, desc: local ble mac }
331060ff233Sopenharmony_ci  PEER_WIFI_MAC: { type: STRING, desc: peer wifi mac }
332060ff233Sopenharmony_ci  PEER_DEV_TYPE: { type: STRING, desc: peer device type }
333060ff233Sopenharmony_ci  PEER_UDID: { type: STRING, desc: peer device udid }
334060ff233Sopenharmony_ci  LOCAL_UDID: { type: STRING, desc: local ble udid }
335060ff233Sopenharmony_ci  CONN_PAYLOAD: { type: STRING, desc: payload data }
336060ff233Sopenharmony_ci  LOCAL_DEV_NAME: { type: STRING, desc: local device name }
337060ff233Sopenharmony_ci  PEER_IP: { type: STRING, desc: peer device ip }
338060ff233Sopenharmony_ci  LOCAL_IP: { type: STRING, desc: loca ip }
339060ff233Sopenharmony_ci  PEER_PORT: { type: STRING, desc: peer port }
340060ff233Sopenharmony_ci  LOCAL_PORT: { type: STRING, desc: local port }
341060ff233Sopenharmony_ci
342060ff233Sopenharmony_ciIPC_BEHAVIOR:
343060ff233Sopenharmony_ci  __BASE: {type: BEHAVIOR, level: MINOR, desc: softbus ipc behavior dotting event }
344060ff233Sopenharmony_ci  ORG_PKG: {type: STRING, desc: business package name }
345060ff233Sopenharmony_ci  FUNC: {type: STRING, desc: fuction name}
346060ff233Sopenharmony_ci  BIZ_SCENE: {type: INT32, desc: business scene }
347060ff233Sopenharmony_ci  BIZ_STAGE: {type: INT32, desc: eack scene process stage }
348060ff233Sopenharmony_ci  STAGE_RES: {type: INT32, desc: stage result }
349060ff233Sopenharmony_ci  BIZ_STATE: {type: INT32, desc: current business result }
350060ff233Sopenharmony_ci  ERROR_CODE: {type: INT32, desc: error code }
351060ff233Sopenharmony_ci  COMM_TYPE: {type: INT32, desc: ipc communication type }
352060ff233Sopenharmony_ci  HOST_PKG: {type: STRING, desc: host package name }
353060ff233Sopenharmony_ci  TO_CALL_PKG: {type: STRING, desc: called package name }
354060ff233Sopenharmony_ci
355060ff233Sopenharmony_ciFIRST_DISC_DURATION:
356060ff233Sopenharmony_ci  __BASE: {type: STATISTIC, level: MINOR, desc: first discovery device duration }
357060ff233Sopenharmony_ci  SOFT_BUS_VERSION: {type: STRING, desc: softbus version }
358060ff233Sopenharmony_ci  PACKAGE_VERSION: {type: STRING, desc: package version }
359060ff233Sopenharmony_ci  LINK_TYPE: {type: UINT32, desc: link type ble 1 wlan 2 }
360060ff233Sopenharmony_ci  TOTAL_TIME: {type: UINT64, desc: total duration ms }
361060ff233Sopenharmony_ci  TOTAL_COUNT: {type: UINT32, desc: total count }
362060ff233Sopenharmony_ci  COUNT1: { type: UINT32, desc: number of times that the duration is longer than 500ms }
363060ff233Sopenharmony_ci  COUNT2: { type: UINT32, desc: number of times that the duration is longer than 1000ms }
364060ff233Sopenharmony_ci  COUNT3: { type: UINT32, desc: number of times that the duration is longer than 1500ms }
365060ff233Sopenharmony_ci  COUNT4: { type: UINT32, desc: number of times that the duration is longer than 2000ms }
366060ff233Sopenharmony_ci  COUNT5: { type: UINT32, desc: number of times that the duration is longer than 2500ms }
367060ff233Sopenharmony_ci
368060ff233Sopenharmony_ciDISCOVERY_DETAILS:
369060ff233Sopenharmony_ci  __BASE: {type: STATISTIC, level: MINOR, desc: ble discovery details }
370060ff233Sopenharmony_ci  MODULE: {type: STRING, desc: module }
371060ff233Sopenharmony_ci  DISCTYPE: {type: UINT32, desc: discovery type }
372060ff233Sopenharmony_ci  DURATION: {type: UINT64, desc: discovery duration }
373060ff233Sopenharmony_ci  REPTIMES: {type: UINT32, desc: report times }
374060ff233Sopenharmony_ci  DEVNUM: {type: UINT32, desc: report times }
375060ff233Sopenharmony_ci  DISCTIMES: {type: UINT32, desc: discovery times }
376060ff233Sopenharmony_ci
377060ff233Sopenharmony_ciDISCOVERY_BLE_RSSI:
378060ff233Sopenharmony_ci  __BASE: {type: STATISTIC, level: MINOR, desc: ble discovery rssi }
379060ff233Sopenharmony_ci  RANGEID: {type: UINT32, arrsize: 52, desc: range id }
380060ff233Sopenharmony_ci  RANGEDATA: {type: UINT32, arrsize: 52, desc: range data }
381060ff233Sopenharmony_ci
382060ff233Sopenharmony_ciCONN_DURATION:
383060ff233Sopenharmony_ci  __BASE: {type: STATISTIC, level: MINOR, desc: statistic the connection duration }
384060ff233Sopenharmony_ci  SOFT_BUS_VERSION: { type: STRING, desc: softbus version }
385060ff233Sopenharmony_ci  PACKAGE_VERSION: { type: STRING, desc: package version }
386060ff233Sopenharmony_ci  CALLER_PACKAGE_NAME: {type: STRING, desc: caller package name }
387060ff233Sopenharmony_ci  LINK_TYPE: { type: UINT32, desc: link type br 0 ble 1 wlan 2 p2p 3 hml 4 }
388060ff233Sopenharmony_ci  FAIL_TOTAL_TIME: { type: UINT64, desc: fail total duration ms }
389060ff233Sopenharmony_ci  FAIL_TOTAL_COUNT: { type: UINT32, desc: fail total count }
390060ff233Sopenharmony_ci  TOTAL_TIME: { type: UINT64, desc: total duration ms }
391060ff233Sopenharmony_ci  TOTAL_COUNT: { type: UINT32, desc: total count }
392060ff233Sopenharmony_ci  COUNT1: { type: UINT32, desc: number of times that the duration is longer than 1500ms }
393060ff233Sopenharmony_ci  COUNT2: { type: UINT32, desc: number of times that the duration is longer than 2000ms }
394060ff233Sopenharmony_ci  COUNT3: { type: UINT32, desc: number of times that the duration is longer than 2500ms }
395060ff233Sopenharmony_ci  COUNT4: { type: UINT32, desc: number of times that the duration is longer than 3000ms }
396060ff233Sopenharmony_ci  COUNT5: { type: UINT32, desc: number of times that the duration is longer than 4000ms }
397060ff233Sopenharmony_ci
398060ff233Sopenharmony_ciPROCESS_STEP_DURATION:
399060ff233Sopenharmony_ci  __BASE: {type: STATISTIC, level: MINOR, desc: statistic the p2p or hml process duration }
400060ff233Sopenharmony_ci  SOFT_BUS_VERSION: { type: STRING, desc: softbus version }
401060ff233Sopenharmony_ci  PACKAGE_VERSION: { type: STRING, desc: package version }
402060ff233Sopenharmony_ci  PROCESS_STEP: {type: UINT32, desc: process step }
403060ff233Sopenharmony_ci  LINK_TYPE: { type: UINT32, desc: link type br 0 ble 1 wlan 2 p2p 3 hml 4 }
404060ff233Sopenharmony_ci  TOTAL_TIME: { type: UINT64, desc: total duration ms }
405060ff233Sopenharmony_ci  TOTAL_COUNT: { type: UINT32, desc: total count }
406060ff233Sopenharmony_ci  COUNT1: { type: UINT32, desc: number of times that the duration is longer than 1500ms }
407060ff233Sopenharmony_ci  COUNT2: { type: UINT32, desc: number of times that the duration is longer than 2000ms }
408060ff233Sopenharmony_ci  COUNT3: { type: UINT32, desc: number of times that the duration is longer than 2500ms }
409060ff233Sopenharmony_ci  COUNT4: { type: UINT32, desc: number of times that the duration is longer than 3000ms }
410060ff233Sopenharmony_ci  COUNT5: { type: UINT32, desc: number of times that the duration is longer than 4000ms }
411060ff233Sopenharmony_ci
412060ff233Sopenharmony_ciTRANSPORT_KPI:
413060ff233Sopenharmony_ci  __BASE: {type: STATISTIC, level: MINOR, desc: success rate of establishing softbus transmission}
414060ff233Sopenharmony_ci  LINK_TYPE: {type: INT32, desc: linktype}
415060ff233Sopenharmony_ci  TOTAL_TIME: {type: INT64, desc: total duration ms}
416060ff233Sopenharmony_ci  TOTAL_COUNT: {type: INT32, desc: total count}
417060ff233Sopenharmony_ci  FAIL_TOTAL_TIME: {type: INT64, desc: fail total time ms}
418060ff233Sopenharmony_ci  FAIL_TOTAL_COUNT: {type: INT32, desc: fail total count}
419060ff233Sopenharmony_ci  PACKAGE_VERSION: {type: STRING, desc: package version}
420060ff233Sopenharmony_ci  SOFT_BUS_VERSION: {type: STRING, desc: softbus version}
421060ff233Sopenharmony_ci  COUNT1: {type: INT32, desc: Number of times that the duration is longer than 1s}
422060ff233Sopenharmony_ci  COUNT2: {type: INT32, desc: Number of times that the duration is longer than 2s}
423060ff233Sopenharmony_ci  COUNT3: {type: INT32, desc: Number of times that the duration is longer than 4s}
424060ff233Sopenharmony_ci  COUNT4: {type: INT32, desc: Number of times that the duration is longer than 7s}
425060ff233Sopenharmony_ci  COUNT5: {type: INT32, desc: Number of times that the duration is longer than 11s}
426060ff233Sopenharmony_ci  CALLER_PACKAGE_NAME: {type: STRING, desc: caller package name}
427060ff233Sopenharmony_ci
428060ff233Sopenharmony_ciCALLED_API_INFO:
429060ff233Sopenharmony_ci  __BASE: {type: STATISTIC, level: MINOR, desc: api called APP infor}
430060ff233Sopenharmony_ci  APP_NAME: {type: STRING, desc: caller package name}
431060ff233Sopenharmony_ci  API_NAME: {type: STRING, desc: called api name}
432060ff233Sopenharmony_ci  TOTAL_COUNT: {type: INT32, desc: total count}
433060ff233Sopenharmony_ci  SOFT_BUS_VERSION: {type: STRING, desc: softbus version}
434060ff233Sopenharmony_ci  PACKAGE_VERSION: {type: STRING, desc: package version}
435060ff233Sopenharmony_ci
436060ff233Sopenharmony_ciCALLED_API_CNT:
437060ff233Sopenharmony_ci  __BASE: {type: STATISTIC, level: MINOR, desc: api called count}
438060ff233Sopenharmony_ci  API_NAME: {type: STRING, desc: called api name}
439060ff233Sopenharmony_ci  TOTAL_COUNT: {type: INT32, desc: total count}
440060ff233Sopenharmony_ci
441060ff233Sopenharmony_ciTRANS_OPEN_SESSION_CNT:
442060ff233Sopenharmony_ci  __BASE: {type: STATISTIC, level: MINOR, desc: the success count and the fail count of open session }
443060ff233Sopenharmony_ci  SUCCESS_CNT: {type: UINT32, desc: the success count of open session }
444060ff233Sopenharmony_ci  FAIL_CNT: {type: UINT32, desc: the fail count of open session }
445060ff233Sopenharmony_ci  SUCCESS_RATE: {type: FLOAT, desc: the success rate of open session }
446060ff233Sopenharmony_ci
447060ff233Sopenharmony_ciTRANS_OPEN_SESSION_TIME_COST:
448060ff233Sopenharmony_ci  __BASE: {type: STATISTIC, level: MINOR, desc: the time comsuming of open session }
449060ff233Sopenharmony_ci  MAX_TIME_COST: {type: UINT32, desc: the max time comsuming of open session }
450060ff233Sopenharmony_ci  MIN_TIME_COST: {type: UINT32, desc: the min time comsuming of open session }
451060ff233Sopenharmony_ci  AVE_TIME_COST: {type: UINT32, desc: the average time comsuming of open session }
452060ff233Sopenharmony_ci  TIMES_UNDER_500MS: {type: UINT32, desc: the times unders 500ms of open session }
453060ff233Sopenharmony_ci  TIMES_BETWEEN_500MS_1S: {type: UINT32, desc: the times between 500ms to 1s of open session }
454060ff233Sopenharmony_ci  TIMES_BETWEEN_1S_2S: {type: UINT32, desc: the times between 1s to 2s of open session }
455060ff233Sopenharmony_ci  TIMES_ABOVE_2S: {type: UINT32, desc: the times above 2s of open session }
456060ff233Sopenharmony_ci
457060ff233Sopenharmony_ciTRANS_FAULT:
458060ff233Sopenharmony_ci  __BASE: {type: FAULT, level: CRITICAL, desc: the transmission fail }
459060ff233Sopenharmony_ci  ERROR_CODE: {type: INT32, desc: error code }
460060ff233Sopenharmony_ci
461060ff233Sopenharmony_ciTRANS_INFO:
462060ff233Sopenharmony_ci  __BASE: {type: BEHAVIOR, level: MINOR, desc: the transmission info }
463060ff233Sopenharmony_ci  ERROR_CODE: {type: STRING, desc: info msg or err msg }
464060ff233Sopenharmony_ci
465060ff233Sopenharmony_ciBUS_CENTER_FAULT_EVT:
466060ff233Sopenharmony_ci  __BASE: {type: FAULT, level: CRITICAL, desc: bus center all the exception}
467060ff233Sopenharmony_ci  MODULE_TYPE: {type: UINT32, desc: module type}
468060ff233Sopenharmony_ci  LINK_TYPE: {type: UINT32, desc: connection type}
469060ff233Sopenharmony_ci  CHANNEL_QUALITY: {type: FLOAT, desc: channel quality}
470060ff233Sopenharmony_ci  ERROR_CODE: {type: UINT32, desc: error code}
471060ff233Sopenharmony_ci  PEER_DEVICE_TYPE: {type: UINT32, desc: peer device type}
472060ff233Sopenharmony_ci  ONLINE_DEVICE_NUM: {type: UINT32, desc: online device count}
473060ff233Sopenharmony_ci  CONNECTION_NUM: {type: UINT32, desc: connected device count}
474060ff233Sopenharmony_ci  NIGHT_MODE: {type: UINT32, desc: night mode}
475060ff233Sopenharmony_ci  WIFI_STATUS: {type: UINT32, desc: wifi status}
476060ff233Sopenharmony_ci  BLUETOOTH_STATUS: {type: UINT32, desc: bluetooth status}
477060ff233Sopenharmony_ci  CALLER_APP_MODE: {type: UINT32, desc: caller app mode}
478060ff233Sopenharmony_ci  SUB_ERROR_CODE: {type: UINT32, desc: sub error code}
479060ff233Sopenharmony_ci  CONN_BR_NUM: {type: UINT32, desc: the count of device connected by br}
480060ff233Sopenharmony_ci  CONN_BLE_NUM: {type: UINT32, desc: the count of device connected by ble}
481060ff233Sopenharmony_ci  BLUETOOTH_BROADCAST_STATUS: {type: BOOL, desc: bluetooth broadcast status}
482060ff233Sopenharmony_ci  BLUETOOTH_SCAN_STATUS: {type: BOOL, desc: bluetooth scan status}
483060ff233Sopenharmony_ci  BUSUNINESS_NAME: {type: STRING, desc: caller business name}
484060ff233Sopenharmony_ci  CALLER_PACKAGE_NAME: {type: STRING, desc: caller package name}
485060ff233Sopenharmony_ci  REMOTE_BIZ_TRUNCATED_UUID: {type: STRING, desc: remote biz truncated uuid}
486060ff233Sopenharmony_ci  SOFT_BUS_VERSION: {type: STRING, desc: softbus version}
487060ff233Sopenharmony_ci  PACKAGE_VERSION: {type: STRING, desc: softbus package version}
488060ff233Sopenharmony_ci
489060ff233Sopenharmony_ciONLINE_DURATION:
490060ff233Sopenharmony_ci  __BASE: {type: STATISTIC, level: MINOR, desc: the time comsuming of online}
491060ff233Sopenharmony_ci  TOTAL_TIME: {type: UINT64, desc: device online total time}
492060ff233Sopenharmony_ci  TOTAL_COUNT: {type: UINT32, desc: device online total count}
493060ff233Sopenharmony_ci  COUNT1: {type: UINT32, desc: the times above 10s of online}
494060ff233Sopenharmony_ci  COUNT2: {type: UINT32, desc: the times above 30s of online}
495060ff233Sopenharmony_ci  COUNT3: {type: UINT32, desc: the times above 5min of online}
496060ff233Sopenharmony_ci  COUNT4: {type: UINT32, desc: the times above 10min of online}
497060ff233Sopenharmony_ci  COUNT5: {type: UINT32, desc: the times above 15min of online}
498060ff233Sopenharmony_ci  SOFT_BUS_VERSION: {type: STRING, desc: softbus version}
499060ff233Sopenharmony_ci  PACKAGE_VERSION: {type: STRING, desc: softbus package version}
500060ff233Sopenharmony_ci
501060ff233Sopenharmony_ciAUTH_DURATION:
502060ff233Sopenharmony_ci  __BASE: {type: STATISTIC, level: MINOR, desc: stastistic auth rate and time cost}
503060ff233Sopenharmony_ci  LINK_TYPE: {type: UINT32, desc: connection type}
504060ff233Sopenharmony_ci  TOTAL_TIME: {type: UINT64, desc: the total time cost of auth}
505060ff233Sopenharmony_ci  TOTAL_COUNT: {type: UINT32, desc: device auth total count}
506060ff233Sopenharmony_ci  COUNT1: {type: UINT32, desc: the times above 2000ms of single auth}
507060ff233Sopenharmony_ci  COUNT2: {type: UINT32, desc: the times above 2500ms of single auth}
508060ff233Sopenharmony_ci  COUNT3: {type: UINT32, desc: the times above 3000ms of single auth}
509060ff233Sopenharmony_ci  COUNT4: {type: UINT32, desc: the times above 3500ms of single auth}
510060ff233Sopenharmony_ci  COUNT5: {type: UINT32, desc: the times above 4000ms of single auth}
511060ff233Sopenharmony_ci  FAIL_TOTAL_COUNT: {type: UINT32, desc: auth failed total count}
512060ff233Sopenharmony_ci  FAIL_TOTAL_TIME: {type: UINT64, desc: auth failed total time}
513060ff233Sopenharmony_ci  CONNECT_FAIL_TOTAL_COUNT: {type: UINT32, desc: connect failed total count}
514060ff233Sopenharmony_ci  AUTH_FAIL_TOTAL_COUNT: {type: UINT32, desc: auth failed total count}
515060ff233Sopenharmony_ci  EXCHANGE_FAIL_TOTAL_COUNT: {type: UINT32, desc: exchange info failed total count}
516060ff233Sopenharmony_ci  SOFT_BUS_VERSION: {type: STRING, desc: softbus version}
517060ff233Sopenharmony_ci  PACKAGE_VERSION: {type: STRING, desc: softbus package version}
518060ff233Sopenharmony_ci
519060ff233Sopenharmony_ciBUS_CENTER_DURATION:
520060ff233Sopenharmony_ci  __BASE: {type: STATISTIC, level: MINOR, desc: stastistic bus center lnn duration}
521060ff233Sopenharmony_ci  LINK_TYPE: {type: UINT32, desc: connection type}
522060ff233Sopenharmony_ci  TOTAL_TIME: {type: UINT64, desc: the total time cost of lnn}
523060ff233Sopenharmony_ci  TOTAL_COUNT: {type: UINT32, desc: lnn total count}
524060ff233Sopenharmony_ci  COUNT1: {type: UINT32, desc: the times above 800ms of single lnn}
525060ff233Sopenharmony_ci  COUNT2: {type: UINT32, desc: the times above 1000ms of single lnn}
526060ff233Sopenharmony_ci  COUNT3: {type: UINT32, desc: the times above 1200ms of single lnn}
527060ff233Sopenharmony_ci  COUNT4: {type: UINT32, desc: the times above 1500ms of single lnn}
528060ff233Sopenharmony_ci  COUNT5: {type: UINT32, desc: the times above 1800ms of single lnn}
529060ff233Sopenharmony_ci  SOFT_BUS_VERSION: {type: STRING, desc: softbus version}
530060ff233Sopenharmony_ci  PACKAGE_VERSION: {type: STRING, desc: softbus package version}
531060ff233Sopenharmony_ci
532060ff233Sopenharmony_ciDEVICE_ONLINE_EVT:
533060ff233Sopenharmony_ci  __BASE: {type: STATISTIC, level: MINOR, desc: report the online device info}
534060ff233Sopenharmony_ci  ONLINE_DEVICE_NUM: {type: UINT32, desc: online device count}
535060ff233Sopenharmony_ci  BT_ONLINE_DEVICE_NUM: {type: UINT32, desc: online device count connection medium is bt}
536060ff233Sopenharmony_ci  WIFI_ONLINE_DEVICE_NUM: {type: UINT32, desc: online device count connection medium is wifi}
537060ff233Sopenharmony_ci  PEER_DEVICE_TYPE: {type: UINT32, desc: peer device type}
538060ff233Sopenharmony_ci  INSERT_PROFILE_RESULT: {type: UINT32, desc: the result of insert device info to profile}
539060ff233Sopenharmony_ci  PEER_SOFT_BUS_VERSION: {type: STRING, desc: softbus version of peer device}
540060ff233Sopenharmony_ci  PEER_DEVICE_NAME: {type: STRING, desc: device name of peer device}
541060ff233Sopenharmony_ci  SOFT_BUS_VERSION: {type: STRING, desc: softbus version of local device}
542060ff233Sopenharmony_ci  PEER_PACKAGE_VERSION: {type: STRING, desc: softbus package version of peer device}
543060ff233Sopenharmony_ci  PACKAGE_VERSION: {type: STRING, desc: softbus package version of local device}
544060ff233Sopenharmony_ci
545060ff233Sopenharmony_ciDEVICE_DISCOVERY:
546060ff233Sopenharmony_ci  __BASE: {type: STATISTIC, level: MINOR, desc: stastistic device discovery count}
547060ff233Sopenharmony_ci  START_DISCOVERY_COUNT: {type: UINT64, desc: start discovery count}
548060ff233Sopenharmony_ci  SEND_BROADCAST_COUNT: {type: UINT64, desc: send broadcast count}
549060ff233Sopenharmony_ci  RECEIVE_BROADCAST_COUNT: {type: UINT64, desc: receiver broadcast count}
550060ff233Sopenharmony_ci  DEVICE_FOUND_COUNT: {type: UINT64, desc: device found count}
551060ff233Sopenharmony_ci  BUSINESS_DISCOVERY_COUNT: {type: UINT64, desc: business discovery count}
552060ff233Sopenharmony_ci  BUSINESS_DISCOVERY_DETAIL: {type: STRING, desc: business discovery detail info}
553060ff233Sopenharmony_ci  SOFT_BUS_VERSION: {type: STRING, desc: softbus version}
554060ff233Sopenharmony_ci  PACKAGE_VERSION: {type: STRING, desc: softbus package version}
555060ff233Sopenharmony_ci
556060ff233Sopenharmony_ciAPP_DISCOVERY:
557060ff233Sopenharmony_ci  __BASE: {type: STATISTIC, level: MINOR, desc: stastistic app discovery count}
558060ff233Sopenharmony_ci  APP_NAME: {type: STRING, desc: name of app who discovery device}
559060ff233Sopenharmony_ci  APP_DISCOVERY_COUNT: {type: UINT32, desc: app discovery count}
560060ff233Sopenharmony_ci
561060ff233Sopenharmony_ciDFILE_WAIT_HEADER_TIMEOUT_EVT:
562060ff233Sopenharmony_ci  __BASE: {type: FAULT, level: CRITICAL, desc: wait file header time out}
563060ff233Sopenharmony_ci  ERROR_CODE: {type: STRING, desc: error code}
564060ff233Sopenharmony_ci
565060ff233Sopenharmony_ciDFILE_SERVER_CREATE_EVT:
566060ff233Sopenharmony_ci  __BASE: {type: BEHAVIOR, level: MINOR, desc: server created}
567060ff233Sopenharmony_ci
568060ff233Sopenharmony_ciDFILE_CLIENT_CREATE_EVT:
569060ff233Sopenharmony_ci  __BASE: {type: BEHAVIOR, level: MINOR, desc: client created}
570060ff233Sopenharmony_ci
571060ff233Sopenharmony_ciDFILE_SEND_BEGIN_EVT:
572060ff233Sopenharmony_ci  __BASE: {type: BEHAVIOR, level: MINOR, desc: send begin}
573060ff233Sopenharmony_ci
574060ff233Sopenharmony_ciDFILE_PEER_SHUTTED_EVT:
575060ff233Sopenharmony_ci  __BASE: {type: FAULT, level: CRITICAL, desc: peer shutted}
576060ff233Sopenharmony_ci
577060ff233Sopenharmony_ciDFILE_TRANS_COMPLETE_EVT:
578060ff233Sopenharmony_ci  __BASE: {type: STATISTIC, level: MINOR, desc: transfer complete}
579060ff233Sopenharmony_ci  TRANSRATE: {type: STRING, desc: transmission speed}
580060ff233Sopenharmony_ci
581060ff233Sopenharmony_ciDFILE_ACCEPT_SOCKET_EVT:
582060ff233Sopenharmony_ci  __BASE: {type: BEHAVIOR, level: MINOR, desc: accept socket}
583060ff233Sopenharmony_ci
584060ff233Sopenharmony_ciFILLP_LINK_EVT:
585060ff233Sopenharmony_ci  __BASE: {type: FAULT, level: MINOR, desc: fillp link disconnect}
586060ff233Sopenharmony_ci  SOCK_IDX: {type: UINT32, desc: fillp socket index}
587060ff233Sopenharmony_ci  LINK_EVT_TYPE: {type: UINT8, desc: fillp link event type}
588060ff233Sopenharmony_ci
589060ff233Sopenharmony_ciFILLP_PKT_EVT:
590060ff233Sopenharmony_ci  __BASE: {type: STATISTIC, level: MINOR, desc: fillp data package event}
591060ff233Sopenharmony_ci  SOCK_IDX: {type: UINT32, desc: fillp socket index}
592060ff233Sopenharmony_ci  PKT_EVT_TYPE: {type: UINT8, desc: fillp package event type}
593060ff233Sopenharmony_ci  DROP_CNT: {type: UINT32, desc: fillp package dropcnt}
594060ff233Sopenharmony_ci
595060ff233Sopenharmony_ciFILLP_SOCK_QOS_EVT:
596060ff233Sopenharmony_ci  __BASE: {type: STATISTIC, level: MINOR, desc: fillp socket Qos event}
597060ff233Sopenharmony_ci  SOCK_IDX: {type: UINT32, desc: fillp socket index}
598060ff233Sopenharmony_ci  RTT: {type: UINT32, desc: fillp socket rtt}
599060ff233Sopenharmony_ci  TOTAL_RECV_PKT: {type: UINT32, desc: fillp socket recv package num}
600060ff233Sopenharmony_ci  TOTAL_RECV_BYTES: {type: UINT32, desc: fillp socket recv bytes}
601060ff233Sopenharmony_ci  TOTAL_SEND_PKT: {type: UINT32, desc: fillp socket send package num}
602060ff233Sopenharmony_ci  TOTAL_SEND_BYTES: {type: UINT32, desc: fillp socket send bytes}
603060ff233Sopenharmony_ci  JITTER: {type: UINT32, desc: fillp socket jitter}
604060ff233Sopenharmony_ci
605060ff233Sopenharmony_ciDFINDER_STATS:
606060ff233Sopenharmony_ci  __BASE: {type: STATISTIC, level: MINOR, desc: dfinder statistics}
607060ff233Sopenharmony_ci  INVALID_OPTION_CNT: {type: UINT64, desc: the count of invalid option}
608060ff233Sopenharmony_ci  BUILD_PKT_FAIL_CNT: {type: UINT64, desc: the count when building packet failed}
609060ff233Sopenharmony_ci  INVALID_RSP_CNT: {type: UINT64, desc: the count of invalid message}
610060ff233Sopenharmony_ci  OVER_DEVICE_LIMIT_CNT: {type: UINT64, desc: the count when the device number is over limit}