Giter Site home page Giter Site logo

average's Introduction

average TravisCI Go Report Card GoDoc

This stupidly named Go package contains a single struct that is used to implement counters on a sliding time window.

Usage

import (
    "fmt"

    "github.com/prep/average"
)

func main() {
    // Create a SlidingWindow that has a window of 15 minutes, with a
    // granularity of 1 minute.
    sw := average.MustNew(15*time.Second, time.Second)
    defer sw.Stop()

    sw.Add(15)
    // Do some more work.
    time.Sleep(time.Second)
    sw.Add(22)
    // Do even more work.
    time.Sleep(2 * time.Second)
    sw.Add(22)

    fmt.Printf("Average of last 1s: %f\n", sw.Average(time.Second))
    fmt.Printf("Average of last 2s: %f\n", sw.Average(2*time.Second))
    fmt.Printf("Average of last 15s: %f\n\n", sw.Average(15*time.Second))

    total, numSamples := sw.Total(15 * time.Second)
    fmt.Printf("Counter has a total of %d over %d samples\n", total, numSamples)
}

License

This software is created for MessageBird B.V. and distributed under the BSD-style license found in the LICENSE file.

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.