Giter Site home page Giter Site logo

average's People

Contributors

hennikul avatar ioppermann avatar prep avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar

average's Issues

Example code isn't working

I copied the example code into a file, build with Go 1.1.0.3 and execute. The results are that it returns all zeros. (after I fixed some missing closing brackets in the example code)

$ go build average-example.go

$ go version
go version go1.10.3 windows/amd64

$ ./average-example.exe
Average of last  1m: 0.000000
Average of last  5m: 0.000000
Average of last 15m: 0.000000

Counter has a total of 0 over 0 samples
$

average_example.go:


package main

import (
	"fmt"
	"time"

	"github.com/prep/average"
)

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

	// Do some work.
	sw.Add(15)
	// Do some more work.
	sw.Add(22)
	// Do even more work.
	sw.Add(22)

	fmt.Printf("Average of last  1m: %f\n", sw.Average(time.Minute))
	fmt.Printf("Average of last  5m: %f\n", sw.Average(5*time.Minute))
	fmt.Printf("Average of last 15m: %f\n\n", sw.Average(15*time.Minute))

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

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.