本文整理匯總了Golang中github.com/dparrish/openinstrument/variable.Variable.AsProto方法的典型用法代碼示例。如果您正苦於以下問題:Golang Variable.AsProto方法的具體用法?Golang Variable.AsProto怎麽用?Golang Variable.AsProto使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類github.com/dparrish/openinstrument/variable.Variable
的用法示例。
在下文中一共展示了Variable.AsProto方法的4個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Golang代碼示例。
示例1: Reader
func (s *FakeReadableStore) Reader(ctx context.Context, v *variable.Variable) <-chan *oproto.ValueStream {
c := make(chan *oproto.ValueStream, 100)
go func() {
defer close(c)
var stream *oproto.ValueStream
switch v.Variable {
case "/test/offset":
stream = &oproto.ValueStream{
Variable: v.AsProto(),
Value: []*oproto.Value{
{Timestamp: uint64(60 * 0), DoubleValue: float64(20 * 1)},
{Timestamp: uint64(60 * 1), DoubleValue: float64(20 * 2)},
{Timestamp: uint64(60 * 2), DoubleValue: float64(20 * 3)},
{Timestamp: uint64(60 * 3), DoubleValue: float64(20 * 4)},
{Timestamp: uint64(60 * 4), DoubleValue: float64(20 * 5)},
{Timestamp: uint64(60 * 5), DoubleValue: float64(20 * 6)},
{Timestamp: uint64(60 * 6), DoubleValue: float64(20 * 7)},
{Timestamp: uint64(60 * 7), DoubleValue: float64(20 * 8)},
{Timestamp: uint64(60 * 8), DoubleValue: float64(20 * 9)},
{Timestamp: uint64(60 * 9), DoubleValue: float64(20 * 10)},
{Timestamp: uint64(60 * 10), DoubleValue: float64(20 * 11)},
},
}
if v.Labels["host"] == "a" {
for _, value := range stream.Value {
value.Timestamp -= 3
}
}
if v.Labels["host"] == "b" {
for _, value := range stream.Value {
value.Timestamp += 5
}
}
case "/test":
stream = &oproto.ValueStream{
Variable: v.AsProto(),
Value: []*oproto.Value{
{Timestamp: uint64(60 * 0), DoubleValue: float64(20 * 1)},
{Timestamp: uint64(60 * 1), DoubleValue: float64(20 * 2)},
{Timestamp: uint64(60 * 2), DoubleValue: float64(20 * 3)},
{Timestamp: uint64(60 * 3), DoubleValue: float64(20 * 4)},
{Timestamp: uint64(60 * 4), DoubleValue: float64(20 * 5)},
{Timestamp: uint64(60 * 5), DoubleValue: float64(20 * 6)},
{Timestamp: uint64(60 * 6), DoubleValue: float64(20 * 7)},
{Timestamp: uint64(60 * 7), DoubleValue: float64(20 * 8)},
{Timestamp: uint64(60 * 8), DoubleValue: float64(20 * 9)},
{Timestamp: uint64(60 * 9), DoubleValue: float64(20 * 10)},
{Timestamp: uint64(60 * 10), DoubleValue: float64(20 * 11)},
},
}
}
if v.Labels["host"] == "b" {
for _, value := range stream.Value {
value.DoubleValue *= 2
}
}
c <- stream
}()
return c
}
示例2: NewAverage
func NewAverage(exporter *VariableExporter, v *variable.Variable) *Average {
sumVar := variable.NewFromProto(v.AsProto())
sumVar.Variable += "-total-count"
totalVar := variable.NewFromProto(v.AsProto())
totalVar.Variable += "-overall-sum"
return &Average{
overallSum: NewFloat(exporter, sumVar),
totalCount: NewInteger(exporter, totalVar),
}
}
示例3: Reader
func (s *FakeReadableStore) Reader(ctx context.Context, v *variable.Variable) <-chan *oproto.ValueStream {
c := make(chan *oproto.ValueStream, 100)
go func() {
defer close(c)
switch v.String() {
case "/test/offset":
c <- &oproto.ValueStream{
Variable: v.AsProto(),
Value: []*oproto.Value{
{Timestamp: uint64(0), DoubleValue: float64(20)},
{Timestamp: uint64(61), DoubleValue: float64(40)},
{Timestamp: uint64(122), DoubleValue: float64(60)},
{Timestamp: uint64(185), DoubleValue: float64(80)},
{Timestamp: uint64(241), DoubleValue: float64(100)},
{Timestamp: uint64(299), DoubleValue: float64(122)},
{Timestamp: uint64(330), DoubleValue: float64(132)},
{Timestamp: uint64(359), DoubleValue: float64(140)},
{Timestamp: uint64(421), DoubleValue: float64(160)},
{Timestamp: uint64(488), DoubleValue: float64(180)},
{Timestamp: uint64(540), DoubleValue: float64(200)},
{Timestamp: uint64(975), DoubleValue: float64(275)},
},
}
default:
c <- &oproto.ValueStream{
Variable: v.AsProto(),
Value: []*oproto.Value{
{Timestamp: uint64(60 * 0), DoubleValue: float64(20 * 1)},
{Timestamp: uint64(60 * 1), DoubleValue: float64(20 * 2)},
{Timestamp: uint64(60 * 2), DoubleValue: float64(20 * 3)},
{Timestamp: uint64(60 * 3), DoubleValue: float64(20 * 4)},
{Timestamp: uint64(60 * 4), DoubleValue: float64(20 * 5)},
{Timestamp: uint64(60 * 5), DoubleValue: float64(20 * 6)},
{Timestamp: uint64(60 * 6), DoubleValue: float64(20 * 7)},
{Timestamp: uint64(60 * 7), DoubleValue: float64(20 * 8)},
{Timestamp: uint64(60 * 8), DoubleValue: float64(20 * 9)},
{Timestamp: uint64(60 * 9), DoubleValue: float64(20 * 10)},
{Timestamp: uint64(60 * 10), DoubleValue: float64(20 * 11)},
},
}
}
}()
return c
}
示例4: NewRatio
func NewRatio(exporter *VariableExporter, v *variable.Variable) *Ratio {
successVar := variable.NewFromProto(v.AsProto())
successVar.Variable += "-success"
failureVar := variable.NewFromProto(v.AsProto())
failureVar.Variable += "-failure"
totalVar := variable.NewFromProto(v.AsProto())
totalVar.Variable += "-total"
return &Ratio{
success: NewInteger(exporter, successVar),
failure: NewInteger(exporter, failureVar),
total: NewInteger(exporter, totalVar),
}
}