@gpc-cli/core 0.9.47 → 0.9.48
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.js +8 -1
- package/dist/index.js.map +1 -1
- package/package.json +3 -3
package/dist/index.js
CHANGED
|
@@ -2918,6 +2918,13 @@ var METRIC_SET_METRICS = {
|
|
|
2918
2918
|
"stuckBgWakelockRate28dUserWeighted",
|
|
2919
2919
|
"distinctUsers"
|
|
2920
2920
|
],
|
|
2921
|
+
lowMemoryKillerRateMetricSet: [
|
|
2922
|
+
"lmkRate",
|
|
2923
|
+
"lmkRate7dUserWeighted",
|
|
2924
|
+
"lmkRate28dUserWeighted",
|
|
2925
|
+
"userPerceivedLmkRate",
|
|
2926
|
+
"distinctUsers"
|
|
2927
|
+
],
|
|
2921
2928
|
errorCountMetricSet: ["errorReportCount", "distinctUsers"]
|
|
2922
2929
|
};
|
|
2923
2930
|
function buildQuery(metricSet, options) {
|
|
@@ -2996,7 +3003,7 @@ async function getVitalsMemory(reporting, packageName, options) {
|
|
|
2996
3003
|
return queryMetric(reporting, packageName, "stuckBackgroundWakelockRateMetricSet", options);
|
|
2997
3004
|
}
|
|
2998
3005
|
async function getVitalsLmk(reporting, packageName, options) {
|
|
2999
|
-
return queryMetric(reporting, packageName, "
|
|
3006
|
+
return queryMetric(reporting, packageName, "lowMemoryKillerRateMetricSet", {
|
|
3000
3007
|
...options,
|
|
3001
3008
|
aggregation: "DAILY"
|
|
3002
3009
|
});
|