Merge pull request #659 from prometheus/beorn7/nit

Use a cleaner initialization of `separatorByteSlice`
This commit is contained in:
Björn Rabenstein 2019-10-15 20:02:18 +02:00 committed by GitHub
commit 39fc195974
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 3 deletions

View File

@ -18,13 +18,12 @@ import (
"time"
"github.com/golang/protobuf/proto"
"github.com/prometheus/common/model"
dto "github.com/prometheus/client_model/go"
)
const separatorByte byte = 255
var separatorByteSlice = []byte{255} // For convenient use with xxhash.
var separatorByteSlice = []byte{model.SeparatorByte} // For convenient use with xxhash.
// A Metric models a single sample value with its meta data being exported to
// Prometheus. Implementations of Metric in this package are Gauge, Counter,