perfetto-protos
Version:
Perfetto protos exposed via protobuf-es for browser and node
59 lines • 2.19 kB
TypeScript
import type { GenFile, GenMessage } from "@bufbuild/protobuf/codegenv1";
import type { Message } from "@bufbuild/protobuf";
/**
* Describes the file protos/perfetto/metrics/chrome/long_latency.proto.
*/
export declare const file_protos_perfetto_metrics_chrome_long_latency: GenFile;
/**
* Information of a frame associated with long latency input events.
* The latency info is extracted from EventLatency slices.
*
* @generated from message perfetto.protos.ChromeLongLatency
*/
export type ChromeLongLatency = Message<"perfetto.protos.ChromeLongLatency"> & {
/**
* @generated from field: repeated perfetto.protos.ChromeLongLatency.LongLatency long_latency = 1;
*/
longLatency: ChromeLongLatency_LongLatency[];
};
/**
* Describes the message perfetto.protos.ChromeLongLatency.
* Use `create(ChromeLongLatencySchema)` to create a new message.
*/
export declare const ChromeLongLatencySchema: GenMessage<ChromeLongLatency>;
/**
* @generated from message perfetto.protos.ChromeLongLatency.LongLatency
*/
export type ChromeLongLatency_LongLatency = Message<"perfetto.protos.ChromeLongLatency.LongLatency"> & {
/**
* The ending timestamp of the input event, i.e. the presentation time of
* the frame that contains updates triggered by the input event.
*
* @generated from field: optional int64 ts = 1;
*/
ts: bigint;
/**
* The type of the input event as reported in the EventLatency slice,
* e.g. 'GestureScrollUpdate'.
*
* @generated from field: optional string event_type = 2;
*/
eventType: string;
/**
* The name and pid of the process where the EventLatency slice
* originates from.
*
* @generated from field: optional string process_name = 3;
*/
processName: string;
/**
* @generated from field: optional int64 pid = 4;
*/
pid: bigint;
};
/**
* Describes the message perfetto.protos.ChromeLongLatency.LongLatency.
* Use `create(ChromeLongLatency_LongLatencySchema)` to create a new message.
*/
export declare const ChromeLongLatency_LongLatencySchema: GenMessage<ChromeLongLatency_LongLatency>;
//# sourceMappingURL=long_latency_pb.d.ts.map