Code Monkey home page Code Monkey logo

Comments (8)

danp avatar danp commented on July 22, 2024

I think #26 addresses this?

from go-metrics.

freeformz avatar freeformz commented on July 22, 2024

@dpiddy partially. Although Histogram.Max() is still broken in that branch.

from go-metrics.

rcrowley avatar rcrowley commented on July 22, 2024

This is indeed very similar to #26 and I'm still very torn. I think it's poor form for us to throw away accurate min/max data in order to agree with a purposefully inaccurate (optimized for size) sample.

@paulhammond pointed out that we could just do both. What do you guys (and @albanpeignier) think of exposing the Sample behind the histogram and adding Min(), Max(), and so on to the Sample interface?

from go-metrics.

danp avatar danp commented on July 22, 2024

I think there needs to be a way to get these stats on an interval basis. I just started playing with go-metrics along with go-datadog and seeing max for a metric only go up (modulo process restarts) is not ideal. Same with count.

Some ideas:

  • Expose the Sample as you said
  • Make the current methods sample/snapshot-based and add corresponding AllTime*() methods
  • Make the source of the current methods tweakable per histogram, either from all-time data or a current snapshot

PS: go-metrics is really nice, thanks!

from go-metrics.

freeformz avatar freeformz commented on July 22, 2024

@rcrowley You really need to move it to the Snapshot to be consistent with other values you may read.

from go-metrics.

freeformz avatar freeformz commented on July 22, 2024

To clarify ... IMO reporting should work like this ...
<-tick
s := histogam.Snapshot()
s.Min()
s.Max()
s.p99()
etc...
send data...
then let s get garbage collected.

This nicely de-couples the Histogram / Samples / Snapshots.

If you don't do this ... additional samples can (and will) be added to the Sample between reading min/max/p99, etc, skewing results. The snapshot doesn't need to be thread safe either, so wouldn't require any mutexes.

I don't think this sacrifices anything and actually gives me accurate Min/Max/etc data given the snapshot in time of the histogram data.

Again, FWIW @codahale's metrics does it this way and IMO it's the "right way" (tm). ;-)

from go-metrics.

codahale avatar codahale commented on July 22, 2024

Every time you @-mention me, I get re-subscribed to this issue. I love you all, but I don't have anything to add to the discussion. :)

from go-metrics.

rcrowley avatar rcrowley commented on July 22, 2024

Closed by #32.

from go-metrics.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.