Npm Network Activity Subset
data class NpmNetworkActivitySubset(@Json(name = "networkRequestCount" ) val networkRequestCount: Long? = null, @Json(name = "serialNetworkRequestTime" ) val serialNetworkRequestTime: Long? = null, @Json(name = "fileDownloadSize" ) val fileDownloadSize: Long? = null, @Json(name = "fileDownloadCount" ) val fileDownloadCount: Long? = null, @Json(name = "wallClockNetworkRequestTime" ) val wallClockNetworkRequestTime: Long? = null)
Parameters
network Request Count
This represents the total count of network requests for this subset of requests.
serial Network Request Time
The duration in milliseconds representing the sum of times for potentially parallel network requests for this subset of requests. It does not reflect wall clock time but offers a rough estimation of network activity.
file Download Size
The total number of bytes downloaded for dependencies from this subset of requests. It accounts only for the bytes of the files (e.g. TGZs, pakuments) downloaded and not the total network transfer.
file Download Count
The total number of successfully downloaded files from this subset of requests.
wall Clock Network Request Time
The estimate in milliseconds representing the wall clock time spent on network requests during the current build for this subset of requests.
Constructors
Link copied to clipboard
constructor(@Json(name = "networkRequestCount" ) networkRequestCount: Long? = null, @Json(name = "serialNetworkRequestTime" ) serialNetworkRequestTime: Long? = null, @Json(name = "fileDownloadSize" ) fileDownloadSize: Long? = null, @Json(name = "fileDownloadCount" ) fileDownloadCount: Long? = null, @Json(name = "wallClockNetworkRequestTime" ) wallClockNetworkRequestTime: Long? = null)