TSADD
Synopsis
TSADD key timestamp value [timestamp value ...] [EXPIRE_IN TTL] [EXPIRE_AT UNIX_TIMESTAMP]
This command sets the data for the given timestamp
with the given value
in the time series that
is specified by key
. This is useful in storing time series like data where the key
could be a
metric, the timestamp
is the time when the metric was generated and value
is the value of the
metric at the given timestamp
.
Return value
Returns the appropriate status string.
Examples
The timestamp can be arbitrary integers used just for sorting values in a certain order.
$ TSADD cpu_usage 10 "70"
"OK"
$ TSADD cpu_usage 20 "80" 30 "60" 40 "90"
"OK"
We could also encode the timestamp as “yyyymmddhhmm”, since this would still produce integers that are sortable by the actual timestamp.
$ TSADD cpu_usage 201710311100 "50"
"OK"
A more common option would be to specify the timestamp as the unix timestamp
$ TSADD cpu_usage 1509474505 "75"
"OK"
$ TSGET cpu_usage 10
"70"
$ TSGET cpu_usage 201710311100
"50"
$ TSGET cpu_usage 1509474505
"75"
Set a TTL of 3600 seconds (1 hour) for an entry that you add.
$ TSADD cpu_usage 60 "70" EXPIRE_IN 3600
"OK"
Ensure that the entry we're adding would expire at the unix_timestamp 3513642307.
$ TSADD cpu_usage 70 "80" EXPIRE_AT 3513642307
"OK"
See also
tsrem
, tsget
, tsrangebytime
,
tsrevrangebytime
, tslastn
, tscard