Record Statistic Values
List the new statistics:
$ sstore list //:class.app/example//:stat.*
IDENTIFIER
//:class.app/example//:stat.one
//:class.app/example//:stat.two
Show information about the new statistics:
$ sstore info //:class.app/example//:stat.*
Identifier: //:class.app/example//:stat.one
$schema: //:stat
description: example stat one
id: //:class.app/example//:stat.one
stability: stable
type: counter
units: calls
Identifier: //:class.app/example//:stat.two
$schema: //:stat
description: example stat two
id: //:class.app/example//:stat.two
stability: stable
type: counter
units: calls
Run the data_update
application and record the statistic values:
$ sstore capture //:class.app/example//:stat.*
TIME VALUE IDENTIFIER
2016-05-25T23:21:02 2 //:class.app/example//:stat.one
2016-05-25T23:21:02 4 //:class.app/example//:stat.two
2016-05-25T23:21:03 3 //:class.app/example//:stat.one
2016-05-25T23:21:03 6 //:class.app/example//:stat.two
2016-05-25T23:21:04 4 //:class.app/example//:stat.one
2016-05-25T23:21:04 8 //:class.app/example//:stat.two
...