prometheus/model/data.proto

100 lines
2 KiB
Protocol Buffer
Raw Normal View History

2012-11-26 11:11:34 -08:00
// 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.
2012-11-24 03:33:34 -08:00
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;
}