Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/zabbix/zabbix.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorAleksejs Sestakovs <aleksejs.sestakovs@zabbix.com>2021-11-17 18:23:35 +0300
committerAleksejs Sestakovs <aleksejs.sestakovs@zabbix.com>2021-11-17 18:23:35 +0300
commit2c17ecef35a732d2a07196d3e180ef4e269f46db (patch)
tree68fca9d9b8fae4f458bce07eb96a0a656ba0f88d /tests
parentc1e3e811abae1048c46a28b0faed89e4012b272a (diff)
parent71bb0357996c1497ffc927a187949f365c601f29 (diff)
.......... [ZBXNEXT-6936] upgraded to master
Diffstat (limited to 'tests')
-rw-r--r--tests/libs/zbxdbcache/zbx_vc_add_values.c4
-rw-r--r--tests/libs/zbxhistory/zbx_history_get_values.c2
-rwxr-xr-xtests/libs/zbxserver/Makefile.am38
-rw-r--r--tests/libs/zbxserver/evaluate_function.c5
-rw-r--r--tests/libs/zbxserver/evaluate_function.yaml413
-rw-r--r--tests/libs/zbxserver/evaluate_percentage_deviations_in_remainder.c187
-rw-r--r--tests/libs/zbxserver/evaluate_percentage_deviations_in_remainder.yaml191
-rw-r--r--tests/libs/zbxserver/evaluate_stl.c224
-rw-r--r--tests/libs/zbxserver/evaluate_stl.yaml2915
-rw-r--r--tests/mocks/valuecache/valuecache_mock.c2
-rw-r--r--tests/mocks/valuecache/valuecache_mock.h2
11 files changed, 3974 insertions, 9 deletions
diff --git a/tests/libs/zbxdbcache/zbx_vc_add_values.c b/tests/libs/zbxdbcache/zbx_vc_add_values.c
index ac80bedbb50..a83a8c7fee0 100644
--- a/tests/libs/zbxdbcache/zbx_vc_add_values.c
+++ b/tests/libs/zbxdbcache/zbx_vc_add_values.c
@@ -37,7 +37,7 @@ extern zbx_uint64_t CONFIG_VALUE_CACHE_SIZE;
void zbx_mock_test_entry(void **state)
{
int err, seconds, count, item_status, item_active_range, item_db_cached_from,
- item_values_total, cache_mode;
+ item_values_total, cache_mode, ret_flush;
zbx_vector_history_record_t expected, returned;
const char *data;
char *error;
@@ -89,7 +89,7 @@ void zbx_mock_test_entry(void **state)
zbx_vector_ptr_create(&history);
zbx_vcmock_get_dc_history(zbx_mock_get_object_member_handle(handle, "values"), &history);
- err = zbx_vc_add_values(&history);
+ err = zbx_vc_add_values(&history, &ret_flush);
data = zbx_mock_get_parameter_string("out.return");
zbx_mock_assert_int_eq("zbx_vc_add_values()", zbx_mock_str_to_return_code(data), err);
diff --git a/tests/libs/zbxhistory/zbx_history_get_values.c b/tests/libs/zbxhistory/zbx_history_get_values.c
index 60d1a6f4947..ab4b03d4f56 100644
--- a/tests/libs/zbxhistory/zbx_history_get_values.c
+++ b/tests/libs/zbxhistory/zbx_history_get_values.c
@@ -169,7 +169,7 @@ static void zbx_vcmock_read_history_value(zbx_mock_handle_t hvalue, unsigned cha
log->source = zbx_strdup(NULL, zbx_mock_get_object_member_string(hvalue, "source"));
data = zbx_mock_get_object_member_string(hvalue, "logeventid");
- if (FAIL == is_uint64(data, &log->logeventid))
+ if (FAIL == is_uint32(data, &log->logeventid))
fail_msg("Invalid log logeventid value \"%s\"", data);
data = zbx_mock_get_object_member_string(hvalue, "severity");
diff --git a/tests/libs/zbxserver/Makefile.am b/tests/libs/zbxserver/Makefile.am
index 48bcd7a0228..992687a720a 100755
--- a/tests/libs/zbxserver/Makefile.am
+++ b/tests/libs/zbxserver/Makefile.am
@@ -1,6 +1,8 @@
if SERVER
SERVER_tests = \
evaluate_function \
+ evaluate_stl \
+ evaluate_percentage_deviations_in_remainder \
substitute_lld_macros \
macro_fmttime \
valuemaps
@@ -153,6 +155,32 @@ evaluate_function_LDADD += @SERVER_LIBS@
evaluate_function_LDFLAGS = @SERVER_LDFLAGS@ $(VALUECACHE_WRAP_FUNCS)
+evaluate_stl_SOURCES = \
+ evaluate_stl.c \
+ $(COMMON_SRC_FILES)
+
+evaluate_stl_LDADD = \
+ $(top_srcdir)/tests/mocks/valuecache/libvaluecachemock.a
+
+evaluate_stl_LDADD += $(COMMON_LIB_FILES)
+
+evaluate_stl_LDADD += @SERVER_LIBS@
+
+evaluate_stl_LDFLAGS = @SERVER_LDFLAGS@ $(VALUECACHE_WRAP_FUNCS)
+
+evaluate_percentage_deviations_in_remainder_SOURCES = \
+ evaluate_percentage_deviations_in_remainder.c \
+ $(COMMON_SRC_FILES)
+
+evaluate_percentage_deviations_in_remainder_LDADD = \
+ $(top_srcdir)/tests/mocks/valuecache/libvaluecachemock.a
+
+evaluate_percentage_deviations_in_remainder_LDADD += $(COMMON_LIB_FILES)
+
+evaluate_percentage_deviations_in_remainder_LDADD += @SERVER_LIBS@
+
+evaluate_percentage_deviations_in_remainder_LDFLAGS = @SERVER_LDFLAGS@ $(VALUECACHE_WRAP_FUNCS)
+
valuemaps_SOURCES = \
valuemaps.c \
$(COMMON_SRC_FILES)
@@ -187,6 +215,16 @@ evaluate_function_CFLAGS = $(COMMON_COMPILER_FLAGS) \
-I@top_srcdir@/src/libs/zbxdbcache \
-I@top_srcdir@/src/libs/zbxhistory
+evaluate_stl_CFLAGS = $(COMMON_COMPILER_FLAGS) \
+ -I@top_srcdir@/src/libs/zbxalgo \
+ -I@top_srcdir@/src/libs/zbxdbcache \
+ -I@top_srcdir@/src/libs/zbxhistory
+
+evaluate_percentage_deviations_in_remainder_CFLAGS = $(COMMON_COMPILER_FLAGS) \
+ -I@top_srcdir@/src/libs/zbxalgo \
+ -I@top_srcdir@/src/libs/zbxdbcache \
+ -I@top_srcdir@/src/libs/zbxhistory
+
valuemaps_CFLAGS = $(COMMON_COMPILER_FLAGS) \
-I@top_srcdir@/src/libs/zbxalgo \
-I@top_srcdir@/src/libs/zbxdbcache \
diff --git a/tests/libs/zbxserver/evaluate_function.c b/tests/libs/zbxserver/evaluate_function.c
index 9a6a79dbd37..d60777cff5b 100644
--- a/tests/libs/zbxserver/evaluate_function.c
+++ b/tests/libs/zbxserver/evaluate_function.c
@@ -120,6 +120,7 @@ void zbx_mock_test_entry(void **state)
zbx_uint64_t expected_ui64;
handle = zbx_mock_get_parameter_handle("out.value");
+
if (ZBX_MOCK_SUCCESS != (err = zbx_mock_string_ex(handle, &expected_value)))
fail_msg("Cannot read output value: %s", zbx_mock_error_string(err));
@@ -132,9 +133,9 @@ void zbx_mock_test_entry(void **state)
case ZBX_VARIANT_UI64:
if (SUCCEED != is_uint64(expected_value, &expected_ui64))
{
- fail_msg("function result '" ZBX_FS_UI64 "' does not match expected result '%s'",
+ fail_msg("function result '" ZBX_FS_UI64
+ "' does not match expected result '%s'",
returned_value.data.ui64, expected_value);
-
}
zbx_mock_assert_uint64_eq("function result", expected_ui64, returned_value.data.ui64);
break;
diff --git a/tests/libs/zbxserver/evaluate_function.yaml b/tests/libs/zbxserver/evaluate_function.yaml
index bb8ac8013be..0e4627b0ade 100644
--- a/tests/libs/zbxserver/evaluate_function.yaml
+++ b/tests/libs/zbxserver/evaluate_function.yaml
@@ -3695,5 +3695,416 @@ in:
out:
return: SUCCEED
value: 1
-
+---
+test case: Evaluate default all changecount() with UINT64 data (all values different)
+in:
+ history:
+ - itemid: 1
+ value type: ITEM_VALUE_TYPE_UINT64
+ data:
+ - value: 64
+ ts: 2021-03-27 10:01:00.000000001 +00:00
+ - value: 24
+ ts: 2021-03-27 10:01:02.000000000 +00:00
+ - value: 69
+ ts: 2021-03-27 10:01:03.000000000 +00:00
+ - value: 32
+ ts: 2021-03-27 10:01:04.000000000 +00:00
+ - value: 96
+ ts: 2021-03-27 10:01:05.000000000 +00:00
+ time: 2021-03-27 10:01:05.000000000 +00:00
+ function: changecount
+ params: '#5'
+out:
+ return: SUCCEED
+ value: 4
+---
+test case: Evaluate default all changecount() with UINT64 data (some adjacent values are equal)
+in:
+ history:
+ - itemid: 1
+ value type: ITEM_VALUE_TYPE_UINT64
+ data:
+ - value: 97
+ ts: 2021-03-27 10:01:00.000000001 +00:00
+ - value: 35
+ ts: 2021-03-27 10:01:02.000000000 +00:00
+ - value: 35
+ ts: 2021-03-27 10:01:03.000000000 +00:00
+ - value: 29
+ ts: 2021-03-27 10:01:04.000000000 +00:00
+ - value: 29
+ ts: 2021-03-27 10:01:05.000000000 +00:00
+ time: 2021-03-27 10:01:05.000000000 +00:00
+ function: changecount
+ params: '#5'
+out:
+ return: SUCCEED
+ value: 2
+---
+test case: Evaluate inc changecount() with UINT64 data
+in:
+ history:
+ - itemid: 1
+ value type: ITEM_VALUE_TYPE_UINT64
+ data:
+ - value: 21
+ ts: 2021-03-27 10:01:00.000000001 +00:00
+ - value: 34
+ ts: 2021-03-27 10:01:02.000000000 +00:00
+ - value: 73
+ ts: 2021-03-27 10:01:03.000000000 +00:00
+ - value: 55
+ ts: 2021-03-27 10:01:04.000000000 +00:00
+ - value: 46
+ ts: 2021-03-27 10:01:05.000000000 +00:00
+ time: 2021-03-27 10:01:05.000000000 +00:00
+ function: changecount
+ params: '#5,"inc"'
+out:
+ return: SUCCEED
+ value: 2
+---
+test case: Evaluate dec changecount() with UINT64 data
+in:
+ history:
+ - itemid: 1
+ value type: ITEM_VALUE_TYPE_UINT64
+ data:
+ - value: 7
+ ts: 2021-03-27 10:01:00.000000001 +00:00
+ - value: 92
+ ts: 2021-03-27 10:01:02.000000000 +00:00
+ - value: 67
+ ts: 2021-03-27 10:01:03.000000000 +00:00
+ - value: 96
+ ts: 2021-03-27 10:01:04.000000000 +00:00
+ - value: 44
+ ts: 2021-03-27 10:01:05.000000000 +00:00
+ time: 2021-03-27 10:01:05.000000000 +00:00
+ function: changecount
+ params: '#5,"dec"'
+out:
+ return: SUCCEED
+ value: 2
+---
+test case: Evaluate explicit all changecount() with UINT64 data
+in:
+ history:
+ - itemid: 1
+ value type: ITEM_VALUE_TYPE_UINT64
+ data:
+ - value: 55
+ ts: 2021-03-27 10:01:00.000000001 +00:00
+ - value: 93
+ ts: 2021-03-27 10:01:02.000000000 +00:00
+ - value: 76
+ ts: 2021-03-27 10:01:03.000000000 +00:00
+ - value: 76
+ ts: 2021-03-27 10:01:04.000000000 +00:00
+ - value: 33
+ ts: 2021-03-27 10:01:05.000000000 +00:00
+ time: 2021-03-27 10:01:05.000000000 +00:00
+ function: changecount
+ params: '#5,"all"'
+out:
+ return: SUCCEED
+ value: 3
+---
+test case: Evaluate default all changecount() with DOUBLE data and time period
+in:
+ history:
+ - itemid: 1
+ value type: ITEM_VALUE_TYPE_FLOAT
+ data:
+ - value: 0.000005
+ ts: 2021-03-27 10:01:00.000000001 +00:00
+ - value: 0.000001
+ ts: 2021-03-27 10:01:02.000000000 +00:00
+ - value: 0.000007
+ ts: 2021-03-27 10:08:03.000000000 +00:00
+ - value: 0.000004
+ ts: 2021-03-27 10:09:04.000000000 +00:00
+ - value: 0.000002
+ ts: 2021-03-27 10:10:05.000000000 +00:00
+ time: 2021-03-27 10:10:05.000000000 +00:00
+ function: changecount
+ params: '5m'
+out:
+ return: SUCCEED
+ value: 2
+---
+test case: Evaluate explicit all changecount() with DOUBLE data
+in:
+ history:
+ - itemid: 1
+ value type: ITEM_VALUE_TYPE_FLOAT
+ data:
+ - value: 0.0001
+ ts: 2021-03-27 10:01:00.000000001 +00:00
+ - value: 0.0011
+ ts: 2021-03-27 10:01:02.000000000 +00:00
+ - value: 0.0011
+ ts: 2021-03-27 10:01:03.000000000 +00:00
+ - value: 0.0002
+ ts: 2021-03-27 10:01:04.000000000 +00:00
+ - value: 0.0005
+ ts: 2021-03-27 10:01:05.000000000 +00:00
+ time: 2021-03-27 10:01:05.000000000 +00:00
+ function: changecount
+ params: '#5,"all"'
+out:
+ return: SUCCEED
+ value: 3
+---
+test case: Evaluate inc changecount() with DOUBLE data
+in:
+ history:
+ - itemid: 1
+ value type: ITEM_VALUE_TYPE_FLOAT
+ data:
+ - value: 0.0001
+ ts: 2021-03-27 10:01:00.000000001 +00:00
+ - value: 0.0002
+ ts: 2021-03-27 10:01:02.000000000 +00:00
+ - value: 0.0003
+ ts: 2021-03-27 10:01:03.000000000 +00:00
+ - value: 0.0004
+ ts: 2021-03-27 10:01:04.000000000 +00:00
+ - value: 0.0004
+ ts: 2021-03-27 10:01:05.000000000 +00:00
+ time: 2021-03-27 10:01:05.000000000 +00:00
+ function: changecount
+ params: '#5,"inc"'
+out:
+ return: SUCCEED
+ value: 3
+---
+test case: Evaluate dec changecount() with DOUBLE data
+in:
+ history:
+ - itemid: 1
+ value type: ITEM_VALUE_TYPE_FLOAT
+ data:
+ - value: 0.00001
+ ts: 2021-03-27 10:01:00.000000001 +00:00
+ - value: 0.00002
+ ts: 2021-03-27 10:01:02.000000000 +00:00
+ - value: 0.00003
+ ts: 2021-03-27 10:01:03.000000000 +00:00
+ - value: 0.00004
+ ts: 2021-03-27 10:01:04.000000000 +00:00
+ - value: 0.00003
+ ts: 2021-03-27 10:01:05.000000000 +00:00
+ time: 2021-03-27 10:01:05.000000000 +00:00
+ function: changecount
+ params: '#5,"dec"'
+out:
+ return: SUCCEED
+ value: 1
+---
+test case: Evaluate changecount() with STR data (all valus are different)
+in:
+ history:
+ - itemid: 1
+ value type: ITEM_VALUE_TYPE_STR
+ data:
+ - value: abc
+ ts: 2021-03-27 10:01:00.000000001 +00:00
+ - value: def
+ ts: 2021-03-27 10:01:02.000000000 +00:00
+ - value: ghi
+ ts: 2021-03-27 10:01:03.000000000 +00:00
+ - value: jkl
+ ts: 2021-03-27 10:01:04.000000000 +00:00
+ - value: mno
+ ts: 2021-03-27 10:01:05.000000000 +00:00
+ time: 2021-03-27 10:01:05.000000000 +00:00
+ function: changecount
+ params: '#5'
+out:
+ return: SUCCEED
+ value: 4
+---
+test case: Evaluate changecount() with STR data (some adjacent values are same)
+in:
+ history:
+ - itemid: 1
+ value type: ITEM_VALUE_TYPE_STR
+ data:
+ - value: abc
+ ts: 2021-03-27 10:01:00.000000001 +00:00
+ - value: abc
+ ts: 2021-03-27 10:01:02.000000000 +00:00
+ - value: ghi
+ ts: 2021-03-27 10:01:03.000000000 +00:00
+ - value: ghi
+ ts: 2021-03-27 10:01:04.000000000 +00:00
+ - value: mno
+ ts: 2021-03-27 10:01:05.000000000 +00:00
+ time: 2021-03-27 10:01:05.000000000 +00:00
+ function: changecount
+ params: '#5'
+out:
+ return: SUCCEED
+ value: 2
+---
+test case: Evaluate changecount() with TEXT data (some adjacent values are same)
+in:
+ history:
+ - itemid: 1
+ value type: ITEM_VALUE_TYPE_TEXT
+ data:
+ - value: llgucwmznmykyfvfdtoexhqedpdjnlmentkjbmkkxtlkqvxfirozlohrtagakrmtiosiaftyqvksmeaacpgsthqvprtxgkazkpueusrldcnidlguhlwynedvlokmhgowfhgvffgoklbunjfgakrnmpejixhbmwfsornmunqyvmlaabhiaiqgtureptxqhhmcbhgphvnqzrsdkujodhmoprswdiofuyqzzagopedlgxuuysucqmzqvctaolygqtxgemol
+ ts: 2021-03-27 10:01:00.000000001 +00:00
+ - value: llgucwmznmykyfvfdtoexhqedpdjnlmentkjbmkkxtlkqvxfirozlohrtagakrmtiosiaftyqvksmeaacpgsthqvprtxgkazkpueusrldcnidlguhlwynedvlokmhgowfhgvffgoklbunjfgakrnmpejixhbmwfsornmunqyvmlaabhiaiqgtureptxqhhmcbhgphvnqzrsdkujodhmoprswdiofuyqzzagopedlgxuuysucqmzqvctaolygqtxgemol
+ ts: 2021-03-27 10:01:02.000000000 +00:00
+ - value: llgucwmznmykyfvfdtoexhqedpdjnlmentkjbmkkxtlkqvxfirozlohrtagakrmtiosiaftyqvksmeaacpgsthqvprtxgkazkpueusrldcnidlguhlwynedvlokmhgowfhgvffgoklbunjfgakrnmpejixhbmwfsornmunqyvmlaabhiaiqgtureptxqhhmcbhgphvnqzrsdkujodhmoprswdiofuyqzzagopedlgxuuysucqmzqvctaolygqtxgemol
+ ts: 2021-03-27 10:01:03.000000000 +00:00
+ - value: enomgtjipnfhdrypmeegwyswqyfkbdrecxmcwzyellribxnciorcjpdhdmjnbohvgyccasnvmdboomrlliwepwpnugobqhlfsplwcnckhrhkasgncitekpubaiirzifwxsbmipsfjxiewahmjshwvcpbyxxzsgkbiyjefpwordfjmybcaktybbnaeumkbbvbklecxccbrhflprnfyrmacoaweeviljgcaxqajqgdsluokbwgyqktrduxatuotajofmuh
+ ts: 2021-03-27 10:01:04.000000000 +00:00
+ - value: llgucwmznmykyfvfdtoexhqedpdjnlmentkjbmkkxtlkqvxfirozlohrtagakrmtiosiaftyqvksmeaacpgsthqvprtxgkazkpueusrldcnidlguhlwynedvlokmhgowfhgvffgoklbunjfgakrnmpejixhbmwfsornmunqyvmlaabhiaiqgtureptxqhhmcbhgphvnqzrsdkujodhmoprswdiofuyqzzagopedlgxuuysucqmzqvctaolygqtxgemol
+ ts: 2021-03-27 10:01:05.000000000 +00:00
+ time: 2021-03-27 10:01:05.000000000 +00:00
+ function: changecount
+ params: '#5'
+out:
+ return: SUCCEED
+ value: 2
+---
+test case: Evaluate changecount() with LOG data
+in:
+ history:
+ - itemid: 1
+ value type: ITEM_VALUE_TYPE_LOG
+ data:
+ - value: abc
+ source:
+ logeventid: 1
+ severity: 1
+ timestamp: 2
+ ts: 2017-01-10 10:00:00.000000000 +00:00
+ - value: abc
+ source:
+ logeventid: 2
+ severity: 1
+ timestamp: 2
+ ts: 2017-01-10 10:00:30.000000000 +00:00
+ time: 2017-01-10 10:10:00.000000000 +00:00
+ function: changecount
+ params: '11m'
+out:
+ return: SUCCEED
+ value: 0
+---
+test case: Evaluate changecount() with not enough data
+in:
+ history:
+ - itemid: 1
+ value type: ITEM_VALUE_TYPE_LOG
+ data:
+ - value: abc
+ source:
+ logeventid: 1
+ severity: 1
+ timestamp: 2
+ ts: 2017-01-10 10:00:00.000000000 +00:00
+ time: 2017-01-10 10:10:00.000000000 +00:00
+ function: changecount
+ params: '11m'
+out:
+ return: FAIL
+ value: 0
+---
+test case: Evaluate changecount() with wrong count of arguments
+in:
+ history:
+ - itemid: 1
+ value type: ITEM_VALUE_TYPE_FLOAT
+ data:
+ - value: 0.00001
+ ts: 2021-03-27 10:01:00.000000001 +00:00
+ - value: 0.00002
+ ts: 2021-03-27 10:01:02.000000000 +00:00
+ - value: 0.00003
+ ts: 2021-03-27 10:01:03.000000000 +00:00
+ - value: 0.00004
+ ts: 2021-03-27 10:01:04.000000000 +00:00
+ - value: 0.00003
+ ts: 2017-01-10 10:01:05.000000000 +00:00
+ time: 2017-01-10 10:01:05.000000000 +00:00
+ function: changecount
+ params: '#5,"inc","strict"'
+out:
+ return: FAIL
+ value: 0
+---
+test case: Evaluate changecount() without arguments
+in:
+ history:
+ - itemid: 1
+ value type: ITEM_VALUE_TYPE_FLOAT
+ data:
+ - value: 0.00001
+ ts: 2021-03-27 10:01:00.000000001 +00:00
+ - value: 0.00002
+ ts: 2021-03-27 10:01:02.000000000 +00:00
+ - value: 0.00003
+ ts: 2021-03-27 10:01:03.000000000 +00:00
+ - value: 0.00004
+ ts: 2021-03-27 10:01:04.000000000 +00:00
+ - value: 0.00003
+ ts: 2017-01-10 10:01:05.000000000 +00:00
+ time: 2017-01-10 10:01:05.000000000 +00:00
+ function: changecount
+ params: ''
+out:
+ return: FAIL
+ value: 0
+---
+test case: Evaluate changecount() with wrong first argument
+in:
+ history:
+ - itemid: 1
+ value type: ITEM_VALUE_TYPE_FLOAT
+ data:
+ - value: 0.00001
+ ts: 2021-03-27 10:01:00.000000001 +00:00
+ - value: 0.00002
+ ts: 2021-03-27 10:01:02.000000000 +00:00
+ - value: 0.00003
+ ts: 2021-03-27 10:01:03.000000000 +00:00
+ - value: 0.00004
+ ts: 2021-03-27 10:01:04.000000000 +00:00
+ - value: 0.00003
+ ts: 2017-01-10 10:01:05.000000000 +00:00
+ time: 2017-01-10 10:01:05.000000000 +00:00
+ function: changecount
+ params: '"inc"'
+out:
+ return: FAIL
+ value: 0
+---
+test case: Evaluate changecount() with wrong second argument
+in:
+ history:
+ - itemid: 1
+ value type: ITEM_VALUE_TYPE_FLOAT
+ data:
+ - value: 0.00001
+ ts: 2021-03-27 10:01:00.000000001 +00:00
+ - value: 0.00002
+ ts: 2021-03-27 10:01:02.000000000 +00:00
+ - value: 0.00003
+ ts: 2021-03-27 10:01:03.000000000 +00:00
+ - value: 0.00004
+ ts: 2021-03-27 10:01:04.000000000 +00:00
+ - value: 0.00003
+ ts: 2017-01-10 10:01:05.000000000 +00:00
+ time: 2017-01-10 10:01:05.000000000 +00:00
+ function: changecount
+ params: '#20,"strict"'
+out:
+ return: FAIL
+ value: 0
...
diff --git a/tests/libs/zbxserver/evaluate_percentage_deviations_in_remainder.c b/tests/libs/zbxserver/evaluate_percentage_deviations_in_remainder.c
new file mode 100644
index 00000000000..100f94fef0a
--- /dev/null
+++ b/tests/libs/zbxserver/evaluate_percentage_deviations_in_remainder.c
@@ -0,0 +1,187 @@
+/*
+** Zabbix
+** Copyright (C) 2001-2021 Zabbix SIA
+**
+** This program is free software; you can redistribute it and/or modify
+** it under the terms of the GNU General Public License as published by
+** the Free Software Foundation; either version 2 of the License, or
+** (at your option) any later version.
+**
+** This program is distributed in the hope that it will be useful,
+** but WITHOUT ANY WARRANTY; without even the implied warranty of
+** MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+** GNU General Public License for more details.
+**
+** You should have received a copy of the GNU General Public License
+** along with this program; if not, write to the Free Software
+** Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
+**/
+
+#include "common.h"
+
+#include "zbxmocktest.h"
+#include "zbxmockdata.h"
+#include "zbxmockassert.h"
+#include "zbxmockutil.h"
+
+#include "valuecache.h"
+#include "zbxserver.h"
+#include "zbxtrends.h"
+
+#include "mocks/valuecache/valuecache_mock.h"
+
+#include "../../../src/libs/zbxserver/anomalystl.h"
+#include "../../../src/libs/zbxserver/evalfunc_common.h"
+
+int __wrap_substitute_simple_macros(zbx_uint64_t *actionid, const DB_EVENT *event, const DB_EVENT *r_event,
+ zbx_uint64_t *userid, const zbx_uint64_t *hostid, const DC_HOST *dc_host, const DC_ITEM *dc_item,
+ DB_ALERT *alert, const DB_ACKNOWLEDGE *ack, const zbx_service_alarm_t *service_alarm,
+ const DB_SERVICE *service, const char *tz, char **data, int macro_type, char *error,
+ int maxerrlen);
+
+int __wrap_DCget_data_expected_from(zbx_uint64_t itemid, int *seconds);
+
+int __wrap_substitute_simple_macros(zbx_uint64_t *actionid, const DB_EVENT *event, const DB_EVENT *r_event,
+ zbx_uint64_t *userid, const zbx_uint64_t *hostid, const DC_HOST *dc_host, const DC_ITEM *dc_item,
+ DB_ALERT *alert, const DB_ACKNOWLEDGE *ack, const zbx_service_alarm_t *service_alarm,
+ const DB_SERVICE *service, const char *tz, char **data, int macro_type, char *error,
+ int maxerrlen)
+{
+ ZBX_UNUSED(actionid);
+ ZBX_UNUSED(event);
+ ZBX_UNUSED(r_event);
+ ZBX_UNUSED(userid);
+ ZBX_UNUSED(hostid);
+ ZBX_UNUSED(dc_host);
+ ZBX_UNUSED(dc_item);
+ ZBX_UNUSED(alert);
+ ZBX_UNUSED(ack);
+ ZBX_UNUSED(tz);
+ ZBX_UNUSED(data);
+ ZBX_UNUSED(macro_type);
+ ZBX_UNUSED(error);
+ ZBX_UNUSED(maxerrlen);
+ ZBX_UNUSED(service_alarm);
+ ZBX_UNUSED(service);
+
+ return SUCCEED;
+}
+
+int __wrap_DCget_data_expected_from(zbx_uint64_t itemid, int *seconds)
+{
+ ZBX_UNUSED(itemid);
+ *seconds = zbx_vcmock_get_ts().sec - 600;
+
+ return SUCCEED;
+}
+
+void zbx_mock_test_entry(void **state)
+{
+ int start_detect_period, end_detect_period, detect_period_season_shift, err,
+ detect_period, start_evaluate_period, end_evaluate_period, evaluate_seconds = 0,
+ evaluate_nvalues = 0;
+ zbx_uint64_t deviations_count;
+ double result;
+ char *error = NULL, *evaluate_period = NULL;
+ const char *params, *dev_alg = NULL;
+ DC_ITEM item;
+ zbx_vcmock_ds_item_t *ds_item;
+ zbx_timespec_t ts, ts_evaluate_end;
+ zbx_mock_handle_t handle;
+ zbx_vector_history_record_t values_in;
+ zbx_value_type_t detect_period_season_type;
+
+ /* ZBX_DOUBLE_EPSILON = 0.000001; results into output that is different from python test case output */
+ ZBX_DOUBLE_EPSILON = 0.0001;
+
+ zbx_history_record_vector_create(&values_in);
+
+ err = zbx_vc_init(&error);
+ zbx_mock_assert_result_eq("Value cache initialization failed", SUCCEED, err);
+ zbx_vc_enable();
+ zbx_vcmock_ds_init();
+ memset(&item, 0, sizeof(DC_ITEM));
+ ds_item = zbx_vcmock_ds_first_item();
+ item.itemid = ds_item->itemid;
+ item.value_type = ds_item->value_type;
+
+ deviations_count = zbx_mock_get_parameter_uint64("in.deviations_count");
+ dev_alg = zbx_mock_get_parameter_string("in.dev_alg");
+ handle = zbx_mock_get_parameter_handle("in");
+ zbx_vcmock_set_time(handle, "time");
+ ts = zbx_vcmock_get_ts();
+ ts_evaluate_end = ts;
+
+ params = zbx_mock_get_parameter_string("in.params");
+
+ if (2 != num_param(params))
+ {
+ fail_msg("invalid number of parameters");
+ goto out;
+ }
+
+ if (SUCCEED != get_function_parameter_str(params, 1, &evaluate_period))
+ {
+ fail_msg("invalid second parameter");
+ goto out;
+ }
+
+ if (SUCCEED != zbx_trends_parse_range(ts.sec, evaluate_period, &start_evaluate_period, &end_evaluate_period,
+ &error))
+ {
+ fail_msg("failed to parse seconds parameter: %s", error);
+ goto out;
+ }
+
+ ts_evaluate_end.sec = end_evaluate_period;
+ evaluate_seconds = end_evaluate_period - start_evaluate_period;
+
+ if (SUCCEED != get_function_parameter_hist_range(ts.sec, params, 2, &detect_period, &detect_period_season_type,
+ &detect_period_season_shift))
+ {
+ fail_msg("invalid third parameter");
+ goto out;
+ }
+
+ start_detect_period = ts_evaluate_end.sec - detect_period;
+ end_detect_period = ts_evaluate_end.sec;
+
+ if (FAIL == zbx_vc_get_values(item.itemid, item.value_type, &values_in, evaluate_seconds, evaluate_nvalues,
+ &ts_evaluate_end))
+ {
+ fail_msg("cannot get values from value cache");
+ goto out;
+ }
+
+ zbx_vc_flush_stats();
+
+ if (0 >= values_in.values_num)
+ {
+ fail_msg("not enough data");
+ goto out;
+ }
+
+ if (SUCCEED != zbx_get_percentage_of_deviations_in_stl_remainder(&values_in, deviations_count, dev_alg,
+ start_detect_period, end_detect_period, &result, &error))
+ {
+ fail_msg("zbx_get_percentage_of_deviations_in_stl_remainder returned error: %s\n", error);
+ zbx_free(error);
+ }
+ else
+ {
+ const char *expected_value;
+
+ handle = zbx_mock_get_parameter_handle("out.value");
+
+ if (ZBX_MOCK_SUCCESS != (err = zbx_mock_string_ex(handle, &expected_value)))
+ fail_msg("Cannot read output value: %s", zbx_mock_error_string(err));
+
+ zbx_mock_assert_double_eq("function result", atof(expected_value), result);
+ }
+out:
+ zbx_history_record_vector_destroy(&values_in, item.value_type);
+
+ zbx_vcmock_ds_destroy();
+ zbx_free(evaluate_period);
+ ZBX_UNUSED(state);
+}
diff --git a/tests/libs/zbxserver/evaluate_percentage_deviations_in_remainder.yaml b/tests/libs/zbxserver/evaluate_percentage_deviations_in_remainder.yaml
new file mode 100644
index 00000000000..7d64c5b4fa5
--- /dev/null
+++ b/tests/libs/zbxserver/evaluate_percentage_deviations_in_remainder.yaml
@@ -0,0 +1,191 @@
+---
+test case: mad, 2 dc, 1 entry is excluded from the detection period
+in:
+ history:
+ - itemid: 1
+ value type: ITEM_VALUE_TYPE_FLOAT
+ data:
+ - value: 1
+ ts: 2021-03-27 14:00:00.000000001 +00:00
+ - value: 2
+ ts: 2021-03-27 13:00:00.000000000 +00:00
+ - value: 3
+ ts: 2021-03-27 12:00:00.000000000 +00:00
+ - value: 4
+ ts: 2021-03-27 11:00:00.000000000 +00:00
+ - value: 5
+ ts: 2021-03-27 10:00:00.000000000 +00:00
+ - value: 1
+ ts: 2021-03-27 09:00:00.000000000 +00:00
+ time: 2021-03-27 15:00:00.000000000 +00:00
+ deviations_count: 2
+ dev_alg: mad
+ detect_period: 1d
+ detect_period_type: 1
+ params: '7h:now/h,4h'
+out:
+ return: SUCCEED
+ value: 0.75
+---
+test case: mad, 2 dc, no entries excluded from the detection period
+in:
+ history:
+ - itemid: 1
+ value type: ITEM_VALUE_TYPE_FLOAT
+ data:
+ - value: 1
+ ts: 2021-03-27 15:00:00.000000001 +00:00
+ - value: 2
+ ts: 2021-03-27 14:00:00.000000000 +00:00
+ - value: 3
+ ts: 2021-03-27 13:00:00.000000000 +00:00
+ - value: 4
+ ts: 2021-03-27 12:00:00.000000000 +00:00
+ - value: 5
+ ts: 2021-03-27 11:00:00.000000000 +00:00
+ - value: 1
+ ts: 2021-03-27 10:00:00.000000000 +00:00
+ time: 2021-03-27 16:00:00.000000000 +00:00
+ deviations_count: 2
+ dev_alg: mad
+ detect_period: 1d
+ detect_period_type: 1
+ params: '7h:now/h,5h'
+out:
+ return: SUCCEED
+ value: 0.6
+---
+test case: mad, 0 dc
+in:
+ history:
+ - itemid: 1
+ value type: ITEM_VALUE_TYPE_FLOAT
+ data:
+ - value: 1
+ ts: 2021-03-27 15:00:00.000000001 +00:00
+ - value: 2
+ ts: 2021-03-27 14:00:00.000000000 +00:00
+ - value: 3
+ ts: 2021-03-27 13:00:00.000000000 +00:00
+ - value: 4
+ ts: 2021-03-27 11:00:00.000000000 +00:00
+ - value: 5
+ ts: 2021-03-27 10:00:00.000000000 +00:00
+ time: 2021-03-27 16:00:00.000000000 +00:00
+ deviations_count: 0
+ dev_alg: mad
+ detect_period: 1d
+ detect_period_type: 1
+ params: '7h:now/h,7h'
+out:
+ return: SUCCEED
+ value: 1
+---
+test case: mad, 1 dc, stable series
+in:
+ history:
+ - itemid: 1
+ value type: ITEM_VALUE_TYPE_FLOAT
+ data:
+ - value: 1
+ ts: 2021-03-27 15:00:00.000000001 +00:00
+ - value: 1
+ ts: 2021-03-27 14:00:00.000000000 +00:00
+ - value: 1
+ ts: 2021-03-27 13:00:00.000000000 +00:00
+ - value: 1
+ ts: 2021-03-27 11:00:00.000000000 +00:00
+ - value: 666
+ ts: 2021-03-27 10:00:00.000000000 +00:00
+ time: 2021-03-27 16:00:00.000000000 +00:00
+ deviations_count: 1
+ dev_alg: mad
+ detect_period: 1d
+ detect_period_type: 1
+ params: '7h:now/h,7h'
+out:
+ return: SUCCEED
+ value: 1.0
+---
+test case: mad, 4 dc
+in:
+ history:
+ - itemid: 1
+ value type: ITEM_VALUE_TYPE_FLOAT
+ data:
+ - value: 1
+ ts: 2021-03-27 15:00:00.000000001 +00:00
+ - value: 3
+ ts: 2021-03-27 14:00:00.000000000 +00:00
+ - value: 5
+ ts: 2021-03-27 13:00:00.000000000 +00:00
+ - value: 3
+ ts: 2021-03-27 11:00:00.000000000 +00:00
+ - value: 666
+ ts: 2021-03-27 10:00:00.000000000 +00:00
+ time: 2021-03-27 16:00:00.000000000 +00:00
+ deviations_count: 4
+ dev_alg: mad
+ detect_period: 1d
+ detect_period_type: 1
+ params: '7h:now/h,7h'
+out:
+ return: SUCCEED
+ value: 0.5
+---
+test case: mad, time shift, 4 dc, small detection period
+in:
+ history:
+ - itemid: 1
+ value type: ITEM_VALUE_TYPE_FLOAT
+ data:
+ - value: 1
+ ts: 2021-03-27 15:00:00.000000001 +00:00
+ - value: 2
+ ts: 2021-03-27 14:00:00.000000000 +00:00
+ - value: 3
+ ts: 2021-03-27 13:00:00.000000000 +00:00
+ - value: 666
+ ts: 2021-03-27 12:00:00.000000000 +00:00
+ - value: 4
+ ts: 2021-03-27 11:00:00.000000000 +00:00
+ - value: 10000
+ ts: 2021-03-27 10:00:00.000000000 +00:00
+ time: 2021-03-27 16:00:00.000000000 +00:00
+ deviations_count: 4
+ dev_alg: mad
+ detect_period: 1d
+ detect_period_type: 1
+ params: '7h:now/h-2h,3h'
+out:
+ return: SUCCEED
+ value: 0.25
+---
+test case: mad, 4 dc, detection period removes all remainder
+in:
+ history:
+ - itemid: 1
+ value type: ITEM_VALUE_TYPE_FLOAT
+ data:
+ - value: 1
+ ts: 2021-03-27 15:00:00.000000001 +00:00
+ - value: 2
+ ts: 2021-03-27 14:00:00.000000000 +00:00
+ - value: 3
+ ts: 2021-03-27 13:00:00.000000000 +00:00
+ - value: 666
+ ts: 2026-03-27 12:00:00.000000000 +00:00
+ - value: 4
+ ts: 2021-03-27 11:00:00.000000000 +00:00
+ - value: 10000
+ ts: 2021-03-27 10:00:00.000000000 +00:00
+ time: 2021-03-27 16:00:00.000000000 +00:00
+ deviations_count: 4
+ dev_alg: mad
+ detect_period: 1d
+ detect_period_type: 1
+ params: '7h:now/h,1h'
+out:
+ return: SUCCEED
+ value: 0
+...
diff --git a/tests/libs/zbxserver/evaluate_stl.c b/tests/libs/zbxserver/evaluate_stl.c
new file mode 100644
index 00000000000..fce264abcc9
--- /dev/null
+++ b/tests/libs/zbxserver/evaluate_stl.c
@@ -0,0 +1,224 @@
+/*
+** Zabbix
+** Copyright (C) 2001-2021 Zabbix SIA
+**
+** This program is free software; you can redistribute it and/or modify
+** it under the terms of the GNU General Public License as published by
+** the Free Software Foundation; either version 2 of the License, or
+** (at your option) any later version.
+**
+** This program is distributed in the hope that it will be useful,
+** but WITHOUT ANY WARRANTY; without even the implied warranty of
+** MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+** GNU General Public License for more details.
+**
+** You should have received a copy of the GNU General Public License
+** along with this program; if not, write to the Free Software
+** Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
+**/
+
+#include "common.h"
+
+#include "zbxmocktest.h"
+#include "zbxmockdata.h"
+#include "zbxmockassert.h"
+#include "zbxmockutil.h"
+
+#include "valuecache.h"
+#include "zbxserver.h"
+
+#include "mocks/valuecache/valuecache_mock.h"
+
+#include "../../../src/libs/zbxserver/anomalystl.h"
+
+int __wrap_substitute_simple_macros(zbx_uint64_t *actionid, const DB_EVENT *event, const DB_EVENT *r_event,
+ zbx_uint64_t *userid, const zbx_uint64_t *hostid, const DC_HOST *dc_host, const DC_ITEM *dc_item,
+ DB_ALERT *alert, const DB_ACKNOWLEDGE *ack, const zbx_service_alarm_t *service_alarm,
+ const DB_SERVICE *service, const char *tz, char **data, int macro_type, char *error,
+ int maxerrlen);
+
+int __wrap_DCget_data_expected_from(zbx_uint64_t itemid, int *seconds);
+
+int __wrap_substitute_simple_macros(zbx_uint64_t *actionid, const DB_EVENT *event, const DB_EVENT *r_event,
+ zbx_uint64_t *userid, const zbx_uint64_t *hostid, const DC_HOST *dc_host, const DC_ITEM *dc_item,
+ DB_ALERT *alert, const DB_ACKNOWLEDGE *ack, const zbx_service_alarm_t *service_alarm,
+ const DB_SERVICE *service, const char *tz, char **data, int macro_type, char *error,
+ int maxerrlen)
+{
+ ZBX_UNUSED(actionid);
+ ZBX_UNUSED(event);
+ ZBX_UNUSED(r_event);
+ ZBX_UNUSED(userid);
+ ZBX_UNUSED(hostid);
+ ZBX_UNUSED(dc_host);
+ ZBX_UNUSED(dc_item);
+ ZBX_UNUSED(alert);
+ ZBX_UNUSED(ack);
+ ZBX_UNUSED(tz);
+ ZBX_UNUSED(data);
+ ZBX_UNUSED(macro_type);
+ ZBX_UNUSED(error);
+ ZBX_UNUSED(maxerrlen);
+ ZBX_UNUSED(service_alarm);
+ ZBX_UNUSED(service);
+
+ return SUCCEED;
+}
+
+int __wrap_DCget_data_expected_from(zbx_uint64_t itemid, int *seconds)
+{
+ ZBX_UNUSED(itemid);
+ *seconds = zbx_vcmock_get_ts().sec - 600;
+
+ return SUCCEED;
+}
+
+static void zbx_vcmock_history_dump(unsigned char value_type, const zbx_vector_history_record_t *values)
+{
+ int i;
+ char buffer[256];
+
+ for (i = 0; i < values->values_num; i++)
+ {
+ const zbx_history_record_t *rec = &values->values[i];
+
+ zbx_timespec_to_strtime(&rec->timestamp, buffer, sizeof(buffer));
+ printf(" - %s\n", buffer);
+ zbx_history_value2str(buffer, sizeof(buffer), &rec->value, value_type);
+ printf(" %s\n", buffer);
+ }
+}
+
+static void read_values_stl(zbx_mock_handle_t hdata, unsigned char value_type, zbx_vector_history_record_t *values)
+{
+ zbx_mock_error_t err;
+ zbx_mock_handle_t hvalue;
+ zbx_history_record_t rec;
+ const char *data;
+
+ ZBX_UNUSED(value_type);
+
+ while (ZBX_MOCK_END_OF_VECTOR != (err = (zbx_mock_vector_element(hdata, &hvalue))))
+ {
+ rec.value.dbl = atof(zbx_mock_get_object_member_string(hvalue, "value"));
+ data = zbx_mock_get_object_member_string(hvalue, "ts");
+
+ if (ZBX_MOCK_SUCCESS != (err = zbx_strtime_to_timespec(data, &rec.timestamp)))
+ fail_msg("Invalid value timestamp \"%s\": %s", data, zbx_mock_error_string(err));
+
+ zbx_vector_history_record_append_ptr(values, &rec);
+ }
+}
+
+static void check_records_stl(const char *prefix, unsigned char value_type,
+ const zbx_vector_history_record_t *expected_values, const zbx_vector_history_record_t *returned_values)
+{
+ int i;
+ const zbx_history_record_t *expected, *returned;
+
+ printf("Expected %s:\n", prefix);
+ zbx_vcmock_history_dump(value_type, expected_values);
+
+ printf("Returned %s:\n", prefix);
+ zbx_vcmock_history_dump(value_type, returned_values);
+
+ zbx_mock_assert_int_eq(prefix, expected_values->values_num, returned_values->values_num);
+
+ for (i = 0; i < expected_values->values_num; i++)
+ {
+ expected = &expected_values->values[i];
+ returned = &returned_values->values[i];
+
+ zbx_mock_assert_timespec_eq(prefix, &expected->timestamp, &returned->timestamp);
+ zbx_mock_assert_double_eq(prefix, expected->value.dbl, returned->value.dbl);
+ }
+}
+
+void zbx_mock_test_entry(void **state)
+{
+ int err, expected_ret, returned_ret, nvalues = 0;
+ zbx_uint64_t s_window, season, seconds = 0;
+ char *error = NULL;
+ DC_ITEM item;
+ zbx_vcmock_ds_item_t *ds_item;
+ zbx_timespec_t ts;
+ zbx_mock_handle_t handle;
+ zbx_vector_history_record_t values_in, trend_values_received, trend_values_expected,
+ seasonal_values_received, seasonal_values_expected, remainder_values_received,
+ remainder_values_expected;
+
+ /*ZBX_DOUBLE_EPSILON = 0.000001; results into output that is different from python test case output */
+ ZBX_DOUBLE_EPSILON = 0.0001;
+
+ zbx_history_record_vector_create(&values_in);
+ zbx_history_record_vector_create(&trend_values_received);
+ zbx_history_record_vector_create(&trend_values_expected);
+ zbx_history_record_vector_create(&seasonal_values_received);
+ zbx_history_record_vector_create(&seasonal_values_expected);
+ zbx_history_record_vector_create(&remainder_values_received);
+ zbx_history_record_vector_create(&remainder_values_expected);
+
+ err = zbx_vc_init(&error);
+ zbx_mock_assert_result_eq("Value cache initialization failed", SUCCEED, err);
+ zbx_vc_enable();
+ zbx_vcmock_ds_init();
+ memset(&item, 0, sizeof(DC_ITEM));
+ ds_item = zbx_vcmock_ds_first_item();
+ item.itemid = ds_item->itemid;
+ item.value_type = ds_item->value_type;
+
+ season = zbx_mock_get_parameter_uint64("in.season");
+ s_window = zbx_mock_get_parameter_uint64("in.s_window");
+ seconds = zbx_mock_get_parameter_uint64("in.seconds");
+ handle = zbx_mock_get_parameter_handle("in");
+ zbx_vcmock_set_time(handle, "time");
+ ts = zbx_vcmock_get_ts();
+
+ if (FAIL == zbx_vc_get_values(item.itemid, item.value_type, &values_in, (int)seconds, nvalues, &ts))
+ {
+ error = zbx_strdup(error, "cannot get values from value cache");
+ printf("%s\n", error);
+ zbx_free(error);
+ goto out;
+ }
+
+ if (SUCCEED != (returned_ret = zbx_STL(&values_in, (int)season, ROBUST_DEF, (int)s_window, S_DEGREE_DEF,
+ T_WINDOW_DEF, T_DEGREE_DEF, L_WINDOW_DEF, L_DEGREE_DEF, S_JUMP_DEF, T_JUMP_DEF, L_JUMP_DEF,
+ INNER_DEF, OUTER_DEF, &trend_values_received, &seasonal_values_received,
+ &remainder_values_received, &error)))
+ {
+ printf("zbx_STL returned error: %s\n", error);
+ zbx_free(error);
+ }
+
+ expected_ret = zbx_mock_str_to_return_code(zbx_mock_get_parameter_string("out.return"));
+ zbx_mock_assert_result_eq("return value", expected_ret, returned_ret);
+
+ zbx_vc_flush_stats();
+
+ if (SUCCEED == expected_ret)
+ {
+ read_values_stl(zbx_mock_get_parameter_handle("out.trend"), item.value_type, &trend_values_expected);
+ read_values_stl(zbx_mock_get_parameter_handle("out.seasonal"), item.value_type,
+ &seasonal_values_expected);
+ read_values_stl(zbx_mock_get_parameter_handle("out.remainder"), item.value_type,
+ &remainder_values_expected);
+ check_records_stl("trend values", item.value_type, &trend_values_expected, &trend_values_received);
+ check_records_stl("seasonal values", item.value_type, &seasonal_values_expected,
+ &seasonal_values_received);
+ check_records_stl("remainder values", item.value_type, &remainder_values_expected,
+ &remainder_values_received);
+ }
+out:
+ zbx_history_record_vector_destroy(&trend_values_received, ITEM_VALUE_TYPE_FLOAT);
+ zbx_history_record_vector_destroy(&trend_values_expected, ITEM_VALUE_TYPE_FLOAT);
+ zbx_history_record_vector_destroy(&seasonal_values_received, ITEM_VALUE_TYPE_FLOAT);
+ zbx_history_record_vector_destroy(&seasonal_values_expected, ITEM_VALUE_TYPE_FLOAT);
+ zbx_history_record_vector_destroy(&remainder_values_received, ITEM_VALUE_TYPE_FLOAT);
+ zbx_history_record_vector_destroy(&remainder_values_expected, ITEM_VALUE_TYPE_FLOAT);
+ zbx_history_record_vector_destroy(&values_in, item.value_type);
+
+ zbx_vcmock_ds_destroy();
+
+ ZBX_UNUSED(state);
+}
diff --git a/tests/libs/zbxserver/evaluate_stl.yaml b/tests/libs/zbxserver/evaluate_stl.yaml
new file mode 100644
index 00000000000..4351b6b872b
--- /dev/null
+++ b/tests/libs/zbxserver/evaluate_stl.yaml
@@ -0,0 +1,2915 @@
+---
+test case: Evaluate STL reduced set
+in:
+ history:
+ - itemid: 1
+ value type: ITEM_VALUE_TYPE_FLOAT
+ data:
+ - value: 315.58
+ ts: 2021-03-27 10:01:05.000000001 +00:00
+ - value: 316.39
+ ts: 2021-03-27 10:01:04.000000000 +00:00
+ - value: 316.79
+ ts: 2021-03-27 10:01:03.000000000 +00:00
+ - value: 317.82
+ ts: 2021-03-27 10:01:02.000000000 +00:00
+ - value: 318.39
+ ts: 2021-03-27 10:01:01.000000000 +00:00
+ - value: 318.22
+ ts: 2021-03-27 10:01:00.000000000 +00:00
+ time: 2021-03-27 10:01:06.000000000 +00:00
+ season: 2
+ s_window: 61
+ seconds: 7
+out:
+ return: SUCCEED
+ trend:
+ - value: 315.61471983
+ ts: 2021-03-27 10:01:05.000000001 +00:00
+ - value: 316.28264106
+ ts: 2021-03-27 10:01:04.000000000 +00:00
+ - value: 316.96965772
+ ts: 2021-03-27 10:01:03.000000000 +00:00
+ - value: 317.68901372
+ ts: 2021-03-27 10:01:02.000000000 +00:00
+ - value: 318.08865273
+ ts: 2021-03-27 10:01:01.000000000 +00:00
+ - value: 318.42158262
+ ts: 2021-03-27 10:01:00.000000000 +00:00
+ seasonal:
+ - value: -0.00498817
+ ts: 2021-03-27 10:01:05.000000001 +00:00
+ - value: 0.0049662
+ ts: 2021-03-27 10:01:04.000000000 +00:00
+ - value: -0.00494629
+ ts: 2021-03-27 10:01:03.000000000 +00:00
+ - value: 0.00492464
+ ts: 2021-03-27 10:01:02.000000000 +00:00
+ - value : -0.00490752
+ ts: 2021-03-27 10:01:01.000000000 +00:00
+ - value: 0.00486858
+ ts: 2021-03-27 10:01:00.000000000 +00:00
+ remainder:
+ - value: -0.02973166
+ ts: 2021-03-27 10:01:05.000000001 +00:00
+ - value: 0.10239275
+ ts: 2021-03-27 10:01:04.000000000 +00:00
+ - value: -0.17471143
+ ts: 2021-03-27 10:01:03.000000000 +00:00
+ - value: 0.12606164
+ ts: 2021-03-27 10:01:02.000000000 +00:00
+ - value: 0.30625479
+ ts: 2021-03-27 10:01:01.000000000 +00:00
+ - value: -0.2064512
+ ts: 2021-03-27 10:01:00.000000000 +00:00
+---
+test case: Evaluate STL reduced set, season is wrong
+in:
+ history:
+ - itemid: 1
+ value type: ITEM_VALUE_TYPE_FLOAT
+ data:
+ - value: 315.58
+ ts: 2021-03-27 10:01:05.000000001 +00:00
+ - value: 316.39
+ ts: 2021-03-27 10:01:04.000000000 +00:00
+ - value: 316.79
+ ts: 2021-03-27 10:01:03.000000000 +00:00
+ - value: 317.82
+ ts: 2021-03-27 10:01:02.000000000 +00:00
+ - value: 318.39
+ ts: 2021-03-27 10:01:01.000000000 +00:00
+ - value: 318.22
+ ts: 2021-03-27 10:01:00.000000000 +00:00
+ time: 2021-03-27 10:01:06.000000000 +00:00
+ season: 1
+ s_window: 61
+ seconds: 7
+out:
+ return: FAIL
+---
+test case: Evaluate STL reduced set, not enough data
+in:
+ history:
+ - itemid: 1
+ value type: ITEM_VALUE_TYPE_FLOAT
+ data:
+ - value: 315.58
+ ts: 2021-03-27 10:01:05.000000001 +00:00
+ - value: 316.39
+ ts: 2021-03-27 10:01:04.000000000 +00:00
+ - value: 316.79
+ ts: 2021-03-27 10:01:03.000000000 +00:00
+ - value: 317.82
+ ts: 2021-03-27 10:01:02.000000000 +00:00
+ - value: 318.39
+ ts: 2021-03-27 10:01:01.000000000 +00:00
+ - value: 318.22
+ ts: 2021-03-27 10:01:00.000000000 +00:00
+ time: 2021-03-27 10:01:03.000000000 +00:00
+ season: 2
+ s_window: 61
+ seconds: 7
+out:
+ return: FAIL
+---
+test case: Evaluate STL full set
+in:
+ history:
+ - itemid: 1
+ value type: ITEM_VALUE_TYPE_FLOAT
+ data:
+ - value: 315.58
+ ts: 2021-03-27 10:06:48.000000000 +00:00
+ - value: 316.39
+ ts: 2021-03-27 10:06:47.000000000 +00:00
+ - value: 316.79
+ ts: 2021-03-27 10:06:46.000000000 +00:00
+ - value: 317.82
+ ts: 2021-03-27 10:06:45.000000000 +00:00
+ - value: 318.39
+ ts: 2021-03-27 10:06:44.000000000 +00:00
+ - value: 318.22
+ ts: 2021-03-27 10:06:43.000000000 +00:00
+ - value: 316.68
+ ts: 2021-03-27 10:06:42.000000000 +00:00
+ - value: 315.01
+ ts: 2021-03-27 10:06:41.000000000 +00:00
+ - value: 314.02
+ ts: 2021-03-27 10:06:40.000000000 +00:00
+ - value: 313.55
+ ts: 2021-03-27 10:06:39.000000000 +00:00
+ - value: 315.02
+ ts: 2021-03-27 10:06:38.000000000 +00:00
+ - value: 315.75
+ ts: 2021-03-27 10:06:37.000000000 +00:00
+ - value: 316.52
+ ts: 2021-03-27 10:06:36.000000000 +00:00
+ - value: 317.10
+ ts: 2021-03-27 10:06:35.000000000 +00:00
+ - value: 317.79
+ ts: 2021-03-27 10:06:34.000000000 +00:00
+ - value: 319.22
+ ts: 2021-03-27 10:06:33.000000000 +00:00
+ - value: 320.08
+ ts: 2021-03-27 10:06:32.000000000 +00:00
+ - value: 319.70
+ ts: 2021-03-27 10:06:31.000000000 +00:00
+ - value: 318.27
+ ts: 2021-03-27 10:06:30.000000000 +00:00
+ - value: 315.99
+ ts: 2021-03-27 10:06:29.000000000 +00:00
+ - value: 314.24
+ ts: 2021-03-27 10:06:28.000000000 +00:00
+ - value: 314.05
+ ts: 2021-03-27 10:06:27.000000000 +00:00
+ - value: 315.05
+ ts: 2021-03-27 10:06:26.000000000 +00:00
+ - value: 316.23
+ ts: 2021-03-27 10:06:25.000000000 +00:00
+ - value: 316.92
+ ts: 2021-03-27 10:06:24.000000000 +00:00
+ - value: 317.76
+ ts: 2021-03-27 10:06:23.000000000 +00:00
+ - value: 318.54
+ ts: 2021-03-27 10:06:22.000000000 +00:00
+ - value: 319.49
+ ts: 2021-03-27 10:06:21.000000000 +00:00
+ - value: 320.64
+ ts: 2021-03-27 10:06:20.000000000 +00:00
+ - value: 319.85
+ ts: 2021-03-27 10:06:19.000000000 +00:00
+ - value: 318.70
+ ts: 2021-03-27 10:06:18.000000000 +00:00
+ - value: 316.96
+ ts: 2021-03-27 10:06:17.000000000 +00:00
+ - value: 315.17
+ ts: 2021-03-27 10:06:16.000000000 +00:00
+ - value: 315.47
+ ts: 2021-03-27 10:06:15.000000000 +00:00
+ - value: 316.19
+ ts: 2021-03-27 10:06:14.000000000 +00:00
+ - value: 317.17
+ ts: 2021-03-27 10:06:13.000000000 +00:00
+ - value: 318.12
+ ts: 2021-03-27 10:06:12.000000000 +00:00
+ - value: 318.72
+ ts: 2021-03-27 10:06:11.000000000 +00:00
+ - value: 319.79
+ ts: 2021-03-27 10:06:10.000000000 +00:00
+ - value: 320.68
+ ts: 2021-03-27 10:06:09.000000000 +00:00
+ - value: 321.28
+ ts: 2021-03-27 10:06:08.000000000 +00:00
+ - value: 320.89
+ ts: 2021-03-27 10:06:07.000000000 +00:00
+ - value: 319.79
+ ts: 2021-03-27 10:06:06.000000000 +00:00
+ - value: 317.56
+ ts: 2021-03-27 10:06:05.000000000 +00:00
+ - value: 316.46
+ ts: 2021-03-27 10:06:04.000000000 +00:00
+ - value: 315.59
+ ts: 2021-03-27 10:06:03.000000000 +00:00
+ - value: 316.85
+ ts: 2021-03-27 10:06:02.000000000 +00:00
+ - value: 317.87
+ ts: 2021-03-27 10:06:01.000000000 +00:00
+ - value: 318.87
+ ts: 2021-03-27 10:06:00.000000000 +00:00
+ - value: 319.25
+ ts: 2021-03-27 10:05:59.000000000 +00:00
+ - value: 320.13
+ ts: 2021-03-27 10:05:58.000000000 +00:00
+ - value: 321.49
+ ts: 2021-03-27 10:05:57.000000000 +00:00
+ - value: 322.34
+ ts: 2021-03-27 10:05:56.000000000 +00:00
+ - value: 321.62
+ ts: 2021-03-27 10:05:55.000000000 +00:00
+ - value: 319.85
+ ts: 2021-03-27 10:05:54.000000000 +00:00
+ - value: 317.87
+ ts: 2021-03-27 10:05:53.000000000 +00:00
+ - value: 316.36
+ ts: 2021-03-27 10:05:52.000000000 +00:00
+ - value: 316.24
+ ts: 2021-03-27 10:05:51.000000000 +00:00
+ - value: 317.13
+ ts: 2021-03-27 10:05:50.000000000 +00:00
+ - value: 318.46
+ ts: 2021-03-27 10:05:49.000000000 +00:00
+ - value: 319.57
+ ts: 2021-03-27 10:05:48.000000000 +00:00
+ - value: 320.23
+ ts: 2021-03-27 10:05:47.000000000 +00:00
+ - value: 320.89
+ ts: 2021-03-27 10:05:46.000000000 +00:00
+ - value: 321.54
+ ts: 2021-03-27 10:05:45.000000000 +00:00
+ - value: 322.20
+ ts: 2021-03-27 10:05:44.000000000 +00:00
+ - value: 321.90
+ ts: 2021-03-27 10:05:43.000000000 +00:00
+ - value: 320.42
+ ts: 2021-03-27 10:05:42.000000000 +00:00
+ - value: 318.60
+ ts: 2021-03-27 10:05:41.000000000 +00:00
+ - value: 316.73
+ ts: 2021-03-27 10:05:40.000000000 +00:00
+ - value: 317.15
+ ts: 2021-03-27 10:05:39.000000000 +00:00
+ - value: 317.94
+ ts: 2021-03-27 10:05:38.000000000 +00:00
+ - value: 318.91
+ ts: 2021-03-27 10:05:37.000000000 +00:00
+ - value: 319.73
+ ts: 2021-03-27 10:05:36.000000000 +00:00
+ - value: 320.78
+ ts: 2021-03-27 10:05:35.000000000 +00:00
+ - value: 321.23
+ ts: 2021-03-27 10:05:34.000000000 +00:00
+ - value: 322.49
+ ts: 2021-03-27 10:05:33.000000000 +00:00
+ - value: 322.59
+ ts: 2021-03-27 10:05:32.000000000 +00:00
+ - value: 322.35
+ ts: 2021-03-27 10:05:31.000000000 +00:00
+ - value: 321.61
+ ts: 2021-03-27 10:05:30.000000000 +00:00
+ - value: 319.24
+ ts: 2021-03-27 10:05:29.000000000 +00:00
+ - value: 318.23
+ ts: 2021-03-27 10:05:28.000000000 +00:00
+ - value: 317.76
+ ts: 2021-03-27 10:05:27.000000000 +00:00
+ - value: 319.36
+ ts: 2021-03-27 10:05:26.000000000 +00:00
+ - value: 319.50
+ ts: 2021-03-27 10:05:25.000000000 +00:00
+ - value: 320.35
+ ts: 2021-03-27 10:05:24.000000000 +00:00
+ - value: 321.40
+ ts: 2021-03-27 10:05:23.000000000 +00:00
+ - value: 322.22
+ ts: 2021-03-27 10:05:22.000000000 +00:00
+ - value: 323.45
+ ts: 2021-03-27 10:05:21.000000000 +00:00
+ - value: 323.80
+ ts: 2021-03-27 10:05:20.000000000 +00:00
+ - value: 323.50
+ ts: 2021-03-27 10:05:19.000000000 +00:00
+ - value: 322.16
+ ts: 2021-03-27 10:05:18.000000000 +00:00
+ - value: 320.09
+ ts: 2021-03-27 10:05:17.000000000 +00:00
+ - value: 318.26
+ ts: 2021-03-27 10:05:16.000000000 +00:00
+ - value: 317.66
+ ts: 2021-03-27 10:05:15.000000000 +00:00
+ - value: 319.47
+ ts: 2021-03-27 10:05:14.000000000 +00:00
+ - value: 320.70
+ ts: 2021-03-27 10:05:13.000000000 +00:00
+ - value: 322.06
+ ts: 2021-03-27 10:05:12.000000000 +00:00
+ - value: 322.23
+ ts: 2021-03-27 10:05:11.000000000 +00:00
+ - value: 322.78
+ ts: 2021-03-27 10:05:10.000000000 +00:00
+ - value: 324.10
+ ts: 2021-03-27 10:05:09.000000000 +00:00
+ - value: 324.63
+ ts: 2021-03-27 10:05:08.000000000 +00:00
+ - value: 323.79
+ ts: 2021-03-27 10:05:07.000000000 +00:00
+ - value: 322.34
+ ts: 2021-03-27 10:05:06.000000000 +00:00
+ - value: 320.73
+ ts: 2021-03-27 10:05:05.000000000 +00:00
+ - value: 319.00
+ ts: 2021-03-27 10:05:04.000000000 +00:00
+ - value: 318.99
+ ts: 2021-03-27 10:05:03.000000000 +00:00
+ - value: 320.41
+ ts: 2021-03-27 10:05:02.000000000 +00:00
+ - value: 321.68
+ ts: 2021-03-27 10:05:01.000000000 +00:00
+ - value: 322.30
+ ts: 2021-03-27 10:05:00.000000000 +00:00
+ - value: 322.89
+ ts: 2021-03-27 10:04:59.000000000 +00:00
+ - value: 323.59
+ ts: 2021-03-27 10:04:58.000000000 +00:00
+ - value: 324.65
+ ts: 2021-03-27 10:04:57.000000000 +00:00
+ - value: 325.30
+ ts: 2021-03-27 10:04:56.000000000 +00:00
+ - value: 325.15
+ ts: 2021-03-27 10:04:55.000000000 +00:00
+ - value: 323.88
+ ts: 2021-03-27 10:04:54.000000000 +00:00
+ - value: 321.80
+ ts: 2021-03-27 10:04:53.000000000 +00:00
+ - value: 319.99
+ ts: 2021-03-27 10:04:52.000000000 +00:00
+ - value: 319.86
+ ts: 2021-03-27 10:04:51.000000000 +00:00
+ - value: 320.88
+ ts: 2021-03-27 10:04:50.000000000 +00:00
+ - value: 322.36
+ ts: 2021-03-27 10:04:49.000000000 +00:00
+ - value: 323.59
+ ts: 2021-03-27 10:04:48.000000000 +00:00
+ - value: 324.23
+ ts: 2021-03-27 10:04:47.000000000 +00:00
+ - value: 325.34
+ ts: 2021-03-27 10:04:46.000000000 +00:00
+ - value: 326.33
+ ts: 2021-03-27 10:04:45.000000000 +00:00
+ - value: 327.03
+ ts: 2021-03-27 10:04:44.000000000 +00:00
+ - value: 326.24
+ ts: 2021-03-27 10:04:43.000000000 +00:00
+ - value: 325.39
+ ts: 2021-03-27 10:04:42.000000000 +00:00
+ - value: 323.16
+ ts: 2021-03-27 10:04:41.000000000 +00:00
+ - value: 321.87
+ ts: 2021-03-27 10:04:40.000000000 +00:00
+ - value: 321.31
+ ts: 2021-03-27 10:04:39.000000000 +00:00
+ - value: 322.34
+ ts: 2021-03-27 10:04:38.000000000 +00:00
+ - value: 323.74
+ ts: 2021-03-27 10:04:37.000000000 +00:00
+ - value: 324.61
+ ts: 2021-03-27 10:04:36.000000000 +00:00
+ - value: 325.58
+ ts: 2021-03-27 10:04:35.000000000 +00:00
+ - value: 326.55
+ ts: 2021-03-27 10:04:34.000000000 +00:00
+ - value: 327.81
+ ts: 2021-03-27 10:04:33.000000000 +00:00
+ - value: 327.82
+ ts: 2021-03-27 10:04:32.000000000 +00:00
+ - value: 327.53
+ ts: 2021-03-27 10:04:31.000000000 +00:00
+ - value: 326.29
+ ts: 2021-03-27 10:04:30.000000000 +00:00
+ - value: 324.66
+ ts: 2021-03-27 10:04:29.000000000 +00:00
+ - value: 323.12
+ ts: 2021-03-27 10:04:28.000000000 +00:00
+ - value: 323.09
+ ts: 2021-03-27 10:04:27.000000000 +00:00
+ - value: 324.01
+ ts: 2021-03-27 10:04:26.000000000 +00:00
+ - value: 325.10
+ ts: 2021-03-27 10:04:25.000000000 +00:00
+ - value: 326.12
+ ts: 2021-03-27 10:04:24.000000000 +00:00
+ - value: 326.62
+ ts: 2021-03-27 10:04:23.000000000 +00:00
+ - value: 327.16
+ ts: 2021-03-27 10:04:22.000000000 +00:00
+ - value: 327.94
+ ts: 2021-03-27 10:04:21.000000000 +00:00
+ - value: 329.15
+ ts: 2021-03-27 10:04:20.000000000 +00:00
+ - value: 328.79
+ ts: 2021-03-27 10:04:19.000000000 +00:00
+ - value: 327.53
+ ts: 2021-03-27 10:04:18.000000000 +00:00
+ - value: 325.65
+ ts: 2021-03-27 10:04:17.000000000 +00:00
+ - value: 323.60
+ ts: 2021-03-27 10:04:16.000000000 +00:00
+ - value: 323.78
+ ts: 2021-03-27 10:04:15.000000000 +00:00
+ - value: 325.13
+ ts: 2021-03-27 10:04:14.000000000 +00:00
+ - value: 326.26
+ ts: 2021-03-27 10:04:13.000000000 +00:00
+ - value: 326.93
+ ts: 2021-03-27 10:04:12.000000000 +00:00
+ - value: 327.84
+ ts: 2021-03-27 10:04:11.000000000 +00:00
+ - value: 327.96
+ ts: 2021-03-27 10:04:10.000000000 +00:00
+ - value: 329.93
+ ts: 2021-03-27 10:04:09.000000000 +00:00
+ - value: 330.25
+ ts: 2021-03-27 10:04:08.000000000 +00:00
+ - value: 329.24
+ ts: 2021-03-27 10:04:07.000000000 +00:00
+ - value: 328.13
+ ts: 2021-03-27 10:04:06.000000000 +00:00
+ - value: 326.42
+ ts: 2021-03-27 10:04:05.000000000 +00:00
+ - value: 324.97
+ ts: 2021-03-27 10:04:04.000000000 +00:00
+ - value: 325.29
+ ts: 2021-03-27 10:04:03.000000000 +00:00
+ - value: 326.56
+ ts: 2021-03-27 10:04:02.000000000 +00:00
+ - value: 327.73
+ ts: 2021-03-27 10:04:01.000000000 +00:00
+ - value: 328.73
+ ts: 2021-03-27 10:04:00.000000000 +00:00
+ - value: 329.70
+ ts: 2021-03-27 10:03:59.000000000 +00:00
+ - value: 330.46
+ ts: 2021-03-27 10:03:58.000000000 +00:00
+ - value: 331.70
+ ts: 2021-03-27 10:03:57.000000000 +00:00
+ - value: 332.66
+ ts: 2021-03-27 10:03:56.000000000 +00:00
+ - value: 332.22
+ ts: 2021-03-27 10:03:55.000000000 +00:00
+ - value: 331.02
+ ts: 2021-03-27 10:03:54.000000000 +00:00
+ - value: 329.39
+ ts: 2021-03-27 10:03:53.000000000 +00:00
+ - value: 327.58
+ ts: 2021-03-27 10:03:52.000000000 +00:00
+ - value: 327.27
+ ts: 2021-03-27 10:03:51.000000000 +00:00
+ - value: 328.30
+ ts: 2021-03-27 10:03:50.000000000 +00:00
+ - value: 328.81
+ ts: 2021-03-27 10:03:49.000000000 +00:00
+ - value: 329.44
+ ts: 2021-03-27 10:03:48.000000000 +00:00
+ - value: 330.89
+ ts: 2021-03-27 10:03:47.000000000 +00:00
+ - value: 331.62
+ ts: 2021-03-27 10:03:46.000000000 +00:00
+ - value: 332.85
+ ts: 2021-03-27 10:03:45.000000000 +00:00
+ - value: 333.29
+ ts: 2021-03-27 10:03:44.000000000 +00:00
+ - value: 332.44
+ ts: 2021-03-27 10:03:43.000000000 +00:00
+ - value: 331.35
+ ts: 2021-03-27 10:03:42.000000000 +00:00
+ - value: 329.58
+ ts: 2021-03-27 10:03:41.000000000 +00:00
+ - value: 327.58
+ ts: 2021-03-27 10:03:40.000000000 +00:00
+ - value: 327.55
+ ts: 2021-03-27 10:03:39.000000000 +00:00
+ - value: 328.56
+ ts: 2021-03-27 10:03:38.000000000 +00:00
+ - value: 329.73
+ ts: 2021-03-27 10:03:37.000000000 +00:00
+ - value: 330.45
+ ts: 2021-03-27 10:03:36.000000000 +00:00
+ - value: 330.98
+ ts: 2021-03-27 10:03:35.000000000 +00:00
+ - value: 331.63
+ ts: 2021-03-27 10:03:34.000000000 +00:00
+ - value: 332.88
+ ts: 2021-03-27 10:03:33.000000000 +00:00
+ - value: 333.63
+ ts: 2021-03-27 10:03:32.000000000 +00:00
+ - value: 333.53
+ ts: 2021-03-27 10:03:31.000000000 +00:00
+ - value: 331.90
+ ts: 2021-03-27 10:03:30.000000000 +00:00
+ - value: 330.08
+ ts: 2021-03-27 10:03:29.000000000 +00:00
+ - value: 328.59
+ ts: 2021-03-27 10:03:28.000000000 +00:00
+ - value: 328.31
+ ts: 2021-03-27 10:03:27.000000000 +00:00
+ - value: 329.44
+ ts: 2021-03-27 10:03:26.000000000 +00:00
+ - value: 330.64
+ ts: 2021-03-27 10:03:25.000000000 +00:00
+ - value: 331.62
+ ts: 2021-03-27 10:03:24.000000000 +00:00
+ - value: 332.45
+ ts: 2021-03-27 10:03:23.000000000 +00:00
+ - value: 333.36
+ ts: 2021-03-27 10:03:22.000000000 +00:00
+ - value: 334.46
+ ts: 2021-03-27 10:03:21.000000000 +00:00
+ - value: 334.84
+ ts: 2021-03-27 10:03:20.000000000 +00:00
+ - value: 334.29
+ ts: 2021-03-27 10:03:19.000000000 +00:00
+ - value: 333.04
+ ts: 2021-03-27 10:03:18.000000000 +00:00
+ - value: 330.88
+ ts: 2021-03-27 10:03:17.000000000 +00:00
+ - value: 329.23
+ ts: 2021-03-27 10:03:16.000000000 +00:00
+ - value: 328.83
+ ts: 2021-03-27 10:03:15.000000000 +00:00
+ - value: 330.18
+ ts: 2021-03-27 10:03:14.000000000 +00:00
+ - value: 331.50
+ ts: 2021-03-27 10:03:13.000000000 +00:00
+ - value: 332.80
+ ts: 2021-03-27 10:03:12.000000000 +00:00
+ - value: 333.22
+ ts: 2021-03-27 10:03:11.000000000 +00:00
+ - value: 334.54
+ ts: 2021-03-27 10:03:10.000000000 +00:00
+ - value: 335.82
+ ts: 2021-03-27 10:03:09.000000000 +00:00
+ - value: 336.45
+ ts: 2021-03-27 10:03:08.000000000 +00:00
+ - value: 335.97
+ ts: 2021-03-27 10:03:07.000000000 +00:00
+ - value: 334.65
+ ts: 2021-03-27 10:03:06.000000000 +00:00
+ - value: 332.40
+ ts: 2021-03-27 10:03:05.000000000 +00:00
+ - value: 331.28
+ ts: 2021-03-27 10:03:04.000000000 +00:00
+ - value: 330.73
+ ts: 2021-03-27 10:03:03.000000000 +00:00
+ - value: 332.05
+ ts: 2021-03-27 10:03:02.000000000 +00:00
+ - value: 333.54
+ ts: 2021-03-27 10:03:01.000000000 +00:00
+ - value: 334.65
+ ts: 2021-03-27 10:03:00.000000000 +00:00
+ - value: 335.06
+ ts: 2021-03-27 10:02:59.000000000 +00:00
+ - value: 336.32
+ ts: 2021-03-27 10:02:58.000000000 +00:00
+ - value: 337.39
+ ts: 2021-03-27 10:02:57.000000000 +00:00
+ - value: 337.66
+ ts: 2021-03-27 10:02:56.000000000 +00:00
+ - value: 337.56
+ ts: 2021-03-27 10:02:55.000000000 +00:00
+ - value: 336.24
+ ts: 2021-03-27 10:02:54.000000000 +00:00
+ - value: 334.39
+ ts: 2021-03-27 10:02:53.000000000 +00:00
+ - value: 332.43
+ ts: 2021-03-27 10:02:52.000000000 +00:00
+ - value: 332.22
+ ts: 2021-03-27 10:02:51.000000000 +00:00
+ - value: 333.61
+ ts: 2021-03-27 10:02:50.000000000 +00:00
+ - value: 334.78
+ ts: 2021-03-27 10:02:49.000000000 +00:00
+ - value: 335.88
+ ts: 2021-03-27 10:02:48.000000000 +00:00
+ - value: 336.43
+ ts: 2021-03-27 10:02:47.000000000 +00:00
+ - value: 337.61
+ ts: 2021-03-27 10:02:46.000000000 +00:00
+ - value: 338.53
+ ts: 2021-03-27 10:02:45.000000000 +00:00
+ - value: 339.06
+ ts: 2021-03-27 10:02:44.000000000 +00:00
+ - value: 338.92
+ ts: 2021-03-27 10:02:43.000000000 +00:00
+ - value: 337.39
+ ts: 2021-03-27 10:02:42.000000000 +00:00
+ - value: 335.72
+ ts: 2021-03-27 10:02:41.000000000 +00:00
+ - value: 333.64
+ ts: 2021-03-27 10:02:40.000000000 +00:00
+ - value: 333.65
+ ts: 2021-03-27 10:02:39.000000000 +00:00
+ - value: 335.07
+ ts: 2021-03-27 10:02:38.000000000 +00:00
+ - value: 336.53
+ ts: 2021-03-27 10:02:37.000000000 +00:00
+ - value: 337.82
+ ts: 2021-03-27 10:02:36.000000000 +00:00
+ - value: 338.19
+ ts: 2021-03-27 10:02:35.000000000 +00:00
+ - value: 339.89
+ ts: 2021-03-27 10:02:34.000000000 +00:00
+ - value: 340.56
+ ts: 2021-03-27 10:02:33.000000000 +00:00
+ - value: 341.22
+ ts: 2021-03-27 10:02:32.000000000 +00:00
+ - value: 340.92
+ ts: 2021-03-27 10:02:31.000000000 +00:00
+ - value: 339.26
+ ts: 2021-03-27 10:02:30.000000000 +00:00
+ - value: 337.27
+ ts: 2021-03-27 10:02:29.000000000 +00:00
+ - value: 335.66
+ ts: 2021-03-27 10:02:28.000000000 +00:00
+ - value: 335.54
+ ts: 2021-03-27 10:02:27.000000000 +00:00
+ - value: 336.71
+ ts: 2021-03-27 10:02:26.000000000 +00:00
+ - value: 337.79
+ ts: 2021-03-27 10:02:25.000000000 +00:00
+ - value: 338.79
+ ts: 2021-03-27 10:02:24.000000000 +00:00
+ - value: 340.06
+ ts: 2021-03-27 10:02:23.000000000 +00:00
+ - value: 340.93
+ ts: 2021-03-27 10:02:22.000000000 +00:00
+ - value: 342.02
+ ts: 2021-03-27 10:02:21.000000000 +00:00
+ - value: 342.65
+ ts: 2021-03-27 10:02:20.000000000 +00:00
+ - value: 341.80
+ ts: 2021-03-27 10:02:19.000000000 +00:00
+ - value: 340.01
+ ts: 2021-03-27 10:02:18.000000000 +00:00
+ - value: 337.94
+ ts: 2021-03-27 10:02:17.000000000 +00:00
+ - value: 336.17
+ ts: 2021-03-27 10:02:16.000000000 +00:00
+ - value: 336.28
+ ts: 2021-03-27 10:02:15.000000000 +00:00
+ - value: 337.76
+ ts: 2021-03-27 10:02:14.000000000 +00:00
+ - value: 339.05
+ ts: 2021-03-27 10:02:13.000000000 +00:00
+ - value: 340.18
+ ts: 2021-03-27 10:02:12.000000000 +00:00
+ - value: 341.04
+ ts: 2021-03-27 10:02:11.000000000 +00:00
+ - value: 342.16
+ ts: 2021-03-27 10:02:10.000000000 +00:00
+ - value: 343.01
+ ts: 2021-03-27 10:02:09.000000000 +00:00
+ - value: 343.64
+ ts: 2021-03-27 10:02:08.000000000 +00:00
+ - value: 342.91
+ ts: 2021-03-27 10:02:07.000000000 +00:00
+ - value: 341.72
+ ts: 2021-03-27 10:02:06.000000000 +00:00
+ - value: 339.52
+ ts: 2021-03-27 10:02:05.000000000 +00:00
+ - value: 337.75
+ ts: 2021-03-27 10:02:04.000000000 +00:00
+ - value: 337.68
+ ts: 2021-03-27 10:02:03.000000000 +00:00
+ - value: 339.14
+ ts: 2021-03-27 10:02:02.000000000 +00:00
+ - value: 340.37
+ ts: 2021-03-27 10:02:01.000000000 +00:00
+ - value: 341.32
+ ts: 2021-03-27 10:02:00.000000000 +00:00
+ - value: 342.45
+ ts: 2021-03-27 10:01:59.000000000 +00:00
+ - value: 343.05
+ ts: 2021-03-27 10:01:58.000000000 +00:00
+ - value: 344.91
+ ts: 2021-03-27 10:01:57.000000000 +00:00
+ - value: 345.77
+ ts: 2021-03-27 10:01:56.000000000 +00:00
+ - value: 345.30
+ ts: 2021-03-27 10:01:55.000000000 +00:00
+ - value: 343.98
+ ts: 2021-03-27 10:01:54.000000000 +00:00
+ - value: 342.41
+ ts: 2021-03-27 10:01:53.000000000 +00:00
+ - value: 339.89
+ ts: 2021-03-27 10:01:52.000000000 +00:00
+ - value: 340.03
+ ts: 2021-03-27 10:01:51.000000000 +00:00
+ - value: 341.19
+ ts: 2021-03-27 10:01:50.000000000 +00:00
+ - value: 342.87
+ ts: 2021-03-27 10:01:49.000000000 +00:00
+ - value: 343.74
+ ts: 2021-03-27 10:01:48.000000000 +00:00
+ - value: 344.55
+ ts: 2021-03-27 10:01:47.000000000 +00:00
+ - value: 345.28
+ ts: 2021-03-27 10:01:46.000000000 +00:00
+ - value: 347.00
+ ts: 2021-03-27 10:01:45.000000000 +00:00
+ - value: 347.37
+ ts: 2021-03-27 10:01:44.000000000 +00:00
+ - value: 346.74
+ ts: 2021-03-27 10:01:43.000000000 +00:00
+ - value: 345.36
+ ts: 2021-03-27 10:01:42.000000000 +00:00
+ - value: 343.19
+ ts: 2021-03-27 10:01:41.000000000 +00:00
+ - value: 340.97
+ ts: 2021-03-27 10:01:40.000000000 +00:00
+ - value: 341.20
+ ts: 2021-03-27 10:01:39.000000000 +00:00
+ - value: 342.76
+ ts: 2021-03-27 10:01:38.000000000 +00:00
+ - value: 343.96
+ ts: 2021-03-27 10:01:37.000000000 +00:00
+ - value: 344.82
+ ts: 2021-03-27 10:01:36.000000000 +00:00
+ - value: 345.82
+ ts: 2021-03-27 10:01:35.000000000 +00:00
+ - value: 347.24
+ ts: 2021-03-27 10:01:34.000000000 +00:00
+ - value: 348.09
+ ts: 2021-03-27 10:01:33.000000000 +00:00
+ - value: 348.66
+ ts: 2021-03-27 10:01:32.000000000 +00:00
+ - value: 347.90
+ ts: 2021-03-27 10:01:31.000000000 +00:00
+ - value: 346.27
+ ts: 2021-03-27 10:01:30.000000000 +00:00
+ - value: 344.21
+ ts: 2021-03-27 10:01:29.000000000 +00:00
+ - value: 342.88
+ ts: 2021-03-27 10:01:28.000000000 +00:00
+ - value: 342.58
+ ts: 2021-03-27 10:01:27.000000000 +00:00
+ - value: 343.99
+ ts: 2021-03-27 10:01:26.000000000 +00:00
+ - value: 345.31
+ ts: 2021-03-27 10:01:25.000000000 +00:00
+ - value: 345.98
+ ts: 2021-03-27 10:01:24.000000000 +00:00
+ - value: 346.72
+ ts: 2021-03-27 10:01:23.000000000 +00:00
+ - value: 347.63
+ ts: 2021-03-27 10:01:22.000000000 +00:00
+ - value: 349.24
+ ts: 2021-03-27 10:01:21.000000000 +00:00
+ - value: 349.83
+ ts: 2021-03-27 10:01:20.000000000 +00:00
+ - value: 349.10
+ ts: 2021-03-27 10:01:19.000000000 +00:00
+ - value: 347.52
+ ts: 2021-03-27 10:01:18.000000000 +00:00
+ - value: 345.43
+ ts: 2021-03-27 10:01:17.000000000 +00:00
+ - value: 344.48
+ ts: 2021-03-27 10:01:16.000000000 +00:00
+ - value: 343.89
+ ts: 2021-03-27 10:01:15.000000000 +00:00
+ - value: 345.29
+ ts: 2021-03-27 10:01:14.000000000 +00:00
+ - value: 346.54
+ ts: 2021-03-27 10:01:13.000000000 +00:00
+ - value: 347.66
+ ts: 2021-03-27 10:01:12.000000000 +00:00
+ - value: 348.07
+ ts: 2021-03-27 10:01:11.000000000 +00:00
+ - value: 349.12
+ ts: 2021-03-27 10:01:10.000000000 +00:00
+ - value: 350.55
+ ts: 2021-03-27 10:01:09.000000000 +00:00
+ - value: 351.34
+ ts: 2021-03-27 10:01:08.000000000 +00:00
+ - value: 350.80
+ ts: 2021-03-27 10:01:07.000000000 +00:00
+ - value: 349.10
+ ts: 2021-03-27 10:01:06.000000000 +00:00
+ - value: 347.54
+ ts: 2021-03-27 10:01:05.000000000 +00:00
+ - value: 346.20
+ ts: 2021-03-27 10:01:04.000000000 +00:00
+ - value: 346.20
+ ts: 2021-03-27 10:01:03.000000000 +00:00
+ - value: 347.44
+ ts: 2021-03-27 10:01:02.000000000 +00:00
+ - value: 348.67
+ ts: 2021-03-27 10:01:01.000000000 +00:00
+ time: 2021-03-27 10:07:00.000000000 +00:00
+ season: 12
+ s_window: 3461
+ seconds: 600
+out:
+ return: SUCCEED
+ trend:
+ - value: 315.44235513
+ ts: 2021-03-27 10:06:48.000000000 +00:00
+ - value: 315.55469629
+ ts: 2021-03-27 10:06:47.000000000 +00:00
+ - value: 315.66703746
+ ts: 2021-03-27 10:06:46.000000000 +00:00
+ - value: 315.77856276
+ ts: 2021-03-27 10:06:45.000000000 +00:00
+ - value: 315.89008807
+ ts: 2021-03-27 10:06:44.000000000 +00:00
+ - value: 315.9967004
+ ts: 2021-03-27 10:06:43.000000000 +00:00
+ - value: 316.10331272
+ ts: 2021-03-27 10:06:42.000000000 +00:00
+ - value: 316.20652199
+ ts: 2021-03-27 10:06:41.000000000 +00:00
+ - value: 316.30973127
+ ts: 2021-03-27 10:06:40.000000000 +00:00
+ - value: 316.42409853
+ ts: 2021-03-27 10:06:39.000000000 +00:00
+ - value: 316.5384658
+ ts: 2021-03-27 10:06:38.000000000 +00:00
+ - value: 316.64508256
+ ts: 2021-03-27 10:06:37.000000000 +00:00
+ - value: 316.75169933
+ ts: 2021-03-27 10:06:36.000000000 +00:00
+ - value: 316.82633578
+ ts: 2021-03-27 10:06:35.000000000 +00:00
+ - value: 316.90097223
+ ts: 2021-03-27 10:06:34.000000000 +00:00
+ - value: 316.9438621
+ ts: 2021-03-27 10:06:33.000000000 +00:00
+ - value: 316.98675196
+ ts: 2021-03-27 10:06:32.000000000 +00:00
+ - value: 317.02616963
+ ts: 2021-03-27 10:06:31.000000000 +00:00
+ - value: 317.06558729
+ ts: 2021-03-27 10:06:30.000000000 +00:00
+ - value: 317.10463209
+ ts: 2021-03-27 10:06:29.000000000 +00:00
+ - value: 317.14367688
+ ts: 2021-03-27 10:06:28.000000000 +00:00
+ - value: 317.17202571
+ ts: 2021-03-27 10:06:27.000000000 +00:00
+ - value: 317.20037454
+ ts: 2021-03-27 10:06:26.000000000 +00:00
+ - value: 317.23283373
+ ts: 2021-03-27 10:06:25.000000000 +00:00
+ - value: 317.26529292
+ ts: 2021-03-27 10:06:24.000000000 +00:00
+ - value: 317.33190094
+ ts: 2021-03-27 10:06:23.000000000 +00:00
+ - value: 317.39850896
+ ts: 2021-03-27 10:06:22.000000000 +00:00
+ - value: 317.49626055
+ ts: 2021-03-27 10:06:21.000000000 +00:00
+ - value: 317.59401214
+ ts: 2021-03-27 10:06:20.000000000 +00:00
+ - value: 317.69685909
+ ts: 2021-03-27 10:06:19.000000000 +00:00
+ - value: 317.79970605
+ ts: 2021-03-27 10:06:18.000000000 +00:00
+ - value: 317.89593895
+ ts: 2021-03-27 10:06:17.000000000 +00:00
+ - value: 317.99217184
+ ts: 2021-03-27 10:06:16.000000000 +00:00
+ - value: 318.07505671
+ ts: 2021-03-27 10:06:15.000000000 +00:00
+ - value: 318.15794157
+ ts: 2021-03-27 10:06:14.000000000 +00:00
+ - value: 318.22817609
+ ts: 2021-03-27 10:06:13.000000000 +00:00
+ - value: 318.29841061
+ ts: 2021-03-27 10:06:12.000000000 +00:00
+ - value: 318.36431552
+ ts: 2021-03-27 10:06:11.000000000 +00:00
+ - value: 318.43022044
+ ts: 2021-03-27 10:06:10.000000000 +00:00
+ - value: 318.49205232
+ ts: 2021-03-27 10:06:09.000000000 +00:00
+ - value: 318.55388421
+ ts: 2021-03-27 10:06:08.000000000 +00:00
+ - value: 318.61323711
+ ts: 2021-03-27 10:06:07.000000000 +00:00
+ - value: 318.67259002
+ ts: 2021-03-27 10:06:06.000000000 +00:00
+ - value: 318.72430356
+ ts: 2021-03-27 10:06:05.000000000 +00:00
+ - value: 318.7760171
+ ts: 2021-03-27 10:06:04.000000000 +00:00
+ - value: 318.82747026
+ ts: 2021-03-27 10:06:03.000000000 +00:00
+ - value: 318.87892343
+ ts: 2021-03-27 10:06:02.000000000 +00:00
+ - value: 318.92129351
+ ts: 2021-03-27 10:06:01.000000000 +00:00
+ - value: 318.96366359
+ ts: 2021-03-27 10:06:00.000000000 +00:00
+ - value: 318.99123209
+ ts: 2021-03-27 10:05:59.000000000 +00:00
+ - value: 319.01880058
+ ts: 2021-03-27 10:05:58.000000000 +00:00
+ - value: 319.04930416
+ ts: 2021-03-27 10:05:57.000000000 +00:00
+ - value: 319.07980774
+ ts: 2021-03-27 10:05:56.000000000 +00:00
+ - value: 319.12718484
+ ts: 2021-03-27 10:05:55.000000000 +00:00
+ - value: 319.17456194
+ ts: 2021-03-27 10:05:54.000000000 +00:00
+ - value: 319.22508912
+ ts: 2021-03-27 10:05:53.000000000 +00:00
+ - value: 319.27561631
+ ts: 2021-03-27 10:05:52.000000000 +00:00
+ - value: 319.30865908
+ ts: 2021-03-27 10:05:51.000000000 +00:00
+ - value: 319.34170186
+ ts: 2021-03-27 10:05:50.000000000 +00:00
+ - value: 319.3697836
+ ts: 2021-03-27 10:05:49.000000000 +00:00
+ - value: 319.39786534
+ ts: 2021-03-27 10:05:48.000000000 +00:00
+ - value: 319.44034093
+ ts: 2021-03-27 10:05:47.000000000 +00:00
+ - value: 319.48281651
+ ts: 2021-03-27 10:05:46.000000000 +00:00
+ - value: 319.531549
+ ts: 2021-03-27 10:05:45.000000000 +00:00
+ - value: 319.58028149
+ ts: 2021-03-27 10:05:44.000000000 +00:00
+ - value: 319.62447036
+ ts: 2021-03-27 10:05:43.000000000 +00:00
+ - value: 319.66865922
+ ts: 2021-03-27 10:05:42.000000000 +00:00
+ - value: 319.71435007
+ ts: 2021-03-27 10:05:41.000000000 +00:00
+ - value: 319.76004093
+ ts: 2021-03-27 10:05:40.000000000 +00:00
+ - value: 319.8112329
+ ts: 2021-03-27 10:05:39.000000000 +00:00
+ - value: 319.86242486
+ ts: 2021-03-27 10:05:38.000000000 +00:00
+ - value: 319.9164258
+ ts: 2021-03-27 10:05:37.000000000 +00:00
+ - value: 319.97042675
+ ts: 2021-03-27 10:05:36.000000000 +00:00
+ - value: 320.03734986
+ ts: 2021-03-27 10:05:35.000000000 +00:00
+ - value: 320.10427297
+ ts: 2021-03-27 10:05:34.000000000 +00:00
+ - value: 320.18870017
+ ts: 2021-03-27 10:05:33.000000000 +00:00
+ - value: 320.27312737
+ ts: 2021-03-27 10:05:32.000000000 +00:00
+ - value: 320.3530152
+ ts: 2021-03-27 10:05:31.000000000 +00:00
+ - value: 320.43290302
+ ts: 2021-03-27 10:05:30.000000000 +00:00
+ - value: 320.50847736
+ ts: 2021-03-27 10:05:29.000000000 +00:00
+ - value: 320.5840517
+ ts: 2021-03-27 10:05:28.000000000 +00:00
+ - value: 320.66206771
+ ts: 2021-03-27 10:05:27.000000000 +00:00
+ - value: 320.74008371
+ ts: 2021-03-27 10:05:26.000000000 +00:00
+ - value: 320.80865032
+ ts: 2021-03-27 10:05:25.000000000 +00:00
+ - value: 320.87721693
+ ts: 2021-03-27 10:05:24.000000000 +00:00
+ - value: 320.91614981
+ ts: 2021-03-27 10:05:23.000000000 +00:00
+ - value: 320.95508268
+ ts: 2021-03-27 10:05:22.000000000 +00:00
+ - value: 320.98724809
+ ts: 2021-03-27 10:05:21.000000000 +00:00
+ - value: 321.01941349
+ ts: 2021-03-27 10:05:20.000000000 +00:00
+ - value: 321.08403423
+ ts: 2021-03-27 10:05:19.000000000 +00:00
+ - value: 321.14865497
+ ts: 2021-03-27 10:05:18.000000000 +00:00
+ - value: 321.2271537
+ ts: 2021-03-27 10:05:17.000000000 +00:00
+ - value: 321.30565244
+ ts: 2021-03-27 10:05:16.000000000 +00:00
+ - value: 321.3676952
+ ts: 2021-03-27 10:05:15.000000000 +00:00
+ - value: 321.42973797
+ ts: 2021-03-27 10:05:14.000000000 +00:00
+ - value: 321.47723215
+ ts: 2021-03-27 10:05:13.000000000 +00:00
+ - value: 321.52472632
+ ts: 2021-03-27 10:05:12.000000000 +00:00
+ - value: 321.57501425
+ ts: 2021-03-27 10:05:11.000000000 +00:00
+ - value: 321.62530218
+ ts: 2021-03-27 10:05:10.000000000 +00:00
+ - value: 321.68707948
+ ts: 2021-03-27 10:05:09.000000000 +00:00
+ - value: 321.74885677
+ ts: 2021-03-27 10:05:08.000000000 +00:00
+ - value: 321.81079132
+ ts: 2021-03-27 10:05:07.000000000 +00:00
+ - value: 321.87272588
+ ts: 2021-03-27 10:05:06.000000000 +00:00
+ - value: 321.9358974
+ ts: 2021-03-27 10:05:05.000000000 +00:00
+ - value: 321.99906891
+ ts: 2021-03-27 10:05:04.000000000 +00:00
+ - value: 322.07231434
+ ts: 2021-03-27 10:05:03.000000000 +00:00
+ - value: 322.14555977
+ ts: 2021-03-27 10:05:02.000000000 +00:00
+ - value: 322.23371478
+ ts: 2021-03-27 10:05:01.000000000 +00:00
+ - value: 322.3218698
+ ts: 2021-03-27 10:05:00.000000000 +00:00
+ - value: 322.40933937
+ ts: 2021-03-27 10:04:59.000000000 +00:00
+ - value: 322.49680894
+ ts: 2021-03-27 10:04:58.000000000 +00:00
+ - value: 322.56545086
+ ts: 2021-03-27 10:04:57.000000000 +00:00
+ - value: 322.63409279
+ ts: 2021-03-27 10:04:56.000000000 +00:00
+ - value: 322.71026886
+ ts: 2021-03-27 10:04:55.000000000 +00:00
+ - value: 322.78644493
+ ts: 2021-03-27 10:04:54.000000000 +00:00
+ - value: 322.8988799
+ ts: 2021-03-27 10:04:53.000000000 +00:00
+ - value: 323.01131487
+ ts: 2021-03-27 10:04:52.000000000 +00:00
+ - value: 323.14199777
+ ts: 2021-03-27 10:04:51.000000000 +00:00
+ - value: 323.27268066
+ ts: 2021-03-27 10:04:50.000000000 +00:00
+ - value: 323.39995094
+ ts: 2021-03-27 10:04:49.000000000 +00:00
+ - value: 323.52722122
+ ts: 2021-03-27 10:04:48.000000000 +00:00
+ - value: 323.65938152
+ ts: 2021-03-27 10:04:47.000000000 +00:00
+ - value: 323.79154181
+ ts: 2021-03-27 10:04:46.000000000 +00:00
+ - value: 323.9200177
+ ts: 2021-03-27 10:04:45.000000000 +00:00
+ - value: 324.04849359
+ ts: 2021-03-27 10:04:44.000000000 +00:00
+ - value: 324.15543716
+ ts: 2021-03-27 10:04:43.000000000 +00:00
+ - value: 324.26238073
+ ts: 2021-03-27 10:04:42.000000000 +00:00
+ - value: 324.36048452
+ ts: 2021-03-27 10:04:41.000000000 +00:00
+ - value: 324.45858831
+ ts: 2021-03-27 10:04:40.000000000 +00:00
+ - value: 324.55787737
+ ts: 2021-03-27 10:04:39.000000000 +00:00
+ - value: 324.65716643
+ ts: 2021-03-27 10:04:38.000000000 +00:00
+ - value: 324.75351242
+ ts: 2021-03-27 10:04:37.000000000 +00:00
+ - value: 324.8498584
+ ts: 2021-03-27 10:04:36.000000000 +00:00
+ - value: 324.95794546
+ ts: 2021-03-27 10:04:35.000000000 +00:00
+ - value: 325.06603252
+ ts: 2021-03-27 10:04:34.000000000 +00:00
+ - value: 325.19349461
+ ts: 2021-03-27 10:04:33.000000000 +00:00
+ - value: 325.3209567
+ ts: 2021-03-27 10:04:32.000000000 +00:00
+ - value: 325.44391616
+ ts: 2021-03-27 10:04:31.000000000 +00:00
+ - value: 325.56687561
+ ts: 2021-03-27 10:04:30.000000000 +00:00
+ - value: 325.65912851
+ ts: 2021-03-27 10:04:29.000000000 +00:00
+ - value: 325.75138141
+ ts: 2021-03-27 10:04:28.000000000 +00:00
+ - value: 325.82354993
+ ts: 2021-03-27 10:04:27.000000000 +00:00
+ - value: 325.89571846
+ ts: 2021-03-27 10:04:26.000000000 +00:00
+ - value: 325.97084529
+ ts: 2021-03-27 10:04:25.000000000 +00:00
+ - value: 326.04597213
+ ts: 2021-03-27 10:04:24.000000000 +00:00
+ - value: 326.11423829
+ ts: 2021-03-27 10:04:23.000000000 +00:00
+ - value: 326.18250444
+ ts: 2021-03-27 10:04:22.000000000 +00:00
+ - value: 326.25372034
+ ts: 2021-03-27 10:04:21.000000000 +00:00
+ - value: 326.32493623
+ ts: 2021-03-27 10:04:20.000000000 +00:00
+ - value: 326.41567428
+ ts: 2021-03-27 10:04:19.000000000 +00:00
+ - value: 326.50641233
+ ts: 2021-03-27 10:04:18.000000000 +00:00
+ - value: 326.60895426
+ ts: 2021-03-27 10:04:17.000000000 +00:00
+ - value: 326.7114962
+ ts: 2021-03-27 10:04:16.000000000 +00:00
+ - value: 326.80988567
+ ts: 2021-03-27 10:04:15.000000000 +00:00
+ - value: 326.90827514
+ ts: 2021-03-27 10:04:14.000000000 +00:00
+ - value: 326.97943271
+ ts: 2021-03-27 10:04:13.000000000 +00:00
+ - value: 327.05059028
+ ts: 2021-03-27 10:04:12.000000000 +00:00
+ - value: 327.12085189
+ ts: 2021-03-27 10:04:11.000000000 +00:00
+ - value: 327.1911135
+ ts: 2021-03-27 10:04:10.000000000 +00:00
+ - value: 327.29111703
+ ts: 2021-03-27 10:04:09.000000000 +00:00
+ - value: 327.39112057
+ ts: 2021-03-27 10:04:08.000000000 +00:00
+ - value: 327.52515167
+ ts: 2021-03-27 10:04:07.000000000 +00:00
+ - value: 327.65918277
+ ts: 2021-03-27 10:04:06.000000000 +00:00
+ - value: 327.82811499
+ ts: 2021-03-27 10:04:05.000000000 +00:00
+ - value: 327.99704721
+ ts: 2021-03-27 10:04:04.000000000 +00:00
+ - value: 328.1961702
+ ts: 2021-03-27 10:04:03.000000000 +00:00
+ - value: 328.39529319
+ ts: 2021-03-27 10:04:02.000000000 +00:00
+ - value: 328.61931296
+ ts: 2021-03-27 10:04:01.000000000 +00:00
+ - value: 328.84333274
+ ts: 2021-03-27 10:04:00.000000000 +00:00
+ - value: 329.06600476
+ ts: 2021-03-27 10:03:59.000000000 +00:00
+ - value: 329.28867678
+ ts: 2021-03-27 10:03:58.000000000 +00:00
+ - value: 329.46913866
+ ts: 2021-03-27 10:03:57.000000000 +00:00
+ - value: 329.64960053
+ ts: 2021-03-27 10:03:56.000000000 +00:00
+ - value: 329.77054779
+ ts: 2021-03-27 10:03:55.000000000 +00:00
+ - value: 329.89149505
+ ts: 2021-03-27 10:03:54.000000000 +00:00
+ - value: 329.97561167
+ ts: 2021-03-27 10:03:53.000000000 +00:00
+ - value: 330.05972829
+ ts: 2021-03-27 10:03:52.000000000 +00:00
+ - value: 330.11886712
+ ts: 2021-03-27 10:03:51.000000000 +00:00
+ - value: 330.17800595
+ ts: 2021-03-27 10:03:50.000000000 +00:00
+ - value: 330.20684798
+ ts: 2021-03-27 10:03:49.000000000 +00:00
+ - value: 330.23569002
+ ts: 2021-03-27 10:03:48.000000000 +00:00
+ - value: 330.25322081
+ ts: 2021-03-27 10:03:47.000000000 +00:00
+ - value: 330.27075161
+ ts: 2021-03-27 10:03:46.000000000 +00:00
+ - value: 330.30600586
+ ts: 2021-03-27 10:03:45.000000000 +00:00
+ - value: 330.34126011
+ ts: 2021-03-27 10:03:44.000000000 +00:00
+ - value: 330.39107764
+ ts: 2021-03-27 10:03:43.000000000 +00:00
+ - value: 330.44089516
+ ts: 2021-03-27 10:03:42.000000000 +00:00
+ - value: 330.472278
+ ts: 2021-03-27 10:03:41.000000000 +00:00
+ - value: 330.50366084
+ ts: 2021-03-27 10:03:40.000000000 +00:00
+ - value: 330.52317596
+ ts: 2021-03-27 10:03:39.000000000 +00:00
+ - value: 330.54269107
+ ts: 2021-03-27 10:03:38.000000000 +00:00
+ - value: 330.58106926
+ ts: 2021-03-27 10:03:37.000000000 +00:00
+ - value: 330.61944744
+ ts: 2021-03-27 10:03:36.000000000 +00:00
+ - value: 330.67620113
+ ts: 2021-03-27 10:03:35.000000000 +00:00
+ - value: 330.73295481
+ ts: 2021-03-27 10:03:34.000000000 +00:00
+ - value: 330.80680089
+ ts: 2021-03-27 10:03:33.000000000 +00:00
+ - value: 330.88064697
+ ts: 2021-03-27 10:03:32.000000000 +00:00
+ - value: 330.9755257
+ ts: 2021-03-27 10:03:31.000000000 +00:00
+ - value: 331.07040444
+ ts: 2021-03-27 10:03:30.000000000 +00:00
+ - value: 331.18772647
+ ts: 2021-03-27 10:03:29.000000000 +00:00
+ - value: 331.3050485
+ ts: 2021-03-27 10:03:28.000000000 +00:00
+ - value: 331.42067524
+ ts: 2021-03-27 10:03:27.000000000 +00:00
+ - value: 331.53630198
+ ts: 2021-03-27 10:03:26.000000000 +00:00
+ - value: 331.6276612
+ ts: 2021-03-27 10:03:25.000000000 +00:00
+ - value: 331.71902043
+ ts: 2021-03-27 10:03:24.000000000 +00:00
+ - value: 331.78971371
+ ts: 2021-03-27 10:03:23.000000000 +00:00
+ - value: 331.86040699
+ ts: 2021-03-27 10:03:22.000000000 +00:00
+ - value: 331.91753383
+ ts: 2021-03-27 10:03:21.000000000 +00:00
+ - value: 331.97466067
+ ts: 2021-03-27 10:03:20.000000000 +00:00
+ - value: 332.03532615
+ ts: 2021-03-27 10:03:19.000000000 +00:00
+ - value: 332.09599162
+ ts: 2021-03-27 10:03:18.000000000 +00:00
+ - value: 332.17475772
+ ts: 2021-03-27 10:03:17.000000000 +00:00
+ - value: 332.25352382
+ ts: 2021-03-27 10:03:16.000000000 +00:00
+ - value: 332.36532672
+ ts: 2021-03-27 10:03:15.000000000 +00:00
+ - value: 332.47712962
+ ts: 2021-03-27 10:03:14.000000000 +00:00
+ - value: 332.61852169
+ ts: 2021-03-27 10:03:13.000000000 +00:00
+ - value: 332.75991377
+ ts: 2021-03-27 10:03:12.000000000 +00:00
+ - value: 332.91651662
+ ts: 2021-03-27 10:03:11.000000000 +00:00
+ - value: 333.07311948
+ ts: 2021-03-27 10:03:10.000000000 +00:00
+ - value: 333.2324149
+ ts: 2021-03-27 10:03:09.000000000 +00:00
+ - value: 333.39171033
+ ts: 2021-03-27 10:03:08.000000000 +00:00
+ - value: 333.5448842
+ ts: 2021-03-27 10:03:07.000000000 +00:00
+ - value: 333.69805806
+ ts: 2021-03-27 10:03:06.000000000 +00:00
+ - value: 333.841515
+ ts: 2021-03-27 10:03:05.000000000 +00:00
+ - value: 333.98497193
+ ts: 2021-03-27 10:03:04.000000000 +00:00
+ - value: 334.1183699
+ ts: 2021-03-27 10:03:03.000000000 +00:00
+ - value: 334.25176787
+ ts: 2021-03-27 10:03:02.000000000 +00:00
+ - value: 334.38535118
+ ts: 2021-03-27 10:03:01.000000000 +00:00
+ - value: 334.5189345
+ ts: 2021-03-27 10:03:00.000000000 +00:00
+ - value: 334.65356379
+ ts: 2021-03-27 10:02:59.000000000 +00:00
+ - value: 334.78819309
+ ts: 2021-03-27 10:02:58.000000000 +00:00
+ - value: 334.90946321
+ ts: 2021-03-27 10:02:57.000000000 +00:00
+ - value: 335.03073333
+ ts: 2021-03-27 10:02:56.000000000 +00:00
+ - value: 335.1383318
+ ts: 2021-03-27 10:02:55.000000000 +00:00
+ - value: 335.24593026
+ ts: 2021-03-27 10:02:54.000000000 +00:00
+ - value: 335.35057584
+ ts: 2021-03-27 10:02:53.000000000 +00:00
+ - value: 335.45522142
+ ts: 2021-03-27 10:02:52.000000000 +00:00
+ - value: 335.56124549
+ ts: 2021-03-27 10:02:51.000000000 +00:00
+ - value: 335.66726956
+ ts: 2021-03-27 10:02:50.000000000 +00:00
+ - value: 335.77616863
+ ts: 2021-03-27 10:02:49.000000000 +00:00
+ - value: 335.88506769
+ ts: 2021-03-27 10:02:48.000000000 +00:00
+ - value: 335.99565512
+ ts: 2021-03-27 10:02:47.000000000 +00:00
+ - value: 336.10624254
+ ts: 2021-03-27 10:02:46.000000000 +00:00
+ - value: 336.22365213
+ ts: 2021-03-27 10:02:45.000000000 +00:00
+ - value: 336.34106173
+ ts: 2021-03-27 10:02:44.000000000 +00:00
+ - value: 336.47339792
+ ts: 2021-03-27 10:02:43.000000000 +00:00
+ - value: 336.6057341
+ ts: 2021-03-27 10:02:42.000000000 +00:00
+ - value: 336.76422278
+ ts: 2021-03-27 10:02:41.000000000 +00:00
+ - value: 336.92271145
+ ts: 2021-03-27 10:02:40.000000000 +00:00
+ - value: 337.09938926
+ ts: 2021-03-27 10:02:39.000000000 +00:00
+ - value: 337.27606706
+ ts: 2021-03-27 10:02:38.000000000 +00:00
+ - value: 337.45288347
+ ts: 2021-03-27 10:02:37.000000000 +00:00
+ - value: 337.62969988
+ ts: 2021-03-27 10:02:36.000000000 +00:00
+ - value: 337.79306005
+ ts: 2021-03-27 10:02:35.000000000 +00:00
+ - value: 337.95642022
+ ts: 2021-03-27 10:02:34.000000000 +00:00
+ - value: 338.0972586
+ ts: 2021-03-27 10:02:33.000000000 +00:00
+ - value: 338.23809697
+ ts: 2021-03-27 10:02:32.000000000 +00:00
+ - value: 338.34657255
+ ts: 2021-03-27 10:02:31.000000000 +00:00
+ - value: 338.45504814
+ ts: 2021-03-27 10:02:30.000000000 +00:00
+ - value: 338.55641637
+ ts: 2021-03-27 10:02:29.000000000 +00:00
+ - value: 338.65778461
+ ts: 2021-03-27 10:02:28.000000000 +00:00
+ - value: 338.76690713
+ ts: 2021-03-27 10:02:27.000000000 +00:00
+ - value: 338.87602965
+ ts: 2021-03-27 10:02:26.000000000 +00:00
+ - value: 338.97548534
+ ts: 2021-03-27 10:02:25.000000000 +00:00
+ - value: 339.07494103
+ ts: 2021-03-27 10:02:24.000000000 +00:00
+ - value: 339.14737143
+ ts: 2021-03-27 10:02:23.000000000 +00:00
+ - value: 339.21980184
+ ts: 2021-03-27 10:02:22.000000000 +00:00
+ - value: 339.28181981
+ ts: 2021-03-27 10:02:21.000000000 +00:00
+ - value: 339.34383778
+ ts: 2021-03-27 10:02:20.000000000 +00:00
+ - value: 339.41468242
+ ts: 2021-03-27 10:02:19.000000000 +00:00
+ - value: 339.48552706
+ ts: 2021-03-27 10:02:18.000000000 +00:00
+ - value: 339.56912781
+ ts: 2021-03-27 10:02:17.000000000 +00:00
+ - value: 339.65272856
+ ts: 2021-03-27 10:02:16.000000000 +00:00
+ - value: 339.75489065
+ ts: 2021-03-27 10:02:15.000000000 +00:00
+ - value: 339.85705275
+ ts: 2021-03-27 10:02:14.000000000 +00:00
+ - value: 339.98564966
+ ts: 2021-03-27 10:02:13.000000000 +00:00
+ - value: 340.11424657
+ ts: 2021-03-27 10:02:12.000000000 +00:00
+ - value: 340.24874535
+ ts: 2021-03-27 10:02:11.000000000 +00:00
+ - value: 340.38324414
+ ts: 2021-03-27 10:02:10.000000000 +00:00
+ - value: 340.49605566
+ ts: 2021-03-27 10:02:09.000000000 +00:00
+ - value: 340.60886719
+ ts: 2021-03-27 10:02:08.000000000 +00:00
+ - value: 340.70145262
+ ts: 2021-03-27 10:02:07.000000000 +00:00
+ - value: 340.79403805
+ ts: 2021-03-27 10:02:06.000000000 +00:00
+ - value: 340.89300582
+ ts: 2021-03-27 10:02:05.000000000 +00:00
+ - value: 340.99197358
+ ts: 2021-03-27 10:02:04.000000000 +00:00
+ - value: 341.13296417
+ ts: 2021-03-27 10:02:03.000000000 +00:00
+ - value: 341.27395475
+ ts: 2021-03-27 10:02:02.000000000 +00:00
+ - value: 341.46874342
+ ts: 2021-03-27 10:02:01.000000000 +00:00
+ - value: 341.66353209
+ ts: 2021-03-27 10:02:00.000000000 +00:00
+ - value: 341.88008414
+ ts: 2021-03-27 10:01:59.000000000 +00:00
+ - value: 342.09663618
+ ts: 2021-03-27 10:01:58.000000000 +00:00
+ - value: 342.30074289
+ ts: 2021-03-27 10:01:57.000000000 +00:00
+ - value: 342.50484959
+ ts: 2021-03-27 10:01:56.000000000 +00:00
+ - value: 342.69330764
+ ts: 2021-03-27 10:01:55.000000000 +00:00
+ - value: 342.88176568
+ ts: 2021-03-27 10:01:54.000000000 +00:00
+ - value: 343.05559052
+ ts: 2021-03-27 10:01:53.000000000 +00:00
+ - value: 343.22941535
+ ts: 2021-03-27 10:01:52.000000000 +00:00
+ - value: 343.38272674
+ ts: 2021-03-27 10:01:51.000000000 +00:00
+ - value: 343.53603813
+ ts: 2021-03-27 10:01:50.000000000 +00:00
+ - value: 343.66710016
+ ts: 2021-03-27 10:01:49.000000000 +00:00
+ - value: 343.79816219
+ ts: 2021-03-27 10:01:48.000000000 +00:00
+ - value: 343.90851777
+ ts: 2021-03-27 10:01:47.000000000 +00:00
+ - value: 344.01887335
+ ts: 2021-03-27 10:01:46.000000000 +00:00
+ - value: 344.11549181
+ ts: 2021-03-27 10:01:45.000000000 +00:00
+ - value: 344.21211027
+ ts: 2021-03-27 10:01:44.000000000 +00:00
+ - value: 344.29964066
+ ts: 2021-03-27 10:01:43.000000000 +00:00
+ - value: 344.38717106
+ ts: 2021-03-27 10:01:42.000000000 +00:00
+ - value: 344.48578694
+ ts: 2021-03-27 10:01:41.000000000 +00:00
+ - value: 344.58440283
+ ts: 2021-03-27 10:01:40.000000000 +00:00
+ - value: 344.69813634
+ ts: 2021-03-27 10:01:39.000000000 +00:00
+ - value: 344.81186985
+ ts: 2021-03-27 10:01:38.000000000 +00:00
+ - value: 344.93016318
+ ts: 2021-03-27 10:01:37.000000000 +00:00
+ - value: 345.04845651
+ ts: 2021-03-27 10:01:36.000000000 +00:00
+ - value: 345.16602241
+ ts: 2021-03-27 10:01:35.000000000 +00:00
+ - value: 345.2835883
+ ts: 2021-03-27 10:01:34.000000000 +00:00
+ - value: 345.39286858
+ ts: 2021-03-27 10:01:33.000000000 +00:00
+ - value: 345.50214886
+ ts: 2021-03-27 10:01:32.000000000 +00:00
+ - value: 345.58901642
+ ts: 2021-03-27 10:01:31.000000000 +00:00
+ - value: 345.67588398
+ ts: 2021-03-27 10:01:30.000000000 +00:00
+ - value: 345.74661236
+ ts: 2021-03-27 10:01:29.000000000 +00:00
+ - value: 345.81734074
+ ts: 2021-03-27 10:01:28.000000000 +00:00
+ - value: 345.90106625
+ ts: 2021-03-27 10:01:27.000000000 +00:00
+ - value: 345.98479175
+ ts: 2021-03-27 10:01:26.000000000 +00:00
+ - value: 346.09320613
+ ts: 2021-03-27 10:01:25.000000000 +00:00
+ - value: 346.20162051
+ ts: 2021-03-27 10:01:24.000000000 +00:00
+ - value: 346.31636971
+ ts: 2021-03-27 10:01:23.000000000 +00:00
+ - value: 346.43111891
+ ts: 2021-03-27 10:01:22.000000000 +00:00
+ - value: 346.540898
+ ts: 2021-03-27 10:01:21.000000000 +00:00
+ - value: 346.6506771
+ ts: 2021-03-27 10:01:20.000000000 +00:00
+ - value: 346.76305226
+ ts: 2021-03-27 10:01:19.000000000 +00:00
+ - value: 346.87542743
+ ts: 2021-03-27 10:01:18.000000000 +00:00
+ - value: 346.98947353
+ ts: 2021-03-27 10:01:17.000000000 +00:00
+ - value: 347.10351964
+ ts: 2021-03-27 10:01:16.000000000 +00:00
+ - value: 347.22655047
+ ts: 2021-03-27 10:01:15.000000000 +00:00
+ - value: 347.34958129
+ ts: 2021-03-27 10:01:14.000000000 +00:00
+ - value: 347.48916804
+ ts: 2021-03-27 10:01:13.000000000 +00:00
+ - value: 347.62875478
+ ts: 2021-03-27 10:01:12.000000000 +00:00
+ - value: 347.7857571
+ ts: 2021-03-27 10:01:11.000000000 +00:00
+ - value: 347.94275943
+ ts: 2021-03-27 10:01:10.000000000 +00:00
+ - value: 348.11871507
+ ts: 2021-03-27 10:01:09.000000000 +00:00
+ - value: 348.29467071
+ ts: 2021-03-27 10:01:08.000000000 +00:00
+ - value: 348.47321542
+ ts: 2021-03-27 10:01:07.000000000 +00:00
+ - value: 348.65176014
+ ts: 2021-03-27 10:01:06.000000000 +00:00
+ - value: 348.83041631
+ ts: 2021-03-27 10:01:05.000000000 +00:00
+ - value: 349.00907248
+ ts: 2021-03-27 10:01:04.000000000 +00:00
+ - value: 349.18934895
+ ts: 2021-03-27 10:01:03.000000000 +00:00
+ - value: 349.36962543
+ ts: 2021-03-27 10:01:02.000000000 +00:00
+ - value: 349.55167095
+ ts: 2021-03-27 10:01:01.000000000 +00:00
+ seasonal:
+ - value: -0.11610623
+ ts: 2021-03-27 10:06:48.000000000 +00:00
+ - value: 0.51702998
+ ts: 2021-03-27 10:06:47.000000000 +00:00
+ - value: 1.26913132
+ ts: 2021-03-27 10:06:46.000000000 +00:00
+ - value: 2.36141824
+ ts: 2021-03-27 10:06:45.000000000 +00:00
+ - value: 2.87680888
+ ts: 2021-03-27 10:06:44.000000000 +00:00
+ - value: 2.30218851
+ ts: 2021-03-27 10:06:43.000000000 +00:00
+ - value: 0.86825797
+ ts: 2021-03-27 10:06:42.000000000 +00:00
+ - value: -1.15161986
+ ts: 2021-03-27 10:06:41.000000000 +00:00
+ - value: -2.86735966
+ ts: 2021-03-27 10:06:40.000000000 +00:00
+ - value: -3.13006713
+ ts: 2021-03-27 10:06:39.000000000 +00:00
+ - value: -1.99001616
+ ts: 2021-03-27 10:06:38.000000000 +00:00
+ - value: -0.93966591
+ ts: 2021-03-27 10:06:37.000000000 +00:00
+ - value: -0.11610622
+ ts: 2021-03-27 10:06:36.000000000 +00:00
+ - value: 0.51702999
+ ts: 2021-03-27 10:06:35.000000000 +00:00
+ - value: 1.26913134
+ ts: 2021-03-27 10:06:34.000000000 +00:00
+ - value: 2.36141828
+ ts: 2021-03-27 10:06:33.000000000 +00:00
+ - value: 2.87680891
+ ts: 2021-03-27 10:06:32.000000000 +00:00
+ - value: 2.30218852
+ ts: 2021-03-27 10:06:31.000000000 +00:00
+ - value: 0.86825796
+ ts: 2021-03-27 10:06:30.000000000 +00:00
+ - value: -1.15161987
+ ts: 2021-03-27 10:06:29.000000000 +00:00
+ - value: -2.8673597
+ ts: 2021-03-27 10:06:28.000000000 +00:00
+ - value: -3.13006716
+ ts: 2021-03-27 10:06:27.000000000 +00:00
+ - value: -1.99001618
+ ts: 2021-03-27 10:06:26.000000000 +00:00
+ - value: -0.93966591
+ ts: 2021-03-27 10:06:25.000000000 +00:00
+ - value: -0.11610622
+ ts: 2021-03-27 10:06:24.000000000 +00:00
+ - value: 0.51702999
+ ts: 2021-03-27 10:06:23.000000000 +00:00
+ - value: 1.26913137
+ ts: 2021-03-27 10:06:22.000000000 +00:00
+ - value: 2.36141832
+ ts: 2021-03-27 10:06:21.000000000 +00:00
+ - value: 2.87680894
+ ts: 2021-03-27 10:06:20.000000000 +00:00
+ - value: 2.30218853
+ ts: 2021-03-27 10:06:19.000000000 +00:00
+ - value: 0.86825794
+ ts: 2021-03-27 10:06:18.000000000 +00:00
+ - value: -1.15161989
+ ts: 2021-03-27 10:06:17.000000000 +00:00
+ - value: -2.86735973
+ ts: 2021-03-27 10:06:16.000000000 +00:00
+ - value: -3.13006719
+ ts: 2021-03-27 10:06:15.000000000 +00:00
+ - value: -1.99001619
+ ts: 2021-03-27 10:06:14.000000000 +00:00
+ - value: -0.9396659
+ ts: 2021-03-27 10:06:13.000000000 +00:00
+ - value: -0.11610622
+ ts: 2021-03-27 10:06:12.000000000 +00:00
+ - value: 0.51702999
+ ts: 2021-03-27 10:06:11.000000000 +00:00
+ - value: 1.2691314
+ ts: 2021-03-27 10:06:10.000000000 +00:00
+ - value: 2.36141836
+ ts: 2021-03-27 10:06:09.000000000 +00:00
+ - value: 2.87680896
+ ts: 2021-03-27 10:06:08.000000000 +00:00
+ - value: 2.30218854
+ ts: 2021-03-27 10:06:07.000000000 +00:00
+ - value: 0.86825793
+ ts: 2021-03-27 10:06:06.000000000 +00:00
+ - value: -1.1516199
+ ts: 2021-03-27 10:06:05.000000000 +00:00
+ - value: -2.86735977
+ ts: 2021-03-27 10:06:04.000000000 +00:00
+ - value: -3.13006722
+ ts: 2021-03-27 10:06:03.000000000 +00:00
+ - value: -1.99001621
+ ts: 2021-03-27 10:06:02.000000000 +00:00
+ - value: -0.9396659
+ ts: 2021-03-27 10:06:01.000000000 +00:00
+ - value: -0.11610622
+ ts: 2021-03-27 10:06:00.000000000 +00:00
+ - value: 0.51702999
+ ts: 2021-03-27 10:05:59.000000000 +00:00
+ - value: 1.26913143
+ ts: 2021-03-27 10:05:58.000000000 +00:00
+ - value: 2.36141839
+ ts: 2021-03-27 10:05:57.000000000 +00:00
+ - value: 2.87680899
+ ts: 2021-03-27 10:05:56.000000000 +00:00
+ - value: 2.30218855
+ ts: 2021-03-27 10:05:55.000000000 +00:00
+ - value: 0.86825792
+ ts: 2021-03-27 10:05:54.000000000 +00:00
+ - value: -1.15161992
+ ts: 2021-03-27 10:05:53.000000000 +00:00
+ - value: -2.8673598
+ ts: 2021-03-27 10:05:52.000000000 +00:00
+ - value: -3.13006725
+ ts: 2021-03-27 10:05:51.000000000 +00:00
+ - value: -1.99001623
+ ts: 2021-03-27 10:05:50.000000000 +00:00
+ - value: -0.93966589
+ ts: 2021-03-27 10:05:49.000000000 +00:00
+ - value: -0.11610622
+ ts: 2021-03-27 10:05:48.000000000 +00:00
+ - value: 0.51702999
+ ts: 2021-03-27 10:05:47.000000000 +00:00
+ - value: 1.26913146
+ ts: 2021-03-27 10:05:46.000000000 +00:00
+ - value: 2.36141843
+ ts: 2021-03-27 10:05:45.000000000 +00:00
+ - value: 2.87680902
+ ts: 2021-03-27 10:05:44.000000000 +00:00
+ - value: 2.30218855
+ ts: 2021-03-27 10:05:43.000000000 +00:00
+ - value: 0.8682579
+ ts: 2021-03-27 10:05:42.000000000 +00:00
+ - value: -1.15161993
+ ts: 2021-03-27 10:05:41.000000000 +00:00
+ - value: -2.86735984
+ ts: 2021-03-27 10:05:40.000000000 +00:00
+ - value: -3.13006728
+ ts: 2021-03-27 10:05:39.000000000 +00:00
+ - value: -1.99001624
+ ts: 2021-03-27 10:05:38.000000000 +00:00
+ - value: -0.93966588
+ ts: 2021-03-27 10:05:37.000000000 +00:00
+ - value: -0.11610622
+ ts: 2021-03-27 10:05:36.000000000 +00:00
+ - value: 0.51703
+ ts: 2021-03-27 10:05:35.000000000 +00:00
+ - value: 1.26913148
+ ts: 2021-03-27 10:05:34.000000000 +00:00
+ - value: 2.36141847
+ ts: 2021-03-27 10:05:33.000000000 +00:00
+ - value: 2.87680904
+ ts: 2021-03-27 10:05:32.000000000 +00:00
+ - value: 2.30218856
+ ts: 2021-03-27 10:05:31.000000000 +00:00
+ - value: 0.86825789
+ ts: 2021-03-27 10:05:30.000000000 +00:00
+ - value: -1.15161995
+ ts: 2021-03-27 10:05:29.000000000 +00:00
+ - value: -2.86735987
+ ts: 2021-03-27 10:05:28.000000000 +00:00
+ - value: -3.13006731
+ ts: 2021-03-27 10:05:27.000000000 +00:00
+ - value: -1.99001626
+ ts: 2021-03-27 10:05:26.000000000 +00:00
+ - value: -0.93966588
+ ts: 2021-03-27 10:05:25.000000000 +00:00
+ - value: -0.11610621
+ ts: 2021-03-27 10:05:24.000000000 +00:00
+ - value: 0.51703
+ ts: 2021-03-27 10:05:23.000000000 +00:00
+ - value: 1.26913151
+ ts: 2021-03-27 10:05:22.000000000 +00:00
+ - value: 2.36141851
+ ts: 2021-03-27 10:05:21.000000000 +00:00
+ - value: 2.87680907
+ ts: 2021-03-27 10:05:20.000000000 +00:00
+ - value: 2.30218857
+ ts: 2021-03-27 10:05:19.000000000 +00:00
+ - value: 0.86825787
+ ts: 2021-03-27 10:05:18.000000000 +00:00
+ - value: -1.15161996
+ ts: 2021-03-27 10:05:17.000000000 +00:00
+ - value: -2.86735991
+ ts: 2021-03-27 10:05:16.000000000 +00:00
+ - value: -3.13006734
+ ts: 2021-03-27 10:05:15.000000000 +00:00
+ - value: -1.99001627
+ ts: 2021-03-27 10:05:14.000000000 +00:00
+ - value: -0.93966587
+ ts: 2021-03-27 10:05:13.000000000 +00:00
+ - value: -0.11610621
+ ts: 2021-03-27 10:05:12.000000000 +00:00
+ - value: 0.51703
+ ts: 2021-03-27 10:05:11.000000000 +00:00
+ - value: 1.26913154
+ ts: 2021-03-27 10:05:10.000000000 +00:00
+ - value: 2.36141855
+ ts: 2021-03-27 10:05:09.000000000 +00:00
+ - value: 2.8768091
+ ts: 2021-03-27 10:05:08.000000000 +00:00
+ - value: 2.30218858
+ ts: 2021-03-27 10:05:07.000000000 +00:00
+ - value: 0.86825786
+ ts: 2021-03-27 10:05:06.000000000 +00:00
+ - value: -1.15161998
+ ts: 2021-03-27 10:05:05.000000000 +00:00
+ - value: -2.86735994
+ ts: 2021-03-27 10:05:04.000000000 +00:00
+ - value: -3.13006737
+ ts: 2021-03-27 10:05:03.000000000 +00:00
+ - value: -1.99001629
+ ts: 2021-03-27 10:05:02.000000000 +00:00
+ - value: -0.93966587
+ ts: 2021-03-27 10:05:01.000000000 +00:00
+ - value: -0.11610621
+ ts: 2021-03-27 10:05:00.000000000 +00:00
+ - value: 0.51703
+ ts: 2021-03-27 10:04:59.000000000 +00:00
+ - value: 1.26913157
+ ts: 2021-03-27 10:04:58.000000000 +00:00
+ - value: 2.36141859
+ ts: 2021-03-27 10:04:57.000000000 +00:00
+ - value: 2.87680913
+ ts: 2021-03-27 10:04:56.000000000 +00:00
+ - value: 2.30218859
+ ts: 2021-03-27 10:04:55.000000000 +00:00
+ - value: 0.86825784
+ ts: 2021-03-27 10:04:54.000000000 +00:00
+ - value: -1.15161999
+ ts: 2021-03-27 10:04:53.000000000 +00:00
+ - value: -2.86735998
+ ts: 2021-03-27 10:04:52.000000000 +00:00
+ - value: -3.1300674
+ ts: 2021-03-27 10:04:51.000000000 +00:00
+ - value: -1.99001631
+ ts: 2021-03-27 10:04:50.000000000 +00:00
+ - value: -0.93966586
+ ts: 2021-03-27 10:04:49.000000000 +00:00
+ - value: -0.11610621
+ ts: 2021-03-27 10:04:48.000000000 +00:00
+ - value: 0.51703
+ ts: 2021-03-27 10:04:47.000000000 +00:00
+ - value: 1.26913159
+ ts: 2021-03-27 10:04:46.000000000 +00:00
+ - value: 2.36141863
+ ts: 2021-03-27 10:04:45.000000000 +00:00
+ - value: 2.87680915
+ ts: 2021-03-27 10:04:44.000000000 +00:00
+ - value: 2.3021886
+ ts: 2021-03-27 10:04:43.000000000 +00:00
+ - value: 0.86825783
+ ts: 2021-03-27 10:04:42.000000000 +00:00
+ - value: -1.15162001
+ ts: 2021-03-27 10:04:41.000000000 +00:00
+ - value: -2.86736001
+ ts: 2021-03-27 10:04:40.000000000 +00:00
+ - value: -3.13006743
+ ts: 2021-03-27 10:04:39.000000000 +00:00
+ - value: -1.99001632
+ ts: 2021-03-27 10:04:38.000000000 +00:00
+ - value: -0.93966586
+ ts: 2021-03-27 10:04:37.000000000 +00:00
+ - value: -0.11610621
+ ts: 2021-03-27 10:04:36.000000000 +00:00
+ - value: 0.51703
+ ts: 2021-03-27 10:04:35.000000000 +00:00
+ - value: 1.26913162
+ ts: 2021-03-27 10:04:34.000000000 +00:00
+ - value: 2.36141866
+ ts: 2021-03-27 10:04:33.000000000 +00:00
+ - value: 2.87680918
+ ts: 2021-03-27 10:04:32.000000000 +00:00
+ - value: 2.30218861
+ ts: 2021-03-27 10:04:31.000000000 +00:00
+ - value: 0.86825782
+ ts: 2021-03-27 10:04:30.000000000 +00:00
+ - value: -1.15162002
+ ts: 2021-03-27 10:04:29.000000000 +00:00
+ - value: -2.86736005
+ ts: 2021-03-27 10:04:28.000000000 +00:00
+ - value: -3.13006746
+ ts: 2021-03-27 10:04:27.000000000 +00:00
+ - value: -1.99001634
+ ts: 2021-03-27 10:04:26.000000000 +00:00
+ - value: -0.93966585
+ ts: 2021-03-27 10:04:25.000000000 +00:00
+ - value: -0.11610621
+ ts: 2021-03-27 10:04:24.000000000 +00:00
+ - value: 0.51703
+ ts: 2021-03-27 10:04:23.000000000 +00:00
+ - value: 1.26913165
+ ts: 2021-03-27 10:04:22.000000000 +00:00
+ - value: 2.3614187
+ ts: 2021-03-27 10:04:21.000000000 +00:00
+ - value: 2.87680921
+ ts: 2021-03-27 10:04:20.000000000 +00:00
+ - value: 2.30218862
+ ts: 2021-03-27 10:04:19.000000000 +00:00
+ - value: 0.8682578
+ ts: 2021-03-27 10:04:18.000000000 +00:00
+ - value: -1.15162004
+ ts: 2021-03-27 10:04:17.000000000 +00:00
+ - value: -2.86736008
+ ts: 2021-03-27 10:04:16.000000000 +00:00
+ - value: -3.13006749
+ ts: 2021-03-27 10:04:15.000000000 +00:00
+ - value: -1.99001635
+ ts: 2021-03-27 10:04:14.000000000 +00:00
+ - value: -0.93966584
+ ts: 2021-03-27 10:04:13.000000000 +00:00
+ - value: -0.11610621
+ ts: 2021-03-27 10:04:12.000000000 +00:00
+ - value: 0.51703001
+ ts: 2021-03-27 10:04:11.000000000 +00:00
+ - value: 1.26913168
+ ts: 2021-03-27 10:04:10.000000000 +00:00
+ - value: 2.36141874
+ ts: 2021-03-27 10:04:09.000000000 +00:00
+ - value: 2.87680923
+ ts: 2021-03-27 10:04:08.000000000 +00:00
+ - value: 2.30218863
+ ts: 2021-03-27 10:04:07.000000000 +00:00
+ - value: 0.86825779
+ ts: 2021-03-27 10:04:06.000000000 +00:00
+ - value: -1.15162006
+ ts: 2021-03-27 10:04:05.000000000 +00:00
+ - value: -2.86736012
+ ts: 2021-03-27 10:04:04.000000000 +00:00
+ - value: -3.13006753
+ ts: 2021-03-27 10:04:03.000000000 +00:00
+ - value: -1.99001637
+ ts: 2021-03-27 10:04:02.000000000 +00:00
+ - value: -0.93966584
+ ts: 2021-03-27 10:04:01.000000000 +00:00
+ - value: -0.1161062
+ ts: 2021-03-27 10:04:00.000000000 +00:00
+ - value: 0.51703001
+ ts: 2021-03-27 10:03:59.000000000 +00:00
+ - value: 1.2691317
+ ts: 2021-03-27 10:03:58.000000000 +00:00
+ - value: 2.36141878
+ ts: 2021-03-27 10:03:57.000000000 +00:00
+ - value: 2.87680926
+ ts: 2021-03-27 10:03:56.000000000 +00:00
+ - value: 2.30218864
+ ts: 2021-03-27 10:03:55.000000000 +00:00
+ - value: 0.86825777
+ ts: 2021-03-27 10:03:54.000000000 +00:00
+ - value: -1.15162007
+ ts: 2021-03-27 10:03:53.000000000 +00:00
+ - value: -2.86736015
+ ts: 2021-03-27 10:03:52.000000000 +00:00
+ - value: -3.13006756
+ ts: 2021-03-27 10:03:51.000000000 +00:00
+ - value: -1.99001639
+ ts: 2021-03-27 10:03:50.000000000 +00:00
+ - value: -0.93966583
+ ts: 2021-03-27 10:03:49.000000000 +00:00
+ - value: -0.1161062
+ ts: 2021-03-27 10:03:48.000000000 +00:00
+ - value: 0.51703001
+ ts: 2021-03-27 10:03:47.000000000 +00:00
+ - value: 1.26913173
+ ts: 2021-03-27 10:03:46.000000000 +00:00
+ - value: 2.36141882
+ ts: 2021-03-27 10:03:45.000000000 +00:00
+ - value: 2.87680929
+ ts: 2021-03-27 10:03:44.000000000 +00:00
+ - value: 2.30218865
+ ts: 2021-03-27 10:03:43.000000000 +00:00
+ - value: 0.86825776
+ ts: 2021-03-27 10:03:42.000000000 +00:00
+ - value: -1.15162009
+ ts: 2021-03-27 10:03:41.000000000 +00:00
+ - value: -2.86736019
+ ts: 2021-03-27 10:03:40.000000000 +00:00
+ - value: -3.13006759
+ ts: 2021-03-27 10:03:39.000000000 +00:00
+ - value: -1.9900164
+ ts: 2021-03-27 10:03:38.000000000 +00:00
+ - value: -0.93966583
+ ts: 2021-03-27 10:03:37.000000000 +00:00
+ - value: -0.1161062
+ ts: 2021-03-27 10:03:36.000000000 +00:00
+ - value: 0.51703001
+ ts: 2021-03-27 10:03:35.000000000 +00:00
+ - value: 1.26913176
+ ts: 2021-03-27 10:03:34.000000000 +00:00
+ - value: 2.36141886
+ ts: 2021-03-27 10:03:33.000000000 +00:00
+ - value: 2.87680931
+ ts: 2021-03-27 10:03:32.000000000 +00:00
+ - value: 2.30218865
+ ts: 2021-03-27 10:03:31.000000000 +00:00
+ - value: 0.86825774
+ ts: 2021-03-27 10:03:30.000000000 +00:00
+ - value: -1.1516201
+ ts: 2021-03-27 10:03:29.000000000 +00:00
+ - value: -2.86736022
+ ts: 2021-03-27 10:03:28.000000000 +00:00
+ - value: -3.13006762
+ ts: 2021-03-27 10:03:27.000000000 +00:00
+ - value: -1.99001642
+ ts: 2021-03-27 10:03:26.000000000 +00:00
+ - value: -0.93966582
+ ts: 2021-03-27 10:03:25.000000000 +00:00
+ - value: -0.1161062
+ ts: 2021-03-27 10:03:24.000000000 +00:00
+ - value: 0.51703001
+ ts: 2021-03-27 10:03:23.000000000 +00:00
+ - value: 1.26913179
+ ts: 2021-03-27 10:03:22.000000000 +00:00
+ - value: 2.36141889
+ ts: 2021-03-27 10:03:21.000000000 +00:00
+ - value: 2.87680934
+ ts: 2021-03-27 10:03:20.000000000 +00:00
+ - value: 2.30218866
+ ts: 2021-03-27 10:03:19.000000000 +00:00
+ - value: 0.86825773
+ ts: 2021-03-27 10:03:18.000000000 +00:00
+ - value: -1.15162012
+ ts: 2021-03-27 10:03:17.000000000 +00:00
+ - value: -2.86736026
+ ts: 2021-03-27 10:03:16.000000000 +00:00
+ - value: -3.13006765
+ ts: 2021-03-27 10:03:15.000000000 +00:00
+ - value: -1.99001643
+ ts: 2021-03-27 10:03:14.000000000 +00:00
+ - value: -0.93966582
+ ts: 2021-03-27 10:03:13.000000000 +00:00
+ - value: -0.1161062
+ ts: 2021-03-27 10:03:12.000000000 +00:00
+ - value: 0.51703001
+ ts: 2021-03-27 10:03:11.000000000 +00:00
+ - value: 1.26913181
+ ts: 2021-03-27 10:03:10.000000000 +00:00
+ - value: 2.36141893
+ ts: 2021-03-27 10:03:09.000000000 +00:00
+ - value: 2.87680937
+ ts: 2021-03-27 10:03:08.000000000 +00:00
+ - value: 2.30218867
+ ts: 2021-03-27 10:03:07.000000000 +00:00
+ - value: 0.86825772
+ ts: 2021-03-27 10:03:06.000000000 +00:00
+ - value: -1.15162013
+ ts: 2021-03-27 10:03:05.000000000 +00:00
+ - value: -2.86736029
+ ts: 2021-03-27 10:03:04.000000000 +00:00
+ - value: -3.13006768
+ ts: 2021-03-27 10:03:03.000000000 +00:00
+ - value: -1.99001645
+ ts: 2021-03-27 10:03:02.000000000 +00:00
+ - value: -0.93966581
+ ts: 2021-03-27 10:03:01.000000000 +00:00
+ - value: -0.1161062
+ ts: 2021-03-27 10:03:00.000000000 +00:00
+ - value: 0.51703001
+ ts: 2021-03-27 10:02:59.000000000 +00:00
+ - value: 1.26913184
+ ts: 2021-03-27 10:02:58.000000000 +00:00
+ - value: 2.36141897
+ ts: 2021-03-27 10:02:57.000000000 +00:00
+ - value: 2.87680939
+ ts: 2021-03-27 10:02:56.000000000 +00:00
+ - value: 2.30218868
+ ts: 2021-03-27 10:02:55.000000000 +00:00
+ - value: 0.8682577
+ ts: 2021-03-27 10:02:54.000000000 +00:00
+ - value: -1.15162015
+ ts: 2021-03-27 10:02:53.000000000 +00:00
+ - value: -2.86736033
+ ts: 2021-03-27 10:02:52.000000000 +00:00
+ - value: -3.13006771
+ ts: 2021-03-27 10:02:51.000000000 +00:00
+ - value: -1.99001647
+ ts: 2021-03-27 10:02:50.000000000 +00:00
+ - value: -0.9396658
+ ts: 2021-03-27 10:02:49.000000000 +00:00
+ - value: -0.11610619
+ ts: 2021-03-27 10:02:48.000000000 +00:00
+ - value: 0.51703002
+ ts: 2021-03-27 10:02:47.000000000 +00:00
+ - value: 1.26913187
+ ts: 2021-03-27 10:02:46.000000000 +00:00
+ - value: 2.36141901
+ ts: 2021-03-27 10:02:45.000000000 +00:00
+ - value: 2.87680942
+ ts: 2021-03-27 10:02:44.000000000 +00:00
+ - value: 2.30218869
+ ts: 2021-03-27 10:02:43.000000000 +00:00
+ - value: 0.86825769
+ ts: 2021-03-27 10:02:42.000000000 +00:00
+ - value: -1.15162016
+ ts: 2021-03-27 10:02:41.000000000 +00:00
+ - value: -2.86736036
+ ts: 2021-03-27 10:02:40.000000000 +00:00
+ - value: -3.13006774
+ ts: 2021-03-27 10:02:39.000000000 +00:00
+ - value: -1.99001648
+ ts: 2021-03-27 10:02:38.000000000 +00:00
+ - value: -0.9396658
+ ts: 2021-03-27 10:02:37.000000000 +00:00
+ - value: -0.11610619
+ ts: 2021-03-27 10:02:36.000000000 +00:00
+ - value: 0.51703002
+ ts: 2021-03-27 10:02:35.000000000 +00:00
+ - value: 1.2691319
+ ts: 2021-03-27 10:02:34.000000000 +00:00
+ - value: 2.36141905
+ ts: 2021-03-27 10:02:33.000000000 +00:00
+ - value: 2.87680945
+ ts: 2021-03-27 10:02:32.000000000 +00:00
+ - value: 2.3021887
+ ts: 2021-03-27 10:02:31.000000000 +00:00
+ - value: 0.86825767
+ ts: 2021-03-27 10:02:30.000000000 +00:00
+ - value: -1.15162018
+ ts: 2021-03-27 10:02:29.000000000 +00:00
+ - value: -2.8673604
+ ts: 2021-03-27 10:02:28.000000000 +00:00
+ - value: -3.13006777
+ ts: 2021-03-27 10:02:27.000000000 +00:00
+ - value: -1.9900165
+ ts: 2021-03-27 10:02:26.000000000 +00:00
+ - value: -0.93966579
+ ts: 2021-03-27 10:02:25.000000000 +00:00
+ - value: -0.11610619
+ ts: 2021-03-27 10:02:24.000000000 +00:00
+ - value: 0.51703002
+ ts: 2021-03-27 10:02:23.000000000 +00:00
+ - value: 1.26913192
+ ts: 2021-03-27 10:02:22.000000000 +00:00
+ - value: 2.36141909
+ ts: 2021-03-27 10:02:21.000000000 +00:00
+ - value: 2.87680948
+ ts: 2021-03-27 10:02:20.000000000 +00:00
+ - value: 2.30218871
+ ts: 2021-03-27 10:02:19.000000000 +00:00
+ - value: 0.86825766
+ ts: 2021-03-27 10:02:18.000000000 +00:00
+ - value: -1.15162019
+ ts: 2021-03-27 10:02:17.000000000 +00:00
+ - value: -2.86736043
+ ts: 2021-03-27 10:02:16.000000000 +00:00
+ - value: -3.1300678
+ ts: 2021-03-27 10:02:15.000000000 +00:00
+ - value: -1.99001651
+ ts: 2021-03-27 10:02:14.000000000 +00:00
+ - value: -0.93966579
+ ts: 2021-03-27 10:02:13.000000000 +00:00
+ - value: -0.11610619
+ ts: 2021-03-27 10:02:12.000000000 +00:00
+ - value: 0.51703002
+ ts: 2021-03-27 10:02:11.000000000 +00:00
+ - value: 1.26913195
+ ts: 2021-03-27 10:02:10.000000000 +00:00
+ - value: 2.36141913
+ ts: 2021-03-27 10:02:09.000000000 +00:00
+ - value: 2.8768095
+ ts: 2021-03-27 10:02:08.000000000 +00:00
+ - value: 2.30218872
+ ts: 2021-03-27 10:02:07.000000000 +00:00
+ - value: 0.86825764
+ ts: 2021-03-27 10:02:06.000000000 +00:00
+ - value: -1.15162021
+ ts: 2021-03-27 10:02:05.000000000 +00:00
+ - value: -2.86736047
+ ts: 2021-03-27 10:02:04.000000000 +00:00
+ - value: -3.13006783
+ ts: 2021-03-27 10:02:03.000000000 +00:00
+ - value: -1.99001653
+ ts: 2021-03-27 10:02:02.000000000 +00:00
+ - value: -0.93966578
+ ts: 2021-03-27 10:02:01.000000000 +00:00
+ - value: -0.11610619
+ ts: 2021-03-27 10:02:00.000000000 +00:00
+ - value: 0.51703002
+ ts: 2021-03-27 10:01:59.000000000 +00:00
+ - value: 1.26913198
+ ts: 2021-03-27 10:01:58.000000000 +00:00
+ - value: 2.36141916
+ ts: 2021-03-27 10:01:57.000000000 +00:00
+ - value: 2.87680953
+ ts: 2021-03-27 10:01:56.000000000 +00:00
+ - value: 2.30218873
+ ts: 2021-03-27 10:01:55.000000000 +00:00
+ - value: 0.86825763
+ ts: 2021-03-27 10:01:54.000000000 +00:00
+ - value: -1.15162022
+ ts: 2021-03-27 10:01:53.000000000 +00:00
+ - value: -2.8673605
+ ts: 2021-03-27 10:01:52.000000000 +00:00
+ - value: -3.13006786
+ ts: 2021-03-27 10:01:51.000000000 +00:00
+ - value: -1.99001655
+ ts: 2021-03-27 10:01:50.000000000 +00:00
+ - value: -0.93966578
+ ts: 2021-03-27 10:01:49.000000000 +00:00
+ - value: -0.11610619
+ ts: 2021-03-27 10:01:48.000000000 +00:00
+ - value: 0.51703002
+ ts: 2021-03-27 10:01:47.000000000 +00:00
+ - value: 1.26913201
+ ts: 2021-03-27 10:01:46.000000000 +00:00
+ - value: 2.3614192
+ ts: 2021-03-27 10:01:45.000000000 +00:00
+ - value: 2.87680956
+ ts: 2021-03-27 10:01:44.000000000 +00:00
+ - value: 2.30218874
+ ts: 2021-03-27 10:01:43.000000000 +00:00
+ - value: 0.86825762
+ ts: 2021-03-27 10:01:42.000000000 +00:00
+ - value: -1.15162024
+ ts: 2021-03-27 10:01:41.000000000 +00:00
+ - value: -2.86736054
+ ts: 2021-03-27 10:01:40.000000000 +00:00
+ - value: -3.13006789
+ ts: 2021-03-27 10:01:39.000000000 +00:00
+ - value: -1.99001656
+ ts: 2021-03-27 10:01:38.000000000 +00:00
+ - value: -0.93966577
+ ts: 2021-03-27 10:01:37.000000000 +00:00
+ - value: -0.11610619
+ ts: 2021-03-27 10:01:36.000000000 +00:00
+ - value: 0.51703003
+ ts: 2021-03-27 10:01:35.000000000 +00:00
+ - value: 1.26913203
+ ts: 2021-03-27 10:01:34.000000000 +00:00
+ - value: 2.36141924
+ ts: 2021-03-27 10:01:33.000000000 +00:00
+ - value: 2.87680958
+ ts: 2021-03-27 10:01:32.000000000 +00:00
+ - value: 2.30218875
+ ts: 2021-03-27 10:01:31.000000000 +00:00
+ - value: 0.8682576
+ ts: 2021-03-27 10:01:30.000000000 +00:00
+ - value: -1.15162025
+ ts: 2021-03-27 10:01:29.000000000 +00:00
+ - value: -2.86736057
+ ts: 2021-03-27 10:01:28.000000000 +00:00
+ - value: -3.13006792
+ ts: 2021-03-27 10:01:27.000000000 +00:00
+ - value: -1.99001658
+ ts: 2021-03-27 10:01:26.000000000 +00:00
+ - value: -0.93966577
+ ts: 2021-03-27 10:01:25.000000000 +00:00
+ - value: -0.11610618
+ ts: 2021-03-27 10:01:24.000000000 +00:00
+ - value: 0.51703003
+ ts: 2021-03-27 10:01:23.000000000 +00:00
+ - value: 1.26913206
+ ts: 2021-03-27 10:01:22.000000000 +00:00
+ - value: 2.36141928
+ ts: 2021-03-27 10:01:21.000000000 +00:00
+ - value: 2.87680961
+ ts: 2021-03-27 10:01:20.000000000 +00:00
+ - value: 2.30218875
+ ts: 2021-03-27 10:01:19.000000000 +00:00
+ - value: 0.86825759
+ ts: 2021-03-27 10:01:18.000000000 +00:00
+ - value: -1.15162027
+ ts: 2021-03-27 10:01:17.000000000 +00:00
+ - value: -2.86736061
+ ts: 2021-03-27 10:01:16.000000000 +00:00
+ - value: -3.13006795
+ ts: 2021-03-27 10:01:15.000000000 +00:00
+ - value: -1.99001659
+ ts: 2021-03-27 10:01:14.000000000 +00:00
+ - value: -0.93966576
+ ts: 2021-03-27 10:01:13.000000000 +00:00
+ - value: -0.11610618
+ ts: 2021-03-27 10:01:12.000000000 +00:00
+ - value: 0.51703003
+ ts: 2021-03-27 10:01:11.000000000 +00:00
+ - value: 1.26913209
+ ts: 2021-03-27 10:01:10.000000000 +00:00
+ - value: 2.36141932
+ ts: 2021-03-27 10:01:09.000000000 +00:00
+ - value: 2.87680964
+ ts: 2021-03-27 10:01:08.000000000 +00:00
+ - value: 2.30218876
+ ts: 2021-03-27 10:01:07.000000000 +00:00
+ - value: 0.86825757
+ ts: 2021-03-27 10:01:06.000000000 +00:00
+ - value: -1.15162028
+ ts: 2021-03-27 10:01:05.000000000 +00:00
+ - value: -2.86736065
+ ts: 2021-03-27 10:01:04.000000000 +00:00
+ - value: -3.13006799
+ ts: 2021-03-27 10:01:03.000000000 +00:00
+ - value: -1.99001661
+ ts: 2021-03-27 10:01:02.000000000 +00:00
+ - value: -0.93966576
+ ts: 2021-03-27 10:01:01.000000000 +00:00
+ remainder:
+ - value: 0.2537511
+ ts: 2021-03-27 10:06:48.000000000 +00:00
+ - value: 0.31827372
+ ts: 2021-03-27 10:06:47.000000000 +00:00
+ - value: -0.14616877
+ ts: 2021-03-27 10:06:46.000000000 +00:00
+ - value: -0.319981
+ ts: 2021-03-27 10:06:45.000000000 +00:00
+ - value: -0.37689695
+ ts: 2021-03-27 10:06:44.000000000 +00:00
+ - value: -0.0788889
+ ts: 2021-03-27 10:06:43.000000000 +00:00
+ - value: -0.29157069
+ ts: 2021-03-27 10:06:42.000000000 +00:00
+ - value: -0.04490213
+ ts: 2021-03-27 10:06:41.000000000 +00:00
+ - value: 0.5776284
+ ts: 2021-03-27 10:06:40.000000000 +00:00
+ - value: 0.2559686
+ ts: 2021-03-27 10:06:39.000000000 +00:00
+ - value: 0.47155036
+ ts: 2021-03-27 10:06:38.000000000 +00:00
+ - value: 0.04458335
+ ts: 2021-03-27 10:06:37.000000000 +00:00
+ - value: -0.1155931
+ ts: 2021-03-27 10:06:36.000000000 +00:00
+ - value: -0.24336576
+ ts: 2021-03-27 10:06:35.000000000 +00:00
+ - value: -0.38010357
+ ts: 2021-03-27 10:06:34.000000000 +00:00
+ - value: -0.08528037
+ ts: 2021-03-27 10:06:33.000000000 +00:00
+ - value: 0.21643913
+ ts: 2021-03-27 10:06:32.000000000 +00:00
+ - value: 0.37164185
+ ts: 2021-03-27 10:06:31.000000000 +00:00
+ - value: 0.33615475
+ ts: 2021-03-27 10:06:30.000000000 +00:00
+ - value: 0.03698779
+ ts: 2021-03-27 10:06:29.000000000 +00:00
+ - value: -0.03631719
+ ts: 2021-03-27 10:06:28.000000000 +00:00
+ - value: 0.00804145
+ ts: 2021-03-27 10:06:27.000000000 +00:00
+ - value: -0.16035836
+ ts: 2021-03-27 10:06:26.000000000 +00:00
+ - value: -0.06316782
+ ts: 2021-03-27 10:06:25.000000000 +00:00
+ - value: -0.22918669
+ ts: 2021-03-27 10:06:24.000000000 +00:00
+ - value: -0.08893093
+ ts: 2021-03-27 10:06:23.000000000 +00:00
+ - value: -0.12764034
+ ts: 2021-03-27 10:06:22.000000000 +00:00
+ - value: -0.36767887
+ ts: 2021-03-27 10:06:21.000000000 +00:00
+ - value: 0.16917893
+ ts: 2021-03-27 10:06:20.000000000 +00:00
+ - value: -0.14904762
+ ts: 2021-03-27 10:06:19.000000000 +00:00
+ - value: 0.03203601
+ ts: 2021-03-27 10:06:18.000000000 +00:00
+ - value: 0.21568094
+ ts: 2021-03-27 10:06:17.000000000 +00:00
+ - value: 0.04518789
+ ts: 2021-03-27 10:06:16.000000000 +00:00
+ - value: 0.52501048
+ ts: 2021-03-27 10:06:15.000000000 +00:00
+ - value: 0.02207463
+ ts: 2021-03-27 10:06:14.000000000 +00:00
+ - value: -0.11851019
+ ts: 2021-03-27 10:06:13.000000000 +00:00
+ - value: -0.06230439
+ ts: 2021-03-27 10:06:12.000000000 +00:00
+ - value: -0.16134551
+ ts: 2021-03-27 10:06:11.000000000 +00:00
+ - value: 0.09064816
+ ts: 2021-03-27 10:06:10.000000000 +00:00
+ - value: -0.17347068
+ ts: 2021-03-27 10:06:09.000000000 +00:00
+ - value: -0.15069317
+ ts: 2021-03-27 10:06:08.000000000 +00:00
+ - value: -0.02542565
+ ts: 2021-03-27 10:06:07.000000000 +00:00
+ - value: 0.24915205
+ ts: 2021-03-27 10:06:06.000000000 +00:00
+ - value: -0.01268365
+ ts: 2021-03-27 10:06:05.000000000 +00:00
+ - value: 0.55134267
+ ts: 2021-03-27 10:06:04.000000000 +00:00
+ - value: -0.10740304
+ ts: 2021-03-27 10:06:03.000000000 +00:00
+ - value: -0.03890722
+ ts: 2021-03-27 10:06:02.000000000 +00:00
+ - value: -0.11162761
+ ts: 2021-03-27 10:06:01.000000000 +00:00
+ - value: 0.02244263
+ ts: 2021-03-27 10:06:00.000000000 +00:00
+ - value: -0.25826208
+ ts: 2021-03-27 10:05:59.000000000 +00:00
+ - value: -0.15793201
+ ts: 2021-03-27 10:05:58.000000000 +00:00
+ - value: 0.07927745
+ ts: 2021-03-27 10:05:57.000000000 +00:00
+ - value: 0.38338327
+ ts: 2021-03-27 10:05:56.000000000 +00:00
+ - value: 0.19062662
+ ts: 2021-03-27 10:05:55.000000000 +00:00
+ - value: -0.19281985
+ ts: 2021-03-27 10:05:54.000000000 +00:00
+ - value: -0.2034692
+ ts: 2021-03-27 10:05:53.000000000 +00:00
+ - value: -0.0482565
+ ts: 2021-03-27 10:05:52.000000000 +00:00
+ - value: 0.06140817
+ ts: 2021-03-27 10:05:51.000000000 +00:00
+ - value: -0.22168563
+ ts: 2021-03-27 10:05:50.000000000 +00:00
+ - value: 0.02988229
+ ts: 2021-03-27 10:05:49.000000000 +00:00
+ - value: 0.28824088
+ ts: 2021-03-27 10:05:48.000000000 +00:00
+ - value: 0.27262908
+ ts: 2021-03-27 10:05:47.000000000 +00:00
+ - value: 0.13805203
+ ts: 2021-03-27 10:05:46.000000000 +00:00
+ - value: -0.35296744
+ ts: 2021-03-27 10:05:45.000000000 +00:00
+ - value: -0.25709051
+ ts: 2021-03-27 10:05:44.000000000 +00:00
+ - value: -0.02665891
+ ts: 2021-03-27 10:05:43.000000000 +00:00
+ - value: -0.11691712
+ ts: 2021-03-27 10:05:42.000000000 +00:00
+ - value: 0.03726986
+ ts: 2021-03-27 10:05:41.000000000 +00:00
+ - value: -0.16268109
+ ts: 2021-03-27 10:05:40.000000000 +00:00
+ - value: 0.46883438
+ ts: 2021-03-27 10:05:39.000000000 +00:00
+ - value: 0.06759138
+ ts: 2021-03-27 10:05:38.000000000 +00:00
+ - value: -0.06675992
+ ts: 2021-03-27 10:05:37.000000000 +00:00
+ - value: -0.12432053
+ ts: 2021-03-27 10:05:36.000000000 +00:00
+ - value: 0.22562015
+ ts: 2021-03-27 10:05:35.000000000 +00:00
+ - value: -0.14340446
+ ts: 2021-03-27 10:05:34.000000000 +00:00
+ - value: -0.06011864
+ ts: 2021-03-27 10:05:33.000000000 +00:00
+ - value: -0.55993642
+ ts: 2021-03-27 10:05:32.000000000 +00:00
+ - value: -0.30520376
+ ts: 2021-03-27 10:05:31.000000000 +00:00
+ - value: 0.30883909
+ ts: 2021-03-27 10:05:30.000000000 +00:00
+ - value: -0.11685741
+ ts: 2021-03-27 10:05:29.000000000 +00:00
+ - value: 0.51330817
+ ts: 2021-03-27 10:05:28.000000000 +00:00
+ - value: 0.2279996
+ ts: 2021-03-27 10:05:27.000000000 +00:00
+ - value: 0.60993255
+ ts: 2021-03-27 10:05:26.000000000 +00:00
+ - value: -0.36898444
+ ts: 2021-03-27 10:05:25.000000000 +00:00
+ - value: -0.41111071
+ ts: 2021-03-27 10:05:24.000000000 +00:00
+ - value: -0.0331798
+ ts: 2021-03-27 10:05:23.000000000 +00:00
+ - value: -0.0042142
+ ts: 2021-03-27 10:05:22.000000000 +00:00
+ - value: 0.1013334
+ ts: 2021-03-27 10:05:21.000000000 +00:00
+ - value: -0.09622256
+ ts: 2021-03-27 10:05:20.000000000 +00:00
+ - value: 0.1137772
+ ts: 2021-03-27 10:05:19.000000000 +00:00
+ - value: 0.14308716
+ ts: 2021-03-27 10:05:18.000000000 +00:00
+ - value: 0.01446626
+ ts: 2021-03-27 10:05:17.000000000 +00:00
+ - value: -0.17829253
+ ts: 2021-03-27 10:05:16.000000000 +00:00
+ - value: -0.57762786
+ ts: 2021-03-27 10:05:15.000000000 +00:00
+ - value: 0.0302783
+ ts: 2021-03-27 10:05:14.000000000 +00:00
+ - value: 0.16243373
+ ts: 2021-03-27 10:05:13.000000000 +00:00
+ - value: 0.65137989
+ ts: 2021-03-27 10:05:12.000000000 +00:00
+ - value: 0.13795575
+ ts: 2021-03-27 10:05:11.000000000 +00:00
+ - value: -0.11443372
+ ts: 2021-03-27 10:05:10.000000000 +00:00
+ - value: 0.05150198
+ ts: 2021-03-27 10:05:09.000000000 +00:00
+ - value: 0.00433414
+ ts: 2021-03-27 10:05:08.000000000 +00:00
+ - value: -0.3229799
+ ts: 2021-03-27 10:05:07.000000000 +00:00
+ - value: -0.40098374
+ ts: 2021-03-27 10:05:06.000000000 +00:00
+ - value: -0.05427742
+ ts: 2021-03-27 10:05:05.000000000 +00:00
+ - value: -0.13170897
+ ts: 2021-03-27 10:05:04.000000000 +00:00
+ - value: 0.04775303
+ ts: 2021-03-27 10:05:03.000000000 +00:00
+ - value: 0.25445652
+ ts: 2021-03-27 10:05:02.000000000 +00:00
+ - value: 0.38595108
+ ts: 2021-03-27 10:05:01.000000000 +00:00
+ - value: 0.09423641
+ ts: 2021-03-27 10:05:00.000000000 +00:00
+ - value: -0.03636937
+ ts: 2021-03-27 10:04:59.000000000 +00:00
+ - value: -0.1759405
+ ts: 2021-03-27 10:04:58.000000000 +00:00
+ - value: -0.27686945
+ ts: 2021-03-27 10:04:57.000000000 +00:00
+ - value: -0.21090192
+ ts: 2021-03-27 10:04:56.000000000 +00:00
+ - value: 0.13754255
+ ts: 2021-03-27 10:04:55.000000000 +00:00
+ - value: 0.22529723
+ ts: 2021-03-27 10:04:54.000000000 +00:00
+ - value: 0.05274009
+ ts: 2021-03-27 10:04:53.000000000 +00:00
+ - value: -0.1539549
+ ts: 2021-03-27 10:04:52.000000000 +00:00
+ - value: -0.15193036
+ ts: 2021-03-27 10:04:51.000000000 +00:00
+ - value: -0.40266435
+ ts: 2021-03-27 10:04:50.000000000 +00:00
+ - value: -0.10028508
+ ts: 2021-03-27 10:04:49.000000000 +00:00
+ - value: 0.17888499
+ ts: 2021-03-27 10:04:48.000000000 +00:00
+ - value: 0.05358848
+ ts: 2021-03-27 10:04:47.000000000 +00:00
+ - value: 0.27932659
+ ts: 2021-03-27 10:04:46.000000000 +00:00
+ - value: 0.04856367
+ ts: 2021-03-27 10:04:45.000000000 +00:00
+ - value: 0.10469726
+ ts: 2021-03-27 10:04:44.000000000 +00:00
+ - value: -0.21762576
+ ts: 2021-03-27 10:04:43.000000000 +00:00
+ - value: 0.25936144
+ ts: 2021-03-27 10:04:42.000000000 +00:00
+ - value: -0.04886451
+ ts: 2021-03-27 10:04:41.000000000 +00:00
+ - value: 0.2787717
+ ts: 2021-03-27 10:04:40.000000000 +00:00
+ - value: -0.11780994
+ ts: 2021-03-27 10:04:39.000000000 +00:00
+ - value: -0.32715011
+ ts: 2021-03-27 10:04:38.000000000 +00:00
+ - value: -0.07384656
+ ts: 2021-03-27 10:04:37.000000000 +00:00
+ - value: -0.12375219
+ ts: 2021-03-27 10:04:36.000000000 +00:00
+ - value: 0.10502454
+ ts: 2021-03-27 10:04:35.000000000 +00:00
+ - value: 0.21483586
+ ts: 2021-03-27 10:04:34.000000000 +00:00
+ - value: 0.25508672
+ ts: 2021-03-27 10:04:33.000000000 +00:00
+ - value: -0.37776588
+ ts: 2021-03-27 10:04:32.000000000 +00:00
+ - value: -0.21610477
+ ts: 2021-03-27 10:04:31.000000000 +00:00
+ - value: -0.14513343
+ ts: 2021-03-27 10:04:30.000000000 +00:00
+ - value: 0.15249151
+ ts: 2021-03-27 10:04:29.000000000 +00:00
+ - value: 0.23597864
+ ts: 2021-03-27 10:04:28.000000000 +00:00
+ - value: 0.39651753
+ ts: 2021-03-27 10:04:27.000000000 +00:00
+ - value: 0.10429788
+ ts: 2021-03-27 10:04:26.000000000 +00:00
+ - value: 0.06882056
+ ts: 2021-03-27 10:04:25.000000000 +00:00
+ - value: 0.19013408
+ ts: 2021-03-27 10:04:24.000000000 +00:00
+ - value: -0.01126829
+ ts: 2021-03-27 10:04:23.000000000 +00:00
+ - value: -0.29163609
+ ts: 2021-03-27 10:04:22.000000000 +00:00
+ - value: -0.67513904
+ ts: 2021-03-27 10:04:21.000000000 +00:00
+ - value: -0.05174544
+ ts: 2021-03-27 10:04:20.000000000 +00:00
+ - value: 0.0721371
+ ts: 2021-03-27 10:04:19.000000000 +00:00
+ - value: 0.15532987
+ ts: 2021-03-27 10:04:18.000000000 +00:00
+ - value: 0.19266578
+ ts: 2021-03-27 10:04:17.000000000 +00:00
+ - value: -0.24413611
+ ts: 2021-03-27 10:04:16.000000000 +00:00
+ - value: 0.10018183
+ ts: 2021-03-27 10:04:15.000000000 +00:00
+ - value: 0.21174122
+ ts: 2021-03-27 10:04:14.000000000 +00:00
+ - value: 0.22023314
+ ts: 2021-03-27 10:04:13.000000000 +00:00
+ - value: -0.00448408
+ ts: 2021-03-27 10:04:12.000000000 +00:00
+ - value: 0.20211811
+ ts: 2021-03-27 10:04:11.000000000 +00:00
+ - value: -0.50024517
+ ts: 2021-03-27 10:04:10.000000000 +00:00
+ - value: 0.27746423
+ ts: 2021-03-27 10:04:09.000000000 +00:00
+ - value: -0.0179298
+ ts: 2021-03-27 10:04:08.000000000 +00:00
+ - value: -0.5873403
+ ts: 2021-03-27 10:04:07.000000000 +00:00
+ - value: -0.39744056
+ ts: 2021-03-27 10:04:06.000000000 +00:00
+ - value: -0.25649493
+ ts: 2021-03-27 10:04:05.000000000 +00:00
+ - value: -0.15968709
+ ts: 2021-03-27 10:04:04.000000000 +00:00
+ - value: 0.22389733
+ ts: 2021-03-27 10:04:03.000000000 +00:00
+ - value: 0.15472318
+ ts: 2021-03-27 10:04:02.000000000 +00:00
+ - value: 0.05035288
+ ts: 2021-03-27 10:04:01.000000000 +00:00
+ - value: 0.00277347
+ ts: 2021-03-27 10:04:00.000000000 +00:00
+ - value: 0.11696524
+ ts: 2021-03-27 10:03:59.000000000 +00:00
+ - value: -0.09780848
+ ts: 2021-03-27 10:03:58.000000000 +00:00
+ - value: -0.13055743
+ ts: 2021-03-27 10:03:57.000000000 +00:00
+ - value: 0.13359021
+ ts: 2021-03-27 10:03:56.000000000 +00:00
+ - value: 0.14726357
+ ts: 2021-03-27 10:03:55.000000000 +00:00
+ - value: 0.26024718
+ ts: 2021-03-27 10:03:54.000000000 +00:00
+ - value: 0.5660084
+ ts: 2021-03-27 10:03:53.000000000 +00:00
+ - value: 0.38763186
+ ts: 2021-03-27 10:03:52.000000000 +00:00
+ - value: 0.28120044
+ ts: 2021-03-27 10:03:51.000000000 +00:00
+ - value: 0.11201044
+ ts: 2021-03-27 10:03:50.000000000 +00:00
+ - value: -0.45718215
+ ts: 2021-03-27 10:03:49.000000000 +00:00
+ - value: -0.67958382
+ ts: 2021-03-27 10:03:48.000000000 +00:00
+ - value: 0.11974918
+ ts: 2021-03-27 10:03:47.000000000 +00:00
+ - value: 0.08011666
+ ts: 2021-03-27 10:03:46.000000000 +00:00
+ - value: 0.18257533
+ ts: 2021-03-27 10:03:45.000000000 +00:00
+ - value: 0.07193061
+ ts: 2021-03-27 10:03:44.000000000 +00:00
+ - value: -0.25326628
+ ts: 2021-03-27 10:03:43.000000000 +00:00
+ - value: 0.04084708
+ ts: 2021-03-27 10:03:42.000000000 +00:00
+ - value: 0.25934208
+ ts: 2021-03-27 10:03:41.000000000 +00:00
+ - value: -0.05630065
+ ts: 2021-03-27 10:03:40.000000000 +00:00
+ - value: 0.15689163
+ ts: 2021-03-27 10:03:39.000000000 +00:00
+ - value: 0.00732533
+ ts: 2021-03-27 10:03:38.000000000 +00:00
+ - value: 0.08859657
+ ts: 2021-03-27 10:03:37.000000000 +00:00
+ - value: -0.05334124
+ ts: 2021-03-27 10:03:36.000000000 +00:00
+ - value: -0.21323114
+ ts: 2021-03-27 10:03:35.000000000 +00:00
+ - value: -0.37208657
+ ts: 2021-03-27 10:03:34.000000000 +00:00
+ - value: -0.28821975
+ ts: 2021-03-27 10:03:33.000000000 +00:00
+ - value: -0.12745628
+ ts: 2021-03-27 10:03:32.000000000 +00:00
+ - value: 0.25228564
+ ts: 2021-03-27 10:03:31.000000000 +00:00
+ - value: -0.03866218
+ ts: 2021-03-27 10:03:30.000000000 +00:00
+ - value: 0.04389363
+ ts: 2021-03-27 10:03:29.000000000 +00:00
+ - value: 0.15231172
+ ts: 2021-03-27 10:03:28.000000000 +00:00
+ - value: 0.01939238
+ ts: 2021-03-27 10:03:27.000000000 +00:00
+ - value: -0.10628556
+ ts: 2021-03-27 10:03:26.000000000 +00:00
+ - value: -0.04799538
+ ts: 2021-03-27 10:03:25.000000000 +00:00
+ - value: 0.01708577
+ ts: 2021-03-27 10:03:24.000000000 +00:00
+ - value: 0.14325628
+ ts: 2021-03-27 10:03:23.000000000 +00:00
+ - value: 0.23046122
+ ts: 2021-03-27 10:03:22.000000000 +00:00
+ - value: 0.18104727
+ ts: 2021-03-27 10:03:21.000000000 +00:00
+ - value: -0.01147001
+ ts: 2021-03-27 10:03:20.000000000 +00:00
+ - value: -0.04751481
+ ts: 2021-03-27 10:03:19.000000000 +00:00
+ - value: 0.07575065
+ ts: 2021-03-27 10:03:18.000000000 +00:00
+ - value: -0.1431376
+ ts: 2021-03-27 10:03:17.000000000 +00:00
+ - value: -0.15616356
+ ts: 2021-03-27 10:03:16.000000000 +00:00
+ - value: -0.40525907
+ ts: 2021-03-27 10:03:15.000000000 +00:00
+ - value: -0.30711318
+ ts: 2021-03-27 10:03:14.000000000 +00:00
+ - value: -0.17885588
+ ts: 2021-03-27 10:03:13.000000000 +00:00
+ - value: 0.15619242
+ ts: 2021-03-27 10:03:12.000000000 +00:00
+ - value: -0.21354664
+ ts: 2021-03-27 10:03:11.000000000 +00:00
+ - value: 0.19774871
+ ts: 2021-03-27 10:03:10.000000000 +00:00
+ - value: 0.22616617
+ ts: 2021-03-27 10:03:09.000000000 +00:00
+ - value: 0.18148031
+ ts: 2021-03-27 10:03:08.000000000 +00:00
+ - value: 0.12292713
+ ts: 2021-03-27 10:03:07.000000000 +00:00
+ - value: 0.08368422
+ ts: 2021-03-27 10:03:06.000000000 +00:00
+ - value: -0.28989487
+ ts: 2021-03-27 10:03:05.000000000 +00:00
+ - value: 0.16238836
+ ts: 2021-03-27 10:03:04.000000000 +00:00
+ - value: -0.25830222
+ ts: 2021-03-27 10:03:03.000000000 +00:00
+ - value: -0.21175142
+ ts: 2021-03-27 10:03:02.000000000 +00:00
+ - value: 0.09431463
+ ts: 2021-03-27 10:03:01.000000000 +00:00
+ - value: 0.2471717
+ ts: 2021-03-27 10:03:00.000000000 +00:00
+ - value: -0.11059381
+ ts: 2021-03-27 10:02:59.000000000 +00:00
+ - value: 0.26267507
+ ts: 2021-03-27 10:02:58.000000000 +00:00
+ - value: 0.11911782
+ ts: 2021-03-27 10:02:57.000000000 +00:00
+ - value: -0.24754273
+ ts: 2021-03-27 10:02:56.000000000 +00:00
+ - value: 0.11947952
+ ts: 2021-03-27 10:02:55.000000000 +00:00
+ - value: 0.12581204
+ ts: 2021-03-27 10:02:54.000000000 +00:00
+ - value: 0.1910443
+ ts: 2021-03-27 10:02:53.000000000 +00:00
+ - value: -0.15786109
+ ts: 2021-03-27 10:02:52.000000000 +00:00
+ - value: -0.21117778
+ ts: 2021-03-27 10:02:51.000000000 +00:00
+ - value: -0.0672531
+ ts: 2021-03-27 10:02:50.000000000 +00:00
+ - value: -0.05650282
+ ts: 2021-03-27 10:02:49.000000000 +00:00
+ - value: 0.1110385
+ ts: 2021-03-27 10:02:48.000000000 +00:00
+ - value: -0.08268513
+ ts: 2021-03-27 10:02:47.000000000 +00:00
+ - value: 0.23462559
+ ts: 2021-03-27 10:02:46.000000000 +00:00
+ - value: -0.05507114
+ ts: 2021-03-27 10:02:45.000000000 +00:00
+ - value: -0.15787115
+ ts: 2021-03-27 10:02:44.000000000 +00:00
+ - value: 0.14441339
+ ts: 2021-03-27 10:02:43.000000000 +00:00
+ - value: -0.08399179
+ ts: 2021-03-27 10:02:42.000000000 +00:00
+ - value: 0.10739738
+ ts: 2021-03-27 10:02:41.000000000 +00:00
+ - value: -0.41535109
+ ts: 2021-03-27 10:02:40.000000000 +00:00
+ - value: -0.31932152
+ ts: 2021-03-27 10:02:39.000000000 +00:00
+ - value: -0.21605058
+ ts: 2021-03-27 10:02:38.000000000 +00:00
+ - value: 0.01678233
+ ts: 2021-03-27 10:02:37.000000000 +00:00
+ - value: 0.30640632
+ ts: 2021-03-27 10:02:36.000000000 +00:00
+ - value: -0.12009007
+ ts: 2021-03-27 10:02:35.000000000 +00:00
+ - value: 0.66444788
+ ts: 2021-03-27 10:02:34.000000000 +00:00
+ - value: 0.10132235
+ ts: 2021-03-27 10:02:33.000000000 +00:00
+ - value: 0.10509358
+ ts: 2021-03-27 10:02:32.000000000 +00:00
+ - value: 0.27123875
+ ts: 2021-03-27 10:02:31.000000000 +00:00
+ - value: -0.06330581
+ ts: 2021-03-27 10:02:30.000000000 +00:00
+ - value: -0.1347962
+ ts: 2021-03-27 10:02:29.000000000 +00:00
+ - value: -0.13042421
+ ts: 2021-03-27 10:02:28.000000000 +00:00
+ - value: -0.09683936
+ ts: 2021-03-27 10:02:27.000000000 +00:00
+ - value: -0.17601315
+ ts: 2021-03-27 10:02:26.000000000 +00:00
+ - value: -0.24581954
+ ts: 2021-03-27 10:02:25.000000000 +00:00
+ - value: -0.16883483
+ ts: 2021-03-27 10:02:24.000000000 +00:00
+ - value: 0.39559855
+ ts: 2021-03-27 10:02:23.000000000 +00:00
+ - value: 0.44106624
+ ts: 2021-03-27 10:02:22.000000000 +00:00
+ - value: 0.37676111
+ ts: 2021-03-27 10:02:21.000000000 +00:00
+ - value: 0.42935275
+ ts: 2021-03-27 10:02:20.000000000 +00:00
+ - value: 0.08312887
+ ts: 2021-03-27 10:02:19.000000000 +00:00
+ - value: -0.34378471
+ ts: 2021-03-27 10:02:18.000000000 +00:00
+ - value: -0.47750762
+ ts: 2021-03-27 10:02:17.000000000 +00:00
+ - value: -0.61536813
+ ts: 2021-03-27 10:02:16.000000000 +00:00
+ - value: -0.34482285
+ ts: 2021-03-27 10:02:15.000000000 +00:00
+ - value: -0.10703624
+ ts: 2021-03-27 10:02:14.000000000 +00:00
+ - value: 0.00401613
+ ts: 2021-03-27 10:02:13.000000000 +00:00
+ - value: 0.18185962
+ ts: 2021-03-27 10:02:12.000000000 +00:00
+ - value: 0.27422463
+ ts: 2021-03-27 10:02:11.000000000 +00:00
+ - value: 0.50762391
+ ts: 2021-03-27 10:02:10.000000000 +00:00
+ - value: 0.15252521
+ ts: 2021-03-27 10:02:09.000000000 +00:00
+ - value: 0.15432331
+ ts: 2021-03-27 10:02:08.000000000 +00:00
+ - value: -0.09364134
+ ts: 2021-03-27 10:02:07.000000000 +00:00
+ - value: 0.0577043
+ ts: 2021-03-27 10:02:06.000000000 +00:00
+ - value: -0.22138561
+ ts: 2021-03-27 10:02:05.000000000 +00:00
+ - value: -0.37461312
+ ts: 2021-03-27 10:02:04.000000000 +00:00
+ - value: -0.32289634
+ ts: 2021-03-27 10:02:03.000000000 +00:00
+ - value: -0.14393822
+ ts: 2021-03-27 10:02:02.000000000 +00:00
+ - value: -0.15907764
+ ts: 2021-03-27 10:02:01.000000000 +00:00
+ - value: -0.2274259
+ ts: 2021-03-27 10:02:00.000000000 +00:00
+ - value: 0.05288584
+ ts: 2021-03-27 10:01:59.000000000 +00:00
+ - value: -0.31576816
+ ts: 2021-03-27 10:01:58.000000000 +00:00
+ - value: 0.24783795
+ ts: 2021-03-27 10:01:57.000000000 +00:00
+ - value: 0.38834088
+ ts: 2021-03-27 10:01:56.000000000 +00:00
+ - value: 0.30450363
+ ts: 2021-03-27 10:01:55.000000000 +00:00
+ - value: 0.22997669
+ ts: 2021-03-27 10:01:54.000000000 +00:00
+ - value: 0.5060297
+ ts: 2021-03-27 10:01:53.000000000 +00:00
+ - value: -0.47205485
+ ts: 2021-03-27 10:01:52.000000000 +00:00
+ - value: -0.22265888
+ ts: 2021-03-27 10:01:51.000000000 +00:00
+ - value: -0.35602159
+ ts: 2021-03-27 10:01:50.000000000 +00:00
+ - value: 0.14256561
+ ts: 2021-03-27 10:01:49.000000000 +00:00
+ - value: 0.05794399
+ ts: 2021-03-27 10:01:48.000000000 +00:00
+ - value: 0.12445221
+ ts: 2021-03-27 10:01:47.000000000 +00:00
+ - value: -0.00800535
+ ts: 2021-03-27 10:01:46.000000000 +00:00
+ - value: 0.52308899
+ ts: 2021-03-27 10:01:45.000000000 +00:00
+ - value: 0.28108018
+ ts: 2021-03-27 10:01:44.000000000 +00:00
+ - value: 0.1381706
+ ts: 2021-03-27 10:01:43.000000000 +00:00
+ - value: 0.10457133
+ ts: 2021-03-27 10:01:42.000000000 +00:00
+ - value: -0.14416671
+ ts: 2021-03-27 10:01:41.000000000 +00:00
+ - value: -0.7470423
+ ts: 2021-03-27 10:01:40.000000000 +00:00
+ - value: -0.36806845
+ ts: 2021-03-27 10:01:39.000000000 +00:00
+ - value: -0.06185329
+ ts: 2021-03-27 10:01:38.000000000 +00:00
+ - value: -0.03049741
+ ts: 2021-03-27 10:01:37.000000000 +00:00
+ - value: -0.11235032
+ ts: 2021-03-27 10:01:36.000000000 +00:00
+ - value: 0.13694757
+ ts: 2021-03-27 10:01:35.000000000 +00:00
+ - value: 0.68727966
+ ts: 2021-03-27 10:01:34.000000000 +00:00
+ - value: 0.33571218
+ ts: 2021-03-27 10:01:33.000000000 +00:00
+ - value: 0.28104156
+ ts: 2021-03-27 10:01:32.000000000 +00:00
+ - value: 0.00879484
+ ts: 2021-03-27 10:01:31.000000000 +00:00
+ - value: -0.27414158
+ ts: 2021-03-27 10:01:30.000000000 +00:00
+ - value: -0.38499211
+ ts: 2021-03-27 10:01:29.000000000 +00:00
+ - value: -0.06998017
+ ts: 2021-03-27 10:01:28.000000000 +00:00
+ - value: -0.19099832
+ ts: 2021-03-27 10:01:27.000000000 +00:00
+ - value: -0.00477517
+ ts: 2021-03-27 10:01:26.000000000 +00:00
+ - value: 0.15645964
+ ts: 2021-03-27 10:01:25.000000000 +00:00
+ - value: -0.10551433
+ ts: 2021-03-27 10:01:24.000000000 +00:00
+ - value: -0.11339974
+ ts: 2021-03-27 10:01:23.000000000 +00:00
+ - value: -0.07025097
+ ts: 2021-03-27 10:01:22.000000000 +00:00
+ - value: 0.33768272
+ ts: 2021-03-27 10:01:21.000000000 +00:00
+ - value: 0.30251329
+ ts: 2021-03-27 10:01:20.000000000 +00:00
+ - value: 0.03475898
+ ts: 2021-03-27 10:01:19.000000000 +00:00
+ - value: -0.22368502
+ ts: 2021-03-27 10:01:18.000000000 +00:00
+ - value: -0.40785327
+ ts: 2021-03-27 10:01:17.000000000 +00:00
+ - value: 0.24384097
+ ts: 2021-03-27 10:01:16.000000000 +00:00
+ - value: -0.20648251
+ ts: 2021-03-27 10:01:15.000000000 +00:00
+ - value: -0.0695647
+ ts: 2021-03-27 10:01:14.000000000 +00:00
+ - value: -0.00950228
+ ts: 2021-03-27 10:01:13.000000000 +00:00
+ - value: 0.14735141
+ ts: 2021-03-27 10:01:12.000000000 +00:00
+ - value: -0.23278713
+ ts: 2021-03-27 10:01:11.000000000 +00:00
+ - value: -0.09189152
+ ts: 2021-03-27 10:01:10.000000000 +00:00
+ - value: 0.06986562
+ ts: 2021-03-27 10:01:09.000000000 +00:00
+ - value: 0.16851966
+ ts: 2021-03-27 10:01:08.000000000 +00:00
+ - value: 0.02459582
+ ts: 2021-03-27 10:01:07.000000000 +00:00
+ - value: -0.42001771
+ ts: 2021-03-27 10:01:06.000000000 +00:00
+ - value: -0.13879603
+ ts: 2021-03-27 10:01:05.000000000 +00:00
+ - value: 0.05828816
+ ts: 2021-03-27 10:01:04.000000000 +00:00
+ - value: 0.14071903
+ ts: 2021-03-27 10:01:03.000000000 +00:00
+ - value: 0.06039119
+ ts: 2021-03-27 10:01:02.000000000 +00:00
+ - value: 0.0579948
+ ts: 2021-03-27 10:01:01.000000000 +00:00
+...
diff --git a/tests/mocks/valuecache/valuecache_mock.c b/tests/mocks/valuecache/valuecache_mock.c
index 227aa566a40..32b64d33bd9 100644
--- a/tests/mocks/valuecache/valuecache_mock.c
+++ b/tests/mocks/valuecache/valuecache_mock.c
@@ -121,7 +121,7 @@ static void zbx_vcmock_read_history_value(zbx_mock_handle_t hvalue, unsigned cha
log->source = zbx_strdup(NULL, zbx_mock_get_object_member_string(hvalue, "source"));
data = zbx_mock_get_object_member_string(hvalue, "logeventid");
- if (FAIL == is_uint64(data, &log->logeventid))
+ if (FAIL == is_uint32(data, &log->logeventid))
fail_msg("Invalid log logeventid value \"%s\"", data);
data = zbx_mock_get_object_member_string(hvalue, "severity");
diff --git a/tests/mocks/valuecache/valuecache_mock.h b/tests/mocks/valuecache/valuecache_mock.h
index 606f64e4965..230157dff58 100644
--- a/tests/mocks/valuecache/valuecache_mock.h
+++ b/tests/mocks/valuecache/valuecache_mock.h
@@ -34,8 +34,6 @@ typedef struct
}
zbx_vcmock_ds_t;
-unsigned char zbx_mock_str_to_value_type(const char *value_type);
-
void zbx_vcmock_ds_init(void);
void zbx_vcmock_ds_destroy(void);
void zbx_vcmock_ds_dump(void);