README.md in fnordmetric-0.6.6 vs README.md in fnordmetric-0.7.0
- old
+ new
@@ -3,11 +3,11 @@
FnordMetric is a highly configurable (and pretty fast) realtime app/event
tracking thing based on ruby eventmachine and redis. You define your own
plotting and counting functions as ruby blocks!
-[ ![Build status - Travis-ci](https://secure.travis-ci.org/paulasmuth/fnordmetric.png) ](http://travis-ci.org/paulasmuth/fnordmetric) [ ![Dependency status - Gemnasium](https://gemnasium.com/paulasmuth/fnordmetric.png) ](https://gemnasium.com/paulasmuth/fnordmetric)
+[ ![Build status - Travis-ci](https://secure.travis-ci.org/paulasmuth/fnordmetric.png) ](http://travis-ci.org/paulasmuth/fnordmetric)
[SCREENCAST][2]: the FnordMetric-instance we use to track our social dating app.
----
@@ -103,12 +103,12 @@
```ruby
uuid = (8**32).to_s(36)
event = { :_type => "unicorn_seen" }.to_json
-redis.set("fnordmetric-event-#{my_uuid}", event)
-redis.expire("fnordmetric-event-#{my_uuid}", 60)
+redis.set("fnordmetric-event-#{uuid}", event)
+redis.expire("fnordmetric-event-#{uuid}", 60)
redis.lpush("fnordmetric-queue", uuid)
```
The Ruby way: Using the API.
@@ -161,14 +161,10 @@
value at the tick specified by event-time (overwrite
existing value)
----
-### Options: Gauges ###
-
-----
-
### Options: Widgets ###
+ `[autoupdate]` auto-refresh the timeline every n secs (0 turns autoupdate off)
TimelineWidget
@@ -183,13 +179,21 @@
+ `[order_by]`: order bars/columns by: value, field
----
-### JSON API ###
+Resources
+----------
++ [PHP API for FnordMetric (github.com/leemachin/fnordmetric-php-api)](https://github.com/leemachin/fnordmetric-php-api)
++ [Python API for FnordMetric (github.com/sholiday/pyfnordmetric)](https://github.com/sholiday/pyfnordmetric)
++ [FnordMetric and C (Blog/Howto)](http://johnmurray.io/log/2012/01/19/FnordMetrics-and-C%23.md)
+
++ [The "fnordmetric" google group](http://groups.google.com/group/fnordmetric)
+
+
Examples
--------
+ doc/full_example.rb
@@ -341,9 +345,11 @@
+ Andy Lindeman (http://github.com/alindeman)
+ Jurriaan Pruis (http://github.com/jurriaan)
+ Kacper Bielecki (http://github.com/kazjote)
+ John Murray (http://github.com/JohnMurray)
+ Lars Gierth (http://github.com/lgierth)
++ Ross Kaffenberger (http://github.com/rossta)
++ Kunal Modi (http://github.com/kunalmodi)
To contribute, please fork this repository, make your changes and run the
specs, commit them to your github repository and send me a pull request.
Need help, head on over to our [Google Groups][1] page to discuss any ideas
that you might have.