@ohos.net.statistics (Traffic Management)
The statistics module provides APIs to obtain the real-time uplink and downlink data traffic of the specified NIC.
NOTE
The initial APIs of this module are supported since API version 10. Newly added APIs will be marked with a superscript to indicate their earliest API version.
Modules to Import
import { statistics } from '@kit.NetworkKit';
statistics.getIfaceRxBytes
getIfaceRxBytes(nic: string, callback: AsyncCallback<number>): void
Obtains the real-time downlink data traffic of the specified NIC. This API uses an asynchronous callback to return the result.
System capability: SystemCapability.Communication.NetManager.Core
Parameters
| Name | Type | Mandatory | Description |
|---|---|---|---|
| nic | string | Yes | NIC name. |
| callback | AsyncCallback<number> | Yes | Callback used to return the result. If the operation is successful, error is undefined and stats is the real-time downlink data traffic of the NIC in bytes. Otherwise, error is an error object. |
Error codes
For details about the error codes, see Traffic Management Error Codes and Universal Error Codes.
| ID | Error Message |
|---|---|
| 401 | Parameter error. |
| 2100002 | Failed to connect to the service. |
| 2100003 | System internal error. |
| 2103005 | Failed to read the system map. |
| 2103011 | Failed to create a system map. |
| 2103012 | Failed to obtain the NIC name. |
Example
import { BusinessError } from '@kit.BasicServicesKit';
import { statistics } from '@kit.NetworkKit';
statistics.getIfaceRxBytes("wlan0", (error: BusinessError, stats: number) => {
console.error(JSON.stringify(error));
console.info(JSON.stringify(stats));
});
statistics.getIfaceRxBytes
getIfaceRxBytes(nic: string): Promise<number>
Obtains the real-time downlink data traffic of the specified NIC. This API uses a promise to return the result.
System capability: SystemCapability.Communication.NetManager.Core
Parameters
| Name | Type | Mandatory | Description |
|---|---|---|---|
| nic | string | Yes | NIC name. |
Return value
| Type | Description |
|---|---|
| Promise<number> | Promise used to return the result, which is the real-time downlink data traffic of the NIC in bytes. |
Error codes
For details about the error codes, see Traffic Management Error Codes and Universal Error Codes.
| ID | Error Message |
|---|---|
| 401 | Parameter error. |
| 2100002 | Failed to connect to the service. |
| 2100003 | System internal error. |
| 2103005 | Failed to read the system map. |
| 2103011 | Failed to create a system map. |
| 2103012 | Failed to obtain the NIC name. |
Example
import { statistics } from '@kit.NetworkKit';
statistics.getIfaceRxBytes("wlan0").then((stats: number) => {
console.info(JSON.stringify(stats));
});
statistics.getIfaceTxBytes
getIfaceTxBytes(nic: string, callback: AsyncCallback<number>): void
Obtains the real-time uplink data traffic of the specified NIC. This API uses an asynchronous callback to return the result.
System capability: SystemCapability.Communication.NetManager.Core
Parameters
| Name | Type | Mandatory | Description |
|---|---|---|---|
| nic | string | Yes | NIC name. |
| callback | AsyncCallback<number> | Yes | Callback used to return the result. If the operation is successful, error is undefined and stats is the real-time uplink data traffic of the NIC in bytes. Otherwise, error is an error object. |
Error codes
For details about the error codes, see Traffic Management Error Codes and Universal Error Codes.
| ID | Error Message |
|---|---|
| 401 | Parameter error. |
| 2100002 | Failed to connect to the service. |
| 2100003 | System internal error. |
| 2103005 | Failed to read the system map. |
| 2103011 | Failed to create a system map. |
| 2103012 | Failed to obtain the NIC name. |
Example
import { BusinessError } from '@kit.BasicServicesKit';
import { statistics } from '@kit.NetworkKit';
statistics.getIfaceTxBytes("wlan0", (error: BusinessError, stats: number) => {
console.error(JSON.stringify(error));
console.info(JSON.stringify(stats));
});
statistics.getIfaceTxBytes
getIfaceTxBytes(nic: string): Promise<number>
Obtains the real-time uplink data traffic of the specified NIC. This API uses a promise to return the result.
System capability: SystemCapability.Communication.NetManager.Core
Parameters
| Name | Type | Mandatory | Description |
|---|---|---|---|
| nic | string | Yes | NIC name. |
Return value
| Type | Description |
|---|---|
| Promise<number> | Promise used to return the result, which is the real-time uplink data traffic of the NIC in bytes. |
Error codes
For details about the error codes, see Traffic Management Error Codes and Universal Error Codes.
| ID | Error Message |
|---|---|
| 401 | Parameter error. |
| 2100002 | Failed to connect to the service. |
| 2100003 | System internal error. |
| 2103005 | Failed to read the system map. |
| 2103011 | Failed to create a system map. |
| 2103012 | Failed to obtain the NIC name. |
Example
import { statistics } from '@kit.NetworkKit';
statistics.getIfaceTxBytes("wlan0").then((stats: number) => {
console.info(JSON.stringify(stats));
});
statistics.getCellularRxBytes
getCellularRxBytes(callback: AsyncCallback<number>): void
Obtains the real-time downlink data traffic of a cellular network. This API uses an asynchronous callback to return the result.
System capability: SystemCapability.Communication.NetManager.Core
Parameters
| Name | Type | Mandatory | Description |
|---|---|---|---|
| callback | AsyncCallback<number> | Yes | Callback used to return the result. If the operation is successful, error is undefined and stats is the real-time downlink data traffic of the cellular network in bytes. Otherwise, error is an error object. |
Error codes
For details about the error codes, see Traffic Management Error Codes.
| ID | Error Message |
|---|---|
| 2100002 | Failed to connect to the service. |
| 2100003 | System internal error. |
| 2103005 | Failed to read the system map. |
| 2103011 | Failed to create a system map. |
| 2103012 | Failed to obtain the NIC name. |
Example
import { BusinessError } from '@kit.BasicServicesKit';
import { statistics } from '@kit.NetworkKit';
statistics.getCellularRxBytes((error: BusinessError, stats: number) => {
console.error(JSON.stringify(error));
console.info(JSON.stringify(stats));
});
statistics.getCellularRxBytes
getCellularRxBytes(): Promise<number>
Obtains the real-time downlink data traffic of a cellular network. This API uses a promise to return the result.
System capability: SystemCapability.Communication.NetManager.Core
Return value
| Type | Description |
|---|---|
| Promise<number> | Promise used to return the result, which is the real-time downlink data traffic of the cellular network in bytes. |
Error codes
For details about the error codes, see Traffic Management Error Codes.
| ID | Error Message |
|---|---|
| 2100002 | Failed to connect to the service. |
| 2100003 | System internal error. |
| 2103005 | Failed to read the system map. |
| 2103011 | Failed to create a system map. |
| 2103012 | Failed to obtain the NIC name. |
Example
import { statistics } from '@kit.NetworkKit';
statistics.getCellularRxBytes().then((stats: number) => {
console.info(JSON.stringify(stats));
});
statistics.getCellularTxBytes
getCellularTxBytes(callback: AsyncCallback<number>): void
Obtains the real-time uplink data traffic of a cellular network. This API uses an asynchronous callback to return the result.
System capability: SystemCapability.Communication.NetManager.Core
Parameters
| Name | Type | Mandatory | Description |
|---|---|---|---|
| callback | AsyncCallback<number> | Yes | Callback used to return the result. If the operation is successful, error is undefined and stats is the real-time uplink data traffic of the cellular network in bytes. Otherwise, error is an error object. |
Error codes
For details about the error codes, see Traffic Management Error Codes.
| ID | Error Message |
|---|---|
| 2100002 | Failed to connect to the service. |
| 2100003 | System internal error. |
| 2103005 | Failed to read the system map. |
| 2103011 | Failed to create a system map. |
| 2103012 | Failed to obtain the NIC name. |
Example
import { BusinessError } from '@kit.BasicServicesKit';
import { statistics } from '@kit.NetworkKit';
statistics.getCellularTxBytes((error: BusinessError, stats: number) => {
console.error(JSON.stringify(error));
console.info(JSON.stringify(stats));
});
statistics.getCellularTxBytes
getCellularTxBytes(): Promise<number>
Obtains the real-time uplink data traffic of a cellular network. This API uses a promise to return the result.
System capability: SystemCapability.Communication.NetManager.Core
Return value
| Type | Description |
|---|---|
| Promise<number> | Promise used to return the result, which is the real-time uplink data traffic of the cellular network in bytes. |
Error codes
For details about the error codes, see Traffic Management Error Codes.
| ID | Error Message |
|---|---|
| 2100002 | Failed to connect to the service. |
| 2100003 | System internal error. |
| 2103005 | Failed to read the system map. |
| 2103011 | Failed to create a system map. |
| 2103012 | Failed to obtain the NIC name. |
Example
import { statistics } from '@kit.NetworkKit';
statistics.getCellularTxBytes().then((stats: number) => {
console.info(JSON.stringify(stats));
});
statistics.getAllRxBytes
getAllRxBytes(callback: AsyncCallback<number>): void
Obtains the real-time downlink data traffic of all NICs. This API uses an asynchronous callback to return the result.
Atomic service API: This API can be used in atomic services since API version 15.
System capability: SystemCapability.Communication.NetManager.Core
Parameters
| Name | Type | Mandatory | Description |
|---|---|---|---|
| callback | AsyncCallback<number> | Yes | Callback used to return the result. If the operation is successful, error is undefined and stats is the real-time downlink data traffic of all NICs in bytes. Otherwise, error is an error object. |
Error codes
For details about the error codes, see Traffic Management Error Codes.
| ID | Error Message |
|---|---|
| 2100002 | Failed to connect to the service. |
| 2100003 | System internal error. |
| 2103005 | Failed to read the system map. |
| 2103011 | Failed to create a system map. |
Example
import { statistics } from '@kit.NetworkKit';
import { BusinessError } from '@kit.BasicServicesKit';
statistics.getAllRxBytes((error: BusinessError, stats: number) => {
console.error(JSON.stringify(error));
console.info(JSON.stringify(stats));
});
statistics.getAllRxBytes
getAllRxBytes(): Promise<number>
Obtains the real-time downlink data traffic of all NICs. This API uses a promise to return the result.
Atomic service API: This API can be used in atomic services since API version 15.
System capability: SystemCapability.Communication.NetManager.Core
Return value
| Type | Description |
|---|---|
| Promise<number> | Promise used to return the result, which is the real-time downlink data traffic of all NICs in bytes. |
Error codes
For details about the error codes, see Traffic Management Error Codes.
| ID | Error Message |
|---|---|
| 2100002 | Failed to connect to the service. |
| 2100003 | System internal error. |
| 2103005 | Failed to read the system map. |
| 2103011 | Failed to create a system map. |
Example
import { statistics } from '@kit.NetworkKit';
statistics.getAllRxBytes().then((stats: number) => {
console.info(JSON.stringify(stats));
});
statistics.getAllTxBytes
getAllTxBytes(callback: AsyncCallback<number>): void
Obtains the real-time uplink data traffic of all NICs. This API uses an asynchronous callback to return the result.
Atomic service API: This API can be used in atomic services since API version 15.
System capability: SystemCapability.Communication.NetManager.Core
Parameters
| Name | Type | Mandatory | Description |
|---|---|---|---|
| callback | AsyncCallback<number> | Yes | Callback used to return the result. If the operation is successful, error is undefined and stats is the real-time uplink data traffic of all NICs in bytes. Otherwise, error is an error object. |
Error codes
For details about the error codes, see Traffic Management Error Codes.
| ID | Error Message |
|---|---|
| 2100002 | Failed to connect to the service. |
| 2100003 | System internal error. |
| 2103005 | Failed to read the system map. |
| 2103011 | Failed to create a system map. |
Example
import { BusinessError } from '@kit.BasicServicesKit';
import { statistics } from '@kit.NetworkKit';
statistics.getAllTxBytes((error: BusinessError, stats: number) => {
console.error(JSON.stringify(error));
console.info(JSON.stringify(stats));
});
statistics.getAllTxBytes
getAllTxBytes(): Promise<number>
Obtains the real-time uplink data traffic of all NICs. This API uses a promise to return the result.
Atomic service API: This API can be used in atomic services since API version 15.
System capability: SystemCapability.Communication.NetManager.Core
Return value
| Type | Description |
|---|---|
| Promise<number> | Promise used to return the result, which is the real-time uplink data traffic of all NICs in bytes. |
Error codes
For details about the error codes, see Traffic Management Error Codes.
| ID | Error Message |
|---|---|
| 2100002 | Failed to connect to the service. |
| 2100003 | System internal error. |
| 2103005 | Failed to read the system map. |
| 2103011 | Failed to create a system map. |
Example
import { statistics } from '@kit.NetworkKit';
statistics.getAllTxBytes().then((stats: number) => {
console.info(JSON.stringify(stats));
});
statistics.getUidRxBytes
getUidRxBytes(uid: number, callback: AsyncCallback<number>): void
Obtains the real-time downlink data traffic of the specified application. This API uses an asynchronous callback to return the result.
Required permissions
- API versions earlier than API version 26.0.0: N/A
- Since API version 26.0.0: ohos.permission.GET_NETWORK_STATS (You need to apply for this permission only when the value of uid is different from that of the API caller, that is, when you query the traffic data of other applications.)
System capability: SystemCapability.Communication.NetManager.Core
Parameters
| Name | Type | Mandatory | Description |
|---|---|---|---|
| uid | number | Yes | Application UID. |
| callback | AsyncCallback<number> | Yes | Callback used to return the result. If the operation is successful, error is undefined and stats is the real-time downlink data traffic of the application in bytes. Otherwise, error is an error object. |
Error codes
For details about the error codes, see Traffic Management Error Codes and Universal Error Codes.
| ID | Error Message |
|---|---|
| 401 | Parameter error. |
| 2100002 | Failed to connect to the service. |
| 2100003 | System internal error. |
| 2103005 | Failed to read the system map. |
| 2103011 | Failed to create a system map. |
Example
import { BusinessError } from '@kit.BasicServicesKit';
import { statistics } from '@kit.NetworkKit';
statistics.getUidRxBytes(20010038, (error: BusinessError, stats: number) => {
console.error(JSON.stringify(error));
console.info(JSON.stringify(stats));
});
statistics.getUidRxBytes
getUidRxBytes(uid: number): Promise<number>
Obtains the real-time downlink data traffic of the specified application. This API uses a promise to return the result.
System capability: SystemCapability.Communication.NetManager.Core
Required permissions
- API versions earlier than API version 26.0.0: N/A
- Since API version 26.0.0: ohos.permission.GET_NETWORK_STATS (You need to apply for this permission only when the value of uid is different from that of the API caller, that is, when you query the traffic data of other applications.)
Parameters
| Name | Type | Mandatory | Description |
|---|---|---|---|
| uid | number | Yes | Application UID. |
Return value
| Type | Description |
|---|---|
| Promise<number> | Promise used to return the result, which is the real-time downlink data traffic of the application in bytes. |
Error codes
For details about the error codes, see Traffic Management Error Codes and Universal Error Codes.
| ID | Error Message |
|---|---|
| 401 | Parameter error. |
| 2100002 | Failed to connect to the service. |
| 2100003 | System internal error. |
| 2103005 | Failed to read the system map. |
| 2103011 | Failed to create a system map. |
Example
import { statistics } from '@kit.NetworkKit';
statistics.getUidRxBytes(20010038).then((stats: number) => {
console.info(JSON.stringify(stats));
});
statistics.getUidTxBytes
getUidTxBytes(uid: number, callback: AsyncCallback<number>): void
Obtains the real-time uplink data traffic of the specified application. This API uses an asynchronous callback to return the result.
System capability: SystemCapability.Communication.NetManager.Core
Required permissions
- API versions earlier than API version 26.0.0: N/A
- Since API version 26.0.0: ohos.permission.GET_NETWORK_STATS (You need to apply for this permission only when the value of uid is different from that of the API caller, that is, when you query the traffic data of other applications.)
Parameters
| Name | Type | Mandatory | Description |
|---|---|---|---|
| uid | number | Yes | Application UID. |
| callback | AsyncCallback<number> | Yes | Callback used to return the result. If the operation is successful, error is undefined and stats is the real-time uplink data traffic of the application in bytes. Otherwise, error is an error object. |
Error codes
For details about the error codes, see Traffic Management Error Codes and Universal Error Codes.
| ID | Error Message |
|---|---|
| 401 | Parameter error. |
| 2100002 | Failed to connect to the service. |
| 2100003 | System internal error. |
| 2103005 | Failed to read the system map. |
| 2103011 | Failed to create a system map. |
Example
import { BusinessError } from '@kit.BasicServicesKit';
import { statistics } from '@kit.NetworkKit';
statistics.getUidTxBytes(20010038, (error: BusinessError, stats: number) => {
console.error(JSON.stringify(error));
console.info(JSON.stringify(stats));
});
statistics.getUidTxBytes
getUidTxBytes(uid: number): Promise<number>
Obtains the real-time uplink data traffic of the specified application. This API uses a promise to return the result.
System capability: SystemCapability.Communication.NetManager.Core
Required permissions
- API versions earlier than API version 26.0.0: N/A
- Since API version 26.0.0: ohos.permission.GET_NETWORK_STATS (You need to apply for this permission only when the value of uid is different from that of the API caller, that is, when you query the traffic data of other applications.)
Parameters
| Name | Type | Mandatory | Description |
|---|---|---|---|
| uid | number | Yes | Application UID. |
Return value
| Type | Description |
|---|---|
| Promise<number> | Promise used to return the result, which is the real-time uplink data traffic of the application in bytes. |
Error codes
For details about the error codes, see Traffic Management Error Codes and Universal Error Codes.
| ID | Error Message |
|---|---|
| 401 | Parameter error. |
| 2100002 | Failed to connect to the service. |
| 2100003 | System internal error. |
| 2103005 | Failed to read the system map. |
| 2103011 | Failed to create a system map. |
Example
import { statistics } from '@kit.NetworkKit';
statistics.getUidTxBytes(20010038).then((stats: number) => {
console.info(JSON.stringify(stats));
});
statistics.getSockfdRxBytes11+
getSockfdRxBytes(sockfd: number, callback: AsyncCallback<number>): void
Obtains the downlink data traffic of the specified socket. This API uses an asynchronous callback to return the result.
System capability: SystemCapability.Communication.NetManager.Core
Parameters
| Name | Type | Mandatory | Description |
|---|---|---|---|
| sockfd | number | Yes | FD of the socket. |
| callback | AsyncCallback<number> | Yes | Callback used to return the result. Callback used to return the result. If the operation is successful, error is undefined and stats is the downlink data traffic of the socket. Otherwise, error is an error object. |
Error codes
For details about the error codes, see Traffic Management Error Codes and Universal Error Codes.
| ID | Error Message |
|---|---|
| 401 | Parameter error. |
| 2100001 | Invalid parameter value. |
| 2100002 | Failed to connect to the service. |
| 2100003 | System internal error. |
Example
import { BusinessError } from '@kit.BasicServicesKit';
import { statistics } from '@kit.NetworkKit';
let sockfd = 50; // FD of the socket you created.
statistics.getSockfdRxBytes(sockfd, (error: BusinessError, stats: number) => {
console.error(JSON.stringify(error));
console.info(JSON.stringify(stats));
});
statistics.getSockfdRxBytes11+
getSockfdRxBytes(sockfd: number): Promise<number>
Obtains the downlink data traffic of the specified socket. This API uses a promise to return the result.
System capability: SystemCapability.Communication.NetManager.Core
Parameters
| Name | Type | Mandatory | Description |
|---|---|---|---|
| sockfd | number | Yes | FD of the socket. |
Return value
| Type | Description |
|---|---|
| Promise<number> | Promise used to return the result. |
Error codes
For details about the error codes, see Traffic Management Error Codes and Universal Error Codes.
| ID | Error Message |
|---|---|
| 401 | Parameter error. |
| 2100001 | Invalid parameter value. |
| 2100002 | Failed to connect to the service. |
| 2100003 | System internal error. |
Example
import { BusinessError } from '@kit.BasicServicesKit';
import { statistics } from '@kit.NetworkKit';
let sockfd = 50; // FD of the socket you created.
statistics.getSockfdRxBytes(sockfd).then((stats: number) => {
console.info(JSON.stringify(stats));
}).catch((err: BusinessError) => {
console.error(JSON.stringify(err));
});
statistics.getSockfdTxBytes11+
getSockfdTxBytes(sockfd: number, callback: AsyncCallback<number>): void
Obtains the uplink data traffic of the specified socket. This API uses an asynchronous callback to return the result.
System capability: SystemCapability.Communication.NetManager.Core
Parameters
| Name | Type | Mandatory | Description |
|---|---|---|---|
| sockfd | number | Yes | FD of the socket. |
| callback | AsyncCallback<number> | Yes | Callback used to return the result. Callback used to return the result. If the operation is successful, error is undefined and stats is the uplink data traffic of the socket. Otherwise, error is an error object. |
Error codes
For details about the error codes, see Traffic Management Error Codes and Universal Error Codes.
| ID | Error Message |
|---|---|
| 401 | Parameter error. |
| 2100001 | Invalid parameter value. |
| 2100002 | Failed to connect to the service. |
| 2100003 | System internal error. |
Example
import { BusinessError } from '@kit.BasicServicesKit';
import { statistics } from '@kit.NetworkKit';
let sockfd = 50; // FD of the socket you created.
statistics.getSockfdTxBytes(sockfd, (error: BusinessError, stats: number) => {
console.error(JSON.stringify(error));
console.info(JSON.stringify(stats));
});
statistics.getSockfdTxBytes11+
getSockfdTxBytes(sockfd: number): Promise<number>
Obtains the uplink data traffic of the specified socket. This API uses a promise to return the result.
System capability: SystemCapability.Communication.NetManager.Core
Parameters
| Name | Type | Mandatory | Description |
|---|---|---|---|
| sockfd | number | Yes | FD of the socket. |
Return value
| Type | Description |
|---|---|
| Promise<number> | Promise used to return the result. |
Error codes
For details about the error codes, see Traffic Management Error Codes and Universal Error Codes.
| ID | Error Message |
|---|---|
| 401 | Parameter error. |
| 2100001 | Invalid parameter value. |
| 2100002 | Failed to connect to the service. |
| 2100003 | System internal error. |
Example
import { BusinessError } from '@kit.BasicServicesKit';
import { statistics } from '@kit.NetworkKit';
let sockfd = 50; // FD of the socket you created.
statistics.getSockfdTxBytes(sockfd).then((stats: number) => {
console.info(JSON.stringify(stats));
}).catch((err: BusinessError) => {
console.error(JSON.stringify(err));
});
statistics.getSelfTrafficStats22+
getSelfTrafficStats(networkInfo: NetworkInfo): Promise<NetStatsInfo>
Obtains the traffic statistics of the specified application on the specified network within the specified period. This API uses a promise to return the result.
NOTE
- Currently, this API can only obtain the traffic statistics of the cellular and Wi-Fi networks.
- This API can only obtain the traffic statistics within 31 days. If the timestamp specified by the parameter is more than 31 days earlier than the current system time, the error code 2103019 is reported.
System capability: SystemCapability.Communication.NetManager.Core
Parameters
| Name | Type | Mandatory | Description |
|---|---|---|---|
| networkInfo | NetworkInfo | Yes | Network information. |
Return value
| Type | Description |
|---|---|
| Promise<NetStatsInfo> | Promise used to return the historical traffic statistics of the application. |
Error codes
For details about the error codes, see Traffic Management Error Codes.
| ID | Error Message |
|---|---|
| 2100001 | Invalid parameter value. |
| 2100002 | Failed to connect to the service. |
| 2100003 | System internal error. |
| 2103017 | Failed to read the database. |
| 2103019 | The timestamp in param is invalid. |
Example
import { BusinessError } from '@kit.BasicServicesKit';
import { connection, statistics } from '@kit.NetworkKit';
let networkInfo: statistics.NetworkInfo = {
type: connection.NetBearType.BEARER_CELLULAR,
startTime: Math.floor(Date.now() / 1000) - 86400 * 31,
endTime: Math.floor(Date.now() / 1000),
simId: 1,
}
statistics.getSelfTrafficStats(networkInfo).then((stats: statistics.NetStatsInfo) => {
console.info('getSelfTrafficStats success : ' + JSON.stringify(stats));
}).catch((err: BusinessError) => {
console.error('getSelfTrafficStats error. code: ' + `${err.code}` + ', message: ' + `${err.message}`);
});
NetBearType12+
type NetBearType = connection.NetBearType
Defines the network type.
System capability: SystemCapability.Communication.NetManager.Core
| Type | Description |
|---|---|
| connection.NetBearType | Network type. |
NetworkInfo22+
Defines the network information.
System capability: SystemCapability.Communication.NetManager.Core
| Name | Type | Read-Only | Optional | Description |
|---|---|---|---|---|
| type | NetBearType | No | No | Network type. Note: If type is set to cellular, the simId field must be specified. |
| startTime | number | No | No | Start timestamp, in seconds. |
| endTime | number | No | No | End timestamp, in seconds. |
| simId | number | No | Yes | SIM card ID. The default value is the maximum value of the uint32_t type. Note: If type is set to cellular, this field must be specified. |
NetStatsInfo22+
Defines the historical traffic information.
System capability: SystemCapability.Communication.NetManager.Core
| Name | Type | Read-Only | Optional | Description |
|---|---|---|---|---|
| rxBytes | number | No | No | Downlink traffic, in bytes. |
| txBytes | number | No | No | Uplink traffic, in bytes. |
| rxPackets | number | No | No | Number of downlink packets. |
| txPackets | number | No | No | Number of uplink packets. |