@parca/client
Advanced tools
Comparing version 0.9.0 to 0.9.1
@@ -6,2 +6,14 @@ # Change Log | ||
## [0.9.1](https://github.com/parca-dev/parca/compare/ui-v0.9.0...ui-v0.9.1) (2022-02-21) | ||
## [0.8.2](https://github.com/parca-dev/parca/compare/ui-v0.8.1...ui-v0.8.2) (2022-02-14) | ||
**Note:** Version bump only for package @parca/client | ||
# [0.9.0](https://github.com/parca-dev/parca/compare/ui-v0.8.3...ui-v0.9.0) (2022-02-16) | ||
@@ -8,0 +20,0 @@ |
{ | ||
"name": "@parca/client", | ||
"version": "0.9.0", | ||
"version": "0.9.1", | ||
"description": "Parca API Client", | ||
@@ -16,3 +16,3 @@ "main": "src/index.ts", | ||
}, | ||
"gitHead": "a32bf468abe6c642b06635e435e8d491804e118c" | ||
"gitHead": "3f24c77e47a520b6b2343e27621401cc2ef933c0" | ||
} |
@@ -318,3 +318,4 @@ // package: parca.query.v1alpha1 | ||
REPORT_TYPE_FLAMEGRAPH_UNSPECIFIED: 0; | ||
REPORT_TYPE_PPROF_UNSPECIFIED: 1; | ||
REPORT_TYPE_PPROF: 1; | ||
REPORT_TYPE_TOP: 2; | ||
} | ||
@@ -332,2 +333,106 @@ | ||
export class Top extends jspb.Message { | ||
clearListList(): void; | ||
getListList(): Array<TopNode>; | ||
setListList(value: Array<TopNode>): void; | ||
addList(value?: TopNode, index?: number): TopNode; | ||
getReported(): number; | ||
setReported(value: number): void; | ||
getTotal(): number; | ||
setTotal(value: number): void; | ||
getUnit(): string; | ||
setUnit(value: string): void; | ||
serializeBinary(): Uint8Array; | ||
toObject(includeInstance?: boolean): Top.AsObject; | ||
static toObject(includeInstance: boolean, msg: Top): Top.AsObject; | ||
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>}; | ||
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>}; | ||
static serializeBinaryToWriter(message: Top, writer: jspb.BinaryWriter): void; | ||
static deserializeBinary(bytes: Uint8Array): Top; | ||
static deserializeBinaryFromReader(message: Top, reader: jspb.BinaryReader): Top; | ||
} | ||
export namespace Top { | ||
export type AsObject = { | ||
listList: Array<TopNode.AsObject>, | ||
reported: number, | ||
total: number, | ||
unit: string, | ||
} | ||
} | ||
export class TopNode extends jspb.Message { | ||
hasMeta(): boolean; | ||
clearMeta(): void; | ||
getMeta(): TopNodeMeta | undefined; | ||
setMeta(value?: TopNodeMeta): void; | ||
getCumulative(): number; | ||
setCumulative(value: number): void; | ||
getFlat(): number; | ||
setFlat(value: number): void; | ||
serializeBinary(): Uint8Array; | ||
toObject(includeInstance?: boolean): TopNode.AsObject; | ||
static toObject(includeInstance: boolean, msg: TopNode): TopNode.AsObject; | ||
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>}; | ||
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>}; | ||
static serializeBinaryToWriter(message: TopNode, writer: jspb.BinaryWriter): void; | ||
static deserializeBinary(bytes: Uint8Array): TopNode; | ||
static deserializeBinaryFromReader(message: TopNode, reader: jspb.BinaryReader): TopNode; | ||
} | ||
export namespace TopNode { | ||
export type AsObject = { | ||
meta?: TopNodeMeta.AsObject, | ||
cumulative: number, | ||
flat: number, | ||
} | ||
} | ||
export class TopNodeMeta extends jspb.Message { | ||
hasLocation(): boolean; | ||
clearLocation(): void; | ||
getLocation(): parca_metastore_v1alpha1_metastore_pb.Location | undefined; | ||
setLocation(value?: parca_metastore_v1alpha1_metastore_pb.Location): void; | ||
hasMapping(): boolean; | ||
clearMapping(): void; | ||
getMapping(): parca_metastore_v1alpha1_metastore_pb.Mapping | undefined; | ||
setMapping(value?: parca_metastore_v1alpha1_metastore_pb.Mapping): void; | ||
hasFunction(): boolean; | ||
clearFunction(): void; | ||
getFunction(): parca_metastore_v1alpha1_metastore_pb.Function | undefined; | ||
setFunction(value?: parca_metastore_v1alpha1_metastore_pb.Function): void; | ||
hasLine(): boolean; | ||
clearLine(): void; | ||
getLine(): parca_metastore_v1alpha1_metastore_pb.Line | undefined; | ||
setLine(value?: parca_metastore_v1alpha1_metastore_pb.Line): void; | ||
serializeBinary(): Uint8Array; | ||
toObject(includeInstance?: boolean): TopNodeMeta.AsObject; | ||
static toObject(includeInstance: boolean, msg: TopNodeMeta): TopNodeMeta.AsObject; | ||
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>}; | ||
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>}; | ||
static serializeBinaryToWriter(message: TopNodeMeta, writer: jspb.BinaryWriter): void; | ||
static deserializeBinary(bytes: Uint8Array): TopNodeMeta; | ||
static deserializeBinaryFromReader(message: TopNodeMeta, reader: jspb.BinaryReader): TopNodeMeta; | ||
} | ||
export namespace TopNodeMeta { | ||
export type AsObject = { | ||
location?: parca_metastore_v1alpha1_metastore_pb.Location.AsObject, | ||
mapping?: parca_metastore_v1alpha1_metastore_pb.Mapping.AsObject, | ||
pb_function?: parca_metastore_v1alpha1_metastore_pb.Function.AsObject, | ||
line?: parca_metastore_v1alpha1_metastore_pb.Line.AsObject, | ||
} | ||
} | ||
export class Flamegraph extends jspb.Message { | ||
@@ -486,2 +591,7 @@ hasRoot(): boolean; | ||
hasTop(): boolean; | ||
clearTop(): void; | ||
getTop(): Top | undefined; | ||
setTop(value?: Top): void; | ||
getReportCase(): QueryResponse.ReportCase; | ||
@@ -502,2 +612,3 @@ serializeBinary(): Uint8Array; | ||
pprof: Uint8Array | string, | ||
top?: Top.AsObject, | ||
} | ||
@@ -509,2 +620,3 @@ | ||
PPROF = 6, | ||
TOP = 7, | ||
} | ||
@@ -511,0 +623,0 @@ } |
Sorry, the diff of this file is too big to display
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
505534
13095