doushou8730 2018-12-20 01:54
浏览 594
已采纳

Prometheus Go客户端库的ExponentialBuckets API的最低粒度是多少?

I am experimenting with Prometheus Go client library. Does ExponentialBuckets API accept parameter start of less than 1.0 (e.g., 0.001)?

  • 写回答

1条回答 默认 最新

  • dousa2794 2018-12-20 04:27
    关注

    package prometheus

    import "github.com/prometheus/client_golang/prometheus"
    

    func ExponentialBuckets

    func ExponentialBuckets(start, factor float64, count int) []float64
    

    ExponentialBuckets creates 'count' buckets, where the lowest bucket has an upper bound of 'start' and each following bucket's upper bound is 'factor' times the previous bucket's upper bound. The final +Inf bucket is not counted and not included in the returned slice. The returned slice is meant to be used for the Buckets field of HistogramOpts.

    The function panics if 'count' is 0 or negative, if 'start' is 0 or negative, or if 'factor' is less than or equal 1.


    Try start equal to the minimum normal positive float64.

    package main
    
    import (
        "fmt"
        "math"
    )
    
    func main() {
        // Minimum normal positive float64
        // 0 00000000001 0000000000000000000000000000000000000000000000000000
        // 2.2250738585072014e−308
        start := math.Float64frombits(uint64(1 << (63 - 11)))
        fmt.Println(start)
    }
    

    Output:

    2.2250738585072014e-308
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

悬赏问题

  • ¥15 孟德尔随机化结果不一致
  • ¥15 深度学习残差模块模型
  • ¥50 怎么判断同步时序逻辑电路和异步时序逻辑电路
  • ¥15 差动电流二次谐波的含量Matlab计算
  • ¥15 Can/caned 总线错误问题,错误显示控制器要发1,结果总线检测到0
  • ¥15 C#如何调用串口数据
  • ¥15 MATLAB与单片机串口通信
  • ¥15 L76k模块的GPS的使用
  • ¥15 请帮我看一看数电项目如何设计
  • ¥23 (标签-bug|关键词-密码错误加密)