imag/imag-counter
Matthias Beyer 9a2e0c7116 Add meta-info in imag-counter/Cargo.toml 2016-10-18 10:56:12 +02:00
..
src imag-counter: Add copyright notice to all files 2016-10-01 17:35:06 +02:00
Cargo.toml Add meta-info in imag-counter/Cargo.toml 2016-10-18 10:56:12 +02:00
README.md Add imag-counter/README.md as link to the user doc 2016-07-12 17:01:38 +02:00

README.md

Counter

The Counter module helps you counting things.

Description

In its current state the counter module is capable of simple counting. You can create, list and delete counters which are simply numbers and incremet, decrement, set and reset them.

Future plans include counting functionality which is able to save date and possibly timestamp of your increments/decrements, so you can export this and use (for example) R to visualize this data.

Filters for selecting only certain time ranges when listing/exporting your counters will be added as well.

Examples

Here are some examples how to use the counter module:


imag counter create --name example --initval 42 # or: -n example -i 42
imag counter --inc example # or -i example
imag counter --reset example
imag counter --dec example # or -d example

Backends