From 9cfbac377eb8ea326e29c0f90c3cae30bf32e650 Mon Sep 17 00:00:00 2001 From: Sophie Depassio Date: Fri, 25 Jul 2025 13:56:28 +0200 Subject: [PATCH] New pack LatenceTech : mode latency Co-authored-by: thibaults-centreon --- .../latencetech/restapi/mode/latency.pm | 172 +++++++++++++++++ .../monitoring/latencetech/restapi/plugin.pm | 3 +- .../latencetech/restapi/latency.robot | 61 ++++++ .../latencetech/restapi/mockoon.json | 176 ++++++++++++++++++ 4 files changed, 411 insertions(+), 1 deletion(-) create mode 100644 src/apps/monitoring/latencetech/restapi/mode/latency.pm create mode 100644 tests/apps/monitoring/latencetech/restapi/latency.robot diff --git a/src/apps/monitoring/latencetech/restapi/mode/latency.pm b/src/apps/monitoring/latencetech/restapi/mode/latency.pm new file mode 100644 index 000000000..c4d516728 --- /dev/null +++ b/src/apps/monitoring/latencetech/restapi/mode/latency.pm @@ -0,0 +1,172 @@ +# +# Copyright 2025 Centreon (http://www.centreon.com/) +# +# Centreon is a full-fledged industry-strength solution that meets +# the needs in IT infrastructure and application monitoring for +# service performance. +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. +# + +package apps::monitoring::latencetech::restapi::mode::latency; + +use base qw(centreon::plugins::templates::counter); + +use strict; +use warnings; + +sub set_counters { + my ($self, %options) = @_; + + $self->{maps_counters_type} = [ + { name => 'latency', type => 1, cb_prefix_output => 'prefix_output', message_multiple => 'All latencies are OK', skipped_code => { -10 => 1 } } + ]; + + $self->{maps_counters}->{latency} = [ + { label => 'latency-average', nlabel => 'latency.average.milliseconds', set => { + key_values => [ { name => 'latency_average' }, { name => 'points' }, { name => 'display' },{ name => 'protocol' } ], + output_template => 'average: %.2fms', + perfdatas => [ + { value => 'latency_average', template => '%.2f', + min => 0, unit => 'ms', label_extra_instance => 1, instance_use => 'protocol' }, + ], + } + }, + { label => 'latency-minimum', nlabel => 'latency.minimum.milliseconds', set => { + key_values => [ { name => 'latency_minimum' }, { name => 'protocol' } ], + output_template => 'minimum: %.2fms', + perfdatas => [ + { value => 'latency_minimum', template => '%.2f', + min => 0, unit => 'ms', label_extra_instance => 1, instance_use => 'protocol' }, + ], + } + }, + { label => 'latency-maximum', nlabel => 'latency.maximum.milliseconds', set => { + key_values => [ { name => 'latency_maximum' }, { name => 'protocol' } ], + output_template => 'maximum: %.2fms', + perfdatas => [ + { value => 'latency_maximum', template => '%.2f', + min => 0, unit => 'ms', label_extra_instance => 1, instance_use => 'protocol' }, + ], + } + } + ]; +} + +sub prefix_output { + my ($self, %options) = @_; + + return sprintf('Latency for Agent %s, Protocol %s (%s points): ', $options{instance_value}->{display}, $options{instance_value}->{protocol}, $options{instance_value}->{points}); +} + +sub new { + my ($class, %options) = @_; + my $self = $class->SUPER::new(package => __PACKAGE__, %options, force_new_perfdata => 1); + bless $self, $class; + + $options{options}->add_options(arguments => { + 'filter-protocol:s' => { name => 'filter_protocol' }, + 'timerange:s' => { name => 'time_range', default => '300'} + }); + + return $self; +} + +sub check_options { + my ($self, %options) = @_; + $self->SUPER::check_options(%options); +} + +sub manage_selection { + my ($self, %options) = @_; + + foreach my $protocol ('tcp', 'udp', 'http', 'https', 'icmp', 'twamp') { + next if (defined($self->{option_results}->{filter_protocol}) && $self->{option_results}->{filter_protocol} ne '' && + $protocol !~ /$self->{option_results}->{filter_protocol}/i); + + my @get_param = [ + "protocol=$protocol", + "time_range=$self->{option_results}->{time_range}" + ]; + + my $results = $options{custom}->request_api(endpoint => '/latency', get_param => @get_param); + + foreach my $timeserie (@{$results}) { + $self->{latency}->{$protocol}->{display} = $timeserie->{agentID}; + $self->{latency}->{$protocol}->{protocol} = $timeserie->{measurement}; + $self->{timeseries}->{$protocol}->{points}++; + $self->{timeseries}->{$protocol}->{total} += $timeserie->{value}; + $self->{timeseries}->{$protocol}->{metrics}->{minimum} = $timeserie->{value} + if (!defined($self->{timeseries}->{$protocol}->{metrics}->{minimum}) || $timeserie->{value} < $self->{timeseries}->{$protocol}->{metrics}->{minimum}); + $self->{timeseries}->{$protocol}->{metrics}->{maximum} = $timeserie->{value} + if (!defined($self->{timeseries}->{$protocol}->{metrics}->{maximum}) || $timeserie->{value} > $self->{timeseries}->{$protocol}->{metrics}->{maximum}); + } + $self->{timeseries}->{$protocol}->{metrics}->{average} = $self->{timeseries}->{$protocol}->{total} / $self->{timeseries}->{$protocol}->{points}++; + $self->{latency}->{$protocol}->{points} = $self->{timeseries}->{$protocol}->{points}; + + foreach (keys %{$self->{timeseries}->{$protocol}->{metrics}}) { + $self->{latency}->{$protocol}->{"latency_" . $_} = $self->{timeseries}->{$protocol}->{metrics}->{$_}; + } + } +} + +1; + +__END__ + +=head1 MODE + +Check agent latency statistics. + +=over 8 + +=item B<--agent-id> + +Set the ID of the agent (mandatory option). + +=item B<--filter-protocol> + +Filter protocol if needed (can be a regexp) +Accepted values are C, C, C, C, C, C. +=item B<--timerange> + +Choose a timerange of values on wich datas shoud be aggregated (in seconds). +(default: '300') + +=item B<--warning-latency-average> + +Warning thresholds for average latency. + +=item B<--critical-latency-average> + +Critical thresholds for average latency. + +=item B<--warning-latency-minimum> + +Warning thresholds for minimum latency. + +=item B<--critical-latency-minimum> + +Critical thresholds for minimum latency. + +=item B<--warning-latency-maximum> + +Warning thresholds for maximum latency. + +=item B<--critical-latency-maximum> + +Critical thresholds for maximum latency. + +=back + +=cut diff --git a/src/apps/monitoring/latencetech/restapi/plugin.pm b/src/apps/monitoring/latencetech/restapi/plugin.pm index 3c8e12c37..7e558e1e7 100644 --- a/src/apps/monitoring/latencetech/restapi/plugin.pm +++ b/src/apps/monitoring/latencetech/restapi/plugin.pm @@ -33,7 +33,8 @@ sub new { $self->{modes} = { 'connectivity' => 'apps::monitoring::latencetech::restapi::mode::connectivity', 'discovery' => 'apps::monitoring::latencetech::restapi::mode::discovery', - 'forecast' => 'apps::monitoring::latencetech::restapi::mode::forecast' + 'forecast' => 'apps::monitoring::latencetech::restapi::mode::forecast', + 'latency' => 'apps::monitoring::latencetech::restapi::mode::latency' }; $self->{custom_modes}->{api} = 'apps::monitoring::latencetech::restapi::custom::api'; diff --git a/tests/apps/monitoring/latencetech/restapi/latency.robot b/tests/apps/monitoring/latencetech/restapi/latency.robot new file mode 100644 index 000000000..d2841edad --- /dev/null +++ b/tests/apps/monitoring/latencetech/restapi/latency.robot @@ -0,0 +1,61 @@ +*** Settings *** +Documentation Check the LatenceTech latency mode with api custom mode + +Resource ${CURDIR}${/}..${/}..${/}..${/}..${/}resources/import.resource + +Suite Setup Start Mockoon ${MOCKOON_JSON} +Suite Teardown Stop Mockoon +Test Timeout 120s + + +*** Variables *** +${MOCKOON_JSON} ${CURDIR}${/}mockoon.json + +${cmd} ${CENTREON_PLUGINS} +... --plugin=apps::monitoring::latencetech::restapi::plugin +... --custommode=api +... --mode=latency +... --hostname=${HOSTNAME} +... --api-key=key +... --port=${APIPORT} +... --proto=http + + +*** Test Cases *** +Latency ${tc} + [Documentation] Check the agent latency statistics + [Tags] apps monitoring latencetech restapi + + ${command} Catenate + ... ${cmd} + ... --customer-id=0 + ... --agent-id=2 + ... ${extraoptions} + Log ${cmd} + Ctn Run Command And Check Result As Strings ${command} ${expected_result} + + Examples: tc extraoptions expected_result -- + ... 1 ${EMPTY} + ... OK: All latencies are OK | 'http_result#latency.average.milliseconds'=9.18ms;;;0; 'http_result#latency.minimum.milliseconds'=8.51ms;;;0; 'http_result#latency.maximum.milliseconds'=15.62ms;;;0; 'https_result#latency.average.milliseconds'=18.05ms;;;0; 'https_result#latency.minimum.milliseconds'=16.72ms;;;0; 'https_result#latency.maximum.milliseconds'=27.29ms;;;0; 'icmp_result#latency.average.milliseconds'=9.16ms;;;0; 'icmp_result#latency.minimum.milliseconds'=8.37ms;;;0; 'icmp_result#latency.maximum.milliseconds'=22.10ms;;;0; 'tcp_result#latency.average.milliseconds'=9.35ms;;;0; 'tcp_result#latency.minimum.milliseconds'=8.38ms;;;0; 'tcp_result#latency.maximum.milliseconds'=22.56ms;;;0; 'twamp_result#latency.average.milliseconds'=9.16ms;;;0; 'twamp_result#latency.minimum.milliseconds'=8.36ms;;;0; 'twamp_result#latency.maximum.milliseconds'=15.86ms;;;0; 'udp_result#latency.average.milliseconds'=9.36ms;;;0; 'udp_result#latency.minimum.milliseconds'=8.57ms;;;0; 'udp_result#latency.maximum.milliseconds'=22.13ms;;;0; + ... 2 --filter-protocol=tcp + ... OK: Latency for Agent 2, Protocol tcp_result (150 points): average: 9.35ms, minimum: 8.38ms, maximum: 22.56ms | 'tcp_result#latency.average.milliseconds'=9.35ms;;;0; 'tcp_result#latency.minimum.milliseconds'=8.38ms;;;0; 'tcp_result#latency.maximum.milliseconds'=22.56ms;;;0; + ... 3 --filter-protocol='http.*' + ... OK: All latencies are OK | 'http_result#latency.average.milliseconds'=9.18ms;;;0; 'http_result#latency.minimum.milliseconds'=8.51ms;;;0; 'http_result#latency.maximum.milliseconds'=15.62ms;;;0; 'https_result#latency.average.milliseconds'=18.05ms;;;0; 'https_result#latency.minimum.milliseconds'=16.72ms;;;0; 'https_result#latency.maximum.milliseconds'=27.29ms;;;0; + ... 4 --filter-protocol='http(s)?' + ... OK: All latencies are OK | 'http_result#latency.average.milliseconds'=9.18ms;;;0; 'http_result#latency.minimum.milliseconds'=8.51ms;;;0; 'http_result#latency.maximum.milliseconds'=15.62ms;;;0; 'https_result#latency.average.milliseconds'=18.05ms;;;0; 'https_result#latency.minimum.milliseconds'=16.72ms;;;0; 'https_result#latency.maximum.milliseconds'=27.29ms;;;0; + ... 5 --filter-protocol='https|icmp' + ... OK: All latencies are OK | 'https_result#latency.average.milliseconds'=18.05ms;;;0; 'https_result#latency.minimum.milliseconds'=16.72ms;;;0; 'https_result#latency.maximum.milliseconds'=27.29ms;;;0; 'icmp_result#latency.average.milliseconds'=9.16ms;;;0; 'icmp_result#latency.minimum.milliseconds'=8.37ms;;;0; 'icmp_result#latency.maximum.milliseconds'=22.10ms;;;0; + ... 6 --warning-latency-average=8 + ... WARNING: Latency for Agent 2, Protocol http_result (149 points): average: 9.18ms - Latency for Agent 2, Protocol https_result (146 points): average: 18.05ms - Latency for Agent 2, Protocol icmp_result (149 points): average: 9.16ms - Latency for Agent 2, Protocol tcp_result (150 points): average: 9.35ms - Latency for Agent 2, Protocol twamp_result (142 points): average: 9.16ms - Latency for Agent 2, Protocol udp_result (150 points): average: 9.36ms | 'http_result#latency.average.milliseconds'=9.18ms;0:8;;0; 'http_result#latency.minimum.milliseconds'=8.51ms;;;0; 'http_result#latency.maximum.milliseconds'=15.62ms;;;0; 'https_result#latency.average.milliseconds'=18.05ms;0:8;;0; 'https_result#latency.minimum.milliseconds'=16.72ms;;;0; 'https_result#latency.maximum.milliseconds'=27.29ms;;;0; 'icmp_result#latency.average.milliseconds'=9.16ms;0:8;;0; 'icmp_result#latency.minimum.milliseconds'=8.37ms;;;0; 'icmp_result#latency.maximum.milliseconds'=22.10ms;;;0; 'tcp_result#latency.average.milliseconds'=9.35ms;0:8;;0; 'tcp_result#latency.minimum.milliseconds'=8.38ms;;;0; 'tcp_result#latency.maximum.milliseconds'=22.56ms;;;0; 'twamp_result#latency.average.milliseconds'=9.16ms;0:8;;0; 'twamp_result#latency.minimum.milliseconds'=8.36ms;;;0; 'twamp_result#latency.maximum.milliseconds'=15.86ms;;;0; 'udp_result#latency.average.milliseconds'=9.36ms;0:8;;0; 'udp_result#latency.minimum.milliseconds'=8.57ms;;;0; 'udp_result#latency.maximum.milliseconds'=22.13ms;;;0; + ... 7 --critical-latency-average=9 + ... CRITICAL: Latency for Agent 2, Protocol http_result (149 points): average: 9.18ms - Latency for Agent 2, Protocol https_result (146 points): average: 18.05ms - Latency for Agent 2, Protocol icmp_result (149 points): average: 9.16ms - Latency for Agent 2, Protocol tcp_result (150 points): average: 9.35ms - Latency for Agent 2, Protocol twamp_result (142 points): average: 9.16ms - Latency for Agent 2, Protocol udp_result (150 points): average: 9.36ms | 'http_result#latency.average.milliseconds'=9.18ms;;0:9;0; 'http_result#latency.minimum.milliseconds'=8.51ms;;;0; 'http_result#latency.maximum.milliseconds'=15.62ms;;;0; 'https_result#latency.average.milliseconds'=18.05ms;;0:9;0; 'https_result#latency.minimum.milliseconds'=16.72ms;;;0; 'https_result#latency.maximum.milliseconds'=27.29ms;;;0; 'icmp_result#latency.average.milliseconds'=9.16ms;;0:9;0; 'icmp_result#latency.minimum.milliseconds'=8.37ms;;;0; 'icmp_result#latency.maximum.milliseconds'=22.10ms;;;0; 'tcp_result#latency.average.milliseconds'=9.35ms;;0:9;0; 'tcp_result#latency.minimum.milliseconds'=8.38ms;;;0; 'tcp_result#latency.maximum.milliseconds'=22.56ms;;;0; 'twamp_result#latency.average.milliseconds'=9.16ms;;0:9;0; 'twamp_result#latency.minimum.milliseconds'=8.36ms;;;0; 'twamp_result#latency.maximum.milliseconds'=15.86ms;;;0; 'udp_result#latency.average.milliseconds'=9.36ms;;0:9;0; 'udp_result#latency.minimum.milliseconds'=8.57ms;;;0; 'udp_result#latency.maximum.milliseconds'=22.13ms;;;0; + ... 8 --warning-latency-minimum=7 + ... WARNING: Latency for Agent 2, Protocol http_result (149 points): minimum: 8.51ms - Latency for Agent 2, Protocol https_result (146 points): minimum: 16.72ms - Latency for Agent 2, Protocol icmp_result (149 points): minimum: 8.37ms - Latency for Agent 2, Protocol tcp_result (150 points): minimum: 8.38ms - Latency for Agent 2, Protocol twamp_result (142 points): minimum: 8.36ms - Latency for Agent 2, Protocol udp_result (150 points): minimum: 8.57ms | 'http_result#latency.average.milliseconds'=9.18ms;;;0; 'http_result#latency.minimum.milliseconds'=8.51ms;0:7;;0; 'http_result#latency.maximum.milliseconds'=15.62ms;;;0; 'https_result#latency.average.milliseconds'=18.05ms;;;0; 'https_result#latency.minimum.milliseconds'=16.72ms;0:7;;0; 'https_result#latency.maximum.milliseconds'=27.29ms;;;0; 'icmp_result#latency.average.milliseconds'=9.16ms;;;0; 'icmp_result#latency.minimum.milliseconds'=8.37ms;0:7;;0; 'icmp_result#latency.maximum.milliseconds'=22.10ms;;;0; 'tcp_result#latency.average.milliseconds'=9.35ms;;;0; 'tcp_result#latency.minimum.milliseconds'=8.38ms;0:7;;0; 'tcp_result#latency.maximum.milliseconds'=22.56ms;;;0; 'twamp_result#latency.average.milliseconds'=9.16ms;;;0; 'twamp_result#latency.minimum.milliseconds'=8.36ms;0:7;;0; 'twamp_result#latency.maximum.milliseconds'=15.86ms;;;0; 'udp_result#latency.average.milliseconds'=9.36ms;;;0; 'udp_result#latency.minimum.milliseconds'=8.57ms;0:7;;0; 'udp_result#latency.maximum.milliseconds'=22.13ms;;;0; + ... 9 --critical-latency-minimum=8 + ... CRITICAL: Latency for Agent 2, Protocol http_result (149 points): minimum: 8.51ms - Latency for Agent 2, Protocol https_result (146 points): minimum: 16.72ms - Latency for Agent 2, Protocol icmp_result (149 points): minimum: 8.37ms - Latency for Agent 2, Protocol tcp_result (150 points): minimum: 8.38ms - Latency for Agent 2, Protocol twamp_result (142 points): minimum: 8.36ms - Latency for Agent 2, Protocol udp_result (150 points): minimum: 8.57ms | 'http_result#latency.average.milliseconds'=9.18ms;;;0; 'http_result#latency.minimum.milliseconds'=8.51ms;;0:8;0; 'http_result#latency.maximum.milliseconds'=15.62ms;;;0; 'https_result#latency.average.milliseconds'=18.05ms;;;0; 'https_result#latency.minimum.milliseconds'=16.72ms;;0:8;0; 'https_result#latency.maximum.milliseconds'=27.29ms;;;0; 'icmp_result#latency.average.milliseconds'=9.16ms;;;0; 'icmp_result#latency.minimum.milliseconds'=8.37ms;;0:8;0; 'icmp_result#latency.maximum.milliseconds'=22.10ms;;;0; 'tcp_result#latency.average.milliseconds'=9.35ms;;;0; 'tcp_result#latency.minimum.milliseconds'=8.38ms;;0:8;0; 'tcp_result#latency.maximum.milliseconds'=22.56ms;;;0; 'twamp_result#latency.average.milliseconds'=9.16ms;;;0; 'twamp_result#latency.minimum.milliseconds'=8.36ms;;0:8;0; 'twamp_result#latency.maximum.milliseconds'=15.86ms;;;0; 'udp_result#latency.average.milliseconds'=9.36ms;;;0; 'udp_result#latency.minimum.milliseconds'=8.57ms;;0:8;0; 'udp_result#latency.maximum.milliseconds'=22.13ms;;;0; + ... 10 --warning-latency-maximum=14 + ... WARNING: Latency for Agent 2, Protocol http_result (149 points): maximum: 15.62ms - Latency for Agent 2, Protocol https_result (146 points): maximum: 27.29ms - Latency for Agent 2, Protocol icmp_result (149 points): maximum: 22.10ms - Latency for Agent 2, Protocol tcp_result (150 points): maximum: 22.56ms - Latency for Agent 2, Protocol twamp_result (142 points): maximum: 15.86ms - Latency for Agent 2, Protocol udp_result (150 points): maximum: 22.13ms | 'http_result#latency.average.milliseconds'=9.18ms;;;0; 'http_result#latency.minimum.milliseconds'=8.51ms;;;0; 'http_result#latency.maximum.milliseconds'=15.62ms;0:14;;0; 'https_result#latency.average.milliseconds'=18.05ms;;;0; 'https_result#latency.minimum.milliseconds'=16.72ms;;;0; 'https_result#latency.maximum.milliseconds'=27.29ms;0:14;;0; 'icmp_result#latency.average.milliseconds'=9.16ms;;;0; 'icmp_result#latency.minimum.milliseconds'=8.37ms;;;0; 'icmp_result#latency.maximum.milliseconds'=22.10ms;0:14;;0; 'tcp_result#latency.average.milliseconds'=9.35ms;;;0; 'tcp_result#latency.minimum.milliseconds'=8.38ms;;;0; 'tcp_result#latency.maximum.milliseconds'=22.56ms;0:14;;0; 'twamp_result#latency.average.milliseconds'=9.16ms;;;0; 'twamp_result#latency.minimum.milliseconds'=8.36ms;;;0; 'twamp_result#latency.maximum.milliseconds'=15.86ms;0:14;;0; 'udp_result#latency.average.milliseconds'=9.36ms;;;0; 'udp_result#latency.minimum.milliseconds'=8.57ms;;;0; 'udp_result#latency.maximum.milliseconds'=22.13ms;0:14;;0; + ... 11 --critical-latency-maximum=15 + ... CRITICAL: Latency for Agent 2, Protocol http_result (149 points): maximum: 15.62ms - Latency for Agent 2, Protocol https_result (146 points): maximum: 27.29ms - Latency for Agent 2, Protocol icmp_result (149 points): maximum: 22.10ms - Latency for Agent 2, Protocol tcp_result (150 points): maximum: 22.56ms - Latency for Agent 2, Protocol twamp_result (142 points): maximum: 15.86ms - Latency for Agent 2, Protocol udp_result (150 points): maximum: 22.13ms | 'http_result#latency.average.milliseconds'=9.18ms;;;0; 'http_result#latency.minimum.milliseconds'=8.51ms;;;0; 'http_result#latency.maximum.milliseconds'=15.62ms;;0:15;0; 'https_result#latency.average.milliseconds'=18.05ms;;;0; 'https_result#latency.minimum.milliseconds'=16.72ms;;;0; 'https_result#latency.maximum.milliseconds'=27.29ms;;0:15;0; 'icmp_result#latency.average.milliseconds'=9.16ms;;;0; 'icmp_result#latency.minimum.milliseconds'=8.37ms;;;0; 'icmp_result#latency.maximum.milliseconds'=22.10ms;;0:15;0; 'tcp_result#latency.average.milliseconds'=9.35ms;;;0; 'tcp_result#latency.minimum.milliseconds'=8.38ms;;;0; 'tcp_result#latency.maximum.milliseconds'=22.56ms;;0:15;0; 'twamp_result#latency.average.milliseconds'=9.16ms;;;0; 'twamp_result#latency.minimum.milliseconds'=8.36ms;;;0; 'twamp_result#latency.maximum.milliseconds'=15.86ms;;0:15;0; 'udp_result#latency.average.milliseconds'=9.36ms;;;0; 'udp_result#latency.minimum.milliseconds'=8.57ms;;;0; 'udp_result#latency.maximum.milliseconds'=22.13ms;;0:15;0; + ... 12 --filter-protocol=udp --critical-latency-maximum=20 + ... CRITICAL: Latency for Agent 2, Protocol udp_result (150 points): maximum: 22.13ms | 'udp_result#latency.average.milliseconds'=9.36ms;;;0; 'udp_result#latency.minimum.milliseconds'=8.57ms;;;0; 'udp_result#latency.maximum.milliseconds'=22.13ms;;0:20;0; diff --git a/tests/apps/monitoring/latencetech/restapi/mockoon.json b/tests/apps/monitoring/latencetech/restapi/mockoon.json index 7e6de0584..ae8c74566 100644 --- a/tests/apps/monitoring/latencetech/restapi/mockoon.json +++ b/tests/apps/monitoring/latencetech/restapi/mockoon.json @@ -156,6 +156,178 @@ } ], "responseMode": null + }, + { + "uuid": "febdf454-e06c-4f7c-9ff4-99eecdc98447", + "type": "http", + "documentation": "", + "method": "get", + "endpoint": "api/v1/latency", + "responses": [ + { + "uuid": "28ddcb61-823d-4dd9-9466-ab60b6ce604d", + "body": "[\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T08:42:55.88Z\",\n \"measurement\": \"tcp_result\",\n \"value\": 8.91\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T08:42:57.898Z\",\n \"measurement\": \"tcp_result\",\n \"value\": 8.776\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T08:42:59.916Z\",\n \"measurement\": \"tcp_result\",\n \"value\": 9.459\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T08:43:01.936Z\",\n \"measurement\": \"tcp_result\",\n \"value\": 9.048\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T08:43:03.956Z\",\n \"measurement\": \"tcp_result\",\n \"value\": 9.319\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T08:43:05.974Z\",\n \"measurement\": \"tcp_result\",\n \"value\": 8.834\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T08:43:07.993Z\",\n \"measurement\": \"tcp_result\",\n \"value\": 8.715\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T08:43:10.011Z\",\n \"measurement\": \"tcp_result\",\n \"value\": 9.486\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T08:43:12.03Z\",\n \"measurement\": \"tcp_result\",\n \"value\": 9.538\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T08:43:14.049Z\",\n \"measurement\": \"tcp_result\",\n \"value\": 8.701\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T08:43:16.067Z\",\n \"measurement\": \"tcp_result\",\n \"value\": 8.857\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T08:43:18.085Z\",\n \"measurement\": \"tcp_result\",\n \"value\": 10.158\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T08:43:20.105Z\",\n \"measurement\": \"tcp_result\",\n \"value\": 8.826\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T08:43:22.122Z\",\n \"measurement\": \"tcp_result\",\n \"value\": 8.802\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T08:43:24.141Z\",\n \"measurement\": \"tcp_result\",\n \"value\": 8.991\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T08:43:26.159Z\",\n \"measurement\": \"tcp_result\",\n \"value\": 9.002\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T08:43:28.178Z\",\n \"measurement\": \"tcp_result\",\n \"value\": 8.972\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T08:43:30.196Z\",\n \"measurement\": \"tcp_result\",\n \"value\": 9.101\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T08:43:32.214Z\",\n \"measurement\": \"tcp_result\",\n \"value\": 9.123\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T08:43:34.233Z\",\n \"measurement\": \"tcp_result\",\n \"value\": 12.66\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T08:43:36.255Z\",\n \"measurement\": \"tcp_result\",\n \"value\": 8.979\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T08:43:38.273Z\",\n \"measurement\": \"tcp_result\",\n \"value\": 8.81\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T08:43:40.291Z\",\n \"measurement\": \"tcp_result\",\n \"value\": 8.617\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T08:43:42.31Z\",\n \"measurement\": \"tcp_result\",\n \"value\": 8.945\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T08:43:44.328Z\",\n \"measurement\": \"tcp_result\",\n \"value\": 9.431\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T08:43:46.347Z\",\n \"measurement\": \"tcp_result\",\n \"value\": 8.772\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T08:43:48.365Z\",\n \"measurement\": \"tcp_result\",\n \"value\": 8.674\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T08:43:50.383Z\",\n \"measurement\": \"tcp_result\",\n \"value\": 9.167\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T08:43:52.401Z\",\n \"measurement\": \"tcp_result\",\n \"value\": 9.339\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T08:43:54.42Z\",\n \"measurement\": \"tcp_result\",\n \"value\": 8.965\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T08:43:56.439Z\",\n \"measurement\": \"tcp_result\",\n \"value\": 8.798\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T08:43:58.458Z\",\n \"measurement\": \"tcp_result\",\n \"value\": 9.497\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T08:44:00.476Z\",\n \"measurement\": \"tcp_result\",\n \"value\": 9.068\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T08:44:02.495Z\",\n \"measurement\": \"tcp_result\",\n \"value\": 8.806\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T08:44:04.514Z\",\n \"measurement\": \"tcp_result\",\n \"value\": 9.099\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T08:44:06.532Z\",\n \"measurement\": \"tcp_result\",\n \"value\": 8.825\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T08:44:08.55Z\",\n \"measurement\": \"tcp_result\",\n \"value\": 9.07\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T08:44:10.569Z\",\n \"measurement\": \"tcp_result\",\n \"value\": 8.792\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T08:44:12.588Z\",\n \"measurement\": \"tcp_result\",\n \"value\": 8.875\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T08:44:14.606Z\",\n \"measurement\": \"tcp_result\",\n \"value\": 8.651\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T08:44:16.625Z\",\n \"measurement\": \"tcp_result\",\n \"value\": 8.826\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T08:44:18.644Z\",\n \"measurement\": \"tcp_result\",\n \"value\": 8.687\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T08:44:20.662Z\",\n \"measurement\": \"tcp_result\",\n \"value\": 9.216\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T08:44:22.681Z\",\n \"measurement\": \"tcp_result\",\n \"value\": 9.121\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T08:44:24.699Z\",\n \"measurement\": \"tcp_result\",\n \"value\": 9.134\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T08:44:26.718Z\",\n \"measurement\": \"tcp_result\",\n \"value\": 9.644\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T08:44:28.737Z\",\n \"measurement\": \"tcp_result\",\n \"value\": 9.237\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T08:44:30.755Z\",\n \"measurement\": \"tcp_result\",\n \"value\": 9.261\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T08:44:32.774Z\",\n \"measurement\": \"tcp_result\",\n \"value\": 8.65\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T08:44:34.793Z\",\n \"measurement\": \"tcp_result\",\n \"value\": 8.952\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T08:44:36.811Z\",\n \"measurement\": \"tcp_result\",\n \"value\": 8.555\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T08:44:38.829Z\",\n \"measurement\": \"tcp_result\",\n \"value\": 9.261\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T08:44:40.848Z\",\n \"measurement\": \"tcp_result\",\n \"value\": 9.042\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T08:44:42.867Z\",\n \"measurement\": \"tcp_result\",\n \"value\": 9.166\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T08:44:44.885Z\",\n \"measurement\": \"tcp_result\",\n \"value\": 9.187\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T08:44:46.904Z\",\n \"measurement\": \"tcp_result\",\n \"value\": 8.585\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T08:44:48.922Z\",\n \"measurement\": \"tcp_result\",\n \"value\": 8.688\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T08:44:50.94Z\",\n \"measurement\": \"tcp_result\",\n \"value\": 9.182\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T08:44:52.958Z\",\n \"measurement\": \"tcp_result\",\n \"value\": 8.796\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T08:44:54.976Z\",\n \"measurement\": \"tcp_result\",\n \"value\": 8.912\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T08:44:56.995Z\",\n \"measurement\": \"tcp_result\",\n \"value\": 22.56\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T08:44:59.027Z\",\n \"measurement\": \"tcp_result\",\n \"value\": 8.759\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T08:45:01.045Z\",\n \"measurement\": \"tcp_result\",\n \"value\": 9.273\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T08:45:03.064Z\",\n \"measurement\": \"tcp_result\",\n \"value\": 9.158\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T08:45:05.082Z\",\n \"measurement\": \"tcp_result\",\n \"value\": 9.552\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T08:45:07.101Z\",\n \"measurement\": \"tcp_result\",\n \"value\": 9.395\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T08:45:09.12Z\",\n \"measurement\": \"tcp_result\",\n \"value\": 8.98\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T08:45:11.138Z\",\n \"measurement\": \"tcp_result\",\n \"value\": 8.866\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T08:45:13.157Z\",\n \"measurement\": \"tcp_result\",\n \"value\": 8.857\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T08:45:15.175Z\",\n \"measurement\": \"tcp_result\",\n \"value\": 8.77\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T08:45:17.193Z\",\n \"measurement\": \"tcp_result\",\n \"value\": 8.812\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T08:45:19.211Z\",\n \"measurement\": \"tcp_result\",\n \"value\": 9.736\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T08:45:21.23Z\",\n \"measurement\": \"tcp_result\",\n \"value\": 8.834\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T08:45:23.249Z\",\n \"measurement\": \"tcp_result\",\n \"value\": 9.109\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T08:45:25.267Z\",\n \"measurement\": \"tcp_result\",\n \"value\": 9.101\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T08:45:27.286Z\",\n \"measurement\": \"tcp_result\",\n \"value\": 8.756\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T08:45:29.304Z\",\n \"measurement\": \"tcp_result\",\n \"value\": 9.318\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T08:45:31.323Z\",\n \"measurement\": \"tcp_result\",\n \"value\": 8.932\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T08:45:33.341Z\",\n \"measurement\": \"tcp_result\",\n \"value\": 9.227\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T08:45:35.36Z\",\n \"measurement\": \"tcp_result\",\n \"value\": 9.102\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T08:45:37.379Z\",\n \"measurement\": \"tcp_result\",\n \"value\": 9.525\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T08:45:39.398Z\",\n \"measurement\": \"tcp_result\",\n \"value\": 8.759\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T08:45:41.416Z\",\n \"measurement\": \"tcp_result\",\n \"value\": 9.057\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T08:45:43.435Z\",\n \"measurement\": \"tcp_result\",\n \"value\": 9.032\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T08:45:45.454Z\",\n \"measurement\": \"tcp_result\",\n \"value\": 9.154\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T08:45:47.472Z\",\n \"measurement\": \"tcp_result\",\n \"value\": 8.778\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T08:45:49.491Z\",\n \"measurement\": \"tcp_result\",\n \"value\": 8.861\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T08:45:51.509Z\",\n \"measurement\": \"tcp_result\",\n \"value\": 9.598\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T08:45:53.528Z\",\n \"measurement\": \"tcp_result\",\n \"value\": 9.041\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T08:45:55.546Z\",\n \"measurement\": \"tcp_result\",\n \"value\": 8.641\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T08:45:57.564Z\",\n \"measurement\": \"tcp_result\",\n \"value\": 8.962\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T08:45:59.582Z\",\n \"measurement\": \"tcp_result\",\n \"value\": 9.529\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T08:46:01.602Z\",\n \"measurement\": \"tcp_result\",\n \"value\": 8.764\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T08:46:03.619Z\",\n \"measurement\": \"tcp_result\",\n \"value\": 9.284\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T08:46:05.638Z\",\n \"measurement\": \"tcp_result\",\n \"value\": 8.928\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T08:46:07.657Z\",\n \"measurement\": \"tcp_result\",\n \"value\": 8.977\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T08:46:09.676Z\",\n \"measurement\": \"tcp_result\",\n \"value\": 18.596\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T08:46:11.704Z\",\n \"measurement\": \"tcp_result\",\n \"value\": 9.133\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T08:46:13.723Z\",\n \"measurement\": \"tcp_result\",\n \"value\": 9.265\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T08:46:15.741Z\",\n \"measurement\": \"tcp_result\",\n \"value\": 9.114\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T08:46:17.76Z\",\n \"measurement\": \"tcp_result\",\n \"value\": 8.767\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T08:46:19.779Z\",\n \"measurement\": \"tcp_result\",\n \"value\": 9.218\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T08:46:21.798Z\",\n \"measurement\": \"tcp_result\",\n \"value\": 8.932\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T08:46:23.816Z\",\n \"measurement\": \"tcp_result\",\n \"value\": 9.542\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T08:46:25.837Z\",\n \"measurement\": \"tcp_result\",\n \"value\": 9.06\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T08:46:27.856Z\",\n \"measurement\": \"tcp_result\",\n \"value\": 9.028\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T08:46:29.875Z\",\n \"measurement\": \"tcp_result\",\n \"value\": 8.847\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T08:46:31.893Z\",\n \"measurement\": \"tcp_result\",\n \"value\": 9.281\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T08:46:33.911Z\",\n \"measurement\": \"tcp_result\",\n \"value\": 9.438\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T08:46:35.93Z\",\n \"measurement\": \"tcp_result\",\n \"value\": 19.908\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T08:46:37.96Z\",\n \"measurement\": \"tcp_result\",\n \"value\": 9.087\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T08:46:39.979Z\",\n \"measurement\": \"tcp_result\",\n \"value\": 8.923\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T08:46:41.997Z\",\n \"measurement\": \"tcp_result\",\n \"value\": 11.815\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T08:46:44.019Z\",\n \"measurement\": \"tcp_result\",\n \"value\": 9.147\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T08:46:46.037Z\",\n \"measurement\": \"tcp_result\",\n \"value\": 8.716\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T08:46:48.055Z\",\n \"measurement\": \"tcp_result\",\n \"value\": 8.676\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T08:46:50.073Z\",\n \"measurement\": \"tcp_result\",\n \"value\": 8.832\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T08:46:52.091Z\",\n \"measurement\": \"tcp_result\",\n \"value\": 8.882\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T08:46:54.109Z\",\n \"measurement\": \"tcp_result\",\n \"value\": 8.835\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T08:46:56.127Z\",\n \"measurement\": \"tcp_result\",\n \"value\": 8.658\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T08:46:58.145Z\",\n \"measurement\": \"tcp_result\",\n \"value\": 8.637\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T08:47:00.163Z\",\n \"measurement\": \"tcp_result\",\n \"value\": 8.983\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T08:47:02.181Z\",\n \"measurement\": \"tcp_result\",\n \"value\": 8.967\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T08:47:04.2Z\",\n \"measurement\": \"tcp_result\",\n \"value\": 8.426\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T08:47:06.217Z\",\n \"measurement\": \"tcp_result\",\n \"value\": 8.714\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T08:47:08.235Z\",\n \"measurement\": \"tcp_result\",\n \"value\": 8.764\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T08:47:10.254Z\",\n \"measurement\": \"tcp_result\",\n \"value\": 9.238\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T08:47:12.272Z\",\n \"measurement\": \"tcp_result\",\n \"value\": 18.219\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T08:47:14.3Z\",\n \"measurement\": \"tcp_result\",\n \"value\": 8.775\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T08:47:16.318Z\",\n \"measurement\": \"tcp_result\",\n \"value\": 8.843\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T08:47:18.336Z\",\n \"measurement\": \"tcp_result\",\n \"value\": 9.354\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T08:47:20.355Z\",\n \"measurement\": \"tcp_result\",\n \"value\": 8.678\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T08:47:22.373Z\",\n \"measurement\": \"tcp_result\",\n \"value\": 8.773\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T08:47:24.391Z\",\n \"measurement\": \"tcp_result\",\n \"value\": 8.381\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T08:47:26.409Z\",\n \"measurement\": \"tcp_result\",\n \"value\": 9.092\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T08:47:28.428Z\",\n \"measurement\": \"tcp_result\",\n \"value\": 8.687\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T08:47:30.446Z\",\n \"measurement\": \"tcp_result\",\n \"value\": 8.677\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T08:47:32.463Z\",\n \"measurement\": \"tcp_result\",\n \"value\": 11.528\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T08:47:34.484Z\",\n \"measurement\": \"tcp_result\",\n \"value\": 9.293\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T08:47:36.503Z\",\n \"measurement\": \"tcp_result\",\n \"value\": 9.178\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T08:47:38.521Z\",\n \"measurement\": \"tcp_result\",\n \"value\": 8.691\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T08:47:40.539Z\",\n \"measurement\": \"tcp_result\",\n \"value\": 8.686\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T08:47:42.557Z\",\n \"measurement\": \"tcp_result\",\n \"value\": 8.771\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T08:47:44.575Z\",\n \"measurement\": \"tcp_result\",\n \"value\": 9.297\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T08:47:46.594Z\",\n \"measurement\": \"tcp_result\",\n \"value\": 8.871\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T08:47:48.612Z\",\n \"measurement\": \"tcp_result\",\n \"value\": 9.029\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T08:47:50.63Z\",\n \"measurement\": \"tcp_result\",\n \"value\": 8.833\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T08:47:52.648Z\",\n \"measurement\": \"tcp_result\",\n \"value\": 8.564\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T08:47:54.666Z\",\n \"measurement\": \"tcp_result\",\n \"value\": 8.889\n }\n]", + "latency": 0, + "statusCode": 200, + "label": "TCP", + "headers": [], + "bodyType": "INLINE", + "filePath": "", + "databucketID": "", + "sendFileAsBody": false, + "rules": [ + { + "target": "query", + "modifier": "protocol", + "value": "tcp", + "invert": false, + "operator": "equals" + } + ], + "rulesOperator": "OR", + "disableTemplating": false, + "fallbackTo404": false, + "default": true, + "crudKey": "id", + "callbacks": [] + }, + { + "uuid": "34d120de-2d0d-4d56-9dca-43fbbe15b816", + "body": "[\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T08:48:09.629Z\",\n \"measurement\": \"udp_result\",\n \"value\": 9.194\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T08:48:11.638Z\",\n \"measurement\": \"udp_result\",\n \"value\": 8.71\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T08:48:13.647Z\",\n \"measurement\": \"udp_result\",\n \"value\": 9.014\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T08:48:15.656Z\",\n \"measurement\": \"udp_result\",\n \"value\": 9.151\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T08:48:17.666Z\",\n \"measurement\": \"udp_result\",\n \"value\": 8.622\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T08:48:19.674Z\",\n \"measurement\": \"udp_result\",\n \"value\": 8.754\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T08:48:21.683Z\",\n \"measurement\": \"udp_result\",\n \"value\": 8.892\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T08:48:23.692Z\",\n \"measurement\": \"udp_result\",\n \"value\": 9.082\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T08:48:25.702Z\",\n \"measurement\": \"udp_result\",\n \"value\": 8.95\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T08:48:27.711Z\",\n \"measurement\": \"udp_result\",\n \"value\": 10.016\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T08:48:29.721Z\",\n \"measurement\": \"udp_result\",\n \"value\": 8.652\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T08:48:31.73Z\",\n \"measurement\": \"udp_result\",\n \"value\": 9.449\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T08:48:33.739Z\",\n \"measurement\": \"udp_result\",\n \"value\": 9.063\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T08:48:35.749Z\",\n \"measurement\": \"udp_result\",\n \"value\": 8.701\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T08:48:37.757Z\",\n \"measurement\": \"udp_result\",\n \"value\": 9.041\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T08:48:39.767Z\",\n \"measurement\": \"udp_result\",\n \"value\": 9.107\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T08:48:41.776Z\",\n \"measurement\": \"udp_result\",\n \"value\": 8.918\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T08:48:43.785Z\",\n \"measurement\": \"udp_result\",\n \"value\": 9.143\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T08:48:45.794Z\",\n \"measurement\": \"udp_result\",\n \"value\": 8.985\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T08:48:47.803Z\",\n \"measurement\": \"udp_result\",\n \"value\": 8.789\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T08:48:49.812Z\",\n \"measurement\": \"udp_result\",\n \"value\": 8.574\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T08:48:51.821Z\",\n \"measurement\": \"udp_result\",\n \"value\": 9.421\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T08:48:53.831Z\",\n \"measurement\": \"udp_result\",\n \"value\": 8.983\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T08:48:55.84Z\",\n \"measurement\": \"udp_result\",\n \"value\": 9.105\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T08:48:57.849Z\",\n \"measurement\": \"udp_result\",\n \"value\": 8.654\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T08:48:59.858Z\",\n \"measurement\": \"udp_result\",\n \"value\": 13.458\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T08:49:01.872Z\",\n \"measurement\": \"udp_result\",\n \"value\": 9.31\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T08:49:03.881Z\",\n \"measurement\": \"udp_result\",\n \"value\": 8.91\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T08:49:05.89Z\",\n \"measurement\": \"udp_result\",\n \"value\": 9.535\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T08:49:07.9Z\",\n \"measurement\": \"udp_result\",\n \"value\": 9.438\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T08:49:09.909Z\",\n \"measurement\": \"udp_result\",\n \"value\": 9.081\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T08:49:11.919Z\",\n \"measurement\": \"udp_result\",\n \"value\": 9.978\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T08:49:13.929Z\",\n \"measurement\": \"udp_result\",\n \"value\": 8.832\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T08:49:15.938Z\",\n \"measurement\": \"udp_result\",\n \"value\": 9.713\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T08:49:17.948Z\",\n \"measurement\": \"udp_result\",\n \"value\": 9.46\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T08:49:19.958Z\",\n \"measurement\": \"udp_result\",\n \"value\": 9.395\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T08:49:21.967Z\",\n \"measurement\": \"udp_result\",\n \"value\": 9.176\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T08:49:23.977Z\",\n \"measurement\": \"udp_result\",\n \"value\": 9.126\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T08:49:25.986Z\",\n \"measurement\": \"udp_result\",\n \"value\": 8.746\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T08:49:27.995Z\",\n \"measurement\": \"udp_result\",\n \"value\": 9.034\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T08:49:30.004Z\",\n \"measurement\": \"udp_result\",\n \"value\": 9.393\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T08:49:32.014Z\",\n \"measurement\": \"udp_result\",\n \"value\": 8.661\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T08:49:34.022Z\",\n \"measurement\": \"udp_result\",\n \"value\": 9.08\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T08:49:36.032Z\",\n \"measurement\": \"udp_result\",\n \"value\": 9.082\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T08:49:38.041Z\",\n \"measurement\": \"udp_result\",\n \"value\": 8.948\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T08:49:40.05Z\",\n \"measurement\": \"udp_result\",\n \"value\": 8.831\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T08:49:42.059Z\",\n \"measurement\": \"udp_result\",\n \"value\": 8.849\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T08:49:44.068Z\",\n \"measurement\": \"udp_result\",\n \"value\": 8.908\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T08:49:46.077Z\",\n \"measurement\": \"udp_result\",\n \"value\": 8.657\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T08:49:48.086Z\",\n \"measurement\": \"udp_result\",\n \"value\": 9.326\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T08:49:50.095Z\",\n \"measurement\": \"udp_result\",\n \"value\": 9.427\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T08:49:52.105Z\",\n \"measurement\": \"udp_result\",\n \"value\": 20.126\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T08:49:54.125Z\",\n \"measurement\": \"udp_result\",\n \"value\": 9.421\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T08:49:56.135Z\",\n \"measurement\": \"udp_result\",\n \"value\": 8.981\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T08:49:58.144Z\",\n \"measurement\": \"udp_result\",\n \"value\": 8.934\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T08:50:00.153Z\",\n \"measurement\": \"udp_result\",\n \"value\": 8.871\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T08:50:02.162Z\",\n \"measurement\": \"udp_result\",\n \"value\": 9.045\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T08:50:04.171Z\",\n \"measurement\": \"udp_result\",\n \"value\": 9.573\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T08:50:06.181Z\",\n \"measurement\": \"udp_result\",\n \"value\": 8.914\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T08:50:08.19Z\",\n \"measurement\": \"udp_result\",\n \"value\": 9.283\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T08:50:10.199Z\",\n \"measurement\": \"udp_result\",\n \"value\": 8.849\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T08:50:12.208Z\",\n \"measurement\": \"udp_result\",\n \"value\": 8.907\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T08:50:14.218Z\",\n \"measurement\": \"udp_result\",\n \"value\": 9.704\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T08:50:16.227Z\",\n \"measurement\": \"udp_result\",\n \"value\": 9.775\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T08:50:18.237Z\",\n \"measurement\": \"udp_result\",\n \"value\": 9.002\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T08:50:20.247Z\",\n \"measurement\": \"udp_result\",\n \"value\": 9.236\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T08:50:22.256Z\",\n \"measurement\": \"udp_result\",\n \"value\": 9.034\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T08:50:24.265Z\",\n \"measurement\": \"udp_result\",\n \"value\": 8.736\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T08:50:26.274Z\",\n \"measurement\": \"udp_result\",\n \"value\": 9.044\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T08:50:28.283Z\",\n \"measurement\": \"udp_result\",\n \"value\": 9.031\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T08:50:30.292Z\",\n \"measurement\": \"udp_result\",\n \"value\": 8.968\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T08:50:32.302Z\",\n \"measurement\": \"udp_result\",\n \"value\": 8.713\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T08:50:34.31Z\",\n \"measurement\": \"udp_result\",\n \"value\": 8.896\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T08:50:36.319Z\",\n \"measurement\": \"udp_result\",\n \"value\": 9.133\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T08:50:38.329Z\",\n \"measurement\": \"udp_result\",\n \"value\": 9.078\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T08:50:40.338Z\",\n \"measurement\": \"udp_result\",\n \"value\": 8.904\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T08:50:42.347Z\",\n \"measurement\": \"udp_result\",\n \"value\": 8.997\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T08:50:44.356Z\",\n \"measurement\": \"udp_result\",\n \"value\": 9.093\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T08:50:46.366Z\",\n \"measurement\": \"udp_result\",\n \"value\": 14.425\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T08:50:48.38Z\",\n \"measurement\": \"udp_result\",\n \"value\": 9.636\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T08:50:50.39Z\",\n \"measurement\": \"udp_result\",\n \"value\": 8.826\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T08:50:52.399Z\",\n \"measurement\": \"udp_result\",\n \"value\": 9.277\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T08:50:54.408Z\",\n \"measurement\": \"udp_result\",\n \"value\": 8.926\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T08:50:56.417Z\",\n \"measurement\": \"udp_result\",\n \"value\": 8.834\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T08:50:58.426Z\",\n \"measurement\": \"udp_result\",\n \"value\": 9.102\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T08:51:00.436Z\",\n \"measurement\": \"udp_result\",\n \"value\": 8.852\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T08:51:02.445Z\",\n \"measurement\": \"udp_result\",\n \"value\": 9.326\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T08:51:04.454Z\",\n \"measurement\": \"udp_result\",\n \"value\": 8.959\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T08:51:06.463Z\",\n \"measurement\": \"udp_result\",\n \"value\": 9.947\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T08:51:08.474Z\",\n \"measurement\": \"udp_result\",\n \"value\": 9.396\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T08:51:10.483Z\",\n \"measurement\": \"udp_result\",\n \"value\": 9.869\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T08:51:12.493Z\",\n \"measurement\": \"udp_result\",\n \"value\": 8.979\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T08:51:14.502Z\",\n \"measurement\": \"udp_result\",\n \"value\": 9.06\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T08:51:16.512Z\",\n \"measurement\": \"udp_result\",\n \"value\": 9.536\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T08:51:18.521Z\",\n \"measurement\": \"udp_result\",\n \"value\": 9.609\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T08:51:20.531Z\",\n \"measurement\": \"udp_result\",\n \"value\": 9.279\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T08:51:22.541Z\",\n \"measurement\": \"udp_result\",\n \"value\": 9.186\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T08:51:24.55Z\",\n \"measurement\": \"udp_result\",\n \"value\": 8.906\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T08:51:26.559Z\",\n \"measurement\": \"udp_result\",\n \"value\": 9.03\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T08:51:28.568Z\",\n \"measurement\": \"udp_result\",\n \"value\": 8.978\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T08:51:30.577Z\",\n \"measurement\": \"udp_result\",\n \"value\": 9.044\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T08:51:32.586Z\",\n \"measurement\": \"udp_result\",\n \"value\": 8.653\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T08:51:34.595Z\",\n \"measurement\": \"udp_result\",\n \"value\": 9.086\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T08:51:36.604Z\",\n \"measurement\": \"udp_result\",\n \"value\": 9.237\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T08:51:38.614Z\",\n \"measurement\": \"udp_result\",\n \"value\": 9.494\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T08:51:40.624Z\",\n \"measurement\": \"udp_result\",\n \"value\": 9.155\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T08:51:42.633Z\",\n \"measurement\": \"udp_result\",\n \"value\": 8.918\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T08:51:44.642Z\",\n \"measurement\": \"udp_result\",\n \"value\": 9.072\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T08:51:46.651Z\",\n \"measurement\": \"udp_result\",\n \"value\": 9.034\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T08:51:48.66Z\",\n \"measurement\": \"udp_result\",\n \"value\": 9.038\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T08:51:50.669Z\",\n \"measurement\": \"udp_result\",\n \"value\": 8.834\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T08:51:52.678Z\",\n \"measurement\": \"udp_result\",\n \"value\": 8.925\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T08:51:54.688Z\",\n \"measurement\": \"udp_result\",\n \"value\": 8.922\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T08:51:56.697Z\",\n \"measurement\": \"udp_result\",\n \"value\": 8.757\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T08:51:58.706Z\",\n \"measurement\": \"udp_result\",\n \"value\": 8.977\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T08:52:00.715Z\",\n \"measurement\": \"udp_result\",\n \"value\": 9.121\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T08:52:02.724Z\",\n \"measurement\": \"udp_result\",\n \"value\": 22.126\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T08:52:04.747Z\",\n \"measurement\": \"udp_result\",\n \"value\": 9.25\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T08:52:06.756Z\",\n \"measurement\": \"udp_result\",\n \"value\": 9.27\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T08:52:08.765Z\",\n \"measurement\": \"udp_result\",\n \"value\": 9.427\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T08:52:10.775Z\",\n \"measurement\": \"udp_result\",\n \"value\": 9.199\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T08:52:12.784Z\",\n \"measurement\": \"udp_result\",\n \"value\": 9.017\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T08:52:14.793Z\",\n \"measurement\": \"udp_result\",\n \"value\": 9.103\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T08:52:16.803Z\",\n \"measurement\": \"udp_result\",\n \"value\": 8.943\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T08:52:18.812Z\",\n \"measurement\": \"udp_result\",\n \"value\": 9.048\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T08:52:20.821Z\",\n \"measurement\": \"udp_result\",\n \"value\": 9.275\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T08:52:22.831Z\",\n \"measurement\": \"udp_result\",\n \"value\": 8.888\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T08:52:24.84Z\",\n \"measurement\": \"udp_result\",\n \"value\": 9.713\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T08:52:26.85Z\",\n \"measurement\": \"udp_result\",\n \"value\": 9.339\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T08:52:28.859Z\",\n \"measurement\": \"udp_result\",\n \"value\": 8.751\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T08:52:30.868Z\",\n \"measurement\": \"udp_result\",\n \"value\": 8.896\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T08:52:32.877Z\",\n \"measurement\": \"udp_result\",\n \"value\": 8.728\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T08:52:34.886Z\",\n \"measurement\": \"udp_result\",\n \"value\": 8.904\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T08:52:36.895Z\",\n \"measurement\": \"udp_result\",\n \"value\": 9.047\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T08:52:38.904Z\",\n \"measurement\": \"udp_result\",\n \"value\": 8.723\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T08:52:40.913Z\",\n \"measurement\": \"udp_result\",\n \"value\": 8.948\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T08:52:42.922Z\",\n \"measurement\": \"udp_result\",\n \"value\": 9.039\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T08:52:44.932Z\",\n \"measurement\": \"udp_result\",\n \"value\": 9.218\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T08:52:46.941Z\",\n \"measurement\": \"udp_result\",\n \"value\": 9.22\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T08:52:48.95Z\",\n \"measurement\": \"udp_result\",\n \"value\": 9.502\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T08:52:50.96Z\",\n \"measurement\": \"udp_result\",\n \"value\": 9.666\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T08:52:52.97Z\",\n \"measurement\": \"udp_result\",\n \"value\": 9.505\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T08:52:54.98Z\",\n \"measurement\": \"udp_result\",\n \"value\": 10.91\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T08:52:56.991Z\",\n \"measurement\": \"udp_result\",\n \"value\": 9.19\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T08:52:59Z\",\n \"measurement\": \"udp_result\",\n \"value\": 9.949\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T08:53:01.01Z\",\n \"measurement\": \"udp_result\",\n \"value\": 9.56\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T08:53:03.02Z\",\n \"measurement\": \"udp_result\",\n \"value\": 9.584\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T08:53:05.03Z\",\n \"measurement\": \"udp_result\",\n \"value\": 9.589\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T08:53:07.039Z\",\n \"measurement\": \"udp_result\",\n \"value\": 9.711\n }\n]", + "latency": 0, + "statusCode": 200, + "label": "UDP", + "headers": [], + "bodyType": "INLINE", + "filePath": "", + "databucketID": "", + "sendFileAsBody": false, + "rules": [ + { + "target": "query", + "modifier": "protocol", + "value": "udp", + "invert": false, + "operator": "equals" + } + ], + "rulesOperator": "OR", + "disableTemplating": false, + "fallbackTo404": false, + "default": false, + "crudKey": "id", + "callbacks": [] + }, + { + "uuid": "6380d7aa-3889-44a6-a47d-f3aded8e26c8", + "body": "[\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T08:48:48.047Z\",\n \"measurement\": \"http_result\",\n \"value\": 8.895\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T08:48:50.066Z\",\n \"measurement\": \"http_result\",\n \"value\": 8.839\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T08:48:52.085Z\",\n \"measurement\": \"http_result\",\n \"value\": 8.954\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T08:48:54.104Z\",\n \"measurement\": \"http_result\",\n \"value\": 8.879\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T08:48:56.122Z\",\n \"measurement\": \"http_result\",\n \"value\": 9.135\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T08:48:58.141Z\",\n \"measurement\": \"http_result\",\n \"value\": 9.061\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T08:49:00.16Z\",\n \"measurement\": \"http_result\",\n \"value\": 9.058\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T08:49:02.18Z\",\n \"measurement\": \"http_result\",\n \"value\": 9.253\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T08:49:04.199Z\",\n \"measurement\": \"http_result\",\n \"value\": 9.215\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T08:49:06.217Z\",\n \"measurement\": \"http_result\",\n \"value\": 8.758\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T08:49:08.236Z\",\n \"measurement\": \"http_result\",\n \"value\": 8.87\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T08:49:10.255Z\",\n \"measurement\": \"http_result\",\n \"value\": 8.916\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T08:49:12.274Z\",\n \"measurement\": \"http_result\",\n \"value\": 14.437\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T08:49:14.298Z\",\n \"measurement\": \"http_result\",\n \"value\": 8.914\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T08:49:16.317Z\",\n \"measurement\": \"http_result\",\n \"value\": 8.882\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T08:49:18.337Z\",\n \"measurement\": \"http_result\",\n \"value\": 8.51\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T08:49:20.355Z\",\n \"measurement\": \"http_result\",\n \"value\": 8.661\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T08:49:22.374Z\",\n \"measurement\": \"http_result\",\n \"value\": 9.129\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T08:49:24.393Z\",\n \"measurement\": \"http_result\",\n \"value\": 9.067\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T08:49:26.412Z\",\n \"measurement\": \"http_result\",\n \"value\": 9.564\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T08:49:28.431Z\",\n \"measurement\": \"http_result\",\n \"value\": 8.866\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T08:49:30.45Z\",\n \"measurement\": \"http_result\",\n \"value\": 9.139\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T08:49:32.468Z\",\n \"measurement\": \"http_result\",\n \"value\": 8.822\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T08:49:34.487Z\",\n \"measurement\": \"http_result\",\n \"value\": 8.852\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T08:49:36.517Z\",\n \"measurement\": \"http_result\",\n \"value\": 9.361\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T08:49:38.536Z\",\n \"measurement\": \"http_result\",\n \"value\": 9.016\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T08:49:40.556Z\",\n \"measurement\": \"http_result\",\n \"value\": 9.275\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T08:49:42.575Z\",\n \"measurement\": \"http_result\",\n \"value\": 8.949\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T08:49:44.594Z\",\n \"measurement\": \"http_result\",\n \"value\": 9.057\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T08:49:46.613Z\",\n \"measurement\": \"http_result\",\n \"value\": 9.034\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T08:49:48.632Z\",\n \"measurement\": \"http_result\",\n \"value\": 9.036\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T08:49:50.65Z\",\n \"measurement\": \"http_result\",\n \"value\": 9.133\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T08:49:52.67Z\",\n \"measurement\": \"http_result\",\n \"value\": 8.998\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T08:49:54.688Z\",\n \"measurement\": \"http_result\",\n \"value\": 8.88\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T08:49:56.707Z\",\n \"measurement\": \"http_result\",\n \"value\": 8.867\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T08:49:58.726Z\",\n \"measurement\": \"http_result\",\n \"value\": 8.809\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T08:50:00.745Z\",\n \"measurement\": \"http_result\",\n \"value\": 8.932\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T08:50:02.764Z\",\n \"measurement\": \"http_result\",\n \"value\": 8.934\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T08:50:04.783Z\",\n \"measurement\": \"http_result\",\n \"value\": 9.059\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T08:50:06.802Z\",\n \"measurement\": \"http_result\",\n \"value\": 8.964\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T08:50:08.821Z\",\n \"measurement\": \"http_result\",\n \"value\": 8.776\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T08:50:10.84Z\",\n \"measurement\": \"http_result\",\n \"value\": 9.042\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T08:50:12.859Z\",\n \"measurement\": \"http_result\",\n \"value\": 8.81\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T08:50:14.878Z\",\n \"measurement\": \"http_result\",\n \"value\": 8.867\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T08:50:16.897Z\",\n \"measurement\": \"http_result\",\n \"value\": 9.085\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T08:50:18.915Z\",\n \"measurement\": \"http_result\",\n \"value\": 8.774\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T08:50:20.933Z\",\n \"measurement\": \"http_result\",\n \"value\": 9.34\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T08:50:22.953Z\",\n \"measurement\": \"http_result\",\n \"value\": 8.975\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T08:50:24.972Z\",\n \"measurement\": \"http_result\",\n \"value\": 9.203\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T08:50:26.991Z\",\n \"measurement\": \"http_result\",\n \"value\": 9.299\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T08:50:29.01Z\",\n \"measurement\": \"http_result\",\n \"value\": 9.206\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T08:50:31.029Z\",\n \"measurement\": \"http_result\",\n \"value\": 9.105\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T08:50:33.048Z\",\n \"measurement\": \"http_result\",\n \"value\": 9.261\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T08:50:35.067Z\",\n \"measurement\": \"http_result\",\n \"value\": 8.859\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T08:50:37.086Z\",\n \"measurement\": \"http_result\",\n \"value\": 8.921\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T08:50:39.105Z\",\n \"measurement\": \"http_result\",\n \"value\": 8.873\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T08:50:41.123Z\",\n \"measurement\": \"http_result\",\n \"value\": 9.16\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T08:50:43.142Z\",\n \"measurement\": \"http_result\",\n \"value\": 8.742\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T08:50:45.16Z\",\n \"measurement\": \"http_result\",\n \"value\": 8.805\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T08:50:47.179Z\",\n \"measurement\": \"http_result\",\n \"value\": 8.959\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T08:50:49.198Z\",\n \"measurement\": \"http_result\",\n \"value\": 8.841\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T08:50:51.216Z\",\n \"measurement\": \"http_result\",\n \"value\": 9.049\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T08:50:53.236Z\",\n \"measurement\": \"http_result\",\n \"value\": 8.947\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T08:50:55.254Z\",\n \"measurement\": \"http_result\",\n \"value\": 9.818\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T08:50:57.274Z\",\n \"measurement\": \"http_result\",\n \"value\": 8.954\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T08:50:59.293Z\",\n \"measurement\": \"http_result\",\n \"value\": 8.722\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T08:51:01.312Z\",\n \"measurement\": \"http_result\",\n \"value\": 9.128\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T08:51:03.331Z\",\n \"measurement\": \"http_result\",\n \"value\": 9.109\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T08:51:05.35Z\",\n \"measurement\": \"http_result\",\n \"value\": 8.901\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T08:51:07.369Z\",\n \"measurement\": \"http_result\",\n \"value\": 8.77\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T08:51:09.387Z\",\n \"measurement\": \"http_result\",\n \"value\": 8.885\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T08:51:11.406Z\",\n \"measurement\": \"http_result\",\n \"value\": 9.318\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T08:51:13.429Z\",\n \"measurement\": \"http_result\",\n \"value\": 9.161\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T08:51:15.448Z\",\n \"measurement\": \"http_result\",\n \"value\": 9.162\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T08:51:17.466Z\",\n \"measurement\": \"http_result\",\n \"value\": 9.02\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T08:51:19.485Z\",\n \"measurement\": \"http_result\",\n \"value\": 13.769\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T08:51:21.509Z\",\n \"measurement\": \"http_result\",\n \"value\": 8.645\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T08:51:23.528Z\",\n \"measurement\": \"http_result\",\n \"value\": 9.272\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T08:51:25.547Z\",\n \"measurement\": \"http_result\",\n \"value\": 9.146\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T08:51:27.566Z\",\n \"measurement\": \"http_result\",\n \"value\": 8.831\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T08:51:29.585Z\",\n \"measurement\": \"http_result\",\n \"value\": 8.912\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T08:51:31.604Z\",\n \"measurement\": \"http_result\",\n \"value\": 9.391\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T08:51:33.623Z\",\n \"measurement\": \"http_result\",\n \"value\": 8.964\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T08:51:35.642Z\",\n \"measurement\": \"http_result\",\n \"value\": 9.048\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T08:51:37.661Z\",\n \"measurement\": \"http_result\",\n \"value\": 9.001\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T08:51:39.68Z\",\n \"measurement\": \"http_result\",\n \"value\": 8.539\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T08:51:41.698Z\",\n \"measurement\": \"http_result\",\n \"value\": 8.986\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T08:51:43.717Z\",\n \"measurement\": \"http_result\",\n \"value\": 10.941\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T08:51:45.738Z\",\n \"measurement\": \"http_result\",\n \"value\": 9.143\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T08:51:47.757Z\",\n \"measurement\": \"http_result\",\n \"value\": 10.801\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T08:51:49.777Z\",\n \"measurement\": \"http_result\",\n \"value\": 11.382\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T08:51:51.798Z\",\n \"measurement\": \"http_result\",\n \"value\": 8.87\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T08:51:53.818Z\",\n \"measurement\": \"http_result\",\n \"value\": 9.029\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T08:51:55.837Z\",\n \"measurement\": \"http_result\",\n \"value\": 9.307\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T08:51:57.856Z\",\n \"measurement\": \"http_result\",\n \"value\": 9.226\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T08:51:59.875Z\",\n \"measurement\": \"http_result\",\n \"value\": 9.059\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T08:52:01.894Z\",\n \"measurement\": \"http_result\",\n \"value\": 9.328\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T08:52:03.914Z\",\n \"measurement\": \"http_result\",\n \"value\": 8.932\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T08:52:05.932Z\",\n \"measurement\": \"http_result\",\n \"value\": 8.832\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T08:52:07.951Z\",\n \"measurement\": \"http_result\",\n \"value\": 9.25\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T08:52:09.97Z\",\n \"measurement\": \"http_result\",\n \"value\": 8.592\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T08:52:11.989Z\",\n \"measurement\": \"http_result\",\n \"value\": 8.785\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T08:52:14.007Z\",\n \"measurement\": \"http_result\",\n \"value\": 9.082\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T08:52:16.026Z\",\n \"measurement\": \"http_result\",\n \"value\": 9.174\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T08:52:18.05Z\",\n \"measurement\": \"http_result\",\n \"value\": 9.208\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T08:52:20.069Z\",\n \"measurement\": \"http_result\",\n \"value\": 8.819\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T08:52:22.088Z\",\n \"measurement\": \"http_result\",\n \"value\": 9.129\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T08:52:24.106Z\",\n \"measurement\": \"http_result\",\n \"value\": 8.931\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T08:52:26.125Z\",\n \"measurement\": \"http_result\",\n \"value\": 8.798\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T08:52:28.143Z\",\n \"measurement\": \"http_result\",\n \"value\": 8.918\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T08:52:30.162Z\",\n \"measurement\": \"http_result\",\n \"value\": 9.637\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T08:52:32.181Z\",\n \"measurement\": \"http_result\",\n \"value\": 8.721\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T08:52:34.2Z\",\n \"measurement\": \"http_result\",\n \"value\": 9.334\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T08:52:36.219Z\",\n \"measurement\": \"http_result\",\n \"value\": 9.061\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T08:52:38.248Z\",\n \"measurement\": \"http_result\",\n \"value\": 8.954\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T08:52:40.266Z\",\n \"measurement\": \"http_result\",\n \"value\": 8.902\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T08:52:42.285Z\",\n \"measurement\": \"http_result\",\n \"value\": 8.88\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T08:52:44.304Z\",\n \"measurement\": \"http_result\",\n \"value\": 9.268\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T08:52:46.323Z\",\n \"measurement\": \"http_result\",\n \"value\": 9.537\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T08:52:48.343Z\",\n \"measurement\": \"http_result\",\n \"value\": 9.096\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T08:52:50.362Z\",\n \"measurement\": \"http_result\",\n \"value\": 8.962\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T08:52:52.381Z\",\n \"measurement\": \"http_result\",\n \"value\": 8.968\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T08:52:54.4Z\",\n \"measurement\": \"http_result\",\n \"value\": 8.83\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T08:52:56.418Z\",\n \"measurement\": \"http_result\",\n \"value\": 9.304\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T08:52:58.437Z\",\n \"measurement\": \"http_result\",\n \"value\": 8.776\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T08:53:00.456Z\",\n \"measurement\": \"http_result\",\n \"value\": 15.621\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T08:53:02.482Z\",\n \"measurement\": \"http_result\",\n \"value\": 9.227\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T08:53:04.502Z\",\n \"measurement\": \"http_result\",\n \"value\": 8.973\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T08:53:06.52Z\",\n \"measurement\": \"http_result\",\n \"value\": 9.084\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T08:53:08.539Z\",\n \"measurement\": \"http_result\",\n \"value\": 9.148\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T08:53:10.558Z\",\n \"measurement\": \"http_result\",\n \"value\": 8.945\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T08:53:12.577Z\",\n \"measurement\": \"http_result\",\n \"value\": 9.09\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T08:53:14.596Z\",\n \"measurement\": \"http_result\",\n \"value\": 9.015\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T08:53:16.616Z\",\n \"measurement\": \"http_result\",\n \"value\": 9.087\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T08:53:18.634Z\",\n \"measurement\": \"http_result\",\n \"value\": 8.892\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T08:53:20.654Z\",\n \"measurement\": \"http_result\",\n \"value\": 9.214\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T08:53:22.673Z\",\n \"measurement\": \"http_result\",\n \"value\": 8.95\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T08:53:24.693Z\",\n \"measurement\": \"http_result\",\n \"value\": 9.233\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T08:53:26.712Z\",\n \"measurement\": \"http_result\",\n \"value\": 9.094\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T08:53:28.731Z\",\n \"measurement\": \"http_result\",\n \"value\": 8.922\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T08:53:30.749Z\",\n \"measurement\": \"http_result\",\n \"value\": 9.068\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T08:53:32.768Z\",\n \"measurement\": \"http_result\",\n \"value\": 9.114\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T08:53:34.787Z\",\n \"measurement\": \"http_result\",\n \"value\": 8.764\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T08:53:36.806Z\",\n \"measurement\": \"http_result\",\n \"value\": 9.239\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T08:53:38.825Z\",\n \"measurement\": \"http_result\",\n \"value\": 9.238\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T08:53:40.844Z\",\n \"measurement\": \"http_result\",\n \"value\": 9.282\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T08:53:42.863Z\",\n \"measurement\": \"http_result\",\n \"value\": 8.747\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T08:53:44.882Z\",\n \"measurement\": \"http_result\",\n \"value\": 9.516\n }\n]", + "latency": 0, + "statusCode": 200, + "label": "HTTP", + "headers": [], + "bodyType": "INLINE", + "filePath": "", + "databucketID": "", + "sendFileAsBody": false, + "rules": [ + { + "target": "query", + "modifier": "protocol", + "value": "http", + "invert": false, + "operator": "equals" + } + ], + "rulesOperator": "OR", + "disableTemplating": false, + "fallbackTo404": false, + "default": false, + "crudKey": "id", + "callbacks": [] + }, + { + "uuid": "27e5465f-26df-41d6-94c5-f3e318431688", + "body": "[\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T08:55:18.879Z\",\n \"measurement\": \"https_result\",\n \"value\": 18.272\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T08:55:20.934Z\",\n \"measurement\": \"https_result\",\n \"value\": 17.08\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T08:55:22.986Z\",\n \"measurement\": \"https_result\",\n \"value\": 17.648\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T08:55:25.035Z\",\n \"measurement\": \"https_result\",\n \"value\": 17.499\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T08:55:27.086Z\",\n \"measurement\": \"https_result\",\n \"value\": 17.205\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T08:55:29.133Z\",\n \"measurement\": \"https_result\",\n \"value\": 18.817\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T08:55:31.181Z\",\n \"measurement\": \"https_result\",\n \"value\": 16.768\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T08:55:33.232Z\",\n \"measurement\": \"https_result\",\n \"value\": 25.229\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T08:55:35.289Z\",\n \"measurement\": \"https_result\",\n \"value\": 17.445\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T08:55:37.335Z\",\n \"measurement\": \"https_result\",\n \"value\": 16.719\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T08:55:39.383Z\",\n \"measurement\": \"https_result\",\n \"value\": 17.084\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T08:55:41.428Z\",\n \"measurement\": \"https_result\",\n \"value\": 17.116\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T08:55:43.478Z\",\n \"measurement\": \"https_result\",\n \"value\": 17.312\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T08:55:45.527Z\",\n \"measurement\": \"https_result\",\n \"value\": 21.177\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T08:55:47.578Z\",\n \"measurement\": \"https_result\",\n \"value\": 17.953\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T08:55:49.628Z\",\n \"measurement\": \"https_result\",\n \"value\": 17.805\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T08:55:51.678Z\",\n \"measurement\": \"https_result\",\n \"value\": 17.915\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T08:55:53.726Z\",\n \"measurement\": \"https_result\",\n \"value\": 16.984\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T08:55:55.775Z\",\n \"measurement\": \"https_result\",\n \"value\": 17.673\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T08:55:57.823Z\",\n \"measurement\": \"https_result\",\n \"value\": 18.246\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T08:55:59.87Z\",\n \"measurement\": \"https_result\",\n \"value\": 17.28\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T08:56:01.916Z\",\n \"measurement\": \"https_result\",\n \"value\": 17.232\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T08:56:03.965Z\",\n \"measurement\": \"https_result\",\n \"value\": 22.644\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T08:56:06.017Z\",\n \"measurement\": \"https_result\",\n \"value\": 16.901\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T08:56:08.066Z\",\n \"measurement\": \"https_result\",\n \"value\": 17.653\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T08:56:10.116Z\",\n \"measurement\": \"https_result\",\n \"value\": 18.372\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T08:56:12.162Z\",\n \"measurement\": \"https_result\",\n \"value\": 18.503\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T08:56:14.212Z\",\n \"measurement\": \"https_result\",\n \"value\": 17.42\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T08:56:16.261Z\",\n \"measurement\": \"https_result\",\n \"value\": 17.778\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T08:56:18.308Z\",\n \"measurement\": \"https_result\",\n \"value\": 19.64\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T08:56:20.356Z\",\n \"measurement\": \"https_result\",\n \"value\": 17.061\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T08:56:22.406Z\",\n \"measurement\": \"https_result\",\n \"value\": 17.581\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T08:56:24.453Z\",\n \"measurement\": \"https_result\",\n \"value\": 17.442\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T08:56:26.502Z\",\n \"measurement\": \"https_result\",\n \"value\": 18.392\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T08:56:28.552Z\",\n \"measurement\": \"https_result\",\n \"value\": 17.602\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T08:56:30.599Z\",\n \"measurement\": \"https_result\",\n \"value\": 18.459\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T08:56:32.648Z\",\n \"measurement\": \"https_result\",\n \"value\": 17.589\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T08:56:34.697Z\",\n \"measurement\": \"https_result\",\n \"value\": 19.048\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T08:56:36.748Z\",\n \"measurement\": \"https_result\",\n \"value\": 18.253\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T08:56:38.799Z\",\n \"measurement\": \"https_result\",\n \"value\": 21.275\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T08:56:40.85Z\",\n \"measurement\": \"https_result\",\n \"value\": 17.841\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T08:56:42.908Z\",\n \"measurement\": \"https_result\",\n \"value\": 17.222\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T08:56:44.959Z\",\n \"measurement\": \"https_result\",\n \"value\": 17.381\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T08:56:47.006Z\",\n \"measurement\": \"https_result\",\n \"value\": 18.878\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T08:56:49.054Z\",\n \"measurement\": \"https_result\",\n \"value\": 17.588\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T08:56:51.103Z\",\n \"measurement\": \"https_result\",\n \"value\": 17.223\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T08:56:53.148Z\",\n \"measurement\": \"https_result\",\n \"value\": 26.018\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T08:56:55.211Z\",\n \"measurement\": \"https_result\",\n \"value\": 17.915\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T08:56:57.258Z\",\n \"measurement\": \"https_result\",\n \"value\": 17.438\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T08:56:59.307Z\",\n \"measurement\": \"https_result\",\n \"value\": 17.665\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T08:57:01.358Z\",\n \"measurement\": \"https_result\",\n \"value\": 17.642\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T08:57:03.409Z\",\n \"measurement\": \"https_result\",\n \"value\": 18.403\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T08:57:05.459Z\",\n \"measurement\": \"https_result\",\n \"value\": 18.131\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T08:57:07.507Z\",\n \"measurement\": \"https_result\",\n \"value\": 17.654\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T08:57:09.553Z\",\n \"measurement\": \"https_result\",\n \"value\": 17.36\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T08:57:11.606Z\",\n \"measurement\": \"https_result\",\n \"value\": 21.952\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T08:57:13.654Z\",\n \"measurement\": \"https_result\",\n \"value\": 18.885\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T08:57:15.701Z\",\n \"measurement\": \"https_result\",\n \"value\": 21.196\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T08:57:17.75Z\",\n \"measurement\": \"https_result\",\n \"value\": 17.438\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T08:57:19.795Z\",\n \"measurement\": \"https_result\",\n \"value\": 17.784\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T08:57:21.842Z\",\n \"measurement\": \"https_result\",\n \"value\": 17.187\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T08:57:23.902Z\",\n \"measurement\": \"https_result\",\n \"value\": 17.669\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T08:57:25.948Z\",\n \"measurement\": \"https_result\",\n \"value\": 17.231\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T08:57:27.995Z\",\n \"measurement\": \"https_result\",\n \"value\": 17.475\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T08:57:30.045Z\",\n \"measurement\": \"https_result\",\n \"value\": 21.633\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T08:57:32.097Z\",\n \"measurement\": \"https_result\",\n \"value\": 17.544\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T08:57:34.146Z\",\n \"measurement\": \"https_result\",\n \"value\": 17.954\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T08:57:36.196Z\",\n \"measurement\": \"https_result\",\n \"value\": 17.208\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T08:57:38.247Z\",\n \"measurement\": \"https_result\",\n \"value\": 17.23\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T08:57:40.294Z\",\n \"measurement\": \"https_result\",\n \"value\": 17.206\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T08:57:42.344Z\",\n \"measurement\": \"https_result\",\n \"value\": 18.082\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T08:57:44.394Z\",\n \"measurement\": \"https_result\",\n \"value\": 18.359\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T08:57:46.44Z\",\n \"measurement\": \"https_result\",\n \"value\": 17.92\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T08:57:48.487Z\",\n \"measurement\": \"https_result\",\n \"value\": 17.458\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T08:57:50.539Z\",\n \"measurement\": \"https_result\",\n \"value\": 17.435\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T08:57:52.585Z\",\n \"measurement\": \"https_result\",\n \"value\": 18.285\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T08:57:54.636Z\",\n \"measurement\": \"https_result\",\n \"value\": 18.248\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T08:57:56.681Z\",\n \"measurement\": \"https_result\",\n \"value\": 21.825\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T08:57:58.732Z\",\n \"measurement\": \"https_result\",\n \"value\": 17.226\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T08:58:00.782Z\",\n \"measurement\": \"https_result\",\n \"value\": 17.204\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T08:58:02.83Z\",\n \"measurement\": \"https_result\",\n \"value\": 17.051\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T08:58:04.88Z\",\n \"measurement\": \"https_result\",\n \"value\": 17.149\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T08:58:06.929Z\",\n \"measurement\": \"https_result\",\n \"value\": 17.398\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T08:58:08.979Z\",\n \"measurement\": \"https_result\",\n \"value\": 17.792\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T08:58:11.028Z\",\n \"measurement\": \"https_result\",\n \"value\": 18.013\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T08:58:13.076Z\",\n \"measurement\": \"https_result\",\n \"value\": 17.004\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T08:58:15.121Z\",\n \"measurement\": \"https_result\",\n \"value\": 17.426\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T08:58:17.169Z\",\n \"measurement\": \"https_result\",\n \"value\": 17.614\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T08:58:19.218Z\",\n \"measurement\": \"https_result\",\n \"value\": 17.432\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T08:58:21.266Z\",\n \"measurement\": \"https_result\",\n \"value\": 17.039\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T08:58:23.314Z\",\n \"measurement\": \"https_result\",\n \"value\": 17.004\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T08:58:25.361Z\",\n \"measurement\": \"https_result\",\n \"value\": 17.455\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T08:58:27.413Z\",\n \"measurement\": \"https_result\",\n \"value\": 17.098\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T08:58:29.463Z\",\n \"measurement\": \"https_result\",\n \"value\": 17.437\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T08:58:31.51Z\",\n \"measurement\": \"https_result\",\n \"value\": 17.787\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T08:58:33.56Z\",\n \"measurement\": \"https_result\",\n \"value\": 27.287\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T08:58:35.614Z\",\n \"measurement\": \"https_result\",\n \"value\": 17.411\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T08:58:37.661Z\",\n \"measurement\": \"https_result\",\n \"value\": 17.283\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T08:58:39.711Z\",\n \"measurement\": \"https_result\",\n \"value\": 17.721\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T08:58:41.756Z\",\n \"measurement\": \"https_result\",\n \"value\": 17.381\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T08:58:43.803Z\",\n \"measurement\": \"https_result\",\n \"value\": 17.077\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T08:58:45.849Z\",\n \"measurement\": \"https_result\",\n \"value\": 17.569\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T08:58:47.896Z\",\n \"measurement\": \"https_result\",\n \"value\": 17.865\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T08:58:49.95Z\",\n \"measurement\": \"https_result\",\n \"value\": 17.568\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T08:58:52Z\",\n \"measurement\": \"https_result\",\n \"value\": 17.442\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T08:58:54.048Z\",\n \"measurement\": \"https_result\",\n \"value\": 17.449\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T08:58:56.097Z\",\n \"measurement\": \"https_result\",\n \"value\": 16.998\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T08:58:58.142Z\",\n \"measurement\": \"https_result\",\n \"value\": 17.037\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T08:59:00.192Z\",\n \"measurement\": \"https_result\",\n \"value\": 17.88\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T08:59:02.239Z\",\n \"measurement\": \"https_result\",\n \"value\": 17.323\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T08:59:04.289Z\",\n \"measurement\": \"https_result\",\n \"value\": 16.846\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T08:59:06.336Z\",\n \"measurement\": \"https_result\",\n \"value\": 19.202\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T08:59:08.387Z\",\n \"measurement\": \"https_result\",\n \"value\": 16.967\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T08:59:10.436Z\",\n \"measurement\": \"https_result\",\n \"value\": 18.37\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T08:59:12.487Z\",\n \"measurement\": \"https_result\",\n \"value\": 17.256\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T08:59:14.536Z\",\n \"measurement\": \"https_result\",\n \"value\": 17.981\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T08:59:16.593Z\",\n \"measurement\": \"https_result\",\n \"value\": 18.493\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T08:59:18.643Z\",\n \"measurement\": \"https_result\",\n \"value\": 17.752\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T08:59:20.696Z\",\n \"measurement\": \"https_result\",\n \"value\": 17.083\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T08:59:22.741Z\",\n \"measurement\": \"https_result\",\n \"value\": 17.687\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T08:59:24.789Z\",\n \"measurement\": \"https_result\",\n \"value\": 17.233\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T08:59:26.836Z\",\n \"measurement\": \"https_result\",\n \"value\": 17.071\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T08:59:28.891Z\",\n \"measurement\": \"https_result\",\n \"value\": 18.985\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T08:59:30.946Z\",\n \"measurement\": \"https_result\",\n \"value\": 17.448\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T08:59:32.993Z\",\n \"measurement\": \"https_result\",\n \"value\": 19.037\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T08:59:35.039Z\",\n \"measurement\": \"https_result\",\n \"value\": 18.211\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T08:59:37.096Z\",\n \"measurement\": \"https_result\",\n \"value\": 20.485\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T08:59:39.144Z\",\n \"measurement\": \"https_result\",\n \"value\": 18.058\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T08:59:41.189Z\",\n \"measurement\": \"https_result\",\n \"value\": 17.267\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T08:59:43.233Z\",\n \"measurement\": \"https_result\",\n \"value\": 17.246\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T08:59:45.279Z\",\n \"measurement\": \"https_result\",\n \"value\": 17.487\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T08:59:47.324Z\",\n \"measurement\": \"https_result\",\n \"value\": 18.104\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T08:59:49.374Z\",\n \"measurement\": \"https_result\",\n \"value\": 19.106\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T08:59:51.422Z\",\n \"measurement\": \"https_result\",\n \"value\": 17.343\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T08:59:53.471Z\",\n \"measurement\": \"https_result\",\n \"value\": 17.346\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T08:59:55.517Z\",\n \"measurement\": \"https_result\",\n \"value\": 17.718\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T08:59:57.568Z\",\n \"measurement\": \"https_result\",\n \"value\": 17.383\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T08:59:59.619Z\",\n \"measurement\": \"https_result\",\n \"value\": 17.099\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T09:00:01.668Z\",\n \"measurement\": \"https_result\",\n \"value\": 17.377\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T09:00:03.724Z\",\n \"measurement\": \"https_result\",\n \"value\": 17.329\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T09:00:05.769Z\",\n \"measurement\": \"https_result\",\n \"value\": 17.269\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T09:00:07.814Z\",\n \"measurement\": \"https_result\",\n \"value\": 17.479\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T09:00:09.859Z\",\n \"measurement\": \"https_result\",\n \"value\": 17.939\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T09:00:11.903Z\",\n \"measurement\": \"https_result\",\n \"value\": 18.394\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T09:00:13.953Z\",\n \"measurement\": \"https_result\",\n \"value\": 18.868\n }\n]", + "latency": 0, + "statusCode": 200, + "label": "HTTPS", + "headers": [], + "bodyType": "INLINE", + "filePath": "", + "databucketID": "", + "sendFileAsBody": false, + "rules": [ + { + "target": "query", + "modifier": "protocol", + "value": "https", + "invert": false, + "operator": "equals" + } + ], + "rulesOperator": "OR", + "disableTemplating": false, + "fallbackTo404": false, + "default": false, + "crudKey": "id", + "callbacks": [] + }, + { + "uuid": "451438a8-040c-496d-9fd0-6f05a0b81f31", + "body": "[\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T08:56:03.379Z\",\n \"measurement\": \"icmp_result\",\n \"value\": 9.14\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T08:56:05.397Z\",\n \"measurement\": \"icmp_result\",\n \"value\": 8.95\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T08:56:07.416Z\",\n \"measurement\": \"icmp_result\",\n \"value\": 8.98\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T08:56:09.434Z\",\n \"measurement\": \"icmp_result\",\n \"value\": 8.89\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T08:56:11.455Z\",\n \"measurement\": \"icmp_result\",\n \"value\": 8.6\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T08:56:13.473Z\",\n \"measurement\": \"icmp_result\",\n \"value\": 9.27\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T08:56:15.491Z\",\n \"measurement\": \"icmp_result\",\n \"value\": 8.89\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T08:56:17.51Z\",\n \"measurement\": \"icmp_result\",\n \"value\": 8.64\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T08:56:19.528Z\",\n \"measurement\": \"icmp_result\",\n \"value\": 9\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T08:56:21.545Z\",\n \"measurement\": \"icmp_result\",\n \"value\": 8.93\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T08:56:23.563Z\",\n \"measurement\": \"icmp_result\",\n \"value\": 8.73\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T08:56:25.581Z\",\n \"measurement\": \"icmp_result\",\n \"value\": 8.85\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T08:56:27.603Z\",\n \"measurement\": \"icmp_result\",\n \"value\": 9.15\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T08:56:29.628Z\",\n \"measurement\": \"icmp_result\",\n \"value\": 9\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T08:56:31.645Z\",\n \"measurement\": \"icmp_result\",\n \"value\": 8.86\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T08:56:33.663Z\",\n \"measurement\": \"icmp_result\",\n \"value\": 9.17\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T08:56:35.681Z\",\n \"measurement\": \"icmp_result\",\n \"value\": 9.23\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T08:56:37.702Z\",\n \"measurement\": \"icmp_result\",\n \"value\": 9.33\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T08:56:39.72Z\",\n \"measurement\": \"icmp_result\",\n \"value\": 8.93\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T08:56:41.737Z\",\n \"measurement\": \"icmp_result\",\n \"value\": 8.84\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T08:56:43.755Z\",\n \"measurement\": \"icmp_result\",\n \"value\": 9.61\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T08:56:45.773Z\",\n \"measurement\": \"icmp_result\",\n \"value\": 8.91\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T08:56:47.792Z\",\n \"measurement\": \"icmp_result\",\n \"value\": 9.14\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T08:56:49.809Z\",\n \"measurement\": \"icmp_result\",\n \"value\": 8.82\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T08:56:51.827Z\",\n \"measurement\": \"icmp_result\",\n \"value\": 8.87\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T08:56:53.845Z\",\n \"measurement\": \"icmp_result\",\n \"value\": 9.01\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T08:56:55.862Z\",\n \"measurement\": \"icmp_result\",\n \"value\": 8.91\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T08:56:57.881Z\",\n \"measurement\": \"icmp_result\",\n \"value\": 9\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T08:56:59.898Z\",\n \"measurement\": \"icmp_result\",\n \"value\": 8.95\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T08:57:01.915Z\",\n \"measurement\": \"icmp_result\",\n \"value\": 9.19\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T08:57:03.934Z\",\n \"measurement\": \"icmp_result\",\n \"value\": 9.18\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T08:57:05.953Z\",\n \"measurement\": \"icmp_result\",\n \"value\": 9.07\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T08:57:07.971Z\",\n \"measurement\": \"icmp_result\",\n \"value\": 8.97\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T08:57:09.99Z\",\n \"measurement\": \"icmp_result\",\n \"value\": 8.92\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T08:57:12.007Z\",\n \"measurement\": \"icmp_result\",\n \"value\": 8.89\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T08:57:14.024Z\",\n \"measurement\": \"icmp_result\",\n \"value\": 8.97\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T08:57:16.042Z\",\n \"measurement\": \"icmp_result\",\n \"value\": 8.84\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T08:57:18.06Z\",\n \"measurement\": \"icmp_result\",\n \"value\": 8.9\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T08:57:20.077Z\",\n \"measurement\": \"icmp_result\",\n \"value\": 9.21\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T08:57:22.095Z\",\n \"measurement\": \"icmp_result\",\n \"value\": 8.83\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T08:57:24.114Z\",\n \"measurement\": \"icmp_result\",\n \"value\": 9.89\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T08:57:26.131Z\",\n \"measurement\": \"icmp_result\",\n \"value\": 8.98\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T08:57:28.147Z\",\n \"measurement\": \"icmp_result\",\n \"value\": 8.88\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T08:57:30.163Z\",\n \"measurement\": \"icmp_result\",\n \"value\": 8.84\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T08:57:32.18Z\",\n \"measurement\": \"icmp_result\",\n \"value\": 9.51\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T08:57:34.197Z\",\n \"measurement\": \"icmp_result\",\n \"value\": 8.76\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T08:57:36.214Z\",\n \"measurement\": \"icmp_result\",\n \"value\": 8.82\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T08:57:38.241Z\",\n \"measurement\": \"icmp_result\",\n \"value\": 18.9\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T08:57:40.258Z\",\n \"measurement\": \"icmp_result\",\n \"value\": 8.93\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T08:57:42.276Z\",\n \"measurement\": \"icmp_result\",\n \"value\": 8.85\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T08:57:44.292Z\",\n \"measurement\": \"icmp_result\",\n \"value\": 8.81\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T08:57:46.309Z\",\n \"measurement\": \"icmp_result\",\n \"value\": 9.4\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T08:57:48.327Z\",\n \"measurement\": \"icmp_result\",\n \"value\": 8.66\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T08:57:50.343Z\",\n \"measurement\": \"icmp_result\",\n \"value\": 8.74\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T08:57:52.362Z\",\n \"measurement\": \"icmp_result\",\n \"value\": 8.99\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T08:57:54.381Z\",\n \"measurement\": \"icmp_result\",\n \"value\": 9.13\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T08:57:56.406Z\",\n \"measurement\": \"icmp_result\",\n \"value\": 9.09\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T08:57:58.427Z\",\n \"measurement\": \"icmp_result\",\n \"value\": 9\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T08:58:00.445Z\",\n \"measurement\": \"icmp_result\",\n \"value\": 9.33\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T08:58:02.463Z\",\n \"measurement\": \"icmp_result\",\n \"value\": 9.03\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T08:58:04.487Z\",\n \"measurement\": \"icmp_result\",\n \"value\": 9.08\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T08:58:06.504Z\",\n \"measurement\": \"icmp_result\",\n \"value\": 8.84\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T08:58:08.522Z\",\n \"measurement\": \"icmp_result\",\n \"value\": 9.57\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T08:58:10.54Z\",\n \"measurement\": \"icmp_result\",\n \"value\": 8.83\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T08:58:12.556Z\",\n \"measurement\": \"icmp_result\",\n \"value\": 8.94\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T08:58:14.573Z\",\n \"measurement\": \"icmp_result\",\n \"value\": 8.98\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T08:58:16.591Z\",\n \"measurement\": \"icmp_result\",\n \"value\": 9.03\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T08:58:18.608Z\",\n \"measurement\": \"icmp_result\",\n \"value\": 9.68\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T08:58:20.626Z\",\n \"measurement\": \"icmp_result\",\n \"value\": 8.84\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T08:58:22.642Z\",\n \"measurement\": \"icmp_result\",\n \"value\": 9.18\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T08:58:24.659Z\",\n \"measurement\": \"icmp_result\",\n \"value\": 9.12\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T08:58:26.679Z\",\n \"measurement\": \"icmp_result\",\n \"value\": 9.18\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T08:58:28.698Z\",\n \"measurement\": \"icmp_result\",\n \"value\": 8.92\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T08:58:30.714Z\",\n \"measurement\": \"icmp_result\",\n \"value\": 9.28\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T08:58:32.74Z\",\n \"measurement\": \"icmp_result\",\n \"value\": 8.68\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T08:58:34.763Z\",\n \"measurement\": \"icmp_result\",\n \"value\": 8.84\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T08:58:36.78Z\",\n \"measurement\": \"icmp_result\",\n \"value\": 8.84\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T08:58:38.799Z\",\n \"measurement\": \"icmp_result\",\n \"value\": 8.8\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T08:58:40.818Z\",\n \"measurement\": \"icmp_result\",\n \"value\": 8.88\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T08:58:42.835Z\",\n \"measurement\": \"icmp_result\",\n \"value\": 8.7\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T08:58:44.852Z\",\n \"measurement\": \"icmp_result\",\n \"value\": 9.03\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T08:58:46.868Z\",\n \"measurement\": \"icmp_result\",\n \"value\": 9.17\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T08:58:48.886Z\",\n \"measurement\": \"icmp_result\",\n \"value\": 9.31\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T08:58:50.904Z\",\n \"measurement\": \"icmp_result\",\n \"value\": 8.79\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T08:58:52.92Z\",\n \"measurement\": \"icmp_result\",\n \"value\": 8.81\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T08:58:54.939Z\",\n \"measurement\": \"icmp_result\",\n \"value\": 9.38\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T08:58:56.956Z\",\n \"measurement\": \"icmp_result\",\n \"value\": 8.95\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T08:58:58.974Z\",\n \"measurement\": \"icmp_result\",\n \"value\": 9\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T08:59:00.992Z\",\n \"measurement\": \"icmp_result\",\n \"value\": 8.79\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T08:59:03.009Z\",\n \"measurement\": \"icmp_result\",\n \"value\": 9.02\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T08:59:05.036Z\",\n \"measurement\": \"icmp_result\",\n \"value\": 9.3\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T08:59:07.07Z\",\n \"measurement\": \"icmp_result\",\n \"value\": 22.1\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T08:59:09.095Z\",\n \"measurement\": \"icmp_result\",\n \"value\": 9.29\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T08:59:11.113Z\",\n \"measurement\": \"icmp_result\",\n \"value\": 9.12\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T08:59:13.13Z\",\n \"measurement\": \"icmp_result\",\n \"value\": 8.97\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T08:59:15.146Z\",\n \"measurement\": \"icmp_result\",\n \"value\": 8.59\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T08:59:17.165Z\",\n \"measurement\": \"icmp_result\",\n \"value\": 9.51\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T08:59:19.186Z\",\n \"measurement\": \"icmp_result\",\n \"value\": 9\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T08:59:21.202Z\",\n \"measurement\": \"icmp_result\",\n \"value\": 8.57\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T08:59:23.22Z\",\n \"measurement\": \"icmp_result\",\n \"value\": 9.24\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T08:59:25.237Z\",\n \"measurement\": \"icmp_result\",\n \"value\": 9.13\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T08:59:27.254Z\",\n \"measurement\": \"icmp_result\",\n \"value\": 9.05\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T08:59:29.273Z\",\n \"measurement\": \"icmp_result\",\n \"value\": 8.86\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T08:59:31.291Z\",\n \"measurement\": \"icmp_result\",\n \"value\": 8.79\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T08:59:33.307Z\",\n \"measurement\": \"icmp_result\",\n \"value\": 8.58\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T08:59:35.339Z\",\n \"measurement\": \"icmp_result\",\n \"value\": 8.88\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T08:59:37.368Z\",\n \"measurement\": \"icmp_result\",\n \"value\": 11.9\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T08:59:39.385Z\",\n \"measurement\": \"icmp_result\",\n \"value\": 8.81\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T08:59:41.403Z\",\n \"measurement\": \"icmp_result\",\n \"value\": 8.75\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T08:59:43.42Z\",\n \"measurement\": \"icmp_result\",\n \"value\": 8.81\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T08:59:45.436Z\",\n \"measurement\": \"icmp_result\",\n \"value\": 8.72\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T08:59:47.453Z\",\n \"measurement\": \"icmp_result\",\n \"value\": 9.15\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T08:59:49.472Z\",\n \"measurement\": \"icmp_result\",\n \"value\": 9.39\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T08:59:51.49Z\",\n \"measurement\": \"icmp_result\",\n \"value\": 8.8\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T08:59:53.508Z\",\n \"measurement\": \"icmp_result\",\n \"value\": 8.83\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T08:59:55.524Z\",\n \"measurement\": \"icmp_result\",\n \"value\": 9.01\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T08:59:57.544Z\",\n \"measurement\": \"icmp_result\",\n \"value\": 8.68\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T08:59:59.563Z\",\n \"measurement\": \"icmp_result\",\n \"value\": 9.12\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T09:00:01.582Z\",\n \"measurement\": \"icmp_result\",\n \"value\": 9.05\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T09:00:03.6Z\",\n \"measurement\": \"icmp_result\",\n \"value\": 8.92\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T09:00:05.618Z\",\n \"measurement\": \"icmp_result\",\n \"value\": 9\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T09:00:07.638Z\",\n \"measurement\": \"icmp_result\",\n \"value\": 9.65\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T09:00:09.655Z\",\n \"measurement\": \"icmp_result\",\n \"value\": 9.44\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T09:00:11.673Z\",\n \"measurement\": \"icmp_result\",\n \"value\": 8.95\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T09:00:13.691Z\",\n \"measurement\": \"icmp_result\",\n \"value\": 8.73\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T09:00:16.694Z\",\n \"measurement\": \"icmp_result\",\n \"value\": 8.92\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T09:00:18.713Z\",\n \"measurement\": \"icmp_result\",\n \"value\": 8.57\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T09:00:20.729Z\",\n \"measurement\": \"icmp_result\",\n \"value\": 8.37\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T09:00:22.745Z\",\n \"measurement\": \"icmp_result\",\n \"value\": 8.51\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T09:00:24.762Z\",\n \"measurement\": \"icmp_result\",\n \"value\": 8.95\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T09:00:26.779Z\",\n \"measurement\": \"icmp_result\",\n \"value\": 8.77\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T09:00:28.796Z\",\n \"measurement\": \"icmp_result\",\n \"value\": 8.64\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T09:00:30.815Z\",\n \"measurement\": \"icmp_result\",\n \"value\": 8.7\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T09:00:32.831Z\",\n \"measurement\": \"icmp_result\",\n \"value\": 8.55\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T09:00:34.848Z\",\n \"measurement\": \"icmp_result\",\n \"value\": 8.72\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T09:00:36.865Z\",\n \"measurement\": \"icmp_result\",\n \"value\": 8.7\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T09:00:38.884Z\",\n \"measurement\": \"icmp_result\",\n \"value\": 8.83\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T09:00:40.902Z\",\n \"measurement\": \"icmp_result\",\n \"value\": 9.52\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T09:00:42.919Z\",\n \"measurement\": \"icmp_result\",\n \"value\": 9.08\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T09:00:44.938Z\",\n \"measurement\": \"icmp_result\",\n \"value\": 8.84\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T09:00:46.959Z\",\n \"measurement\": \"icmp_result\",\n \"value\": 8.72\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T09:00:48.976Z\",\n \"measurement\": \"icmp_result\",\n \"value\": 8.55\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T09:00:50.991Z\",\n \"measurement\": \"icmp_result\",\n \"value\": 8.8\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T09:00:53.009Z\",\n \"measurement\": \"icmp_result\",\n \"value\": 8.76\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T09:00:55.032Z\",\n \"measurement\": \"icmp_result\",\n \"value\": 8.84\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T09:00:57.057Z\",\n \"measurement\": \"icmp_result\",\n \"value\": 8.63\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T09:00:59.075Z\",\n \"measurement\": \"icmp_result\",\n \"value\": 11.1\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T09:01:01.091Z\",\n \"measurement\": \"icmp_result\",\n \"value\": 8.7\n }\n]", + "latency": 0, + "statusCode": 200, + "label": "ICMP", + "headers": [], + "bodyType": "INLINE", + "filePath": "", + "databucketID": "", + "sendFileAsBody": false, + "rules": [ + { + "target": "query", + "modifier": "protocol", + "value": "icmp", + "invert": false, + "operator": "equals" + } + ], + "rulesOperator": "OR", + "disableTemplating": false, + "fallbackTo404": false, + "default": false, + "crudKey": "id", + "callbacks": [] + }, + { + "uuid": "2ea63c4e-98c9-4d7c-b822-bad5f301e03a", + "body": "[\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T08:56:37.185Z\",\n \"measurement\": \"twamp_result\",\n \"value\": 9.146\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T08:56:39.185Z\",\n \"measurement\": \"twamp_result\",\n \"value\": 9.557\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T08:56:41.184Z\",\n \"measurement\": \"twamp_result\",\n \"value\": 8.907\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T08:56:43.185Z\",\n \"measurement\": \"twamp_result\",\n \"value\": 9.173\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T08:56:45.185Z\",\n \"measurement\": \"twamp_result\",\n \"value\": 8.913\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T08:56:47.185Z\",\n \"measurement\": \"twamp_result\",\n \"value\": 9.18\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T08:56:49.185Z\",\n \"measurement\": \"twamp_result\",\n \"value\": 8.987\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T08:56:51.186Z\",\n \"measurement\": \"twamp_result\",\n \"value\": 9.662\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T08:56:55.203Z\",\n \"measurement\": \"twamp_result\",\n \"value\": 8.696\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T08:56:57.203Z\",\n \"measurement\": \"twamp_result\",\n \"value\": 8.99\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T08:56:59.203Z\",\n \"measurement\": \"twamp_result\",\n \"value\": 9.023\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T08:57:01.203Z\",\n \"measurement\": \"twamp_result\",\n \"value\": 8.854\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T08:57:03.206Z\",\n \"measurement\": \"twamp_result\",\n \"value\": 11.591\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T08:57:05.204Z\",\n \"measurement\": \"twamp_result\",\n \"value\": 9.759\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T08:57:07.204Z\",\n \"measurement\": \"twamp_result\",\n \"value\": 9.686\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T08:57:09.204Z\",\n \"measurement\": \"twamp_result\",\n \"value\": 8.885\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T08:57:11.204Z\",\n \"measurement\": \"twamp_result\",\n \"value\": 9.32\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T08:57:13.204Z\",\n \"measurement\": \"twamp_result\",\n \"value\": 8.785\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T08:57:15.204Z\",\n \"measurement\": \"twamp_result\",\n \"value\": 8.696\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T08:57:17.204Z\",\n \"measurement\": \"twamp_result\",\n \"value\": 9.328\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T08:57:19.204Z\",\n \"measurement\": \"twamp_result\",\n \"value\": 8.907\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T08:57:21.204Z\",\n \"measurement\": \"twamp_result\",\n \"value\": 9.043\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T08:57:23.204Z\",\n \"measurement\": \"twamp_result\",\n \"value\": 8.719\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T08:57:27.223Z\",\n \"measurement\": \"twamp_result\",\n \"value\": 9.078\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T08:57:29.222Z\",\n \"measurement\": \"twamp_result\",\n \"value\": 8.979\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T08:57:31.223Z\",\n \"measurement\": \"twamp_result\",\n \"value\": 8.824\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T08:57:33.223Z\",\n \"measurement\": \"twamp_result\",\n \"value\": 8.985\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T08:57:35.223Z\",\n \"measurement\": \"twamp_result\",\n \"value\": 8.661\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T08:57:37.223Z\",\n \"measurement\": \"twamp_result\",\n \"value\": 9.103\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T08:57:39.223Z\",\n \"measurement\": \"twamp_result\",\n \"value\": 8.814\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T08:57:41.223Z\",\n \"measurement\": \"twamp_result\",\n \"value\": 8.725\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T08:57:43.223Z\",\n \"measurement\": \"twamp_result\",\n \"value\": 8.847\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T08:57:45.223Z\",\n \"measurement\": \"twamp_result\",\n \"value\": 8.932\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T08:57:47.224Z\",\n \"measurement\": \"twamp_result\",\n \"value\": 9.174\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T08:57:49.223Z\",\n \"measurement\": \"twamp_result\",\n \"value\": 8.76\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T08:57:51.224Z\",\n \"measurement\": \"twamp_result\",\n \"value\": 8.956\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T08:57:53.224Z\",\n \"measurement\": \"twamp_result\",\n \"value\": 8.822\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T08:57:55.224Z\",\n \"measurement\": \"twamp_result\",\n \"value\": 8.835\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T08:57:59.243Z\",\n \"measurement\": \"twamp_result\",\n \"value\": 9.254\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T08:58:01.243Z\",\n \"measurement\": \"twamp_result\",\n \"value\": 9.079\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T08:58:03.243Z\",\n \"measurement\": \"twamp_result\",\n \"value\": 9.019\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T08:58:05.243Z\",\n \"measurement\": \"twamp_result\",\n \"value\": 9.017\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T08:58:07.243Z\",\n \"measurement\": \"twamp_result\",\n \"value\": 8.844\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T08:58:09.244Z\",\n \"measurement\": \"twamp_result\",\n \"value\": 9.25\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T08:58:11.244Z\",\n \"measurement\": \"twamp_result\",\n \"value\": 8.996\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T08:58:13.244Z\",\n \"measurement\": \"twamp_result\",\n \"value\": 8.906\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T08:58:15.244Z\",\n \"measurement\": \"twamp_result\",\n \"value\": 9.393\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T08:58:17.244Z\",\n \"measurement\": \"twamp_result\",\n \"value\": 8.965\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T08:58:19.244Z\",\n \"measurement\": \"twamp_result\",\n \"value\": 8.577\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T08:58:21.244Z\",\n \"measurement\": \"twamp_result\",\n \"value\": 8.92\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T08:58:23.245Z\",\n \"measurement\": \"twamp_result\",\n \"value\": 9.281\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T08:58:25.244Z\",\n \"measurement\": \"twamp_result\",\n \"value\": 8.708\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T08:58:27.244Z\",\n \"measurement\": \"twamp_result\",\n \"value\": 8.863\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T08:58:31.264Z\",\n \"measurement\": \"twamp_result\",\n \"value\": 9.661\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T08:58:33.264Z\",\n \"measurement\": \"twamp_result\",\n \"value\": 9.719\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T08:58:35.264Z\",\n \"measurement\": \"twamp_result\",\n \"value\": 9.55\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T08:58:37.265Z\",\n \"measurement\": \"twamp_result\",\n \"value\": 10.827\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T08:58:39.264Z\",\n \"measurement\": \"twamp_result\",\n \"value\": 9.159\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T08:58:41.264Z\",\n \"measurement\": \"twamp_result\",\n \"value\": 9.231\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T08:58:43.264Z\",\n \"measurement\": \"twamp_result\",\n \"value\": 9\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T08:58:45.264Z\",\n \"measurement\": \"twamp_result\",\n \"value\": 8.955\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T08:58:47.264Z\",\n \"measurement\": \"twamp_result\",\n \"value\": 9.356\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T08:58:49.264Z\",\n \"measurement\": \"twamp_result\",\n \"value\": 9.152\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T08:58:51.265Z\",\n \"measurement\": \"twamp_result\",\n \"value\": 9.281\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T08:58:53.264Z\",\n \"measurement\": \"twamp_result\",\n \"value\": 8.833\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T08:58:55.264Z\",\n \"measurement\": \"twamp_result\",\n \"value\": 8.783\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T08:58:57.264Z\",\n \"measurement\": \"twamp_result\",\n \"value\": 8.777\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T08:58:59.265Z\",\n \"measurement\": \"twamp_result\",\n \"value\": 8.835\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T08:59:03.283Z\",\n \"measurement\": \"twamp_result\",\n \"value\": 9.34\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T08:59:05.283Z\",\n \"measurement\": \"twamp_result\",\n \"value\": 8.938\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T08:59:07.285Z\",\n \"measurement\": \"twamp_result\",\n \"value\": 10.219\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T08:59:09.283Z\",\n \"measurement\": \"twamp_result\",\n \"value\": 8.898\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T08:59:11.283Z\",\n \"measurement\": \"twamp_result\",\n \"value\": 8.686\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T08:59:13.283Z\",\n \"measurement\": \"twamp_result\",\n \"value\": 8.739\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T08:59:15.284Z\",\n \"measurement\": \"twamp_result\",\n \"value\": 8.934\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T08:59:17.284Z\",\n \"measurement\": \"twamp_result\",\n \"value\": 8.985\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T08:59:19.284Z\",\n \"measurement\": \"twamp_result\",\n \"value\": 9.022\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T08:59:21.288Z\",\n \"measurement\": \"twamp_result\",\n \"value\": 12.87\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T08:59:23.284Z\",\n \"measurement\": \"twamp_result\",\n \"value\": 8.728\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T08:59:25.284Z\",\n \"measurement\": \"twamp_result\",\n \"value\": 8.505\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T08:59:27.284Z\",\n \"measurement\": \"twamp_result\",\n \"value\": 8.752\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T08:59:29.284Z\",\n \"measurement\": \"twamp_result\",\n \"value\": 8.925\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T08:59:31.284Z\",\n \"measurement\": \"twamp_result\",\n \"value\": 8.502\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T08:59:35.303Z\",\n \"measurement\": \"twamp_result\",\n \"value\": 9.462\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T08:59:37.303Z\",\n \"measurement\": \"twamp_result\",\n \"value\": 9.014\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T08:59:39.303Z\",\n \"measurement\": \"twamp_result\",\n \"value\": 8.849\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T08:59:41.303Z\",\n \"measurement\": \"twamp_result\",\n \"value\": 9.136\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T08:59:43.303Z\",\n \"measurement\": \"twamp_result\",\n \"value\": 9.045\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T08:59:45.303Z\",\n \"measurement\": \"twamp_result\",\n \"value\": 8.713\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T08:59:47.303Z\",\n \"measurement\": \"twamp_result\",\n \"value\": 8.423\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T08:59:49.304Z\",\n \"measurement\": \"twamp_result\",\n \"value\": 8.952\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T08:59:51.304Z\",\n \"measurement\": \"twamp_result\",\n \"value\": 8.786\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T08:59:53.304Z\",\n \"measurement\": \"twamp_result\",\n \"value\": 9.236\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T08:59:55.304Z\",\n \"measurement\": \"twamp_result\",\n \"value\": 9.237\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T08:59:57.304Z\",\n \"measurement\": \"twamp_result\",\n \"value\": 8.712\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T08:59:59.304Z\",\n \"measurement\": \"twamp_result\",\n \"value\": 9.02\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T09:00:01.304Z\",\n \"measurement\": \"twamp_result\",\n \"value\": 9.126\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T09:00:03.305Z\",\n \"measurement\": \"twamp_result\",\n \"value\": 9.121\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T09:00:07.327Z\",\n \"measurement\": \"twamp_result\",\n \"value\": 12.74\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T09:00:09.324Z\",\n \"measurement\": \"twamp_result\",\n \"value\": 8.96\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T09:00:11.324Z\",\n \"measurement\": \"twamp_result\",\n \"value\": 9.167\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T09:00:13.324Z\",\n \"measurement\": \"twamp_result\",\n \"value\": 8.826\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T09:00:15.324Z\",\n \"measurement\": \"twamp_result\",\n \"value\": 9.525\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T09:00:17.324Z\",\n \"measurement\": \"twamp_result\",\n \"value\": 9.206\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T09:00:19.324Z\",\n \"measurement\": \"twamp_result\",\n \"value\": 8.789\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T09:00:21.324Z\",\n \"measurement\": \"twamp_result\",\n \"value\": 9.029\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T09:00:23.324Z\",\n \"measurement\": \"twamp_result\",\n \"value\": 8.709\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T09:00:25.324Z\",\n \"measurement\": \"twamp_result\",\n \"value\": 8.929\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T09:00:27.324Z\",\n \"measurement\": \"twamp_result\",\n \"value\": 8.73\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T09:00:29.325Z\",\n \"measurement\": \"twamp_result\",\n \"value\": 8.923\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T09:00:31.331Z\",\n \"measurement\": \"twamp_result\",\n \"value\": 15.112\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T09:00:33.325Z\",\n \"measurement\": \"twamp_result\",\n \"value\": 8.681\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T09:00:35.325Z\",\n \"measurement\": \"twamp_result\",\n \"value\": 8.909\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T09:00:39.344Z\",\n \"measurement\": \"twamp_result\",\n \"value\": 9.404\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T09:00:41.344Z\",\n \"measurement\": \"twamp_result\",\n \"value\": 8.73\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T09:00:43.344Z\",\n \"measurement\": \"twamp_result\",\n \"value\": 8.862\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T09:00:45.344Z\",\n \"measurement\": \"twamp_result\",\n \"value\": 8.598\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T09:00:47.344Z\",\n \"measurement\": \"twamp_result\",\n \"value\": 8.717\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T09:00:49.345Z\",\n \"measurement\": \"twamp_result\",\n \"value\": 9.117\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T09:00:51.352Z\",\n \"measurement\": \"twamp_result\",\n \"value\": 15.858\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T09:00:53.345Z\",\n \"measurement\": \"twamp_result\",\n \"value\": 8.863\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T09:00:55.345Z\",\n \"measurement\": \"twamp_result\",\n \"value\": 8.822\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T09:00:57.345Z\",\n \"measurement\": \"twamp_result\",\n \"value\": 8.827\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T09:00:59.345Z\",\n \"measurement\": \"twamp_result\",\n \"value\": 9.025\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T09:01:01.345Z\",\n \"measurement\": \"twamp_result\",\n \"value\": 8.928\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T09:01:03.345Z\",\n \"measurement\": \"twamp_result\",\n \"value\": 8.662\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T09:01:05.345Z\",\n \"measurement\": \"twamp_result\",\n \"value\": 8.78\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T09:01:07.345Z\",\n \"measurement\": \"twamp_result\",\n \"value\": 8.756\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T09:01:11.364Z\",\n \"measurement\": \"twamp_result\",\n \"value\": 9.526\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T09:01:13.363Z\",\n \"measurement\": \"twamp_result\",\n \"value\": 8.362\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T09:01:15.364Z\",\n \"measurement\": \"twamp_result\",\n \"value\": 8.992\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T09:01:17.363Z\",\n \"measurement\": \"twamp_result\",\n \"value\": 8.651\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T09:01:19.364Z\",\n \"measurement\": \"twamp_result\",\n \"value\": 9.055\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T09:01:21.364Z\",\n \"measurement\": \"twamp_result\",\n \"value\": 8.483\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T09:01:23.364Z\",\n \"measurement\": \"twamp_result\",\n \"value\": 8.732\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T09:01:25.364Z\",\n \"measurement\": \"twamp_result\",\n \"value\": 8.67\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T09:01:27.364Z\",\n \"measurement\": \"twamp_result\",\n \"value\": 8.972\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T09:01:29.364Z\",\n \"measurement\": \"twamp_result\",\n \"value\": 8.732\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T09:01:31.364Z\",\n \"measurement\": \"twamp_result\",\n \"value\": 8.751\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T09:01:33.364Z\",\n \"measurement\": \"twamp_result\",\n \"value\": 8.53\n },\n {\n \"CustomerID\": \"0\",\n \"agentID\": \"2\",\n \"time\": \"2025-07-25T09:01:35.365Z\",\n \"measurement\": \"twamp_result\",\n \"value\": 9.089\n }\n]", + "latency": 0, + "statusCode": 200, + "label": "TWAMP", + "headers": [], + "bodyType": "INLINE", + "filePath": "", + "databucketID": "", + "sendFileAsBody": false, + "rules": [ + { + "target": "query", + "modifier": "protocol", + "value": "twamp", + "invert": false, + "operator": "equals" + } + ], + "rulesOperator": "OR", + "disableTemplating": false, + "fallbackTo404": false, + "default": false, + "crudKey": "id", + "callbacks": [] + } + ], + "responseMode": null } ], "rootChildren": [ @@ -170,6 +342,10 @@ { "type": "route", "uuid": "06ed6f2b-578e-4beb-94e0-f37f5c436038" + }, + { + "type": "route", + "uuid": "febdf454-e06c-4f7c-9ff4-99eecdc98447" } ], "proxyMode": false,