Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/matsumotory/mruby-growthforecast

growthforecast class for mruby
https://github.com/matsumotory/mruby-growthforecast

Last synced: about 2 months ago
JSON representation

growthforecast class for mruby

Awesome Lists containing this project

README

        

# GrowthForecast Class for mruby

## install by mrbgems
```bash
git clone git://github.com/matsumoto-r/mruby-growthforecast.git
cp -pr mruby-growthforecast ${MRUBY_ROOT}/mrbgems/g/.
echo mruby-growthforecast >> ${MRUBY_ROOT}/mrbgems/GEMS.active
cd ${MRUBY_ROOT}
make
./bin/mruby ${MRUBY_ROOT}/mrbgems/g/mruby-growthforecast/example/post-gf.rb
```

## example

```ruby
g = GrowthForecast::Client.new("127.0.0.1", 5125)

config = {
:service => "apache",
:section => "scoreboard",
:graph => "worker",
}

data = {
:number => 5,
:color => "#333399",
:mode => "count",
}

p g.post(config, data)
```