100 lines
2.0 KiB
Protocol Buffer
100 lines
2.0 KiB
Protocol Buffer
// Copyright 2012 Prometheus Team
|
|
// Licensed under the Apache License, Version 2.0 (the "License");
|
|
// you may not use this file except in compliance with the License.
|
|
// You may obtain a copy of the License at
|
|
//
|
|
// http://www.apache.org/licenses/LICENSE-2.0
|
|
//
|
|
// Unless required by applicable law or agreed to in writing, software
|
|
// distributed under the License is distributed on an "AS IS" BASIS,
|
|
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
// See the License for the specific language governing permissions and
|
|
// limitations under the License.
|
|
|
|
package generated;
|
|
|
|
message LabelPairDDO {
|
|
optional int64 version = 1 [default = 1];
|
|
|
|
optional string name = 2;
|
|
optional string value = 3;
|
|
}
|
|
|
|
message MetricDDO {
|
|
optional int64 version = 1 [default = 1];
|
|
|
|
repeated LabelPairDDO label_pair = 2;
|
|
}
|
|
|
|
message FingerprintCollectionDDO {
|
|
optional int64 version = 1 [default = 1];
|
|
|
|
repeated FingerprintDDO member = 2;
|
|
}
|
|
|
|
message LabelPairCollectionDDO {
|
|
optional int64 version = 1 [default = 1];
|
|
|
|
repeated LabelPairDDO member = 2;
|
|
}
|
|
|
|
message LabelNameDDO {
|
|
optional int64 version = 1 [default = 1];
|
|
|
|
optional string name = 2;
|
|
}
|
|
|
|
message FingerprintDDO {
|
|
optional int64 version = 1 [default = 1];
|
|
|
|
// bytes
|
|
optional string signature = 2;
|
|
}
|
|
|
|
message WatermarkDDO {
|
|
optional int64 version = 1 [default = 1];
|
|
|
|
optional int64 timestamp = 2;
|
|
}
|
|
|
|
message SampleKeyDDO {
|
|
optional int64 version = 1 [default = 1];
|
|
|
|
optional FingerprintDDO fingerprint = 2;
|
|
optional bytes timestamp = 3;
|
|
}
|
|
|
|
message SampleValueDDO {
|
|
optional int64 version = 1 [default = 1];
|
|
|
|
optional float value = 2;
|
|
}
|
|
|
|
|
|
// TOO OLD
|
|
|
|
message MembershipIndexValueDDO {
|
|
}
|
|
|
|
|
|
message LabelNameAndValueIndexDDO {
|
|
optional string name = 1;
|
|
optional string value = 2;
|
|
}
|
|
|
|
message LabelNameValuesDDO {
|
|
repeated string value = 1;
|
|
}
|
|
|
|
message LabelNameAndValueToMetricDDO {
|
|
repeated string metric = 1;
|
|
}
|
|
|
|
message MetricToWindowDDO {
|
|
repeated int64 window = 1;
|
|
}
|
|
|
|
message WindowSampleDDO {
|
|
repeated float value = 1;
|
|
}
|