GithubHelp home page GithubHelp logo

shiba_stats's Introduction

ShibaStats

A small library for measuring stuff.

NOTE: You must have the Redis Time Series module for ShibaStats. See: https://redis.io/docs/stack/timeseries/

Installation

gem 'shiba_stats'

ShibaStats reads from the REDIS_URL, REDIS_PORT and REDIS_PASSWORD ENV variables.

Recording Data

Increment a key:

ShibaStats.count('key')

Increment a key by a specific amount:

ShibaStats.count('key', amount)

Track a specific amount (for instance, page load times):

ShibaStats.add('key', amount)

Displaying Data

The ShibaStatsHelper will display the graphs using chartkick. All of the methods take in a key or array of keys, options for the chart (title, colors, etc. see: https://github.com/ankane/chartkick) and options for the data (start and end times, aggregation period/type etc. see: https://github.com/dzunk/redis-time-series).

Line Graph

<%= shiba_line('my_key') %>
<%= shiba_line('my_key', 
    { 
      title: "My Graph" 
    }, 
    {
      start_time: Time.zone.now-10.minutes, 
      aggregation_period: 1.second
    } 
  ) 
%>

Area Graph

<%= shiba_area(['my_key_1', 'my_key_2', ...], 
    { 
      title: "My Graph",
      stacked: true
    }, 
    {
      start_time: Time.zone.now-10.minutes, 
      aggregation_period: 1.second
    } 
  ) 
%>

Pie Chart

<%= shiba_pie(['my_key_1', 'my_key_2', ...], title: "Pie Chart") %>

Bar Chart

<%= shiba_bar(['my_key_1', 'my_key_2', ...] %>

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.