|
You can display historical data using
SHOW recorded_entity ALL recorded_partition, -
FOR START(begin_time) UNTIL end_time EVERY interval,-
IN DOMAIN domain_name
Note:
1. If recorded_entity is node4, please, use UPPER case
for name.
2. begin_time has to be LATER that a very first recording
request in this domain.
3. Don't be confused: Past Time Show returns two sets of
data for each show request. For example:
--x1--y1--x2--y2--x3--NOW--->time
x1, x2, x3 - time when data were recorded
y1, y2 - time specified using FOR START... UNTIL... EVERY
The results of Past Time Show are:
- data with time stamp = x1 (for request y1)
- data with time stamp = x2 (for request y1)
- data with time stamp = x2 (for request y2)
- data with time stamp = x3 (for request y2)
|