• 设为首页
  • 点击收藏
  • 手机版
    手机扫一扫访问
    迪恩网络手机版
  • 关注官方公众号
    微信扫一扫关注
    迪恩网络公众号

Golang api.Timerange类代码示例

原作者: [db:作者] 来自: [db:来源] 收藏 邀请

本文整理汇总了Golang中github.com/square/metrics/api.Timerange的典型用法代码示例。如果您正苦于以下问题:Golang Timerange类的具体用法?Golang Timerange怎么用?Golang Timerange使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。



在下文中一共展示了Timerange类的7个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于我们的系统推荐出更棒的Golang代码示例。

示例1: bucketsFromMetricPoints

func bucketsFromMetricPoints(metricPoints []metricPoint, resultField func(metricPoint) float64, timerange api.Timerange) [][]float64 {
	buckets := make([][]float64, timerange.Slots())
	for _, point := range metricPoints {
		addMetricPoint(point, resultField, timerange, buckets)
	}
	return buckets
}
开发者ID:deveshmittal,项目名称:metrics,代码行数:7,代码来源:blueflood.go


示例2: ToSeriesList

func (value ScalarValue) ToSeriesList(timerange api.Timerange) (api.SeriesList, error) {

	series := make([]float64, timerange.Slots())
	for i := range series {
		series[i] = float64(value)
	}

	return api.SeriesList{
		Series:    []api.Timeseries{api.Timeseries{Values: series, TagSet: api.NewTagSet()}},
		Timerange: timerange,
	}, nil
}
开发者ID:deveshmittal,项目名称:metrics,代码行数:12,代码来源:value.go


示例3: processResult

func processResult(parsedResult queryResponse, timerange api.Timerange, sampler sampler) []float64 {
	// buckets are each filled with from the points stored in result.Values, according to their timestamps.
	buckets := bucketsFromMetricPoints(parsedResult.Values, sampler.fieldSelector, timerange)

	// values will hold the final values to be returned as the series.
	values := make([]float64, timerange.Slots())

	for i, bucket := range buckets {
		if len(bucket) == 0 {
			values[i] = math.NaN()
			continue
		}
		values[i] = sampler.bucketSampler(bucket)
	}
	return values
}
开发者ID:postfix,项目名称:metrics,代码行数:16,代码来源:blueflood.go


示例4: ChooseResolution

// Blueflood will use the finest-grained resolution which doesn't exceed the slot limit.
// Thus, if you request too many points, it will automatically reduce the resolution.
func (b *Blueflood) ChooseResolution(requested api.Timerange, smallestResolution time.Duration) time.Duration {
	// In some cases, coarser-resolution data may have a shorter TTL.
	// To accomodate these cases, it must be verified that the requested timerange will
	// actually be present for the chosen resolution.
	// TODO: figure out how to make this work with moving averages and timeshifts

	requiredAge := b.timeSource().Sub(requested.StartTime())

	for _, resolution := range Resolutions {
		survivesFor := b.config.oldestViableDataForResolution(resolution)
		if survivesFor < requiredAge {
			// The data probably won't be around for the earliest part of the timerange,
			// so don't use this resolution
			continue
		}
		if resolution.duration < requested.Resolution() {
			// Skip this timerange, it is finer than the one requested.
			continue
		}
		// Check that the timerange is large enough
		if resolution.duration >= smallestResolution {
			return resolution.duration
		}
	}
	// Leave it alone, since a better one can't be found
	return requested.Resolution()
}
开发者ID:deveshmittal,项目名称:metrics,代码行数:29,代码来源:blueflood.go


示例5: processResult

func processResult(
	points []metricPoint,
	timerange api.Timerange,
	sampler sampler,
	queryResolution Resolution) []float64 {
	// buckets are each filled with from the points stored in `points`, according to their timestamps.
	buckets := bucketsFromMetricPoints(points, sampler.fieldSelector, timerange)

	// values will hold the final values to be returned as the series.
	values := make([]float64, timerange.Slots())

	for i, bucket := range buckets {
		if len(bucket) == 0 {
			values[i] = math.NaN()
			continue
		}
		values[i] = sampler.bucketSampler(bucket)
	}

	// interpolate.
	return values
}
开发者ID:deveshmittal,项目名称:metrics,代码行数:22,代码来源:blueflood.go


示例6: addMetricPoint

func addMetricPoint(metricPoint metricPoint, field func(metricPoint) float64, timerange api.Timerange, buckets [][]float64) bool {
	value := field(metricPoint)
	// The index to assign within the array is computed using the timestamp.
	// It floors to the nearest index.
	index := (metricPoint.Timestamp - timerange.Start()) / timerange.ResolutionMillis()
	if index < 0 || index >= int64(timerange.Slots()) {
		return false
	}
	buckets[index] = append(buckets[index], value)
	return true
}
开发者ID:deveshmittal,项目名称:metrics,代码行数:11,代码来源:blueflood.go


示例7: ChooseResolution

func (f FakeTimeseriesStorageAPI) ChooseResolution(requested api.Timerange, smallestResolution time.Duration) time.Duration {
	return requested.Resolution()
}
开发者ID:deveshmittal,项目名称:metrics,代码行数:3,代码来源:api.go



注:本文中的github.com/square/metrics/api.Timerange类示例由纯净天空整理自Github/MSDocs等源码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。


鲜花

握手

雷人

路过

鸡蛋
该文章已有0人参与评论

请发表评论

全部评论

专题导读
上一篇:
Golang api.Timeseries类代码示例发布时间:2022-05-28
下一篇:
Golang api.TagSet类代码示例发布时间:2022-05-28
热门推荐
热门话题
阅读排行榜

扫描微信二维码

查看手机版网站

随时了解更新最新资讯

139-2527-9053

在线客服(服务时间 9:00~18:00)

在线QQ客服
地址:深圳市南山区西丽大学城创智工业园
电邮:jeky_zhao#qq.com
移动电话:139-2527-9053

Powered by 互联科技 X3.4© 2001-2213 极客世界.|Sitemap