perfetto-protos
Version:
Perfetto protos exposed via protobuf-es for browser and node
56 lines • 2 kB
TypeScript
import type { GenFile, GenMessage } from "@bufbuild/protobuf/codegenv1";
import type { Message } from "@bufbuild/protobuf";
/**
* Describes the file protos/perfetto/metrics/android/fastrpc_metric.proto.
*/
export declare const file_protos_perfetto_metrics_android_fastrpc_metric: GenFile;
/**
* fastrpc memory stats on Android.
*
* @generated from message perfetto.protos.AndroidFastrpcMetric
*/
export type AndroidFastrpcMetric = Message<"perfetto.protos.AndroidFastrpcMetric"> & {
/**
* @generated from field: repeated perfetto.protos.AndroidFastrpcMetric.Subsystem subsystem = 1;
*/
subsystem: AndroidFastrpcMetric_Subsystem[];
};
/**
* Describes the message perfetto.protos.AndroidFastrpcMetric.
* Use `create(AndroidFastrpcMetricSchema)` to create a new message.
*/
export declare const AndroidFastrpcMetricSchema: GenMessage<AndroidFastrpcMetric>;
/**
* @generated from message perfetto.protos.AndroidFastrpcMetric.Subsystem
*/
export type AndroidFastrpcMetric_Subsystem = Message<"perfetto.protos.AndroidFastrpcMetric.Subsystem"> & {
/**
* @generated from field: optional string name = 1;
*/
name: string;
/**
* @generated from field: optional double avg_size_bytes = 2;
*/
avgSizeBytes: number;
/**
* @generated from field: optional double min_size_bytes = 3;
*/
minSizeBytes: number;
/**
* @generated from field: optional double max_size_bytes = 4;
*/
maxSizeBytes: number;
/**
* Total allocation size.
* Essentially the sum of positive allocs.
*
* @generated from field: optional double total_alloc_size_bytes = 5;
*/
totalAllocSizeBytes: number;
};
/**
* Describes the message perfetto.protos.AndroidFastrpcMetric.Subsystem.
* Use `create(AndroidFastrpcMetric_SubsystemSchema)` to create a new message.
*/
export declare const AndroidFastrpcMetric_SubsystemSchema: GenMessage<AndroidFastrpcMetric_Subsystem>;
//# sourceMappingURL=fastrpc_metric_pb.d.ts.map