2023-04-21 12:14:19 -07:00
|
|
|
// Copyright 2023 The Prometheus Authors
|
|
|
|
// 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.
|
|
|
|
|
2023-05-03 23:36:44 -07:00
|
|
|
package scrape
|
2023-04-21 12:14:19 -07:00
|
|
|
|
|
|
|
import (
|
|
|
|
"bytes"
|
|
|
|
"encoding/binary"
|
|
|
|
|
|
|
|
"github.com/gogo/protobuf/proto"
|
2023-05-04 11:29:50 -07:00
|
|
|
|
2023-05-03 23:36:44 -07:00
|
|
|
// Intentionally using client model to simulate client in tests.
|
2023-04-21 12:14:19 -07:00
|
|
|
dto "github.com/prometheus/client_model/go"
|
|
|
|
)
|
|
|
|
|
2023-05-03 23:36:44 -07:00
|
|
|
// Write a MetricFamily into a protobuf.
|
|
|
|
// This function is intended for testing scraping by providing protobuf serialized input.
|
2023-04-21 12:14:19 -07:00
|
|
|
func MetricFamilyToProtobuf(metricFamily *dto.MetricFamily) ([]byte, error) {
|
|
|
|
buffer := &bytes.Buffer{}
|
|
|
|
err := AddMetricFamilyToProtobuf(buffer, metricFamily)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
return buffer.Bytes(), nil
|
|
|
|
}
|
|
|
|
|
2023-05-03 23:36:44 -07:00
|
|
|
// Append a MetricFamily protobuf representation to a buffer.
|
|
|
|
// This function is intended for testing scraping by providing protobuf serialized input.
|
2023-04-21 12:14:19 -07:00
|
|
|
func AddMetricFamilyToProtobuf(buffer *bytes.Buffer, metricFamily *dto.MetricFamily) error {
|
|
|
|
protoBuf, err := proto.Marshal(metricFamily)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
varintBuf := make([]byte, binary.MaxVarintLen32)
|
|
|
|
varintLength := binary.PutUvarint(varintBuf, uint64(len(protoBuf)))
|
|
|
|
|
|
|
|
_, err = buffer.Write(varintBuf[:varintLength])
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
_, err = buffer.Write(protoBuf)
|
|
|
|
return err
|
|
|
|
}
|