@gitpod/ide-metrics-api-grpc 0.0.1-pd-sf-error-report.6 → 0.0.1-pd-ide-service-stable.1
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/lib/idemetrics_grpc_pb.d.ts +17 -0
- package/lib/idemetrics_grpc_pb.js +34 -1
- package/lib/idemetrics_pb.d.ts +53 -6
- package/lib/idemetrics_pb.js +427 -61
- package/package.json +1 -1
- package/pkg-yarn.lock +1 -1
- package/provenance-bundle.jsonl +2 -2
@@ -10,6 +10,7 @@ import * as idemetrics_pb from "./idemetrics_pb";
|
|
10
10
|
interface IMetricsServiceService extends grpc.ServiceDefinition<grpc.UntypedServiceImplementation> {
|
11
11
|
addCounter: IMetricsServiceService_IAddCounter;
|
12
12
|
observeHistogram: IMetricsServiceService_IObserveHistogram;
|
13
|
+
addHistogram: IMetricsServiceService_IAddHistogram;
|
13
14
|
reportError: IMetricsServiceService_IreportError;
|
14
15
|
}
|
15
16
|
|
@@ -31,6 +32,15 @@ interface IMetricsServiceService_IObserveHistogram extends grpc.MethodDefinition
|
|
31
32
|
responseSerialize: grpc.serialize<idemetrics_pb.ObserveHistogramResponse>;
|
32
33
|
responseDeserialize: grpc.deserialize<idemetrics_pb.ObserveHistogramResponse>;
|
33
34
|
}
|
35
|
+
interface IMetricsServiceService_IAddHistogram extends grpc.MethodDefinition<idemetrics_pb.AddHistogramRequest, idemetrics_pb.AddHistogramResponse> {
|
36
|
+
path: "/ide_metrics_api.MetricsService/AddHistogram";
|
37
|
+
requestStream: false;
|
38
|
+
responseStream: false;
|
39
|
+
requestSerialize: grpc.serialize<idemetrics_pb.AddHistogramRequest>;
|
40
|
+
requestDeserialize: grpc.deserialize<idemetrics_pb.AddHistogramRequest>;
|
41
|
+
responseSerialize: grpc.serialize<idemetrics_pb.AddHistogramResponse>;
|
42
|
+
responseDeserialize: grpc.deserialize<idemetrics_pb.AddHistogramResponse>;
|
43
|
+
}
|
34
44
|
interface IMetricsServiceService_IreportError extends grpc.MethodDefinition<idemetrics_pb.ReportErrorRequest, idemetrics_pb.ReportErrorResponse> {
|
35
45
|
path: "/ide_metrics_api.MetricsService/reportError";
|
36
46
|
requestStream: false;
|
@@ -46,6 +56,7 @@ export const MetricsServiceService: IMetricsServiceService;
|
|
46
56
|
export interface IMetricsServiceServer extends grpc.UntypedServiceImplementation {
|
47
57
|
addCounter: grpc.handleUnaryCall<idemetrics_pb.AddCounterRequest, idemetrics_pb.AddCounterResponse>;
|
48
58
|
observeHistogram: grpc.handleUnaryCall<idemetrics_pb.ObserveHistogramRequest, idemetrics_pb.ObserveHistogramResponse>;
|
59
|
+
addHistogram: grpc.handleUnaryCall<idemetrics_pb.AddHistogramRequest, idemetrics_pb.AddHistogramResponse>;
|
49
60
|
reportError: grpc.handleUnaryCall<idemetrics_pb.ReportErrorRequest, idemetrics_pb.ReportErrorResponse>;
|
50
61
|
}
|
51
62
|
|
@@ -56,6 +67,9 @@ export interface IMetricsServiceClient {
|
|
56
67
|
observeHistogram(request: idemetrics_pb.ObserveHistogramRequest, callback: (error: grpc.ServiceError | null, response: idemetrics_pb.ObserveHistogramResponse) => void): grpc.ClientUnaryCall;
|
57
68
|
observeHistogram(request: idemetrics_pb.ObserveHistogramRequest, metadata: grpc.Metadata, callback: (error: grpc.ServiceError | null, response: idemetrics_pb.ObserveHistogramResponse) => void): grpc.ClientUnaryCall;
|
58
69
|
observeHistogram(request: idemetrics_pb.ObserveHistogramRequest, metadata: grpc.Metadata, options: Partial<grpc.CallOptions>, callback: (error: grpc.ServiceError | null, response: idemetrics_pb.ObserveHistogramResponse) => void): grpc.ClientUnaryCall;
|
70
|
+
addHistogram(request: idemetrics_pb.AddHistogramRequest, callback: (error: grpc.ServiceError | null, response: idemetrics_pb.AddHistogramResponse) => void): grpc.ClientUnaryCall;
|
71
|
+
addHistogram(request: idemetrics_pb.AddHistogramRequest, metadata: grpc.Metadata, callback: (error: grpc.ServiceError | null, response: idemetrics_pb.AddHistogramResponse) => void): grpc.ClientUnaryCall;
|
72
|
+
addHistogram(request: idemetrics_pb.AddHistogramRequest, metadata: grpc.Metadata, options: Partial<grpc.CallOptions>, callback: (error: grpc.ServiceError | null, response: idemetrics_pb.AddHistogramResponse) => void): grpc.ClientUnaryCall;
|
59
73
|
reportError(request: idemetrics_pb.ReportErrorRequest, callback: (error: grpc.ServiceError | null, response: idemetrics_pb.ReportErrorResponse) => void): grpc.ClientUnaryCall;
|
60
74
|
reportError(request: idemetrics_pb.ReportErrorRequest, metadata: grpc.Metadata, callback: (error: grpc.ServiceError | null, response: idemetrics_pb.ReportErrorResponse) => void): grpc.ClientUnaryCall;
|
61
75
|
reportError(request: idemetrics_pb.ReportErrorRequest, metadata: grpc.Metadata, options: Partial<grpc.CallOptions>, callback: (error: grpc.ServiceError | null, response: idemetrics_pb.ReportErrorResponse) => void): grpc.ClientUnaryCall;
|
@@ -69,6 +83,9 @@ export class MetricsServiceClient extends grpc.Client implements IMetricsService
|
|
69
83
|
public observeHistogram(request: idemetrics_pb.ObserveHistogramRequest, callback: (error: grpc.ServiceError | null, response: idemetrics_pb.ObserveHistogramResponse) => void): grpc.ClientUnaryCall;
|
70
84
|
public observeHistogram(request: idemetrics_pb.ObserveHistogramRequest, metadata: grpc.Metadata, callback: (error: grpc.ServiceError | null, response: idemetrics_pb.ObserveHistogramResponse) => void): grpc.ClientUnaryCall;
|
71
85
|
public observeHistogram(request: idemetrics_pb.ObserveHistogramRequest, metadata: grpc.Metadata, options: Partial<grpc.CallOptions>, callback: (error: grpc.ServiceError | null, response: idemetrics_pb.ObserveHistogramResponse) => void): grpc.ClientUnaryCall;
|
86
|
+
public addHistogram(request: idemetrics_pb.AddHistogramRequest, callback: (error: grpc.ServiceError | null, response: idemetrics_pb.AddHistogramResponse) => void): grpc.ClientUnaryCall;
|
87
|
+
public addHistogram(request: idemetrics_pb.AddHistogramRequest, metadata: grpc.Metadata, callback: (error: grpc.ServiceError | null, response: idemetrics_pb.AddHistogramResponse) => void): grpc.ClientUnaryCall;
|
88
|
+
public addHistogram(request: idemetrics_pb.AddHistogramRequest, metadata: grpc.Metadata, options: Partial<grpc.CallOptions>, callback: (error: grpc.ServiceError | null, response: idemetrics_pb.AddHistogramResponse) => void): grpc.ClientUnaryCall;
|
72
89
|
public reportError(request: idemetrics_pb.ReportErrorRequest, callback: (error: grpc.ServiceError | null, response: idemetrics_pb.ReportErrorResponse) => void): grpc.ClientUnaryCall;
|
73
90
|
public reportError(request: idemetrics_pb.ReportErrorRequest, metadata: grpc.Metadata, callback: (error: grpc.ServiceError | null, response: idemetrics_pb.ReportErrorResponse) => void): grpc.ClientUnaryCall;
|
74
91
|
public reportError(request: idemetrics_pb.ReportErrorRequest, metadata: grpc.Metadata, options: Partial<grpc.CallOptions>, callback: (error: grpc.ServiceError | null, response: idemetrics_pb.ReportErrorResponse) => void): grpc.ClientUnaryCall;
|
@@ -3,7 +3,7 @@
|
|
3
3
|
// Original file comments:
|
4
4
|
// Copyright (c) 2022 Gitpod GmbH. All rights reserved.
|
5
5
|
// Licensed under the GNU Affero General Public License (AGPL).
|
6
|
-
// See License
|
6
|
+
// See License.AGPL.txt in the project root for license information.
|
7
7
|
//
|
8
8
|
'use strict';
|
9
9
|
var grpc = require('@grpc/grpc-js');
|
@@ -31,6 +31,28 @@ function deserialize_ide_metrics_api_AddCounterResponse(buffer_arg) {
|
|
31
31
|
return idemetrics_pb.AddCounterResponse.deserializeBinary(new Uint8Array(buffer_arg));
|
32
32
|
}
|
33
33
|
|
34
|
+
function serialize_ide_metrics_api_AddHistogramRequest(arg) {
|
35
|
+
if (!(arg instanceof idemetrics_pb.AddHistogramRequest)) {
|
36
|
+
throw new Error('Expected argument of type ide_metrics_api.AddHistogramRequest');
|
37
|
+
}
|
38
|
+
return Buffer.from(arg.serializeBinary());
|
39
|
+
}
|
40
|
+
|
41
|
+
function deserialize_ide_metrics_api_AddHistogramRequest(buffer_arg) {
|
42
|
+
return idemetrics_pb.AddHistogramRequest.deserializeBinary(new Uint8Array(buffer_arg));
|
43
|
+
}
|
44
|
+
|
45
|
+
function serialize_ide_metrics_api_AddHistogramResponse(arg) {
|
46
|
+
if (!(arg instanceof idemetrics_pb.AddHistogramResponse)) {
|
47
|
+
throw new Error('Expected argument of type ide_metrics_api.AddHistogramResponse');
|
48
|
+
}
|
49
|
+
return Buffer.from(arg.serializeBinary());
|
50
|
+
}
|
51
|
+
|
52
|
+
function deserialize_ide_metrics_api_AddHistogramResponse(buffer_arg) {
|
53
|
+
return idemetrics_pb.AddHistogramResponse.deserializeBinary(new Uint8Array(buffer_arg));
|
54
|
+
}
|
55
|
+
|
34
56
|
function serialize_ide_metrics_api_ObserveHistogramRequest(arg) {
|
35
57
|
if (!(arg instanceof idemetrics_pb.ObserveHistogramRequest)) {
|
36
58
|
throw new Error('Expected argument of type ide_metrics_api.ObserveHistogramRequest');
|
@@ -99,6 +121,17 @@ var MetricsServiceService = exports.MetricsServiceService = {
|
|
99
121
|
responseSerialize: serialize_ide_metrics_api_ObserveHistogramResponse,
|
100
122
|
responseDeserialize: deserialize_ide_metrics_api_ObserveHistogramResponse,
|
101
123
|
},
|
124
|
+
addHistogram: {
|
125
|
+
path: '/ide_metrics_api.MetricsService/AddHistogram',
|
126
|
+
requestStream: false,
|
127
|
+
responseStream: false,
|
128
|
+
requestType: idemetrics_pb.AddHistogramRequest,
|
129
|
+
responseType: idemetrics_pb.AddHistogramResponse,
|
130
|
+
requestSerialize: serialize_ide_metrics_api_AddHistogramRequest,
|
131
|
+
requestDeserialize: deserialize_ide_metrics_api_AddHistogramRequest,
|
132
|
+
responseSerialize: serialize_ide_metrics_api_AddHistogramResponse,
|
133
|
+
responseDeserialize: deserialize_ide_metrics_api_AddHistogramResponse,
|
134
|
+
},
|
102
135
|
reportError: {
|
103
136
|
path: '/ide_metrics_api.MetricsService/reportError',
|
104
137
|
requestStream: false,
|
package/lib/idemetrics_pb.d.ts
CHANGED
@@ -96,6 +96,59 @@ export namespace ObserveHistogramResponse {
|
|
96
96
|
}
|
97
97
|
}
|
98
98
|
|
99
|
+
export class AddHistogramRequest extends jspb.Message {
|
100
|
+
getName(): string;
|
101
|
+
setName(value: string): AddHistogramRequest;
|
102
|
+
|
103
|
+
getLabelsMap(): jspb.Map<string, string>;
|
104
|
+
clearLabelsMap(): void;
|
105
|
+
getCount(): number;
|
106
|
+
setCount(value: number): AddHistogramRequest;
|
107
|
+
getSum(): number;
|
108
|
+
setSum(value: number): AddHistogramRequest;
|
109
|
+
clearBucketsList(): void;
|
110
|
+
getBucketsList(): Array<number>;
|
111
|
+
setBucketsList(value: Array<number>): AddHistogramRequest;
|
112
|
+
addBuckets(value: number, index?: number): number;
|
113
|
+
|
114
|
+
serializeBinary(): Uint8Array;
|
115
|
+
toObject(includeInstance?: boolean): AddHistogramRequest.AsObject;
|
116
|
+
static toObject(includeInstance: boolean, msg: AddHistogramRequest): AddHistogramRequest.AsObject;
|
117
|
+
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
118
|
+
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
119
|
+
static serializeBinaryToWriter(message: AddHistogramRequest, writer: jspb.BinaryWriter): void;
|
120
|
+
static deserializeBinary(bytes: Uint8Array): AddHistogramRequest;
|
121
|
+
static deserializeBinaryFromReader(message: AddHistogramRequest, reader: jspb.BinaryReader): AddHistogramRequest;
|
122
|
+
}
|
123
|
+
|
124
|
+
export namespace AddHistogramRequest {
|
125
|
+
export type AsObject = {
|
126
|
+
name: string,
|
127
|
+
|
128
|
+
labelsMap: Array<[string, string]>,
|
129
|
+
count: number,
|
130
|
+
sum: number,
|
131
|
+
bucketsList: Array<number>,
|
132
|
+
}
|
133
|
+
}
|
134
|
+
|
135
|
+
export class AddHistogramResponse extends jspb.Message {
|
136
|
+
|
137
|
+
serializeBinary(): Uint8Array;
|
138
|
+
toObject(includeInstance?: boolean): AddHistogramResponse.AsObject;
|
139
|
+
static toObject(includeInstance: boolean, msg: AddHistogramResponse): AddHistogramResponse.AsObject;
|
140
|
+
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
141
|
+
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
142
|
+
static serializeBinaryToWriter(message: AddHistogramResponse, writer: jspb.BinaryWriter): void;
|
143
|
+
static deserializeBinary(bytes: Uint8Array): AddHistogramResponse;
|
144
|
+
static deserializeBinaryFromReader(message: AddHistogramResponse, reader: jspb.BinaryReader): AddHistogramResponse;
|
145
|
+
}
|
146
|
+
|
147
|
+
export namespace AddHistogramResponse {
|
148
|
+
export type AsObject = {
|
149
|
+
}
|
150
|
+
}
|
151
|
+
|
99
152
|
export class ReportErrorRequest extends jspb.Message {
|
100
153
|
getErrorStack(): string;
|
101
154
|
setErrorStack(value: string): ReportErrorRequest;
|
@@ -112,10 +165,6 @@ export class ReportErrorRequest extends jspb.Message {
|
|
112
165
|
|
113
166
|
getPropertiesMap(): jspb.Map<string, string>;
|
114
167
|
clearPropertiesMap(): void;
|
115
|
-
getName(): string;
|
116
|
-
setName(value: string): ReportErrorRequest;
|
117
|
-
getMessage(): string;
|
118
|
-
setMessage(value: string): ReportErrorRequest;
|
119
168
|
|
120
169
|
serializeBinary(): Uint8Array;
|
121
170
|
toObject(includeInstance?: boolean): ReportErrorRequest.AsObject;
|
@@ -137,8 +186,6 @@ export namespace ReportErrorRequest {
|
|
137
186
|
instanceId: string,
|
138
187
|
|
139
188
|
propertiesMap: Array<[string, string]>,
|
140
|
-
name: string,
|
141
|
-
message: string,
|
142
189
|
}
|
143
190
|
}
|
144
191
|
|
package/lib/idemetrics_pb.js
CHANGED
@@ -17,6 +17,8 @@ var global = (function() { return this || window || global || self || Function('
|
|
17
17
|
|
18
18
|
goog.exportSymbol('proto.ide_metrics_api.AddCounterRequest', null, global);
|
19
19
|
goog.exportSymbol('proto.ide_metrics_api.AddCounterResponse', null, global);
|
20
|
+
goog.exportSymbol('proto.ide_metrics_api.AddHistogramRequest', null, global);
|
21
|
+
goog.exportSymbol('proto.ide_metrics_api.AddHistogramResponse', null, global);
|
20
22
|
goog.exportSymbol('proto.ide_metrics_api.ObserveHistogramRequest', null, global);
|
21
23
|
goog.exportSymbol('proto.ide_metrics_api.ObserveHistogramResponse', null, global);
|
22
24
|
goog.exportSymbol('proto.ide_metrics_api.ReportErrorRequest', null, global);
|
@@ -105,6 +107,48 @@ if (goog.DEBUG && !COMPILED) {
|
|
105
107
|
*/
|
106
108
|
proto.ide_metrics_api.ObserveHistogramResponse.displayName = 'proto.ide_metrics_api.ObserveHistogramResponse';
|
107
109
|
}
|
110
|
+
/**
|
111
|
+
* Generated by JsPbCodeGenerator.
|
112
|
+
* @param {Array=} opt_data Optional initial data array, typically from a
|
113
|
+
* server response, or constructed directly in Javascript. The array is used
|
114
|
+
* in place and becomes part of the constructed object. It is not cloned.
|
115
|
+
* If no data is provided, the constructed object will be empty, but still
|
116
|
+
* valid.
|
117
|
+
* @extends {jspb.Message}
|
118
|
+
* @constructor
|
119
|
+
*/
|
120
|
+
proto.ide_metrics_api.AddHistogramRequest = function(opt_data) {
|
121
|
+
jspb.Message.initialize(this, opt_data, 0, -1, proto.ide_metrics_api.AddHistogramRequest.repeatedFields_, null);
|
122
|
+
};
|
123
|
+
goog.inherits(proto.ide_metrics_api.AddHistogramRequest, jspb.Message);
|
124
|
+
if (goog.DEBUG && !COMPILED) {
|
125
|
+
/**
|
126
|
+
* @public
|
127
|
+
* @override
|
128
|
+
*/
|
129
|
+
proto.ide_metrics_api.AddHistogramRequest.displayName = 'proto.ide_metrics_api.AddHistogramRequest';
|
130
|
+
}
|
131
|
+
/**
|
132
|
+
* Generated by JsPbCodeGenerator.
|
133
|
+
* @param {Array=} opt_data Optional initial data array, typically from a
|
134
|
+
* server response, or constructed directly in Javascript. The array is used
|
135
|
+
* in place and becomes part of the constructed object. It is not cloned.
|
136
|
+
* If no data is provided, the constructed object will be empty, but still
|
137
|
+
* valid.
|
138
|
+
* @extends {jspb.Message}
|
139
|
+
* @constructor
|
140
|
+
*/
|
141
|
+
proto.ide_metrics_api.AddHistogramResponse = function(opt_data) {
|
142
|
+
jspb.Message.initialize(this, opt_data, 0, -1, null, null);
|
143
|
+
};
|
144
|
+
goog.inherits(proto.ide_metrics_api.AddHistogramResponse, jspb.Message);
|
145
|
+
if (goog.DEBUG && !COMPILED) {
|
146
|
+
/**
|
147
|
+
* @public
|
148
|
+
* @override
|
149
|
+
*/
|
150
|
+
proto.ide_metrics_api.AddHistogramResponse.displayName = 'proto.ide_metrics_api.AddHistogramResponse';
|
151
|
+
}
|
108
152
|
/**
|
109
153
|
* Generated by JsPbCodeGenerator.
|
110
154
|
* @param {Array=} opt_data Optional initial data array, typically from a
|
@@ -736,6 +780,388 @@ proto.ide_metrics_api.ObserveHistogramResponse.serializeBinaryToWriter = functio
|
|
736
780
|
|
737
781
|
|
738
782
|
|
783
|
+
/**
|
784
|
+
* List of repeated fields within this message type.
|
785
|
+
* @private {!Array<number>}
|
786
|
+
* @const
|
787
|
+
*/
|
788
|
+
proto.ide_metrics_api.AddHistogramRequest.repeatedFields_ = [5];
|
789
|
+
|
790
|
+
|
791
|
+
|
792
|
+
if (jspb.Message.GENERATE_TO_OBJECT) {
|
793
|
+
/**
|
794
|
+
* Creates an object representation of this proto.
|
795
|
+
* Field names that are reserved in JavaScript and will be renamed to pb_name.
|
796
|
+
* Optional fields that are not set will be set to undefined.
|
797
|
+
* To access a reserved field use, foo.pb_<name>, eg, foo.pb_default.
|
798
|
+
* For the list of reserved names please see:
|
799
|
+
* net/proto2/compiler/js/internal/generator.cc#kKeyword.
|
800
|
+
* @param {boolean=} opt_includeInstance Deprecated. whether to include the
|
801
|
+
* JSPB instance for transitional soy proto support:
|
802
|
+
* http://goto/soy-param-migration
|
803
|
+
* @return {!Object}
|
804
|
+
*/
|
805
|
+
proto.ide_metrics_api.AddHistogramRequest.prototype.toObject = function(opt_includeInstance) {
|
806
|
+
return proto.ide_metrics_api.AddHistogramRequest.toObject(opt_includeInstance, this);
|
807
|
+
};
|
808
|
+
|
809
|
+
|
810
|
+
/**
|
811
|
+
* Static version of the {@see toObject} method.
|
812
|
+
* @param {boolean|undefined} includeInstance Deprecated. Whether to include
|
813
|
+
* the JSPB instance for transitional soy proto support:
|
814
|
+
* http://goto/soy-param-migration
|
815
|
+
* @param {!proto.ide_metrics_api.AddHistogramRequest} msg The msg instance to transform.
|
816
|
+
* @return {!Object}
|
817
|
+
* @suppress {unusedLocalVariables} f is only used for nested messages
|
818
|
+
*/
|
819
|
+
proto.ide_metrics_api.AddHistogramRequest.toObject = function(includeInstance, msg) {
|
820
|
+
var f, obj = {
|
821
|
+
name: jspb.Message.getFieldWithDefault(msg, 1, ""),
|
822
|
+
labelsMap: (f = msg.getLabelsMap()) ? f.toObject(includeInstance, undefined) : [],
|
823
|
+
count: jspb.Message.getFieldWithDefault(msg, 3, 0),
|
824
|
+
sum: jspb.Message.getFloatingPointFieldWithDefault(msg, 4, 0.0),
|
825
|
+
bucketsList: (f = jspb.Message.getRepeatedField(msg, 5)) == null ? undefined : f
|
826
|
+
};
|
827
|
+
|
828
|
+
if (includeInstance) {
|
829
|
+
obj.$jspbMessageInstance = msg;
|
830
|
+
}
|
831
|
+
return obj;
|
832
|
+
};
|
833
|
+
}
|
834
|
+
|
835
|
+
|
836
|
+
/**
|
837
|
+
* Deserializes binary data (in protobuf wire format).
|
838
|
+
* @param {jspb.ByteSource} bytes The bytes to deserialize.
|
839
|
+
* @return {!proto.ide_metrics_api.AddHistogramRequest}
|
840
|
+
*/
|
841
|
+
proto.ide_metrics_api.AddHistogramRequest.deserializeBinary = function(bytes) {
|
842
|
+
var reader = new jspb.BinaryReader(bytes);
|
843
|
+
var msg = new proto.ide_metrics_api.AddHistogramRequest;
|
844
|
+
return proto.ide_metrics_api.AddHistogramRequest.deserializeBinaryFromReader(msg, reader);
|
845
|
+
};
|
846
|
+
|
847
|
+
|
848
|
+
/**
|
849
|
+
* Deserializes binary data (in protobuf wire format) from the
|
850
|
+
* given reader into the given message object.
|
851
|
+
* @param {!proto.ide_metrics_api.AddHistogramRequest} msg The message object to deserialize into.
|
852
|
+
* @param {!jspb.BinaryReader} reader The BinaryReader to use.
|
853
|
+
* @return {!proto.ide_metrics_api.AddHistogramRequest}
|
854
|
+
*/
|
855
|
+
proto.ide_metrics_api.AddHistogramRequest.deserializeBinaryFromReader = function(msg, reader) {
|
856
|
+
while (reader.nextField()) {
|
857
|
+
if (reader.isEndGroup()) {
|
858
|
+
break;
|
859
|
+
}
|
860
|
+
var field = reader.getFieldNumber();
|
861
|
+
switch (field) {
|
862
|
+
case 1:
|
863
|
+
var value = /** @type {string} */ (reader.readString());
|
864
|
+
msg.setName(value);
|
865
|
+
break;
|
866
|
+
case 2:
|
867
|
+
var value = msg.getLabelsMap();
|
868
|
+
reader.readMessage(value, function(message, reader) {
|
869
|
+
jspb.Map.deserializeBinary(message, reader, jspb.BinaryReader.prototype.readString, jspb.BinaryReader.prototype.readString, null, "", "");
|
870
|
+
});
|
871
|
+
break;
|
872
|
+
case 3:
|
873
|
+
var value = /** @type {number} */ (reader.readUint64());
|
874
|
+
msg.setCount(value);
|
875
|
+
break;
|
876
|
+
case 4:
|
877
|
+
var value = /** @type {number} */ (reader.readDouble());
|
878
|
+
msg.setSum(value);
|
879
|
+
break;
|
880
|
+
case 5:
|
881
|
+
var values = /** @type {!Array<number>} */ (reader.isDelimited() ? reader.readPackedUint64() : [reader.readUint64()]);
|
882
|
+
for (var i = 0; i < values.length; i++) {
|
883
|
+
msg.addBuckets(values[i]);
|
884
|
+
}
|
885
|
+
break;
|
886
|
+
default:
|
887
|
+
reader.skipField();
|
888
|
+
break;
|
889
|
+
}
|
890
|
+
}
|
891
|
+
return msg;
|
892
|
+
};
|
893
|
+
|
894
|
+
|
895
|
+
/**
|
896
|
+
* Serializes the message to binary data (in protobuf wire format).
|
897
|
+
* @return {!Uint8Array}
|
898
|
+
*/
|
899
|
+
proto.ide_metrics_api.AddHistogramRequest.prototype.serializeBinary = function() {
|
900
|
+
var writer = new jspb.BinaryWriter();
|
901
|
+
proto.ide_metrics_api.AddHistogramRequest.serializeBinaryToWriter(this, writer);
|
902
|
+
return writer.getResultBuffer();
|
903
|
+
};
|
904
|
+
|
905
|
+
|
906
|
+
/**
|
907
|
+
* Serializes the given message to binary data (in protobuf wire
|
908
|
+
* format), writing to the given BinaryWriter.
|
909
|
+
* @param {!proto.ide_metrics_api.AddHistogramRequest} message
|
910
|
+
* @param {!jspb.BinaryWriter} writer
|
911
|
+
* @suppress {unusedLocalVariables} f is only used for nested messages
|
912
|
+
*/
|
913
|
+
proto.ide_metrics_api.AddHistogramRequest.serializeBinaryToWriter = function(message, writer) {
|
914
|
+
var f = undefined;
|
915
|
+
f = message.getName();
|
916
|
+
if (f.length > 0) {
|
917
|
+
writer.writeString(
|
918
|
+
1,
|
919
|
+
f
|
920
|
+
);
|
921
|
+
}
|
922
|
+
f = message.getLabelsMap(true);
|
923
|
+
if (f && f.getLength() > 0) {
|
924
|
+
f.serializeBinary(2, writer, jspb.BinaryWriter.prototype.writeString, jspb.BinaryWriter.prototype.writeString);
|
925
|
+
}
|
926
|
+
f = message.getCount();
|
927
|
+
if (f !== 0) {
|
928
|
+
writer.writeUint64(
|
929
|
+
3,
|
930
|
+
f
|
931
|
+
);
|
932
|
+
}
|
933
|
+
f = message.getSum();
|
934
|
+
if (f !== 0.0) {
|
935
|
+
writer.writeDouble(
|
936
|
+
4,
|
937
|
+
f
|
938
|
+
);
|
939
|
+
}
|
940
|
+
f = message.getBucketsList();
|
941
|
+
if (f.length > 0) {
|
942
|
+
writer.writePackedUint64(
|
943
|
+
5,
|
944
|
+
f
|
945
|
+
);
|
946
|
+
}
|
947
|
+
};
|
948
|
+
|
949
|
+
|
950
|
+
/**
|
951
|
+
* optional string name = 1;
|
952
|
+
* @return {string}
|
953
|
+
*/
|
954
|
+
proto.ide_metrics_api.AddHistogramRequest.prototype.getName = function() {
|
955
|
+
return /** @type {string} */ (jspb.Message.getFieldWithDefault(this, 1, ""));
|
956
|
+
};
|
957
|
+
|
958
|
+
|
959
|
+
/**
|
960
|
+
* @param {string} value
|
961
|
+
* @return {!proto.ide_metrics_api.AddHistogramRequest} returns this
|
962
|
+
*/
|
963
|
+
proto.ide_metrics_api.AddHistogramRequest.prototype.setName = function(value) {
|
964
|
+
return jspb.Message.setProto3StringField(this, 1, value);
|
965
|
+
};
|
966
|
+
|
967
|
+
|
968
|
+
/**
|
969
|
+
* map<string, string> labels = 2;
|
970
|
+
* @param {boolean=} opt_noLazyCreate Do not create the map if
|
971
|
+
* empty, instead returning `undefined`
|
972
|
+
* @return {!jspb.Map<string,string>}
|
973
|
+
*/
|
974
|
+
proto.ide_metrics_api.AddHistogramRequest.prototype.getLabelsMap = function(opt_noLazyCreate) {
|
975
|
+
return /** @type {!jspb.Map<string,string>} */ (
|
976
|
+
jspb.Message.getMapField(this, 2, opt_noLazyCreate,
|
977
|
+
null));
|
978
|
+
};
|
979
|
+
|
980
|
+
|
981
|
+
/**
|
982
|
+
* Clears values from the map. The map will be non-null.
|
983
|
+
* @return {!proto.ide_metrics_api.AddHistogramRequest} returns this
|
984
|
+
*/
|
985
|
+
proto.ide_metrics_api.AddHistogramRequest.prototype.clearLabelsMap = function() {
|
986
|
+
this.getLabelsMap().clear();
|
987
|
+
return this;};
|
988
|
+
|
989
|
+
|
990
|
+
/**
|
991
|
+
* optional uint64 count = 3;
|
992
|
+
* @return {number}
|
993
|
+
*/
|
994
|
+
proto.ide_metrics_api.AddHistogramRequest.prototype.getCount = function() {
|
995
|
+
return /** @type {number} */ (jspb.Message.getFieldWithDefault(this, 3, 0));
|
996
|
+
};
|
997
|
+
|
998
|
+
|
999
|
+
/**
|
1000
|
+
* @param {number} value
|
1001
|
+
* @return {!proto.ide_metrics_api.AddHistogramRequest} returns this
|
1002
|
+
*/
|
1003
|
+
proto.ide_metrics_api.AddHistogramRequest.prototype.setCount = function(value) {
|
1004
|
+
return jspb.Message.setProto3IntField(this, 3, value);
|
1005
|
+
};
|
1006
|
+
|
1007
|
+
|
1008
|
+
/**
|
1009
|
+
* optional double sum = 4;
|
1010
|
+
* @return {number}
|
1011
|
+
*/
|
1012
|
+
proto.ide_metrics_api.AddHistogramRequest.prototype.getSum = function() {
|
1013
|
+
return /** @type {number} */ (jspb.Message.getFloatingPointFieldWithDefault(this, 4, 0.0));
|
1014
|
+
};
|
1015
|
+
|
1016
|
+
|
1017
|
+
/**
|
1018
|
+
* @param {number} value
|
1019
|
+
* @return {!proto.ide_metrics_api.AddHistogramRequest} returns this
|
1020
|
+
*/
|
1021
|
+
proto.ide_metrics_api.AddHistogramRequest.prototype.setSum = function(value) {
|
1022
|
+
return jspb.Message.setProto3FloatField(this, 4, value);
|
1023
|
+
};
|
1024
|
+
|
1025
|
+
|
1026
|
+
/**
|
1027
|
+
* repeated uint64 buckets = 5;
|
1028
|
+
* @return {!Array<number>}
|
1029
|
+
*/
|
1030
|
+
proto.ide_metrics_api.AddHistogramRequest.prototype.getBucketsList = function() {
|
1031
|
+
return /** @type {!Array<number>} */ (jspb.Message.getRepeatedField(this, 5));
|
1032
|
+
};
|
1033
|
+
|
1034
|
+
|
1035
|
+
/**
|
1036
|
+
* @param {!Array<number>} value
|
1037
|
+
* @return {!proto.ide_metrics_api.AddHistogramRequest} returns this
|
1038
|
+
*/
|
1039
|
+
proto.ide_metrics_api.AddHistogramRequest.prototype.setBucketsList = function(value) {
|
1040
|
+
return jspb.Message.setField(this, 5, value || []);
|
1041
|
+
};
|
1042
|
+
|
1043
|
+
|
1044
|
+
/**
|
1045
|
+
* @param {number} value
|
1046
|
+
* @param {number=} opt_index
|
1047
|
+
* @return {!proto.ide_metrics_api.AddHistogramRequest} returns this
|
1048
|
+
*/
|
1049
|
+
proto.ide_metrics_api.AddHistogramRequest.prototype.addBuckets = function(value, opt_index) {
|
1050
|
+
return jspb.Message.addToRepeatedField(this, 5, value, opt_index);
|
1051
|
+
};
|
1052
|
+
|
1053
|
+
|
1054
|
+
/**
|
1055
|
+
* Clears the list making it empty but non-null.
|
1056
|
+
* @return {!proto.ide_metrics_api.AddHistogramRequest} returns this
|
1057
|
+
*/
|
1058
|
+
proto.ide_metrics_api.AddHistogramRequest.prototype.clearBucketsList = function() {
|
1059
|
+
return this.setBucketsList([]);
|
1060
|
+
};
|
1061
|
+
|
1062
|
+
|
1063
|
+
|
1064
|
+
|
1065
|
+
|
1066
|
+
if (jspb.Message.GENERATE_TO_OBJECT) {
|
1067
|
+
/**
|
1068
|
+
* Creates an object representation of this proto.
|
1069
|
+
* Field names that are reserved in JavaScript and will be renamed to pb_name.
|
1070
|
+
* Optional fields that are not set will be set to undefined.
|
1071
|
+
* To access a reserved field use, foo.pb_<name>, eg, foo.pb_default.
|
1072
|
+
* For the list of reserved names please see:
|
1073
|
+
* net/proto2/compiler/js/internal/generator.cc#kKeyword.
|
1074
|
+
* @param {boolean=} opt_includeInstance Deprecated. whether to include the
|
1075
|
+
* JSPB instance for transitional soy proto support:
|
1076
|
+
* http://goto/soy-param-migration
|
1077
|
+
* @return {!Object}
|
1078
|
+
*/
|
1079
|
+
proto.ide_metrics_api.AddHistogramResponse.prototype.toObject = function(opt_includeInstance) {
|
1080
|
+
return proto.ide_metrics_api.AddHistogramResponse.toObject(opt_includeInstance, this);
|
1081
|
+
};
|
1082
|
+
|
1083
|
+
|
1084
|
+
/**
|
1085
|
+
* Static version of the {@see toObject} method.
|
1086
|
+
* @param {boolean|undefined} includeInstance Deprecated. Whether to include
|
1087
|
+
* the JSPB instance for transitional soy proto support:
|
1088
|
+
* http://goto/soy-param-migration
|
1089
|
+
* @param {!proto.ide_metrics_api.AddHistogramResponse} msg The msg instance to transform.
|
1090
|
+
* @return {!Object}
|
1091
|
+
* @suppress {unusedLocalVariables} f is only used for nested messages
|
1092
|
+
*/
|
1093
|
+
proto.ide_metrics_api.AddHistogramResponse.toObject = function(includeInstance, msg) {
|
1094
|
+
var f, obj = {
|
1095
|
+
|
1096
|
+
};
|
1097
|
+
|
1098
|
+
if (includeInstance) {
|
1099
|
+
obj.$jspbMessageInstance = msg;
|
1100
|
+
}
|
1101
|
+
return obj;
|
1102
|
+
};
|
1103
|
+
}
|
1104
|
+
|
1105
|
+
|
1106
|
+
/**
|
1107
|
+
* Deserializes binary data (in protobuf wire format).
|
1108
|
+
* @param {jspb.ByteSource} bytes The bytes to deserialize.
|
1109
|
+
* @return {!proto.ide_metrics_api.AddHistogramResponse}
|
1110
|
+
*/
|
1111
|
+
proto.ide_metrics_api.AddHistogramResponse.deserializeBinary = function(bytes) {
|
1112
|
+
var reader = new jspb.BinaryReader(bytes);
|
1113
|
+
var msg = new proto.ide_metrics_api.AddHistogramResponse;
|
1114
|
+
return proto.ide_metrics_api.AddHistogramResponse.deserializeBinaryFromReader(msg, reader);
|
1115
|
+
};
|
1116
|
+
|
1117
|
+
|
1118
|
+
/**
|
1119
|
+
* Deserializes binary data (in protobuf wire format) from the
|
1120
|
+
* given reader into the given message object.
|
1121
|
+
* @param {!proto.ide_metrics_api.AddHistogramResponse} msg The message object to deserialize into.
|
1122
|
+
* @param {!jspb.BinaryReader} reader The BinaryReader to use.
|
1123
|
+
* @return {!proto.ide_metrics_api.AddHistogramResponse}
|
1124
|
+
*/
|
1125
|
+
proto.ide_metrics_api.AddHistogramResponse.deserializeBinaryFromReader = function(msg, reader) {
|
1126
|
+
while (reader.nextField()) {
|
1127
|
+
if (reader.isEndGroup()) {
|
1128
|
+
break;
|
1129
|
+
}
|
1130
|
+
var field = reader.getFieldNumber();
|
1131
|
+
switch (field) {
|
1132
|
+
default:
|
1133
|
+
reader.skipField();
|
1134
|
+
break;
|
1135
|
+
}
|
1136
|
+
}
|
1137
|
+
return msg;
|
1138
|
+
};
|
1139
|
+
|
1140
|
+
|
1141
|
+
/**
|
1142
|
+
* Serializes the message to binary data (in protobuf wire format).
|
1143
|
+
* @return {!Uint8Array}
|
1144
|
+
*/
|
1145
|
+
proto.ide_metrics_api.AddHistogramResponse.prototype.serializeBinary = function() {
|
1146
|
+
var writer = new jspb.BinaryWriter();
|
1147
|
+
proto.ide_metrics_api.AddHistogramResponse.serializeBinaryToWriter(this, writer);
|
1148
|
+
return writer.getResultBuffer();
|
1149
|
+
};
|
1150
|
+
|
1151
|
+
|
1152
|
+
/**
|
1153
|
+
* Serializes the given message to binary data (in protobuf wire
|
1154
|
+
* format), writing to the given BinaryWriter.
|
1155
|
+
* @param {!proto.ide_metrics_api.AddHistogramResponse} message
|
1156
|
+
* @param {!jspb.BinaryWriter} writer
|
1157
|
+
* @suppress {unusedLocalVariables} f is only used for nested messages
|
1158
|
+
*/
|
1159
|
+
proto.ide_metrics_api.AddHistogramResponse.serializeBinaryToWriter = function(message, writer) {
|
1160
|
+
var f = undefined;
|
1161
|
+
};
|
1162
|
+
|
1163
|
+
|
1164
|
+
|
739
1165
|
|
740
1166
|
|
741
1167
|
if (jspb.Message.GENERATE_TO_OBJECT) {
|
@@ -773,9 +1199,7 @@ proto.ide_metrics_api.ReportErrorRequest.toObject = function(includeInstance, ms
|
|
773
1199
|
userId: jspb.Message.getFieldWithDefault(msg, 4, ""),
|
774
1200
|
workspaceId: jspb.Message.getFieldWithDefault(msg, 5, ""),
|
775
1201
|
instanceId: jspb.Message.getFieldWithDefault(msg, 6, ""),
|
776
|
-
propertiesMap: (f = msg.getPropertiesMap()) ? f.toObject(includeInstance, undefined) : []
|
777
|
-
name: jspb.Message.getFieldWithDefault(msg, 8, ""),
|
778
|
-
message: jspb.Message.getFieldWithDefault(msg, 9, "")
|
1202
|
+
propertiesMap: (f = msg.getPropertiesMap()) ? f.toObject(includeInstance, undefined) : []
|
779
1203
|
};
|
780
1204
|
|
781
1205
|
if (includeInstance) {
|
@@ -842,14 +1266,6 @@ proto.ide_metrics_api.ReportErrorRequest.deserializeBinaryFromReader = function(
|
|
842
1266
|
jspb.Map.deserializeBinary(message, reader, jspb.BinaryReader.prototype.readString, jspb.BinaryReader.prototype.readString, null, "", "");
|
843
1267
|
});
|
844
1268
|
break;
|
845
|
-
case 8:
|
846
|
-
var value = /** @type {string} */ (reader.readString());
|
847
|
-
msg.setName(value);
|
848
|
-
break;
|
849
|
-
case 9:
|
850
|
-
var value = /** @type {string} */ (reader.readString());
|
851
|
-
msg.setMessage(value);
|
852
|
-
break;
|
853
1269
|
default:
|
854
1270
|
reader.skipField();
|
855
1271
|
break;
|
@@ -925,20 +1341,6 @@ proto.ide_metrics_api.ReportErrorRequest.serializeBinaryToWriter = function(mess
|
|
925
1341
|
if (f && f.getLength() > 0) {
|
926
1342
|
f.serializeBinary(7, writer, jspb.BinaryWriter.prototype.writeString, jspb.BinaryWriter.prototype.writeString);
|
927
1343
|
}
|
928
|
-
f = message.getName();
|
929
|
-
if (f.length > 0) {
|
930
|
-
writer.writeString(
|
931
|
-
8,
|
932
|
-
f
|
933
|
-
);
|
934
|
-
}
|
935
|
-
f = message.getMessage();
|
936
|
-
if (f.length > 0) {
|
937
|
-
writer.writeString(
|
938
|
-
9,
|
939
|
-
f
|
940
|
-
);
|
941
|
-
}
|
942
1344
|
};
|
943
1345
|
|
944
1346
|
|
@@ -1072,42 +1474,6 @@ proto.ide_metrics_api.ReportErrorRequest.prototype.clearPropertiesMap = function
|
|
1072
1474
|
return this;};
|
1073
1475
|
|
1074
1476
|
|
1075
|
-
/**
|
1076
|
-
* optional string name = 8;
|
1077
|
-
* @return {string}
|
1078
|
-
*/
|
1079
|
-
proto.ide_metrics_api.ReportErrorRequest.prototype.getName = function() {
|
1080
|
-
return /** @type {string} */ (jspb.Message.getFieldWithDefault(this, 8, ""));
|
1081
|
-
};
|
1082
|
-
|
1083
|
-
|
1084
|
-
/**
|
1085
|
-
* @param {string} value
|
1086
|
-
* @return {!proto.ide_metrics_api.ReportErrorRequest} returns this
|
1087
|
-
*/
|
1088
|
-
proto.ide_metrics_api.ReportErrorRequest.prototype.setName = function(value) {
|
1089
|
-
return jspb.Message.setProto3StringField(this, 8, value);
|
1090
|
-
};
|
1091
|
-
|
1092
|
-
|
1093
|
-
/**
|
1094
|
-
* optional string message = 9;
|
1095
|
-
* @return {string}
|
1096
|
-
*/
|
1097
|
-
proto.ide_metrics_api.ReportErrorRequest.prototype.getMessage = function() {
|
1098
|
-
return /** @type {string} */ (jspb.Message.getFieldWithDefault(this, 9, ""));
|
1099
|
-
};
|
1100
|
-
|
1101
|
-
|
1102
|
-
/**
|
1103
|
-
* @param {string} value
|
1104
|
-
* @return {!proto.ide_metrics_api.ReportErrorRequest} returns this
|
1105
|
-
*/
|
1106
|
-
proto.ide_metrics_api.ReportErrorRequest.prototype.setMessage = function(value) {
|
1107
|
-
return jspb.Message.setProto3StringField(this, 9, value);
|
1108
|
-
};
|
1109
|
-
|
1110
|
-
|
1111
1477
|
|
1112
1478
|
|
1113
1479
|
|
package/package.json
CHANGED
package/pkg-yarn.lock
CHANGED
@@ -4,7 +4,7 @@
|
|
4
4
|
|
5
5
|
"@gitpod/ide-metrics-api-grpc@0.0.1":
|
6
6
|
version "0.0.1"
|
7
|
-
resolved "file:///tmp/cache/
|
7
|
+
resolved "file:///var/tmp/cache/4e0a07ff6c7b177ac5979b601d1369df84e3b227.tar.gz"
|
8
8
|
dependencies:
|
9
9
|
"@grpc/grpc-js" "^1.3.7"
|
10
10
|
google-protobuf "^3.19.1"
|
package/provenance-bundle.jsonl
CHANGED
@@ -1,4 +1,4 @@
|
|
1
|
-
{"payloadType":"application/vnd.in-toto+json","payload":"
|
1
|
+
{"payloadType":"application/vnd.in-toto+json","payload":"ewogICJfdHlwZSI6ICJodHRwczovL2luLXRvdG8uaW8vU3RhdGVtZW50L3YwLjEiLAogICJwcmVkaWNhdGVUeXBlIjogImh0dHBzOi8vc2xzYS5kZXYvcHJvdmVuYW5jZS92MC4xIiwKICAic3ViamVjdCI6IFtdLAogICJwcmVkaWNhdGUiOiB7CiAgICAiYnVpbGRlciI6IHsKICAgICAgImlkIjogImdpdGh1Yi5jb20vZ2l0cG9kLWlvL2xlZXdheTowLjMuMS0xMmNhNThkQHNoYTI1NjoxNTUzMTkwNzE5OGZiODllN2VmZTU1MmZlOGMzYWFhZmUxNzI0M2Y5MjJjYTkzYTc1MzBlYjdhMWIyZDM1YjI0IgogICAgfSwKICAgICJyZWNpcGUiOiB7CiAgICAgICJ0eXBlIjogImh0dHBzOi8vZ2l0aHViLmNvbS9naXRwb2QtaW8vbGVld2F5L2J1aWxkQGdlbmVyaWM6MSIsCiAgICAgICJkZWZpbmVkSW5NYXRlcmlhbCI6IDAsCiAgICAgICJlbnRyeVBvaW50IjogImNvbXBvbmVudHMvaWRlLW1ldHJpY3MtYXBpOnByb3RvIiwKICAgICAgImFyZ3VtZW50cyI6IFsKICAgICAgICAibGVld2F5IiwKICAgICAgICAiYnVpbGQiLAogICAgICAgICItLWRvY2tlci1idWlsZC1vcHRpb25zIiwKICAgICAgICAibmV0d29yaz1ob3N0IiwKICAgICAgICAiLS13ZXJmdD10cnVlIiwKICAgICAgICAiLWMiLAogICAgICAgICJyZW1vdGUiLAogICAgICAgICItLWRvbnQtcmV0YWciLAogICAgICAgICItLWNvdmVyYWdlLW91dHB1dC1wYXRoPS90bXAvdG1wLnVxWXhMNm9FUUciLAogICAgICAgICItRHZlcnNpb249bWUtZml4aGVhZGVyLjEiLAogICAgICAgICItRHJlbW92ZVNvdXJjZXM9ZmFsc2UiLAogICAgICAgICItRGltYWdlUmVwb0Jhc2U9ZXUuZ2NyLmlvL2dpdHBvZC1jb3JlLWRldi9idWlsZCIsCiAgICAgICAgIi1EbG9jYWxBcHBWZXJzaW9uPXVua25vd24iLAogICAgICAgICItRFNFR01FTlRfSU9fVE9LRU49WDNiTmF0WVB1ZElKY0N6NmtGbFRuNTRwcnVtUUFxR2giLAogICAgICAgICItRFJFUExJQ0FURURfQVBJX1RPS0VOPWRlYTEwYzhmYjU4NzU1ZmQ1MWFiOTk2Y2NiYWFiODk2MmY1ZTkwNmFiNDQxMmFlNjc3OTk2ZWE3NGU4NWFlMzUiLAogICAgICAgICItRFJFUExJQ0FURURfQVBQPWdpdHBvZCIsCiAgICAgICAgIi1EbnBtUHVibGlzaFRyaWdnZXI9ZmFsc2UiCiAgICAgIF0sCiAgICAgICJlbnZpcm9ubWVudCI6IHsKICAgICAgICAibWFuaWZlc3QiOiB7CiAgICAgICAgICAiYXJjaCI6ICJhbWQ2NCIsCiAgICAgICAgICAiZ28iOiAiZ28gdmVyc2lvbiBnbzEuMTkuMiBsaW51eC9hbWQ2NCIsCiAgICAgICAgICAibm9kZSI6ICJ2MTYuMTYuMCIsCiAgICAgICAgICAib3MiOiAibGludXgiLAogICAgICAgICAgInlhcm4iOiAiMS4yMi4xOSIKICAgICAgICB9CiAgICAgIH0KICAgIH0sCiAgICAibWV0YWRhdGEiOiB7CiAgICAgICJidWlsZFN0YXJ0ZWRPbiI6ICIyMDIyLTEwLTE4VDEzOjM3OjE4LjYxOTI3MjYyNFoiLAogICAgICAiYnVpbGRGaW5pc2hlZE9uIjogIjIwMjItMTAtMThUMTM6Mzc6MTguNjIxMDkzMjMxWiIsCiAgICAgICJjb21wbGV0ZW5lc3MiOiB7CiAgICAgICAgImFyZ3VtZW50cyI6IHRydWUsCiAgICAgICAgImVudmlyb25tZW50IjogZmFsc2UsCiAgICAgICAgIm1hdGVyaWFscyI6IHRydWUKICAgICAgfSwKICAgICAgInJlcHJvZHVjaWJsZSI6IGZhbHNlCiAgICB9LAogICAgIm1hdGVyaWFscyI6IFsKICAgICAgewogICAgICAgICJ1cmkiOiAiZ2l0K2h0dHBzOi8vZ2l0aHViLmNvbS9naXRwb2QtaW8vZ2l0cG9kLmdpdCIsCiAgICAgICAgImRpZ2VzdCI6IHsKICAgICAgICAgICJzaGEyNTYiOiAiMDY4ZGVkYTUwYzMxNjZhZDlmNjM3ZDIzMDAzZjE1OTk1MmFkMzgzOSIKICAgICAgICB9CiAgICAgIH0KICAgIF0KICB9Cn0=","signatures":null}
|
2
2
|
|
3
|
-
{"payloadType":"application/vnd.in-toto+json","payload":"
|
3
|
+
{"payloadType":"application/vnd.in-toto+json","payload":"ewogICJfdHlwZSI6ICJodHRwczovL2luLXRvdG8uaW8vU3RhdGVtZW50L3YwLjEiLAogICJwcmVkaWNhdGVUeXBlIjogImh0dHBzOi8vc2xzYS5kZXYvcHJvdmVuYW5jZS92MC4xIiwKICAic3ViamVjdCI6IFsKICAgIHsKICAgICAgIm5hbWUiOiAiL2NvbXBvbmVudHMtaWRlLW1ldHJpY3MtYXBpLS1wcm90by90aGlyZF9wYXJ0eS9nb29nbGUvYXBpL2h0dHBib2R5LnByb3RvIiwKICAgICAgImRpZ2VzdCI6IHsKICAgICAgICAic2hhMjU2IjogIjU5MjcyZGZlZDI0ZmI1YzZlMGUyYzIyY2ExYTFlY2M3YTY0Y2FmODkxY2VmYTI0ZTg2N2U3ZjAwMDRlZDFmZWMiCiAgICAgIH0KICAgIH0sCiAgICB7CiAgICAgICJuYW1lIjogIi9jb21wb25lbnRzLWlkZS1tZXRyaWNzLWFwaS0tcHJvdG8vcHJvdmVuYW5jZS1idW5kbGUuanNvbmwiLAogICAgICAiZGlnZXN0IjogewogICAgICAgICJzaGEyNTYiOiAiMmVhMWMxNDE1OWYyYzNlYzZmYWI4ODMyOTQxYjY1MmJhZmVjYThlNWJiZDdlZDVkOTQ2ODhkNzEwMmY1NmQ2MCIKICAgICAgfQogICAgfSwKICAgIHsKICAgICAgIm5hbWUiOiAiL2xpYi9pZGVtZXRyaWNzX3BiLmpzIiwKICAgICAgImRpZ2VzdCI6IHsKICAgICAgICAic2hhMjU2IjogImEzZWZhZWNkZTJjMmM3ZmQ0ZTYxZTkwMzBlYjM1YWZlZGNhMzNiMmMwMDU0Mzg1MWU0YTljMjVkYWQ0ODYwNTUiCiAgICAgIH0KICAgIH0sCiAgICB7CiAgICAgICJuYW1lIjogIi9jb21wb25lbnRzLWlkZS1tZXRyaWNzLWFwaS0tcHJvdG8vaWRlbWV0cmljcy5wcm90byIsCiAgICAgICJkaWdlc3QiOiB7CiAgICAgICAgInNoYTI1NiI6ICI4ZTAwMjc0ZGQ4YTQ2MjUyODEyOTVkZDFiNDNmNTdhNGQ2MjE4Mzg5OWQ4NmRlZjJhM2MwNWEwZWJmNzliMmQyIgogICAgICB9CiAgICB9LAogICAgewogICAgICAibmFtZSI6ICIvY29tcG9uZW50cy1pZGUtbWV0cmljcy1hcGktLXByb3RvL3RoaXJkX3BhcnR5L2dvb2dsZS9hcGkvZmllbGRfYmVoYXZpb3IucHJvdG8iLAogICAgICAiZGlnZXN0IjogewogICAgICAgICJzaGEyNTYiOiAiY2FiYTQxMjFlZGZmZDBiMTY1YzIxZTcxYjRhYjNhYjBmYzA3OGE1ZDQ4MTAxYzlhOTIwNzU3YzNhNzI0N2YzYSIKICAgICAgfQogICAgfSwKICAgIHsKICAgICAgIm5hbWUiOiAiL2NvbXBvbmVudHMtaWRlLW1ldHJpY3MtYXBpLS1wcm90by90aGlyZF9wYXJ0eS9nb29nbGUvYXBpL2h0dHAucHJvdG8iLAogICAgICAiZGlnZXN0IjogewogICAgICAgICJzaGEyNTYiOiAiMzE4ZDg2OTMzMTYwMDNkOWM2YTI4OWM5YjQ4OGRhYzYyNmViYmE4MTkyYTUwN2EwZWI2NmNmMmY4NjI3YWI5MyIKICAgICAgfQogICAgfSwKICAgIHsKICAgICAgIm5hbWUiOiAiL2xpYi9pZGVtZXRyaWNzX2dycGNfcGIuZC50cyIsCiAgICAgICJkaWdlc3QiOiB7CiAgICAgICAgInNoYTI1NiI6ICIzMmVkMjdlYmI1NTJkMTQ4YmEzODdiMjRmNzFmNzNkYWMzMDI2MmQwZjUyMTQ4OTM4MzQ4ZWZiZDc2OTgxNDc5IgogICAgICB9CiAgICB9LAogICAgewogICAgICAibmFtZSI6ICIvY29tcG9uZW50cy1pZGUtbWV0cmljcy1hcGktLXByb3RvL3RoaXJkX3BhcnR5L2dvb2dsZS9hcGkvYW5ub3RhdGlvbnMucHJvdG8iLAogICAgICAiZGlnZXN0IjogewogICAgICAgICJzaGEyNTYiOiAiYmZmN2M0N2I3OGJkMjVkMzRlNzBlZmMwNmY0OTc2NGVjMjRmNTVlNjY1MDY3YjliZTQ5ZTUzZTgyNTI1MGNlOCIKICAgICAgfQogICAgfSwKICAgIHsKICAgICAgIm5hbWUiOiAiL2xpYi9pZGVtZXRyaWNzX3BiLmQudHMiLAogICAgICAiZGlnZXN0IjogewogICAgICAgICJzaGEyNTYiOiAiY2VmNmVkMTgxMzQzMzcxYjI3MjJiNDQzMTg5NjBiNTMzMzMzNmE2MGVkMDEwNTc0OTVlZjA4MDVlZGI3Yjc0NiIKICAgICAgfQogICAgfSwKICAgIHsKICAgICAgIm5hbWUiOiAiL2xpYi9pZGVtZXRyaWNzX2dycGNfcGIuanMiLAogICAgICAiZGlnZXN0IjogewogICAgICAgICJzaGEyNTYiOiAiOTljZWYyYjg1MDM5ZDdhMWViNTQzOGY1NWM4MjczN2MxYWNhMTVmZjRkYWU1NzM3OWQ3NDVkOTMyODU5ODM4MiIKICAgICAgfQogICAgfQogIF0sCiAgInByZWRpY2F0ZSI6IHsKICAgICJidWlsZGVyIjogewogICAgICAiaWQiOiAiZ2l0aHViLmNvbS9naXRwb2QtaW8vbGVld2F5OjAuNy4xLTc4NThkNzVAc2hhMjU2OjNmNWU3NjllNjc3NmIzMjhjZjIxZDgzZGVhOTMzMWU2MDIxZTUxOGI5YjE1ODFjNWVhOTZlYmE1YTY5ZGQyZmYiCiAgICB9LAogICAgInJlY2lwZSI6IHsKICAgICAgInR5cGUiOiAiaHR0cHM6Ly9naXRodWIuY29tL2dpdHBvZC1pby9sZWV3YXkvYnVpbGRAeWFybjo3IiwKICAgICAgImRlZmluZWRJbk1hdGVyaWFsIjogMCwKICAgICAgImVudHJ5UG9pbnQiOiAiY29tcG9uZW50cy9pZGUtbWV0cmljcy1hcGkvdHlwZXNjcmlwdC1ncnBjOmxpYiIsCiAgICAgICJhcmd1bWVudHMiOiBbCiAgICAgICAgImxlZXdheSIsCiAgICAgICAgImJ1aWxkIiwKICAgICAgICAiLS1kb2NrZXItYnVpbGQtb3B0aW9ucyIsCiAgICAgICAgIm5ldHdvcms9aG9zdCIsCiAgICAgICAgIi0td2VyZnQ9dHJ1ZSIsCiAgICAgICAgIi1jIiwKICAgICAgICAicmVtb3RlIiwKICAgICAgICAiLS1jb3ZlcmFnZS1vdXRwdXQtcGF0aD0vdG1wL3RtcC5wVVFOb09GZjNHIiwKICAgICAgICAiLUR2ZXJzaW9uPXBkLWlkZS1zZXJ2aWNlLXN0YWJsZS4xIiwKICAgICAgICAiLURyZW1vdmVTb3VyY2VzPWZhbHNlIiwKICAgICAgICAiLURpbWFnZVJlcG9CYXNlPWV1Lmdjci5pby9naXRwb2QtY29yZS1kZXYvYnVpbGQiLAogICAgICAgICItRGxvY2FsQXBwVmVyc2lvbj11bmtub3duIiwKICAgICAgICAiLURTRUdNRU5UX0lPX1RPS0VOPVgzYk5hdFlQdWRJSmNDejZrRmxUbjU0cHJ1bVFBcUdoIiwKICAgICAgICAiLURSRVBMSUNBVEVEX0FQSV9UT0tFTj1kZWExMGM4ZmI1ODc1NWZkNTFhYjk5NmNjYmFhYjg5NjJmNWU5MDZhYjQ0MTJhZTY3Nzk5NmVhNzRlODVhZTM1IiwKICAgICAgICAiLURSRVBMSUNBVEVEX0FQUD1naXRwb2QiLAogICAgICAgICItRG5wbVB1Ymxpc2hUcmlnZ2VyPWZhbHNlIgogICAgICBdLAogICAgICAiZW52aXJvbm1lbnQiOiB7CiAgICAgICAgIm1hbmlmZXN0IjogewogICAgICAgICAgImFyY2giOiAiYW1kNjQiLAogICAgICAgICAgImdvIjogImdvIHZlcnNpb24gZ28xLjE5LjIgbGludXgvYW1kNjQiLAogICAgICAgICAgIm5vZGUiOiAidjE2LjE2LjAiLAogICAgICAgICAgIm9zIjogImxpbnV4IiwKICAgICAgICAgICJ5YXJuIjogIjEuMjIuMTkiCiAgICAgICAgfQogICAgICB9CiAgICB9LAogICAgIm1ldGFkYXRhIjogewogICAgICAiYnVpbGRTdGFydGVkT24iOiAiMjAyMi0xMi0xM1QxMToyNDoxNC4yODEwMzkwNDdaIiwKICAgICAgImJ1aWxkRmluaXNoZWRPbiI6ICIyMDIyLTEyLTEzVDExOjI0OjM1LjEwOTcxMzIyOVoiLAogICAgICAiY29tcGxldGVuZXNzIjogewogICAgICAgICJhcmd1bWVudHMiOiB0cnVlLAogICAgICAgICJlbnZpcm9ubWVudCI6IGZhbHNlLAogICAgICAgICJtYXRlcmlhbHMiOiB0cnVlCiAgICAgIH0sCiAgICAgICJyZXByb2R1Y2libGUiOiBmYWxzZQogICAgfSwKICAgICJtYXRlcmlhbHMiOiBbCiAgICAgIHsKICAgICAgICAidXJpIjogImdpdCtodHRwczovL2dpdGh1Yi5jb20vZ2l0cG9kLWlvL2dpdHBvZC5naXQiLAogICAgICAgICJkaWdlc3QiOiB7CiAgICAgICAgICAic2hhMjU2IjogIjRjNzYxNTAwYmNkNWUyNWQyNTc1MTM5ZDA5YmJhZjIwZDYxZGNiMjIiCiAgICAgICAgfQogICAgICB9CiAgICBdCiAgfQp9","signatures":null}
|
4
4
|
|