js-apis-net-statistics.md 33.6 KB
Newer Older
X
xujie 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17
# @ohos.net.statistics (流量管理)

流量管理模块,支持基于网卡/UID的实时流量统计和历史流量统计查询能力。

> **说明:**
> 本模块首批接口从API version 10开始支持。后续版本的新增接口,采用上角标单独标记接口的起始版本。

## 导入模块

```js
import statistics from '@ohos.net.statistics'
```

## statistics.getIfaceRxBytes<sup>10+</sup>

getIfaceRxBytes(nic: string, callback: AsyncCallback\<number>): void;

X
update  
xujie 已提交
18
获取指定网卡实时下行流量,使用callback方式作为异步方法。
X
xujie 已提交
19 20 21 22 23 24 25 26

**系统能力**:SystemCapability.Communication.NetManager.Core

**参数:**

| 参数名       | 类型                          | 必填 | 说明                                                         |
| ------------ | ----------------------------- | ---- | ------------------------------------------------------------ |
| nic | string | 是   | 指定查询的网卡名。                   |
X
update  
xujie 已提交
27
| callback | AsyncCallback\<number>         | 是   | 回调函数。当成功获取网卡实时下行流量时,error为undefined,stats为获取到的网卡实时下行流量(单位:字节);否则为错误对象|
X
xujie 已提交
28 29 30

**错误码:**

X
update  
xujie 已提交
31
以下错误码的详细介绍参见[statistics错误码](../errorcodes/errorcode-net-statistics)
X
update  
xujie 已提交
32

X
xujie 已提交
33 34 35 36 37 38 39 40 41 42 43 44 45
| 错误码ID | 错误信息                        |
| ------- | -----------------------------  |
| 401     | Parameter error.             |
| 2100002 | Operation failed. Cannot connect to service.             |
| 2100003 | System internal error.         |
| 2103005 | Failed to read map.             |
| 2103011 | Failed to create map.             |
| 2103012 | Get iface name failed.         |


**示例:**

```js
X
update  
xujie 已提交
46
  statistics.getIfaceRxBytes("wlan0", (error, stats) => {
X
xujie 已提交
47 48 49 50 51 52 53 54 55
    console.log(JSON.stringify(error))
    console.log(JSON.stringify(stats))
  })
```

## statistics.getIfaceRxBytes<sup>10+</sup>

getIfaceRxBytes(nic: string): Promise\<number>;

X
update  
xujie 已提交
56
获取指定网卡实时下行流量,使用Promise方式作为异步方法。
X
xujie 已提交
57 58 59 60 61 62 63 64 65 66 67 68

**系统能力**:SystemCapability.Communication.NetManager.Core

**参数:**

| 参数名       | 类型                          | 必填 | 说明                                                         |
| ------------ | ----------------------------- | ---- | ------------------------------------------------------------ |
| nic | string | 是   | 指定查询的网卡名。                   |

**返回值:**
| 类型 | 说明 |
| -------- | -------- |
X
update  
xujie 已提交
69
| Promise\<number> | 以Promise形式返回获取结果。返回网卡实时下行流量(单位:字节)。 |
X
xujie 已提交
70 71 72

**错误码:**

X
update  
xujie 已提交
73
以下错误码的详细介绍参见[statistics错误码](../errorcodes/errorcode-net-statistics)
X
update  
xujie 已提交
74

X
xujie 已提交
75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95
| 错误码ID | 错误信息                        |
| ------- | -----------------------------  |
| 401     | Parameter error.             |
| 2100002 | Operation failed. Cannot connect to service.             |
| 2100003 | System internal error.         |
| 2103005 | Failed to read map.             |
| 2103011 | Failed to create map.             |
| 2103012 | Get iface name failed.         |

**示例:**

```js
  statistics.getIfaceRxBytes("wlan0").then(function (stats) {
    console.log(JSON.stringify(stats))
  })
```

## statistics.getIfaceTxBytes<sup>10+</sup>

getIfaceTxBytes(nic: string, callback: AsyncCallback\<number>): void;

X
update  
xujie 已提交
96
获取指定网卡实时上行流量,使用callback方式作为异步方法。
X
xujie 已提交
97 98 99 100 101 102 103 104

**系统能力**:SystemCapability.Communication.NetManager.Core

**参数:**

| 参数名       | 类型                          | 必填 | 说明                                                         |
| ------------ | ----------------------------- | ---- | ------------------------------------------------------------ |
| nic | string | 是   | 指定查询的网卡名。                   |
X
update  
xujie 已提交
105
| callback | AsyncCallback\<number>         | 是   | 回调函数。当成功获取网卡实时上行流量时,error为undefined,stats为获取到的网卡实时上行流量(单位:字节);否则为错误对象|
X
xujie 已提交
106 107 108

**错误码:**

X
update  
xujie 已提交
109
以下错误码的详细介绍参见[statistics错误码](../errorcodes/errorcode-net-statistics)
X
update  
xujie 已提交
110

X
xujie 已提交
111 112 113 114 115 116 117 118 119 120 121 122
| 错误码ID | 错误信息                        |
| ------- | -----------------------------  |
| 401     | Parameter error.             |
| 2100002 | Operation failed. Cannot connect to service.             |
| 2100003 | System internal error.         |
| 2103005 | Failed to read map.             |
| 2103011 | Failed to create map.             |
| 2103012 | Get iface name failed.         |

**示例:**

```js
X
update  
xujie 已提交
123
  statistics.getIfaceTxBytes("wlan0", (error, stats) => {
X
xujie 已提交
124 125 126 127 128 129 130 131 132
    console.log(JSON.stringify(error))
    console.log(JSON.stringify(stats))
  })
```

## statistics.getIfaceTxBytes<sup>10+</sup>

getIfaceTxBytes(nic: string): Promise\<number>;

X
update  
xujie 已提交
133
获取指定网卡实时上行流量,使用Promise方式作为异步方法。
X
xujie 已提交
134 135 136 137 138 139 140 141 142 143 144 145

**系统能力**:SystemCapability.Communication.NetManager.Core

**参数:**

| 参数名       | 类型                          | 必填 | 说明                                                         |
| ------------ | ----------------------------- | ---- | ------------------------------------------------------------ |
| nic | string | 是   | 指定查询的网卡名。                   |

**返回值:**
| 类型 | 说明 |
| -------- | -------- |
X
update  
xujie 已提交
146
| Promise\<number> | 以Promise形式返回获取结果。返回网卡实时上行流量(单位:字节)。 |
X
xujie 已提交
147 148 149

**错误码:**

X
update  
xujie 已提交
150
以下错误码的详细介绍参见[statistics错误码](../errorcodes/errorcode-net-statistics)
X
update  
xujie 已提交
151

X
xujie 已提交
152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172
| 错误码ID | 错误信息                        |
| ------- | -----------------------------  |
| 401     | Parameter error.             |
| 2100002 | Operation failed. Cannot connect to service.             |
| 2100003 | System internal error.         |
| 2103005 | Failed to read map.             |
| 2103011 | Failed to create map.             |
| 2103012 | Get iface name failed.         |

**示例:**

```js
  statistics.getIfaceTxBytes("wlan0").then(function (stats) {
    console.log(JSON.stringify(stats))
  })
```

## statistics.getCellularRxBytes<sup>10+</sup>

getCellularRxBytes(callback: AsyncCallback\<number>): void;

X
update  
xujie 已提交
173
获取蜂窝实时下行流量,使用callback方式作为异步方法。
X
xujie 已提交
174 175 176 177 178 179 180

**系统能力**:SystemCapability.Communication.NetManager.Core

**参数:**

| 参数名       | 类型                          | 必填 | 说明                                                         |
| ------------ | ----------------------------- | ---- | ------------------------------------------------------------ |
X
update  
xujie 已提交
181
| callback | AsyncCallback\<number>         | 是   | 回调函数。当成功获取蜂窝实时下行流量时,error为undefined,stats为获取到的蜂窝实时下行流量(单位:字节);否则为错误对象|
X
xujie 已提交
182 183 184

**错误码:**

X
update  
xujie 已提交
185
以下错误码的详细介绍参见[statistics错误码](../errorcodes/errorcode-net-statistics)
X
update  
xujie 已提交
186

X
xujie 已提交
187 188 189 190 191 192 193 194 195 196 197
| 错误码ID | 错误信息                        |
| ------- | -----------------------------  |
| 2100002 | Operation failed. Cannot connect to service.             |
| 2100003 | System internal error.         |
| 2103005 | Failed to read map.             |
| 2103011 | Failed to create map.             |
| 2103012 | Get iface name failed.         |

**示例:**

```js
X
update  
xujie 已提交
198
  statistics.getCellularRxBytes((error, stats) => {
X
xujie 已提交
199 200 201 202 203 204 205 206 207
    console.log(JSON.stringify(error))
    console.log(JSON.stringify(stats))
  })
```

## statistics.getCellularRxBytes<sup>10+</sup>

getCellularRxBytes(): Promise\<number>;

X
update  
xujie 已提交
208
获取蜂窝实时下行流量,使用Promise方式作为异步方法。
X
xujie 已提交
209 210 211 212 213 214

**系统能力**:SystemCapability.Communication.NetManager.Core

**返回值:**
| 类型 | 说明 |
| -------- | -------- |
X
update  
xujie 已提交
215
| Promise\<number> | 以Promise形式返回获取结果。返回蜂窝实时下行流量(单位:字节)。 |
X
xujie 已提交
216 217 218

**错误码:**

X
update  
xujie 已提交
219
以下错误码的详细介绍参见[statistics错误码](../errorcodes/errorcode-net-statistics)
X
update  
xujie 已提交
220

X
xujie 已提交
221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240
| 错误码ID | 错误信息                        |
| ------- | -----------------------------  |
| 2100002 | Operation failed. Cannot connect to service.             |
| 2100003 | System internal error.         |
| 2103005 | Failed to read map.             |
| 2103011 | Failed to create map.             |
| 2103012 | Get iface name failed.         |

**示例:**

```js
  statistics.getCellularRxBytes().then(function (stats) {
    console.log(JSON.stringify(stats))
  })
```

## statistics.getCellularTxBytes<sup>10+</sup>

getCellularTxBytes(callback: AsyncCallback\<number>): void;

X
update  
xujie 已提交
241
获取蜂窝实时上行流量,使用callback方式作为异步方法。
X
xujie 已提交
242 243 244 245 246 247 248

**系统能力**:SystemCapability.Communication.NetManager.Core

**参数:**

| 参数名       | 类型                          | 必填 | 说明                                                         |
| ------------ | ----------------------------- | ---- | ------------------------------------------------------------ |
X
update  
xujie 已提交
249
| callback | AsyncCallback\<number>         | 是   | 回调函数。当成功获取蜂窝实时上行流量时,error为undefined,stats为获取到的蜂窝实时上行流量(单位:字节);否则为错误对象|
X
xujie 已提交
250 251 252

**错误码:**

X
update  
xujie 已提交
253
以下错误码的详细介绍参见[statistics错误码](../errorcodes/errorcode-net-statistics)
X
update  
xujie 已提交
254

X
xujie 已提交
255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275
| 错误码ID | 错误信息                        |
| ------- | -----------------------------  |
| 2100002 | Operation failed. Cannot connect to service.             |
| 2100003 | System internal error.         |
| 2103005 | Failed to read map.             |
| 2103011 | Failed to create map.             |
| 2103012 | Get iface name failed.         |

**示例:**

```js
  statistics.getCellularTxBytes((error, stats) => {
    console.log(JSON.stringify(error))
    console.log(JSON.stringify(stats))
  })
```

## statistics.getCellularTxBytes<sup>10+</sup>

getCellularTxBytes(): Promise\<number>;

X
update  
xujie 已提交
276
获取蜂窝实时上行流量,使用Promise方式作为异步方法。
X
xujie 已提交
277 278 279 280 281 282

**系统能力**:SystemCapability.Communication.NetManager.Core

**返回值:**
| 类型 | 说明 |
| -------- | -------- |
X
update  
xujie 已提交
283
| Promise\<number> | 以Promise形式返回获取结果。返回蜂窝实时上行流量(单位:字节)。 |
X
xujie 已提交
284 285 286

**错误码:**

X
update  
xujie 已提交
287
以下错误码的详细介绍参见[statistics错误码](../errorcodes/errorcode-net-statistics)
X
update  
xujie 已提交
288

X
xujie 已提交
289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308
| 错误码ID | 错误信息                        |
| ------- | -----------------------------  |
| 2100002 | Operation failed. Cannot connect to service.             |
| 2100003 | System internal error.         |
| 2103005 | Failed to read map.             |
| 2103011 | Failed to create map.             |
| 2103012 | Get iface name failed.         |

**示例:**

```js
  statistics.getCellularTxBytes().then(function (stats) {
    console.log(JSON.stringify(stats))
  })
```

## statistics.getAllRxBytes<sup>10+</sup>

getAllRxBytes(callback: AsyncCallback\<number>): void;

X
update  
xujie 已提交
309
获取所有网卡实时下行流量,使用callback方式作为异步方法。
X
xujie 已提交
310 311 312 313 314 315 316

**系统能力**:SystemCapability.Communication.NetManager.Core

**参数:**

| 参数名       | 类型                          | 必填 | 说明                                                         |
| ------------ | ----------------------------- | ---- | ------------------------------------------------------------ |
X
update  
xujie 已提交
317
| callback | AsyncCallback\<number>         | 是   | 回调函数。当成功获取所有网卡实时下行流量,error为undefined,stats为获取到的所有网卡实时下行流量(单位:字节);否则为错误对象|
X
xujie 已提交
318 319 320

**错误码:**

X
update  
xujie 已提交
321
以下错误码的详细介绍参见[statistics错误码](../errorcodes/errorcode-net-statistics)
X
update  
xujie 已提交
322

X
xujie 已提交
323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342
| 错误码ID | 错误信息                        |
| ------- | -----------------------------  |
| 2100002 | Operation failed. Cannot connect to service.             |
| 2100003 | System internal error.         |
| 2103005 | Failed to read map.             |
| 2103011 | Failed to create map.             |

**示例:**

```js
  statistics.getAllRxBytes((error, stats) => {
    console.log(JSON.stringify(error))
    console.log(JSON.stringify(stats))
  })
```

## statistics.getAllRxBytes<sup>10+</sup>

getAllRxBytes(): Promise\<number>;

X
update  
xujie 已提交
343
获取所有网卡实时下行流量,使用Promise方式作为异步方法。
X
xujie 已提交
344 345 346 347 348 349

**系统能力**:SystemCapability.Communication.NetManager.Core

**返回值:**
| 类型 | 说明 |
| -------- | -------- |
X
update  
xujie 已提交
350
| Promise\<number> | 以Promise形式返回获取结果。返回所有网卡实时下行流量(单位:字节)。 |
X
xujie 已提交
351 352 353

**错误码:**

X
update  
xujie 已提交
354
以下错误码的详细介绍参见[statistics错误码](../errorcodes/errorcode-net-statistics)
X
update  
xujie 已提交
355

X
xujie 已提交
356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374
| 错误码ID | 错误信息                        |
| ------- | -----------------------------  |
| 2100002 | Operation failed. Cannot connect to service.             |
| 2100003 | System internal error.         |
| 2103005 | Failed to read map.             |
| 2103011 | Failed to create map.             |

**示例:**

```js
  statistics.getCellularRxBytes().then(function (stats) {
    console.log(JSON.stringify(stats))
  })
```

## statistics.getAllTxBytes<sup>10+</sup>

getAllTxBytes(callback: AsyncCallback\<number>): void;

X
update  
xujie 已提交
375
获取所有网卡实时上行流量,使用callback方式作为异步方法。
X
xujie 已提交
376 377 378 379 380 381 382

**系统能力**:SystemCapability.Communication.NetManager.Core

**参数:**

| 参数名       | 类型                          | 必填 | 说明                                                         |
| ------------ | ----------------------------- | ---- | ------------------------------------------------------------ |
X
update  
xujie 已提交
383
| callback | AsyncCallback\<number>         | 是   | 回调函数。当成功获取所有网卡实时上行流量,error为undefined,stats为获取到的所有网卡实时上行流量(单位:字节);否则为错误对象|
X
xujie 已提交
384 385 386

**错误码:**

X
update  
xujie 已提交
387
以下错误码的详细介绍参见[statistics错误码](../errorcodes/errorcode-net-statistics)
X
update  
xujie 已提交
388

X
xujie 已提交
389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408
| 错误码ID | 错误信息                        |
| ------- | -----------------------------  |
| 2100002 | Operation failed. Cannot connect to service.             |
| 2100003 | System internal error.         |
| 2103005 | Failed to read map.             |
| 2103011 | Failed to create map.             |

**示例:**

```js
  statistics.getAllTxBytes((error, stats) => {
    console.log(JSON.stringify(error))
    console.log(JSON.stringify(stats))
  })
```

## statistics.getAllTxBytes<sup>10+</sup>

getAllTxBytes(): Promise\<number>;

X
update  
xujie 已提交
409
获取所有网卡实时上行流量,使用Promise方式作为异步方法。
X
xujie 已提交
410 411 412 413 414 415

**系统能力**:SystemCapability.Communication.NetManager.Core

**返回值:**
| 类型 | 说明 |
| -------- | -------- |
X
update  
xujie 已提交
416
| Promise\<number> | 以Promise形式返回获取结果。返回所有网卡实时上行流量(单位:字节)。 |
X
xujie 已提交
417 418 419

**错误码:**

X
update  
xujie 已提交
420
以下错误码的详细介绍参见[statistics错误码](../errorcodes/errorcode-net-statistics)
X
update  
xujie 已提交
421

X
xujie 已提交
422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440
| 错误码ID | 错误信息                        |
| ------- | -----------------------------  |
| 2100002 | Operation failed. Cannot connect to service.             |
| 2100003 | System internal error.         |
| 2103005 | Failed to read map.             |
| 2103011 | Failed to create map.             |

**示例:**

```js
  statistics.getAllTxBytes().then(function (stats) {
    console.log(JSON.stringify(stats))
  })
```

## statistics.getUidRxBytes<sup>10+</sup>

getUidRxBytes(uid: number, callback: AsyncCallback\<number>): void;

X
update  
xujie 已提交
441
获取指定应用实时下行流量,使用callback方式作为异步方法。
X
xujie 已提交
442 443 444 445 446 447 448 449

**系统能力**:SystemCapability.Communication.NetManager.Core

**参数:**

| 参数名       | 类型                          | 必填 | 说明                                                         |
| ------------ | ----------------------------- | ---- | ------------------------------------------------------------ |
| uid | number | 是   | 指定查询的应用uid。                   |
X
update  
xujie 已提交
450
| callback | AsyncCallback\<number>         | 是   | 回调函数。当成功获取应用实时下行流量时,error为undefined,stats为获取到的应用实时下行流量(单位:字节);否则为错误对象|
X
xujie 已提交
451 452 453

**错误码:**

X
update  
xujie 已提交
454
以下错误码的详细介绍参见[statistics错误码](../errorcodes/errorcode-net-statistics)
X
update  
xujie 已提交
455

X
xujie 已提交
456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476
| 错误码ID | 错误信息                        |
| ------- | -----------------------------  |
| 401     | Parameter error.             |
| 2100002 | Operation failed. Cannot connect to service.             |
| 2100003 | System internal error.         |
| 2103005 | Failed to read map.             |
| 2103011 | Failed to create map.             |

**示例:**

```js
  statistics.getUidRxBytes(20010038, (error, stats) => {
    console.log(JSON.stringify(error))
    console.log(JSON.stringify(stats))
  })
```

## statistics.getUidRxBytes<sup>10+</sup>

getUidRxBytes(uid: number): Promise\<number>;

X
update  
xujie 已提交
477
获取指定应用实时下行流量,使用Promise方式作为异步方法。
X
xujie 已提交
478 479 480 481 482 483 484 485 486 487 488 489

**系统能力**:SystemCapability.Communication.NetManager.Core

**参数:**

| 参数名       | 类型                          | 必填 | 说明                                                         |
| ------------ | ----------------------------- | ---- | ------------------------------------------------------------ |
| uid | number | 是   | 指定查询的应用uid。                   |

**返回值:**
| 类型 | 说明 |
| -------- | -------- |
X
update  
xujie 已提交
490
| Promise\<number> | 以Promise形式返回获取结果。返回指定应用实时下行流量(单位:字节)。 |
X
xujie 已提交
491 492 493

**错误码:**

X
update  
xujie 已提交
494
以下错误码的详细介绍参见[statistics错误码](../errorcodes/errorcode-net-statistics)
X
update  
xujie 已提交
495

X
xujie 已提交
496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515
| 错误码ID | 错误信息                        |
| ------- | -----------------------------  |
| 401     | Parameter error.             |
| 2100002 | Operation failed. Cannot connect to service.             |
| 2100003 | System internal error.         |
| 2103005 | Failed to read map.             |
| 2103011 | Failed to create map.             |

**示例:**

```js
  statistics.getUidRxBytes(20010038).then(function (stats) {
    console.log(JSON.stringify(stats))
  })
```

## statistics.getUidTxBytes<sup>10+</sup>

getUidTxBytes(uid: number, callback: AsyncCallback\<number>): void;

X
update  
xujie 已提交
516
获取指定应用实时上行流量,使用callback方式作为异步方法。
X
xujie 已提交
517 518 519 520 521 522 523 524

**系统能力**:SystemCapability.Communication.NetManager.Core

**参数:**

| 参数名       | 类型                          | 必填 | 说明                                                         |
| ------------ | ----------------------------- | ---- | ------------------------------------------------------------ |
| uid | number | 是   | 指定查询的应用uid。                   |
X
update  
xujie 已提交
525
| callback | AsyncCallback\<number>         | 是   | 回调函数。当成功获取应用实时上行流量时,error为undefined,stats为获取到的应用实时上行流量(单位:字节);否则为错误对象|
X
xujie 已提交
526 527 528

**错误码:**

X
update  
xujie 已提交
529
以下错误码的详细介绍参见[statistics错误码](../errorcodes/errorcode-net-statistics)
X
update  
xujie 已提交
530

X
xujie 已提交
531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551
| 错误码ID | 错误信息                        |
| ------- | -----------------------------  |
| 401     | Parameter error.             |
| 2100002 | Operation failed. Cannot connect to service.             |
| 2100003 | System internal error.         |
| 2103005 | Failed to read map.             |
| 2103011 | Failed to create map.             |

**示例:**

```js
  statistics.getUidTxBytes(20010038, (error, stats) => {
    console.log(JSON.stringify(error))
    console.log(JSON.stringify(stats))
  })
```

## statistics.getUidTxBytes<sup>10+</sup>

getUidTxBytes(uid: number): Promise\<number>;

X
update  
xujie 已提交
552
获取指定应用实时上行流量,使用Promise方式作为异步方法。
X
xujie 已提交
553 554 555 556 557 558 559 560 561 562 563 564

**系统能力**:SystemCapability.Communication.NetManager.Core

**参数:**

| 参数名       | 类型                          | 必填 | 说明                                                         |
| ------------ | ----------------------------- | ---- | ------------------------------------------------------------ |
| uid | number | 是   | 指定查询的应用uid。                   |

**返回值:**
| 类型 | 说明 |
| -------- | -------- |
X
update  
xujie 已提交
565
| Promise\<number> | 以Promise形式返回获取结果。返回指定应用实时上行流量(单位:字节)。 |
X
xujie 已提交
566 567 568

**错误码:**

X
update  
xujie 已提交
569
以下错误码的详细介绍参见[statistics错误码](../errorcodes/errorcode-net-statistics)
X
update  
xujie 已提交
570

X
xujie 已提交
571 572 573 574 575 576 577 578 579 580 581 582 583 584 585
| 错误码ID | 错误信息                        |
| ------- | -----------------------------  |
| 401     | Parameter error.             |
| 2100002 | Operation failed. Cannot connect to service.             |
| 2100003 | System internal error.         |
| 2103005 | Failed to read map.             |
| 2103011 | Failed to create map.             |

**示例:**

```js
  statistics.getUidTxBytes(20010038).then(function (stats) {
    console.log(JSON.stringify(stats))
  })
```
X
xujie 已提交
586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662

## statistics.on('netStatsChange')<sup>10+</sup>

on(type: 'netStatsChange', callback: Callback\<{ iface: string, uid?: number }>): void

注册流量改变事件通知。

**系统接口**:此接口为系统接口。

**需要权限**:ohos.permission.GET_NETWORK_STATS

**系统能力**:SystemCapability.Communication.NetManager.Core

**参数:**

| 参数名   | 类型                                    | 必填 | 说明       |
| -------- | --------------------------------------- | ---- | ---------- |
| type     | string                             | 是   | 订阅事件,固定为'netStatsChange'。|
| callback | Callback\<{ iface: string, uid?: number }\> | 是   | 当流量有改变时触发回调函数。<br>iface:网卡名称。<br>uid:应用uid |

**错误码:**

以下错误码的详细介绍参见[statistics错误码](../errorcodes/errorcode-net-statistics)

| 错误码ID | 错误信息                                      |
| ------- | -------------------------------------------- |
| 201     | Permission denied.             |
| 202     | Non-system applications use system APIs.             |
| 401     | Parameter error.         |
| 2100002 | Operation failed. Cannot connect to service.             |
| 2100003 | System internal error.             |

**示例:**

```js
 statistics.on('netStatsChange', (data) => {
  console.log('on netStatsChange' + JSON.stringify(data));
});
```

## statistics.on('netStatsChange')<sup>10+</sup>

off(type: 'netStatsChange', callback?: Callback\<{ iface: string, uid?: number }>): void;

注销流量改变事件通知。

**系统接口**:此接口为系统接口。

**需要权限**:ohos.permission.GET_NETWORK_STATS

**系统能力**:SystemCapability.Communication.NetManager.Core

**参数:**

| 参数名   | 类型                                    | 必填 | 说明       |
| -------- | --------------------------------------- | ---- | ---------- |
| type   | string | 是   | 注销订阅事件,固定为'netStatsChange'。 |
| callback | Callback\<{ iface: string, uid?: number }\> | 否   | 当流量有改变时触发回调函数。<br>iface:网卡名称。<br>uid:应用uid |

**错误码:**

以下错误码的详细介绍参见[statistics错误码](../errorcodes/errorcode-net-statistics)

| 错误码ID | 错误信息                                      |
| ------- | -------------------------------------------- |
| 201     | Permission denied.             |
| 202     | Non-system applications use system APIs.             |
| 401     | Parameter error.         |
| 2100002 | Operation failed. Cannot connect to service.             |
| 2100003 | System internal error.             |

**示例:**

```js
statistics.off('netStatsChange');
```

X
update  
xujie 已提交
663
## statistics.getTrafficStatsByIface<sup>10+</sup>
X
xujie 已提交
664

X
update  
xujie 已提交
665
getTrafficStatsByIface(ifaceInfo: IfaceInfo, callback: AsyncCallback\<NetStatsInfo>): void;
X
xujie 已提交
666 667 668 669 670 671 672 673 674 675 676 677 678

获取网卡历史流量信息,使用callback方式作为异步方法。

**系统接口**:此接口为系统接口。

**需要权限**:ohos.permission.GET_NETWORK_STATS

**系统能力**:SystemCapability.Communication.NetManager.Core

**参数:**

| 参数名       | 类型                          | 必填 | 说明                                                         |
| ------------ | ----------------------------- | ---- | ------------------------------------------------------------ |
X
update  
xujie 已提交
679 680
| ifaceInfo | [IfaceInfo](#ifaceInfo10) | 是   | 指定查询的网卡信息,参见[IfaceInfo](#ifaceInfo10)。                   |
| callback | AsyncCallback\<[NetStatsInfo](#netstatsinfo10)>         | 是   | 回调函数。成功时statsInfo返回包含网卡历史流量信息,error为undefined,否则为错误对象|
X
xujie 已提交
681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704

**错误码:**

以下错误码的详细介绍参见[statistics错误码](../errorcodes/errorcode-net-statistics)

| 错误码ID | 错误信息                        |
| ------- | -----------------------------  |
| 201     | Permission denied.             |
| 202     | Non-system applications use system APIs.             |
| 401     | Parameter error.         |
| 2100001 | Invalid parameter value.         |
| 2100002 | Operation failed. Cannot connect to service.             |
| 2100003 | System internal error.             |
| 2103017 | Read data from database failed.             |

**示例:**

```js
  let ifaceInfo = {
    iface: "wlan0",
    startTime: 1685948465,
    endTime: 16859485670
  }

X
update  
xujie 已提交
705
  statistics.getTrafficStatsByIface(ifaceInfo), (error, statsInfo) => {
X
xujie 已提交
706
    console.log(JSON.stringify(error))
X
update  
xujie 已提交
707 708 709 710
    console.log("getTrafficStatsByIface bytes of received = " + JSON.stringify(statsInfo.rxBytes));
    console.log("getTrafficStatsByIface bytes of send = " + JSON.stringify(statsInfo.txBytes));
    console.log("getTrafficStatsByIface packets of received = " + JSON.stringify(statsInfo.rxPackets));
    console.log("getTrafficStatsByIface packets of send = " + JSON.stringify(statsInfo.txPackets));
X
xujie 已提交
711 712 713
  });
```

X
update  
xujie 已提交
714
## statistics.getTrafficStatsByIface<sup>10+</sup>
X
xujie 已提交
715

X
update  
xujie 已提交
716
getTrafficStatsByIface(ifaceInfo: IfaceInfo): Promise\<NetStatsInfo>;
X
xujie 已提交
717 718 719 720 721 722 723 724 725 726 727

获取网卡历史流量信息,使用Promise方式作为异步方法。

**系统接口**:此接口为系统接口。

**需要权限**:ohos.permission.GET_NETWORK_STATS

**系统能力**:SystemCapability.Communication.NetManager.Core

| 参数名       | 类型                          | 必填 | 说明                                                         |
| ------------ | ----------------------------- | ---- | ------------------------------------------------------------ |
X
update  
xujie 已提交
728
| ifaceInfo | [IfaceInfo](#ifaceInfo10) | 是   | 指定查询的网卡信息,参见[IfaceInfo](#ifaceInfo10)。                   |
X
xujie 已提交
729 730 731 732

**返回值:**
| 类型 | 说明 |
| -------- | -------- |
X
update  
xujie 已提交
733
| Promise\<[NetStatsInfo](#netstatsinfo10)> | 以Promise形式返回获取结果,返回网卡历史流量信息。 |
X
xujie 已提交
734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757

**错误码:**

以下错误码的详细介绍参见[statistics错误码](../errorcodes/errorcode-net-statistics)

| 错误码ID | 错误信息                        |
| ------- | -----------------------------  |
| 201     | Permission denied.             |
| 202     | Non-system applications use system APIs.             |
| 401     | Parameter error.         |
| 2100001 | Invalid parameter value.         |
| 2100002 | Operation failed. Cannot connect to service.             |
| 2100003 | System internal error.             |
| 2103017 | Read data from database failed.             |

**示例:**

```js
  let ifaceInfo = {
    iface: "wlan0",
    startTime: 1685948465,
    endTime: 16859485670
  }

X
update  
xujie 已提交
758 759 760 761 762
  statistics.getTrafficStatsByIface().then(function (statsInfo) {
    console.log("getTrafficStatsByIface bytes of received = " + JSON.stringify(statsInfo.rxBytes));
    console.log("getTrafficStatsByIface bytes of send = " + JSON.stringify(statsInfo.txBytes));
    console.log("getTrafficStatsByIface packets of received = " + JSON.stringify(statsInfo.rxPackets));
    console.log("getTrafficStatsByIface packets of send = " + JSON.stringify(statsInfo.txPackets));
X
xujie 已提交
763 764 765
  })
```

X
update  
xujie 已提交
766
## statistics.getTrafficStatsByUid<sup>10+</sup>
X
xujie 已提交
767

X
update  
xujie 已提交
768
getTrafficStatsByUid(uidInfo: UidInfo, callback: AsyncCallback\<NetStatsInfo>): void;
X
xujie 已提交
769 770 771 772 773 774 775 776 777 778 779 780 781

获取应用历史流量信息,使用callback方式作为异步方法。

**系统接口**:此接口为系统接口。

**需要权限**:ohos.permission.GET_NETWORK_STATS

**系统能力**:SystemCapability.Communication.NetManager.Core

**参数:**

| 参数名       | 类型                          | 必填 | 说明                                                         |
| ------------ | ----------------------------- | ---- | ------------------------------------------------------------ |
X
update  
xujie 已提交
782 783
| uidInfo | [UidInfo](#uidinfo10) | 是   | 指定查询的应用历史流量信息,参见[UidInfo](#uidinfo10)。                   |
| callback | AsyncCallback\<[NetStatsInfo](#netstatsinfo10)>         | 是   | 回调函数。成功时statsInfo返回包含应用历史流量信息,error为undefined,否则为错误对象|
X
xujie 已提交
784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801

**错误码:**

以下错误码的详细介绍参见[statistics错误码](../errorcodes/errorcode-net-statistics)

| 错误码ID | 错误信息                        |
| ------- | -----------------------------  |
| 201     | Permission denied.             |
| 202     | Non-system applications use system APIs.             |
| 401     | Parameter error.         |
| 2100001 | Invalid parameter value.         |
| 2100002 | Operation failed. Cannot connect to service.             |
| 2100003 | System internal error.             |
| 2103017 | Read data from database failed.             |

**示例:**

```js
X
update  
xujie 已提交
802
  let uidInfo = {
X
xujie 已提交
803 804 805 806 807 808 809 810
    ifaceInfo: {
      iface: "wlan0",
      startTime: 1685948465,
      endTime: 16859485670
    },
    uid: 20010037
  }

X
update  
xujie 已提交
811
  statistics.getTrafficStatsByUid(uidInfo), (error, statsInfo) => {
X
xujie 已提交
812
    console.log(JSON.stringify(error))
X
update  
xujie 已提交
813 814 815 816
    console.log("getTrafficStatsByUid bytes of received = " + JSON.stringify(statsInfo.rxBytes));
    console.log("getTrafficStatsByUid bytes of send = " + JSON.stringify(statsInfo.txBytes));
    console.log("getTrafficStatsByUid packets of received = " + JSON.stringify(statsInfo.rxPackets));
    console.log("getTrafficStatsByUid packets of send = " + JSON.stringify(statsInfo.txPackets));
X
xujie 已提交
817 818 819
  });
```

X
update  
xujie 已提交
820
## statistics.getTrafficStatsByUid<sup>10+</sup>
X
xujie 已提交
821

X
update  
xujie 已提交
822
getTrafficStatsByUid(uidInfo: UidInfo): Promise\<NetStatsInfo>;
X
xujie 已提交
823 824 825 826 827 828 829 830 831 832 833 834 835

获取应用历史流量信息,使用Promise方式作为异步方法。

**系统接口**:此接口为系统接口。

**需要权限**:ohos.permission.GET_NETWORK_STATS

**系统能力**:SystemCapability.Communication.NetManager.Core

**参数:**

| 参数名       | 类型                          | 必填 | 说明                                                         |
| ------------ | ----------------------------- | ---- | ------------------------------------------------------------ |
X
update  
xujie 已提交
836
| uidInfo | [UidInfo](#uidinfo10) | 是   | 指定查询的应用历史流量信息,参见[UidInfo](#uidinfo10)。                   |
X
xujie 已提交
837 838 839 840 841

**返回值:**

| 类型 | 说明 |
| -------- | -------- |
X
update  
xujie 已提交
842
| Promise\<[NetStatsInfo](#netstatsinfo10)> | 以Promise形式返回获取结果,返回应用历史流量信息。 |
X
xujie 已提交
843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860

**错误码:**

以下错误码的详细介绍参见[statistics错误码](../errorcodes/errorcode-net-statistics)

| 错误码ID | 错误信息                        |
| ------- | -----------------------------  |
| 201     | Permission denied.             |
| 202     | Non-system applications use system APIs.             |
| 401     | Parameter error.         |
| 2100001 | Invalid parameter value.         |
| 2100002 | Operation failed. Cannot connect to service.             |
| 2100003 | System internal error.             |
| 2103017 | Read data from database failed.             |

**示例:**

```js
X
update  
xujie 已提交
861
  let uidInfo = {
X
xujie 已提交
862 863 864 865 866 867 868 869
    ifaceInfo: {
      iface: "wlan0",
      startTime: 1685948465,
      endTime: 16859485670
    },
    uid: 20010037
  }

X
update  
xujie 已提交
870 871 872 873 874
  statistics.getTrafficStatsByUid(uidInfo).then(function (statsInfo) {
    console.log("getTrafficStatsByUid bytes of received = " + JSON.stringify(statsInfo.rxBytes));
    console.log("getTrafficStatsByUid bytes of send = " + JSON.stringify(statsInfo.txBytes));
    console.log("getTrafficStatsByUid packets of received = " + JSON.stringify(statsInfo.rxPackets));
    console.log("getTrafficStatsByUid packets of send = " + JSON.stringify(statsInfo.txPackets));
X
xujie 已提交
875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891
  })
```

## IfaceInfo<sup>10+</sup>

查询网卡历史流量参数信息。

**系统接口**:此接口为系统接口。

**系统能力**:SystemCapability.Communication.NetManager.Core

| 名称                  | 类型                                | 必填 | 说明                     |
| --------------------- | ---------------------------------- | --- | ------------------------ |
| iface     | string    |  是 |  需要查询我网卡名。|
| startTime | number    |  是 |  查询的开始时间(时间戳;单位:秒)。   |
| endTime   | number    |  是 |  查询的结束时间(时间戳;单位:秒)。   |

X
update  
xujie 已提交
892
## UidInfo<sup>10+</sup>
X
xujie 已提交
893 894 895 896 897 898 899 900 901

查询应用历史流量参数信息。

**系统接口**:此接口为系统接口。

**系统能力**:SystemCapability.Communication.NetManager.Core

| 名称                  | 类型                                | 必填 | 说明                     |
| --------------------- | ---------------------------------- | --- | ------------------------ |
X
update  
xujie 已提交
902
| ifaceInfo   | IfaceInfo\<[IfaceInfo](#ifaceInfo10)> |  是 |  需查询的网卡和时间参数信息|
X
xujie 已提交
903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918
| uid         | number           |  是 |  需查询的应用uid|

## NetStatsInfo<sup>10+</sup>

获取的历史流量信息。

**系统接口**:此接口为系统接口。

**系统能力**:SystemCapability.Communication.NetManager.Core

| 名称                  | 类型                                | 必填 | 说明                     |
| --------------------- | ---------------------------------- | --- | ------------------------ |
| rxBytes   | number |  是 |  流量下行数据(单位:字节)|
| txBytes   | number |  是 |  流量上行数据(单位:字节)|
| rxPackets | number |  是 |  流量下行包个数|
| txPackets | number |  是 |  流量上行包个数|