Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: Introduce a new route transform benchmark #11697

Merged
merged 3 commits into from
Mar 5, 2022

Conversation

blt
Copy link
Contributor

@blt blt commented Mar 5, 2022

This commit introduces a new benchmark for the route transform with the
understanding that we are, in some cases, bottlenecked through this
transform. See #11688 as an
example. Possible contributor to #10144.

Signed-off-by: Brian L. Troutwine brian@troutwine.us

@netlify
Copy link

netlify bot commented Mar 5, 2022

✔️ Deploy Preview for vector-project canceled.

🔨 Explore the source changes: 29fb1ae

🔍 Inspect the deploy log: https://app.netlify.com/sites/vector-project/deploys/6223e2fc1a436f000715a7b8

@github-actions github-actions bot added the domain: core Anything related to core crates i.e. vector-core, core-common, etc label Mar 5, 2022
@blt blt force-pushed the transform_route_benchmarks branch from c7ad21c to 49e80a2 Compare March 5, 2022 00:16
benches/transform/route.rs Outdated Show resolved Hide resolved
@blt blt requested a review from jszwedko March 5, 2022 01:17
@blt blt enabled auto-merge (squash) March 5, 2022 01:17
Copy link
Member

@jszwedko jszwedko left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

👍 I'm curious to see what the numbers look like here. Just one note below.

log_schema_definition: None,
});
}
let output_buffer: TransformOutputsBuf = TransformOutputsBuf::new_with_capacity(outputs, 10);
Copy link
Member

@jszwedko jszwedko Mar 5, 2022

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Looking at the route transform it looks like it uses a capacity of whatever number of routes there are. Should we do the same here by moving this into the setup?

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Actually, I was looking at the tests 🤦

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Still not sure where this 10 comes from though, would it make sense to match whatever the topology does for this?

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Ah, it turns out this doesn't actually propagate to the OutputBuffer at all, the passed capacity. In the event we have a named output it is created like OutputBuffer::default(). I'll experiment with actually passing the capacity in a follow-up PR.

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

10 is just an arbitrary number I typed out. I'm not sure what the topology actually does here, off the top of my head. I think, considering the nature of the transform's apparent bottlenecks, this value doesn't matter all that much.

@blt
Copy link
Contributor Author

blt commented Mar 5, 2022

+1 I'm curious to see what the numbers look like here. Just one note below.

Benchmarking vector::transforms::route::Route/transform/vrl_field_match: Collecting 150 samples in estimated 120.13 s (7.2M it                                                                                                                              vector::transforms::route::Route/transform/vrl_field_match
                        time:   [5.9666 us 5.9804 us 5.9928 us]
                        thrpt:  [166.87 Kelem/s 167.21 Kelem/s 167.60 Kelem/s]
                 change:
                        time:   [-2.2645% -0.7172% +0.8907%] (p = 0.36 > 0.05)
                        thrpt:  [-0.8829% +0.7224% +2.3169%]
                        No change in performance detected.
Benchmarking vector::transforms::route::Route/transform/vrl_field_not_match: Collecting 150 samples in estimated 120.13 s (7.3                                                                                                                              vector::transforms::route::Route/transform/vrl_field_not_match
                        time:   [5.9099 us 5.9240 us 5.9372 us]
                        thrpt:  [168.43 Kelem/s 168.81 Kelem/s 169.21 Kelem/s]
                 change:
                        time:   [-1.9497% -0.2492% +1.4430%] (p = 0.76 > 0.05)
                        thrpt:  [-1.4225% +0.2499% +1.9884%]
                        No change in performance detected.
Benchmarking vector::transforms::route::Route/transform/vrl_field_match_many: Collecting 150 samples in estimated 120.38 s (83                                                                                                                              vector::transforms::route::Route/transform/vrl_field_match_many
                        time:   [48.243 us 48.419 us 48.573 us]
                        thrpt:  [20.587 Kelem/s 20.653 Kelem/s 20.728 Kelem/s]
                 change:
                        time:   [-1.1359% +0.0713% +1.2539%] (p = 0.91 > 0.05)
                        thrpt:  [-1.2384% -0.0713% +1.1490%]
                        No change in performance detected.

blt added a commit that referenced this pull request Mar 5, 2022
This commit is a follow-up to #11697. We don't actually need to iterate an
`IndexMap` repeatedly here as we never actually use the map capabilities of the
conditions field: a vec is enough. This is worth a small boost in the micro but
I suspect nothing in the macro.

If we are to actually optimize route we'll probably need to run multiple copies
of them, run an `EventArray` through it and/or dramatically improve the behavior
of `condition.check`.

Signed-off-by: Brian L. Troutwine <brian@troutwine.us>
@blt blt force-pushed the transform_route_benchmarks branch from 89d4ecc to cbe3f1d Compare March 5, 2022 02:19
blt added a commit that referenced this pull request Mar 5, 2022
This commit is a follow-up to #11697. We don't actually need to iterate an
`IndexMap` repeatedly here as we never actually use the map capabilities of the
conditions field: a vec is enough. This is worth a small boost in the micro but
I suspect nothing in the macro.

If we are to actually optimize route we'll probably need to run multiple copies
of them, run an `EventArray` through it and/or dramatically improve the behavior
of `condition.check`.

Signed-off-by: Brian L. Troutwine <brian@troutwine.us>
blt added 2 commits March 5, 2022 13:18
This commit introduces a new benchmark for the route transform with the
understanding that we are, in some cases, bottlenecked through this
transform. See #11688 as an
example. Possible contributor to #10144.

Signed-off-by: Brian L. Troutwine <brian@troutwine.us>
Signed-off-by: Brian L. Troutwine <brian@troutwine.us>
@blt blt force-pushed the transform_route_benchmarks branch from cbe3f1d to 65941f5 Compare March 5, 2022 21:18
@github-actions
Copy link

github-actions bot commented Mar 5, 2022

Soak Test Results

Baseline: 9569a10
Comparison: 65941f5
Total Vector CPUs: 4

Explanation

A soak test is an integrated performance test for vector in a repeatable rig, with varying configuration for vector. What follows is a statistical summary of a brief vector run for each configuration across SHAs given above. The goal of these tests are to determine, quickly, if vector performance is changed and to what degree by a pull request. Where appropriate units are scaled per-core.

The table below, if present, lists those experiments that have experienced a statistically significant change in their throughput performance between baseline and comparision SHAs, with 90.0% confidence OR have been detected as newly erratic. Negative values mean that baseline is faster, positive comparison. Results that do not exhibit more than a ±5% change in mean throughput are discarded. An experiment is erratic if its coefficient of variation is greater than 0.3. The abbreviated table will be omitted if no interesting changes are observed.

No interesting changes in throughput with confidence ≥ 90.00% and absolute Δ mean >= ±5%:

Fine details of change detection per experiment.
experiment Δ mean Δ mean % confidence baseline mean baseline stdev baseline stderr baseline outlier % baseline CoV comparison mean comparison stdev comparison stderr comparison outlier % comparison CoV erratic declared erratic
syslog_log2metric_splunk_hec_metrics 551.24KiB 3.37 100.00% 15.99MiB 223.81KiB 9.14KiB 0 0.0136595 16.53MiB 173.88KiB 6.91KiB 0 0.0102669 False False
http_pipelines_no_grok_blackhole 106.72KiB 1.91 99.15% 5.45MiB 597.35KiB 32.07KiB 0 0.106805 5.56MiB 607.99KiB 24.62KiB 0 0.106737 False False
splunk_transforms_splunk3 174.84KiB 1.8 89.99% 9.47MiB 1.83MiB 75.79KiB 0 0.1927 9.64MiB 1.79MiB 74.47KiB 0 0.185522 False False
syslog_humio_logs 258.7KiB 1.6 100.00% 15.83MiB 285.74KiB 11.61KiB 0 0.0176106 16.08MiB 449.61KiB 18.17KiB 0 0.0272757 False False
syslog_loki 134.25KiB 1.16 99.88% 11.27MiB 901.81KiB 41.08KiB 0 0.0780644 11.4MiB 84.4KiB 3.45KiB 0 0.00722384 False False
datadog_agent_remap_blackhole_acks 445.16KiB 1.13 99.39% 38.37MiB 2.76MiB 115.39KiB 0 0.0717497 38.81MiB 2.73MiB 113.95KiB 0 0.0701781 False False
syslog_splunk_hec_logs 180.55KiB 1.12 100.00% 15.69MiB 390.32KiB 15.78KiB 0 0.0242719 15.87MiB 263.44KiB 10.75KiB 0 0.0161994 False False
syslog_regex_logs2metric_ddmetrics 135.36KiB 1.11 100.00% 11.88MiB 176.96KiB 7.22KiB 0 0.0145372 12.01MiB 243.5KiB 9.94KiB 0 0.019783 False False
datadog_agent_remap_blackhole 338.54KiB 0.85 100.00% 38.7MiB 715.78KiB 29.08KiB 0 0.0180452 39.03MiB 892.34KiB 36.31KiB 0 0.0223058 False False
datadog_agent_remap_datadog_logs 376.57KiB 0.56 100.00% 65.37MiB 1.21MiB 49.6KiB 0 0.018555 65.74MiB 1.22MiB 50.95KiB 0 0.0185998 False False
http_pipelines_blackhole_acks 1.63KiB 0.26 4.68% 628.82KiB 470.36KiB 19.51KiB 0 0.747368 630.45KiB 477.7KiB 19.72KiB 0 0.757074 True True
splunk_hec_to_splunk_hec_logs_noack 24.65KiB 0.1 54.34% 23.81MiB 684.82KiB 30.35KiB 0 0.0280578 23.84MiB 326.24KiB 13.19KiB 0 0.0133551 False False
splunk_hec_indexer_ack_blackhole 5.01KiB 0.02 20.82% 23.84MiB 336.09KiB 13.66KiB 0 0.013757 23.84MiB 323.21KiB 13.19KiB 0 0.0132268 False False
fluent_elasticsearch 13.61KiB 0.02 64.04% 79.46MiB 363.55KiB 14.7KiB 0 0.00446447 79.47MiB 52.32KiB 2.12KiB 0 0.000642442 False False
fluent_remap_aws_firehose -9.16KiB -0.01 45.37% 79.47MiB 220.02KiB 8.93KiB 0 0.00270168 79.46MiB 302.59KiB 12.27KiB 0 0.00371591 False False
splunk_hec_to_splunk_hec_logs_acks -5.89KiB -0.02 17.49% 23.84MiB 480.95KiB 19.63KiB 0 0.0196811 23.84MiB 444.87KiB 18.03KiB 0 0.0182093 False False
syslog_log2metric_humio_metrics -17.01KiB -0.13 15.56% 13.14MiB 239.49KiB 9.73KiB 0 0.0177907 13.12MiB 1.59MiB 86.03KiB 0 0.120666 False False
splunk_hec_route_s3 -66.14KiB -0.45 39.95% 14.35MiB 2.16MiB 89.55KiB 0 0.150656 14.28MiB 2.19MiB 89.03KiB 0 0.153502 False False
http_pipelines_blackhole -8.08KiB -1.27 25.29% 638.54KiB 428.07KiB 17.77KiB 0 0.669811 630.46KiB 426.58KiB 17.67KiB 0 0.676044 True True
http_datadog_filter_blackhole -111.52KiB -1.84 99.57% 5.92MiB 613.39KiB 30.52KiB 0 0.101096 5.81MiB 593.78KiB 24.16KiB 0 0.0997384 False True
http_to_http_json -552.59KiB -2.59 100.00% 20.81MiB 725.18KiB 29.46KiB 0 0.0339988 20.27MiB 690.22KiB 27.9KiB 0 0.0332214 False False
datadog_agent_remap_datadog_logs_acks -1.77MiB -2.71 100.00% 65.34MiB 6.74MiB 360.99KiB 0 0.102935 63.57MiB 4.44MiB 226.93KiB 0 0.0697232 False False
socket_to_socket_blackhole -767.37KiB -2.88 100.00% 26.03MiB 260.71KiB 10.59KiB 0 0.00977376 25.28MiB 326.04KiB 12.92KiB 0 0.0125856 False False
http_to_http_acks -2.38MiB -13.96 91.62% 17.04MiB 7.69MiB 737.27KiB 0 0.449114 14.66MiB 8.66MiB 1.16MiB 0 0.585087 True True
Fine details of each soak run.
(experiment, variant, run_id) total samples mean std min median p90 p95 p99 max skewness
('fluent_remap_aws_firehose', 'baseline', '2955ce1e-9e3e-4380-bd70-644b6220eed9') 202 79.47MiB 57.02KiB 79.35MiB 79.47MiB 79.55MiB 79.57MiB 79.58MiB 79.61MiB 0.0972799
('fluent_elasticsearch', 'baseline', 'c4396aed-7687-4f91-ae09-636a230dc284') 204 79.47MiB 56.57KiB 79.33MiB 79.47MiB 79.54MiB 79.56MiB 79.6MiB 79.69MiB 0.26667
('fluent_elasticsearch', 'comparison', '1f4dc7b5-2d15-423a-aad4-cef235605995') 204 79.47MiB 46.45KiB 79.35MiB 79.47MiB 79.53MiB 79.55MiB 79.58MiB 79.6MiB 0.107932
('fluent_remap_aws_firehose', 'comparison', '58c816ca-a910-41d5-a036-39742dd458ce') 202 79.47MiB 53.09KiB 79.33MiB 79.47MiB 79.54MiB 79.56MiB 79.59MiB 79.6MiB -0.160627
('fluent_remap_aws_firehose', 'baseline', '9dbcf4f9-087a-402b-b0ef-5f80d5441ea5') 202 79.47MiB 54.1KiB 79.37MiB 79.47MiB 79.54MiB 79.56MiB 79.59MiB 79.62MiB 0.229446
('fluent_elasticsearch', 'baseline', 'dba53f2a-232f-4034-a3f3-cce7e09d8ea4') 204 79.47MiB 56.52KiB 79.34MiB 79.47MiB 79.55MiB 79.57MiB 79.59MiB 79.61MiB 0.116733
('fluent_elasticsearch', 'comparison', '241bd5fb-5e7b-4219-b544-8cf055c9290d') 204 79.47MiB 53.52KiB 79.33MiB 79.47MiB 79.54MiB 79.55MiB 79.59MiB 79.62MiB 0.0602991
('fluent_elasticsearch', 'comparison', '42ee1d7e-b01e-4c6b-87ac-f2ac39d57f65') 204 79.47MiB 56.72KiB 79.27MiB 79.47MiB 79.54MiB 79.57MiB 79.59MiB 79.59MiB -0.195821
('fluent_remap_aws_firehose', 'baseline', '27b853ec-ff9c-40c1-979d-7dada43e875d') 203 79.45MiB 372.36KiB 74.34MiB 79.47MiB 79.54MiB 79.56MiB 79.58MiB 79.6MiB -13.8493
('fluent_remap_aws_firehose', 'comparison', '3995b353-cad0-4ea6-9c7a-21b1bd544bf1') 203 79.45MiB 371.15KiB 74.37MiB 79.47MiB 79.55MiB 79.57MiB 79.6MiB 79.62MiB -13.7147
('fluent_remap_aws_firehose', 'comparison', '59e982cc-8ef3-4589-9f86-785f7f8f86dd') 203 79.45MiB 366.22KiB 74.43MiB 79.47MiB 79.54MiB 79.56MiB 79.59MiB 79.61MiB -13.7933
('fluent_elasticsearch', 'baseline', 'e87ac0a1-24d5-4e13-b10d-e0337f7814e3') 204 79.43MiB 624.65KiB 70.79MiB 79.47MiB 79.55MiB 79.56MiB 79.59MiB 79.63MiB -14.1212
('datadog_agent_remap_datadog_logs', 'baseline', '05568b0e-17e9-4969-8fcf-3524b75e14e7') 200 66.93MiB 440.5KiB 66.27MiB 66.81MiB 67.71MiB 67.86MiB 68.07MiB 68.15MiB 1.29891
('datadog_agent_remap_datadog_logs', 'comparison', 'a342ced3-5a42-4694-bfd3-73e4ee04055a') 205 66.36MiB 697.5KiB 58.89MiB 66.28MiB 67.07MiB 67.28MiB 67.42MiB 67.62MiB -6.25844
('datadog_agent_remap_datadog_logs_acks', 'baseline', '74383783-c598-4d83-8fc4-a073955d9129') 203 66.3MiB 985.37KiB 64.92MiB 65.87MiB 67.98MiB 68.17MiB 68.36MiB 68.57MiB 0.99799
('datadog_agent_remap_datadog_logs', 'comparison', 'eaca83fb-139c-408c-a769-ade68bc6b56c') 200 65.86MiB 821.95KiB 65.11MiB 65.6MiB 66.52MiB 68.13MiB 68.55MiB 68.61MiB 2.29345
('datadog_agent_remap_datadog_logs', 'comparison', '78ef05ad-7853-4ca1-ab6c-5b8dc1029b01') 200 64.98MiB 1.56MiB 63.51MiB 64.18MiB 67.94MiB 68.39MiB 68.62MiB 68.65MiB 1.36215
('datadog_agent_remap_datadog_logs_acks', 'baseline', 'eaabb47d-6b2e-4896-9055-fa4ca1a893fb') 91 64.9MiB 6.1MiB 11.84MiB 65.81MiB 66.07MiB 66.19MiB 66.35MiB 66.5MiB -7.90921
('datadog_agent_remap_datadog_logs', 'baseline', '19265dcf-d00c-41d9-8d11-6cbaedb84dfa') 200 64.66MiB 697.76KiB 63.91MiB 64.38MiB 66.0MiB 66.19MiB 66.4MiB 66.42MiB 1.39612
('datadog_agent_remap_datadog_logs', 'baseline', 'afbe968a-4f2f-430d-ae22-302b12388ffe') 228 64.63MiB 622.93KiB 63.86MiB 64.41MiB 65.76MiB 66.01MiB 66.31MiB 66.56MiB 1.54349
('datadog_agent_remap_datadog_logs_acks', 'comparison', '146323e4-650c-41eb-b97d-2467a5fe4759') 178 64.59MiB 2.54MiB 31.31MiB 64.7MiB 65.36MiB 65.55MiB 65.73MiB 66.2MiB -12.8608
('datadog_agent_remap_datadog_logs_acks', 'comparison', '811f9c2f-b716-4b16-87f3-b3268273aec7') 83 63.55MiB 4.86MiB 21.32MiB 64.06MiB 64.89MiB 64.97MiB 65.28MiB 65.33MiB -8.30962
('datadog_agent_remap_datadog_logs_acks', 'baseline', '720b88c5-2449-412b-bfda-20670c1da982') 71 63.16MiB 13.33MiB 66.55KiB 66.22MiB 66.56MiB 66.66MiB 66.78MiB 66.8MiB -4.34116
('datadog_agent_remap_datadog_logs_acks', 'comparison', '2726f040-94d1-475e-a637-a623d330d5d6') 140 62.29MiB 5.62MiB 2.89MiB 62.93MiB 63.19MiB 63.28MiB 63.4MiB 63.44MiB -9.54871
('datadog_agent_remap_blackhole_acks', 'comparison', 'd1dbd73f-5196-4e5a-b105-df0ef234a07f') 200 40.18MiB 1.12MiB 37.9MiB 40.24MiB 41.7MiB 41.82MiB 42.5MiB 42.81MiB 0.00715778
('datadog_agent_remap_blackhole', 'comparison', '92634d05-4a7f-423e-a81a-f57569414dc3') 202 40.04MiB 543.44KiB 36.83MiB 40.04MiB 40.68MiB 40.88MiB 41.23MiB 41.5MiB -0.844566
('datadog_agent_remap_blackhole_acks', 'baseline', 'ec0ceaec-7669-4790-8dac-5629f44d7f0c') 199 39.84MiB 2.27MiB 18.57MiB 39.96MiB 41.21MiB 41.28MiB 41.6MiB 41.69MiB -7.67261
('datadog_agent_remap_blackhole', 'baseline', '42ac4513-5470-4642-8559-c968530862b3') 202 39.25MiB 523.68KiB 37.99MiB 39.18MiB 39.84MiB 40.15MiB 40.78MiB 41.06MiB 0.837049
('datadog_agent_remap_blackhole', 'baseline', '3655dfbb-ed76-4f3d-965e-aafa5bda116e') 202 38.71MiB 591.74KiB 37.19MiB 38.65MiB 39.43MiB 39.79MiB 40.55MiB 40.75MiB 0.802505
('datadog_agent_remap_blackhole_acks', 'comparison', '4c9ea7e0-11ed-47f7-8dc4-63dd43bbab66') 200 38.67MiB 590.8KiB 37.37MiB 38.63MiB 39.3MiB 39.55MiB 41.07MiB 41.63MiB 1.67738
('datadog_agent_remap_blackhole', 'comparison', '3b29ee1a-b37d-4f68-aa53-c1465cd26181') 201 38.62MiB 490.61KiB 37.46MiB 38.61MiB 39.25MiB 39.39MiB 39.98MiB 40.35MiB 0.48799
('datadog_agent_remap_blackhole', 'comparison', 'b5c15d2d-a2de-4a7c-9c15-58d4398d8ea8') 201 38.44MiB 476.74KiB 37.31MiB 38.36MiB 39.04MiB 39.21MiB 39.47MiB 40.0MiB 0.439427
('datadog_agent_remap_blackhole', 'baseline', '5a3cb152-e783-42f4-8695-8ed37eec5098') 202 38.15MiB 526.01KiB 36.83MiB 38.1MiB 38.73MiB 39.02MiB 39.79MiB 40.31MiB 0.900722
('datadog_agent_remap_blackhole_acks', 'baseline', '19c36215-3156-4cd1-b6cf-30d5416a63df') 199 37.9MiB 3.69MiB 1.18MiB 38.33MiB 38.89MiB 39.23MiB 40.15MiB 40.4MiB -8.1833
('datadog_agent_remap_blackhole_acks', 'comparison', '527783fd-be0a-4233-8352-b1e8d7925918') 200 37.57MiB 4.16MiB 48.95KiB 37.96MiB 38.84MiB 39.27MiB 39.97MiB 41.3MiB -8.20611
('datadog_agent_remap_blackhole_acks', 'baseline', '26025191-08ec-45d5-8987-c4446cbfbe16') 200 37.39MiB 911.19KiB 29.76MiB 37.4MiB 37.97MiB 38.25MiB 39.86MiB 41.44MiB -3.10335
('socket_to_socket_blackhole', 'baseline', '373f16ca-689e-4236-bb77-654adc4d78aa') 202 26.33MiB 155.17KiB 25.94MiB 26.37MiB 26.48MiB 26.53MiB 26.6MiB 26.66MiB -0.795427
('socket_to_socket_blackhole', 'baseline', 'baee1be7-2bff-40d6-8ec8-ed98f6bf880d') 202 25.92MiB 137.57KiB 25.6MiB 25.94MiB 26.08MiB 26.1MiB 26.16MiB 26.25MiB -0.547975
('socket_to_socket_blackhole', 'baseline', 'c398cb24-12c5-45f2-ba71-78477ce5c189') 202 25.83MiB 111.54KiB 25.43MiB 25.83MiB 25.95MiB 26.01MiB 26.1MiB 26.16MiB -0.239494
('socket_to_socket_blackhole', 'comparison', '58780c0b-ec86-4671-8a83-57a0e4f2c07a') 202 25.63MiB 80.0KiB 25.43MiB 25.63MiB 25.73MiB 25.75MiB 25.81MiB 25.91MiB 0.0987799
('socket_to_socket_blackhole', 'comparison', 'cdfb79ed-3d14-43f6-8e69-950f169cd98e') 233 25.28MiB 160.27KiB 24.81MiB 25.26MiB 25.52MiB 25.59MiB 25.65MiB 25.67MiB 0.379117
('socket_to_socket_blackhole', 'comparison', '81fb06b2-82d2-40c2-92f3-42c8ae5b4b09') 202 24.92MiB 172.29KiB 24.56MiB 24.91MiB 25.15MiB 25.23MiB 25.35MiB 25.43MiB 0.590331
('splunk_hec_indexer_ack_blackhole', 'comparison', 'a03b5801-9d78-438b-a2a1-a7def2452a6b') 200 23.85MiB 315.77KiB 23.06MiB 23.85MiB 24.27MiB 24.33MiB 24.45MiB 24.6MiB -0.0886956
('splunk_hec_to_splunk_hec_logs_acks', 'baseline', '05539024-5523-4656-b6f2-7910327d168e') 200 23.85MiB 364.41KiB 22.82MiB 23.84MiB 24.32MiB 24.39MiB 24.61MiB 25.21MiB 0.150857
('splunk_hec_to_splunk_hec_logs_acks', 'baseline', 'c3e9ddfb-ce81-43dd-82c5-45b9674923e2') 200 23.85MiB 537.89KiB 21.56MiB 23.84MiB 24.33MiB 24.51MiB 25.83MiB 26.06MiB -0.128328
('splunk_hec_indexer_ack_blackhole', 'baseline', '42d815d9-6140-4b9f-8fe2-f5d3fe5d4cf8') 200 23.84MiB 328.38KiB 23.06MiB 23.84MiB 24.27MiB 24.37MiB 24.52MiB 24.6MiB -0.0739842
('splunk_hec_to_splunk_hec_logs_noack', 'baseline', 'dffe4ab9-4d96-4b99-9648-af064efe288a') 200 23.84MiB 327.82KiB 22.91MiB 23.84MiB 24.24MiB 24.36MiB 24.51MiB 24.64MiB -0.159828
('splunk_hec_to_splunk_hec_logs_acks', 'comparison', '76916ecb-0cf3-4531-b704-280f33f0af8b') 203 23.84MiB 320.36KiB 23.14MiB 23.84MiB 24.25MiB 24.34MiB 24.51MiB 24.52MiB -0.093973
('splunk_hec_to_splunk_hec_logs_acks', 'baseline', '2691d184-b8ad-47e9-99af-4bf1d5c9e730') 200 23.84MiB 523.58KiB 21.69MiB 23.84MiB 24.36MiB 24.48MiB 25.52MiB 25.61MiB -0.42966
('splunk_hec_indexer_ack_blackhole', 'comparison', '464db1e7-0fcb-4b07-8f8a-44af2d1f21c4') 200 23.84MiB 330.92KiB 23.06MiB 23.86MiB 24.21MiB 24.35MiB 24.57MiB 24.64MiB -0.113218
('splunk_hec_indexer_ack_blackhole', 'baseline', '45697b3d-fc41-41f4-a473-5312a682cebe') 200 23.84MiB 321.07KiB 23.06MiB 23.85MiB 24.22MiB 24.33MiB 24.49MiB 24.6MiB -0.176927
('splunk_hec_to_splunk_hec_logs_noack', 'comparison', '044d4a8f-4410-4df9-9d5d-9b3d2da3416a') 204 23.84MiB 311.42KiB 23.08MiB 23.84MiB 24.23MiB 24.31MiB 24.48MiB 24.6MiB -0.0392828
('splunk_hec_indexer_ack_blackhole', 'comparison', 'e3bbab6d-f060-4157-8171-84b7d784dd38') 200 23.84MiB 324.35KiB 23.06MiB 23.86MiB 24.21MiB 24.32MiB 24.51MiB 24.6MiB -0.18509
('splunk_hec_to_splunk_hec_logs_noack', 'comparison', 'e7e4d69c-75e7-4aa0-b1a4-6bedc30dfe0b') 204 23.84MiB 319.38KiB 23.06MiB 23.85MiB 24.25MiB 24.33MiB 24.52MiB 24.57MiB -0.15165
('splunk_hec_to_splunk_hec_logs_acks', 'comparison', 'b1694413-1767-48fc-9cd4-0e908fd7a705') 203 23.84MiB 544.16KiB 21.56MiB 23.84MiB 24.36MiB 24.5MiB 25.49MiB 26.28MiB -0.117105
('splunk_hec_to_splunk_hec_logs_noack', 'baseline', '7430935b-2e25-400d-9407-c92ab74b35ea') 200 23.84MiB 320.49KiB 23.06MiB 23.84MiB 24.18MiB 24.32MiB 24.51MiB 24.6MiB -0.165389
('splunk_hec_to_splunk_hec_logs_acks', 'comparison', 'de4d7b19-15b1-4f38-a620-536839c7cf68') 203 23.84MiB 443.74KiB 22.27MiB 23.84MiB 24.27MiB 24.45MiB 25.46MiB 25.79MiB 0.453048
('splunk_hec_indexer_ack_blackhole', 'baseline', 'fc94843b-c623-488a-ab6e-68b7373af29a') 205 23.83MiB 358.5KiB 21.8MiB 23.85MiB 24.24MiB 24.33MiB 24.51MiB 24.6MiB -1.02608
('splunk_hec_to_splunk_hec_logs_noack', 'comparison', '61683fa8-4471-4aa7-863a-fc58f7f8e7dc') 204 23.83MiB 348.13KiB 21.63MiB 23.85MiB 24.21MiB 24.28MiB 24.45MiB 24.64MiB -1.36081
('splunk_hec_to_splunk_hec_logs_noack', 'baseline', '810641b6-6804-4da9-bf05-4f792a5e9cff') 109 23.71MiB 1.31MiB 10.59MiB 23.84MiB 24.22MiB 24.37MiB 24.5MiB 24.6MiB -9.41826
('http_to_http_json', 'baseline', '792f0e5a-8d58-4143-9b9e-46c8fb310593') 205 21.03MiB 654.15KiB 18.76MiB 21.02MiB 21.76MiB 22.01MiB 22.58MiB 22.77MiB -0.106314
('http_to_http_json', 'baseline', 'e74478dd-406a-4e4a-bee5-70af4ed451b8') 200 20.75MiB 662.69KiB 19.2MiB 20.76MiB 21.58MiB 21.91MiB 22.09MiB 22.36MiB 0.0540415
('http_to_http_json', 'baseline', '2cb27104-dda9-4635-83a6-18c4afcbfed7') 201 20.65MiB 795.7KiB 18.78MiB 20.66MiB 21.65MiB 21.95MiB 22.34MiB 22.92MiB 0.145636
('http_to_http_json', 'comparison', '7fa11da5-3f83-4623-802e-81895eb56d10') 204 20.54MiB 725.25KiB 18.81MiB 20.46MiB 21.37MiB 21.75MiB 22.47MiB 22.56MiB 0.294868
('http_to_http_json', 'comparison', '50b5b2ea-3785-4abc-a332-a880af7a2a86') 204 20.16MiB 601.98KiB 18.44MiB 20.14MiB 20.93MiB 21.13MiB 21.62MiB 21.79MiB 0.00232467
('http_to_http_json', 'comparison', 'b6fcf2f5-b5f3-4bb7-8e36-17170f069be3') 204 20.12MiB 660.09KiB 18.2MiB 20.06MiB 20.99MiB 21.16MiB 21.83MiB 21.98MiB 0.182549
('http_to_http_acks', 'baseline', 'df77ced9-e994-48de-a531-a6fc5bb9b768') 114 17.04MiB 7.69MiB 976.45KiB 18.03MiB 26.77MiB 29.38MiB 30.59MiB 30.72MiB -0.0541955
('syslog_log2metric_splunk_hec_metrics', 'comparison', 'fd42c987-96b7-4fa9-91e3-674c5b57aec3') 200 16.7MiB 125.75KiB 16.55MiB 16.68MiB 16.75MiB 17.07MiB 17.12MiB 17.17MiB 2.4182
('http_to_http_acks', 'comparison', '2d398dd5-5bf2-4f6b-92c7-bd775a3d9da3') 27 16.59MiB 7.2MiB 670.82KiB 17.48MiB 24.98MiB 27.99MiB 30.12MiB 30.74MiB -0.10121
('syslog_humio_logs', 'comparison', '74f05b52-a148-4dfa-bbe1-67526e730436') 204 16.54MiB 45.66KiB 16.43MiB 16.54MiB 16.6MiB 16.61MiB 16.64MiB 16.65MiB 0.122348
('syslog_log2metric_splunk_hec_metrics', 'comparison', '2c1e0596-516a-4f6c-a754-24fad458e080') 200 16.49MiB 38.99KiB 16.38MiB 16.49MiB 16.54MiB 16.55MiB 16.59MiB 16.6MiB 0.26161
('syslog_log2metric_splunk_hec_metrics', 'comparison', '2aa81c25-fd0e-42de-8cc8-642911c77c47') 233 16.41MiB 151.54KiB 16.21MiB 16.35MiB 16.69MiB 16.71MiB 16.74MiB 16.78MiB 1.25944
('syslog_log2metric_splunk_hec_metrics', 'baseline', '42649d03-1622-4cf9-995f-b1531bf5967c') 200 16.27MiB 70.05KiB 16.15MiB 16.26MiB 16.32MiB 16.33MiB 16.59MiB 16.77MiB 3.58838
('syslog_splunk_hec_logs', 'comparison', 'cef9ea79-90db-40e5-8a54-df77b0b8a918') 200 16.2MiB 70.91KiB 16.07MiB 16.19MiB 16.27MiB 16.29MiB 16.42MiB 16.55MiB 1.22568
('syslog_humio_logs', 'comparison', '3e186585-1197-4c2b-a2d3-f7d8d25971ba') 204 16.11MiB 290.5KiB 13.28MiB 16.14MiB 16.18MiB 16.2MiB 16.23MiB 16.25MiB -9.75751
('syslog_splunk_hec_logs', 'baseline', '1333a417-3b55-40da-b822-64384ca7140a') 204 16.07MiB 88.62KiB 15.94MiB 16.05MiB 16.13MiB 16.27MiB 16.42MiB 16.44MiB 2.52637
('syslog_humio_logs', 'baseline', '05773816-2b56-4c4d-9b0b-aef5549c3879') 202 16.0MiB 83.61KiB 15.84MiB 15.98MiB 16.15MiB 16.18MiB 16.22MiB 16.25MiB 1.12688
('syslog_humio_logs', 'baseline', 'a0ed7784-da90-45ec-b000-91c32beb1ddf') 202 15.92MiB 245.92KiB 15.66MiB 15.81MiB 16.35MiB 16.46MiB 16.51MiB 16.55MiB 1.43541
('syslog_log2metric_splunk_hec_metrics', 'baseline', 'efd482da-e750-4235-a16d-0e664128d629') 200 15.9MiB 75.22KiB 15.72MiB 15.9MiB 15.99MiB 16.0MiB 16.05MiB 16.12MiB 0.045174
('syslog_log2metric_splunk_hec_metrics', 'baseline', '1e20bd7f-c59e-4040-a349-393b3a454073') 200 15.8MiB 102.68KiB 15.69MiB 15.79MiB 15.84MiB 15.86MiB 16.27MiB 16.59MiB 5.42544
('syslog_splunk_hec_logs', 'baseline', '775e4f93-6d43-4818-966e-5ecf68be35bc') 204 15.77MiB 95.68KiB 15.64MiB 15.75MiB 15.81MiB 15.84MiB 16.23MiB 16.26MiB 3.70729
('syslog_splunk_hec_logs', 'comparison', 'b6c69267-995b-4030-a592-b3ba1b5acc10') 200 15.71MiB 176.38KiB 13.9MiB 15.73MiB 15.78MiB 15.8MiB 15.83MiB 16.12MiB -8.1101
('syslog_splunk_hec_logs', 'comparison', 'e5aa2290-bc75-4ac1-8965-31ca5c3ad4f5') 200 15.69MiB 37.39KiB 15.57MiB 15.7MiB 15.74MiB 15.75MiB 15.77MiB 15.79MiB -0.34114
('syslog_humio_logs', 'comparison', '02162f79-d894-47e9-8c6f-52273643929c') 204 15.6MiB 239.31KiB 13.52MiB 15.64MiB 15.68MiB 15.69MiB 15.72MiB 15.73MiB -7.6069
('syslog_humio_logs', 'baseline', 'de757221-5c30-40fe-8997-e240cd26d01c') 202 15.57MiB 254.85KiB 15.34MiB 15.45MiB 15.89MiB 16.2MiB 16.26MiB 16.32MiB 1.50085
('syslog_splunk_hec_logs', 'baseline', '815e900c-ed1e-4223-9309-24693e50738e') 204 15.24MiB 253.53KiB 13.79MiB 15.17MiB 15.55MiB 15.83MiB 16.01MiB 16.03MiB 0.308336
('splunk_hec_route_s3', 'baseline', 'e6d5c3d9-f609-40aa-b513-94bb8580e26e') 204 14.44MiB 2.12MiB 9.97MiB 14.45MiB 17.1MiB 17.86MiB 18.85MiB 19.25MiB 0.038615
('splunk_hec_route_s3', 'comparison', '7fcc4e62-ac04-4e48-8110-0fd39db3089c') 228 14.36MiB 2.2MiB 8.94MiB 14.52MiB 17.15MiB 17.84MiB 18.45MiB 19.25MiB -0.0471787
('splunk_hec_route_s3', 'baseline', 'b0b90cfb-9bfa-4bb0-9942-7bfb7ffc62c8') 204 14.34MiB 2.24MiB 8.91MiB 14.31MiB 17.43MiB 17.83MiB 18.5MiB 19.25MiB 0.0156694
('splunk_hec_route_s3', 'comparison', 'c942874c-e37e-4637-9645-4db31ff457b6') 204 14.3MiB 2.17MiB 9.42MiB 14.25MiB 17.23MiB 17.58MiB 18.36MiB 18.89MiB -0.0422431
('splunk_hec_route_s3', 'baseline', '8b2757eb-3eeb-4f3b-8af7-1a0582ba11e6') 204 14.27MiB 2.13MiB 9.92MiB 14.21MiB 17.31MiB 17.69MiB 18.34MiB 18.49MiB 0.0138463
('splunk_hec_route_s3', 'comparison', 'cf89bca8-4d69-4c6d-b971-f1bb9aa7ac6f') 205 14.18MiB 2.22MiB 9.85MiB 14.11MiB 17.19MiB 17.63MiB 18.32MiB 18.59MiB 0.021964
('http_to_http_acks', 'comparison', 'ef4a2483-8e6c-4536-9798-24cc5075e27c') 26 14.03MiB 9.44MiB 975.76KiB 14.69MiB 25.5MiB 29.4MiB 30.52MiB 30.52MiB 0.254333
('syslog_log2metric_humio_metrics', 'baseline', '8e27e976-1c14-4ad5-9721-662136cdc599') 202 13.32MiB 96.03KiB 13.07MiB 13.32MiB 13.44MiB 13.48MiB 13.54MiB 13.66MiB 0.228803
('syslog_log2metric_humio_metrics', 'comparison', 'aabdf2e0-b2a1-4eb3-80ec-f48f114ca5aa') 200 13.27MiB 102.39KiB 12.9MiB 13.26MiB 13.4MiB 13.42MiB 13.46MiB 13.53MiB -0.233106
('syslog_log2metric_humio_metrics', 'baseline', '96ab4829-d6ce-4f33-9723-cf73d4c0a51e') 202 13.25MiB 110.86KiB 12.93MiB 13.25MiB 13.38MiB 13.43MiB 13.48MiB 13.57MiB 0.0619778
('syslog_log2metric_humio_metrics', 'comparison', '0870368b-965c-4b88-a3fd-2c7e6c6d7dbd') 78 13.07MiB 2.28MiB 49.56KiB 13.51MiB 13.63MiB 13.69MiB 13.72MiB 13.75MiB -5.30886
('syslog_log2metric_humio_metrics', 'baseline', 'd58db4dd-35f4-4d39-9afd-0d28e369b6e0') 202 12.84MiB 77.15KiB 12.59MiB 12.84MiB 12.92MiB 12.96MiB 13.01MiB 13.06MiB -0.0116166
('syslog_log2metric_humio_metrics', 'comparison', '4fbdc8dc-3272-477d-a44a-d3e1c3410638') 78 12.79MiB 2.49MiB 49.5KiB 13.33MiB 13.45MiB 13.47MiB 13.48MiB 13.48MiB -4.66755
('syslog_regex_logs2metric_ddmetrics', 'comparison', '53951384-08ba-43c7-83b3-448f46cf2cf6') 200 12.22MiB 266.57KiB 11.64MiB 12.36MiB 12.45MiB 12.46MiB 12.5MiB 12.52MiB -1.01446
('syslog_regex_logs2metric_ddmetrics', 'baseline', '4dcc5834-ac89-4470-a12a-a7cfe9e8f810') 200 12.02MiB 183.85KiB 11.61MiB 12.09MiB 12.17MiB 12.19MiB 12.23MiB 12.28MiB -0.969814
('syslog_regex_logs2metric_ddmetrics', 'comparison', '554ce777-da01-49c5-8e8a-6e21b3cfb71f') 200 11.91MiB 134.88KiB 11.62MiB 11.96MiB 12.03MiB 12.05MiB 12.08MiB 12.11MiB -0.846628
('syslog_regex_logs2metric_ddmetrics', 'comparison', '72ac21bd-2b91-4576-b82d-4f3d8a5544ea') 200 11.9MiB 128.12KiB 11.62MiB 11.94MiB 12.02MiB 12.03MiB 12.06MiB 12.08MiB -0.82198
('syslog_regex_logs2metric_ddmetrics', 'baseline', 'e01eca87-27fa-4e5a-9228-06347ad84fdb') 200 11.86MiB 108.16KiB 11.65MiB 11.89MiB 11.97MiB 12.01MiB 12.05MiB 12.08MiB -0.457551
('syslog_regex_logs2metric_ddmetrics', 'baseline', '2d890c71-c1f5-47ed-821c-cfb996767c65') 200 11.76MiB 117.19KiB 11.58MiB 11.74MiB 11.86MiB 11.95MiB 12.24MiB 12.34MiB 2.40395
('syslog_loki', 'comparison', '9eb2b030-b9df-4149-ae76-a49406b989ee') 200 11.47MiB 102.09KiB 11.33MiB 11.43MiB 11.66MiB 11.69MiB 11.72MiB 11.75MiB 1.3664
('syslog_loki', 'baseline', '7ee52774-b7d5-40a8-a630-3f4fade44f4d') 202 11.42MiB 129.55KiB 11.23MiB 11.37MiB 11.58MiB 11.59MiB 11.63MiB 11.66MiB 0.111639
('syslog_loki', 'comparison', '9021e355-a7a7-441c-bd81-c9dec2b7cc49') 200 11.38MiB 35.54KiB 11.3MiB 11.39MiB 11.42MiB 11.44MiB 11.45MiB 11.55MiB 0.309205
('syslog_loki', 'comparison', 'fdc35cde-f484-45ed-ad12-4f4a983fca4a') 200 11.35MiB 34.47KiB 11.25MiB 11.35MiB 11.39MiB 11.4MiB 11.41MiB 11.42MiB -0.152591
('syslog_loki', 'baseline', 'fffa51b6-28f1-4126-863c-600ab0e7296b') 202 11.34MiB 82.97KiB 11.2MiB 11.31MiB 11.43MiB 11.56MiB 11.58MiB 11.6MiB 1.85923
('syslog_loki', 'baseline', '25aafca0-267a-44d4-88a3-25dd29498256') 78 10.7MiB 2.09MiB 49.54KiB 11.16MiB 11.2MiB 11.22MiB 11.23MiB 11.25MiB -4.65556
('splunk_transforms_splunk3', 'comparison', 'bf0ef4d4-b8cf-47ae-8887-208e009a355c') 202 9.85MiB 1.8MiB 5.99MiB 9.94MiB 12.16MiB 12.77MiB 13.02MiB 13.1MiB -0.0707231
('splunk_transforms_splunk3', 'comparison', '7d58b628-5a02-4f91-8a7f-762e8e3b76c1') 202 9.73MiB 1.88MiB 5.47MiB 9.68MiB 12.2MiB 12.74MiB 14.24MiB 14.6MiB 0.114445
('splunk_transforms_splunk3', 'baseline', '3bd8e452-6829-417a-bf52-1b60f9ff003c') 203 9.64MiB 1.94MiB 5.41MiB 9.59MiB 12.21MiB 12.66MiB 13.35MiB 13.74MiB -0.00960292
('splunk_transforms_splunk3', 'baseline', 'c7dfcc91-ab00-4d4d-b2f8-e6984a5f2ddb') 203 9.47MiB 1.77MiB 5.17MiB 9.55MiB 11.8MiB 12.25MiB 13.06MiB 13.6MiB -0.0259916
('splunk_transforms_splunk3', 'comparison', 'cc941961-e150-4853-be64-b660da8f6d4e') 202 9.34MiB 1.65MiB 4.41MiB 9.27MiB 11.41MiB 12.12MiB 12.62MiB 12.98MiB -0.0844119
('splunk_transforms_splunk3', 'baseline', '81c20404-b520-40ec-96fb-4ac68c94482c') 203 9.3MiB 1.76MiB 5.91MiB 9.27MiB 11.62MiB 12.05MiB 12.7MiB 13.13MiB 0.0619617
('http_datadog_filter_blackhole', 'baseline', 'f59ee903-5a12-475f-aff5-72c68f74410f') 202 5.98MiB 634.43KiB 4.86MiB 5.93MiB 6.82MiB 7.01MiB 7.38MiB 8.16MiB 0.436184
('http_datadog_filter_blackhole', 'baseline', 'a5900344-8763-4a7e-8d37-b44f37a56f99') 202 5.86MiB 586.14KiB 4.59MiB 5.87MiB 6.63MiB 6.78MiB 7.09MiB 7.23MiB 0.119181
('http_datadog_filter_blackhole', 'comparison', '8d248182-e1ee-49e3-80eb-a8718e013dde') 202 5.85MiB 599.77KiB 4.71MiB 5.75MiB 6.63MiB 6.88MiB 7.13MiB 8.0MiB 0.518427
('http_datadog_filter_blackhole', 'comparison', '4c935d79-c7b5-4af7-a6f7-f78e1acf5da0') 201 5.8MiB 582.12KiB 4.61MiB 5.72MiB 6.6MiB 6.71MiB 7.19MiB 7.8MiB 0.520281
('http_datadog_filter_blackhole', 'comparison', '79fd074f-f0eb-413c-b1d9-57a41d41d0a3') 201 5.78MiB 600.23KiB 4.51MiB 5.72MiB 6.6MiB 6.77MiB 7.35MiB 7.75MiB 0.589299
('http_pipelines_no_grok_blackhole', 'comparison', '8e21e8f3-d98f-427d-81fe-da0b04ec0fdd') 205 5.66MiB 649.75KiB 4.25MiB 5.56MiB 6.52MiB 6.8MiB 7.36MiB 8.81MiB 0.952053
('http_pipelines_no_grok_blackhole', 'comparison', '5dabaa17-6f51-41d7-a766-319471cc5e2d') 200 5.55MiB 597.23KiB 4.37MiB 5.55MiB 6.24MiB 6.48MiB 7.13MiB 7.56MiB 0.469803
('http_pipelines_no_grok_blackhole', 'baseline', '16a61dd7-0291-408a-9f5a-696f2fb0b9b8') 147 5.5MiB 634.51KiB 2.17MiB 5.51MiB 6.21MiB 6.4MiB 6.98MiB 7.03MiB -0.813779
('http_pipelines_no_grok_blackhole', 'comparison', '87c8bb90-ad6f-430a-a7be-a8638631a124') 205 5.46MiB 558.74KiB 4.13MiB 5.46MiB 6.13MiB 6.35MiB 6.75MiB 6.91MiB 0.165881
('http_pipelines_no_grok_blackhole', 'baseline', '4d8c8cbe-b828-48dd-ac77-52271eaa7f4e') 200 5.42MiB 567.45KiB 4.04MiB 5.43MiB 6.1MiB 6.4MiB 6.61MiB 7.03MiB 0.146769
('http_to_http_acks', 'comparison', '9f7c2e5e-7c7b-4719-94f4-cdf77955c747') 3 2.83MiB 2.64MiB 701.1KiB 2.02MiB 5.03MiB 5.4MiB 5.7MiB 5.78MiB 1.24356
('http_pipelines_blackhole', 'comparison', 'b24aaaf8-f2c1-4849-a5f6-9faf01acf099') 189 661.62KiB 378.69KiB 15.99KiB 615.23KiB 1.15MiB 1.29MiB 1.58MiB 1.78MiB 0.532614
('http_pipelines_blackhole', 'baseline', 'cc04c10b-b29f-4234-9401-367a680f1fc8') 193 641.23KiB 430.62KiB 15.99KiB 552.36KiB 1.23MiB 1.45MiB 1.63MiB 2.1MiB 0.756591
('http_pipelines_blackhole_acks', 'comparison', 'd98f2d98-9805-406c-9621-24dd2fd1b7c0') 195 638.51KiB 456.98KiB 30.89KiB 611.34KiB 1.26MiB 1.41MiB 1.75MiB 1.99MiB 0.617985
('http_pipelines_blackhole_acks', 'baseline', '8cb193de-67cf-4e07-9234-d293169b9990') 193 638.22KiB 475.67KiB 15.99KiB 550.68KiB 1.38MiB 1.57MiB 1.85MiB 1.94MiB 0.876483
('http_pipelines_blackhole', 'baseline', 'b7cb866e-b5d8-429f-8f17-85cbd5730123') 194 637.84KiB 443.04KiB 15.99KiB 551.52KiB 1.28MiB 1.49MiB 1.85MiB 2.11MiB 0.999125
('http_pipelines_blackhole', 'baseline', 'e7838747-d10c-452a-8309-35f1da884acc') 193 636.55KiB 412.13KiB 15.99KiB 581.57KiB 1.15MiB 1.38MiB 1.59MiB 2.14MiB 0.708378
('http_pipelines_blackhole_acks', 'baseline', 'feba15b0-f4fa-4744-93b0-1b06db60beb3') 196 630.1KiB 481.83KiB 15.99KiB 561.64KiB 1.22MiB 1.45MiB 2.21MiB 2.81MiB 1.34583
('http_pipelines_blackhole_acks', 'comparison', '7a6ec4ed-1b48-48dd-8ef9-440be064ce58') 196 629.43KiB 496.52KiB 15.99KiB 507.03KiB 1.22MiB 1.62MiB 1.95MiB 2.62MiB 1.16774
('http_pipelines_blackhole', 'comparison', '44d2ee4d-9335-4bb5-bc36-0dcfd668b52e') 198 625.11KiB 455.87KiB 15.99KiB 537.41KiB 1.23MiB 1.45MiB 1.91MiB 2.36MiB 1.04027
('http_pipelines_blackhole_acks', 'comparison', 'eebe64ba-c3a0-4759-94e5-62418154db31') 196 623.44KiB 481.0KiB 15.99KiB 513.12KiB 1.33MiB 1.55MiB 1.82MiB 2.05MiB 0.927057
('http_pipelines_blackhole_acks', 'baseline', '1f0c8a43-5f35-4396-a627-6977169c33df') 192 618.06KiB 455.14KiB 15.99KiB 522.51KiB 1.21MiB 1.49MiB 1.84MiB 2.05MiB 0.848067
('http_pipelines_blackhole', 'comparison', '480aad9f-a41f-43b1-8e4c-91abb51c106e') 196 605.8KiB 439.69KiB 15.99KiB 584.57KiB 1.12MiB 1.44MiB 2.11MiB 2.28MiB 1.21235

Signed-off-by: Brian L. Troutwine <brian@troutwine.us>
@github-actions
Copy link

github-actions bot commented Mar 5, 2022

Soak Test Results

Baseline: 9569a10
Comparison: 29fb1ae
Total Vector CPUs: 4

Explanation

A soak test is an integrated performance test for vector in a repeatable rig, with varying configuration for vector. What follows is a statistical summary of a brief vector run for each configuration across SHAs given above. The goal of these tests are to determine, quickly, if vector performance is changed and to what degree by a pull request. Where appropriate units are scaled per-core.

The table below, if present, lists those experiments that have experienced a statistically significant change in their throughput performance between baseline and comparision SHAs, with 90.0% confidence OR have been detected as newly erratic. Negative values mean that baseline is faster, positive comparison. Results that do not exhibit more than a ±5% change in mean throughput are discarded. An experiment is erratic if its coefficient of variation is greater than 0.3. The abbreviated table will be omitted if no interesting changes are observed.

No interesting changes in throughput with confidence ≥ 90.00% and absolute Δ mean >= ±5%:

Fine details of change detection per experiment.
experiment Δ mean Δ mean % confidence baseline mean baseline stdev baseline stderr baseline outlier % baseline CoV comparison mean comparison stdev comparison stderr comparison outlier % comparison CoV erratic declared erratic
http_to_http_acks 1.32MiB 8.06 33.53% 16.41MiB 10.11MiB 2.92MiB 0 0.589975 17.73MiB 7.54MiB 594.13KiB 0 0.424195 True True
syslog_humio_logs 714.6KiB 4.54 100.00% 15.37MiB 2.87MiB 152.52KiB 0 0.186135 16.07MiB 144.59KiB 5.84KiB 0 0.00877946 False False
http_datadog_filter_blackhole 173.0KiB 2.96 100.00% 5.71MiB 603.92KiB 24.51KiB 0 0.103154 5.88MiB 619.88KiB 26.06KiB 0 0.102831 False True
datadog_agent_remap_blackhole 680.0KiB 1.7 100.00% 39.05MiB 748.72KiB 30.41KiB 0 0.0187072 39.72MiB 2.57MiB 107.45KiB 0 0.0647689 False False
syslog_splunk_hec_logs 110.41KiB 0.68 100.00% 15.82MiB 72.27KiB 2.92KiB 0 0.0044564 15.93MiB 124.49KiB 5.08KiB 0 0.00762433 False False
syslog_log2metric_humio_metrics 42.47KiB 0.32 42.92% 12.85MiB 1.24MiB 57.97KiB 0 0.0965887 12.9MiB 1.01MiB 47.44KiB 0 0.0785381 False False
http_pipelines_blackhole_acks 2.0KiB 0.32 5.83% 623.99KiB 465.01KiB 19.14KiB 0 0.744593 625.99KiB 476.02KiB 19.63KiB 0 0.759785 True True
syslog_regex_logs2metric_ddmetrics 28.39KiB 0.24 99.38% 11.78MiB 221.73KiB 9.05KiB 0 0.0183601 11.81MiB 122.99KiB 5.02KiB 0 0.0101603 False False
datadog_agent_remap_blackhole_acks 33.86KiB 0.08 21.60% 39.26MiB 2.78MiB 116.49KiB 0 0.0708656 39.29MiB 1003.12KiB 40.95KiB 0 0.0249117 False False
fluent_remap_aws_firehose 8.81KiB 0.01 67.64% 79.46MiB 212.76KiB 8.63KiB 0 0.00261252 79.47MiB 55.14KiB 2.24KiB 0 0.000676988 False False
splunk_hec_indexer_ack_blackhole 2.47KiB 0.01 5.26% 23.84MiB 856.73KiB 35.01KiB 0 0.0350688 23.84MiB 321.1KiB 13.11KiB 0 0.0131421 False False
splunk_hec_to_splunk_hec_logs_acks 3.49KiB 0.01 11.77% 23.84MiB 358.77KiB 14.59KiB 0 0.0146866 23.84MiB 457.56KiB 18.54KiB 0 0.0187281 False False
fluent_elasticsearch 374.54B 0 9.35% 79.47MiB 55.28KiB 2.23KiB 0 0.000678781 79.47MiB 54.73KiB 2.17KiB 0 0.000671982 False False
splunk_hec_to_splunk_hec_logs_noack -33.36KiB -0.14 66.04% 23.84MiB 322.75KiB 13.13KiB 0 0.0132095 23.81MiB 783.81KiB 32.35KiB 0 0.0321234 False False
datadog_agent_remap_datadog_logs_acks -151.4KiB -0.23 90.51% 64.81MiB 720.96KiB 29.21KiB 0 0.0108538 64.67MiB 1.87MiB 85.67KiB 0 0.0288407 False False
syslog_log2metric_splunk_hec_metrics -47.93KiB -0.29 45.65% 16.12MiB 236.87KiB 9.67KiB 0 0.0143348 16.08MiB 1.68MiB 78.24KiB 0 0.104128 False False
http_to_http_json -120.55KiB -0.57 95.78% 20.65MiB 949.06KiB 38.91KiB 0 0.0448368 20.54MiB 1020.82KiB 44.72KiB 0 0.0484975 False False
datadog_agent_remap_datadog_logs -438.48KiB -0.65 100.00% 65.95MiB 385.12KiB 15.72KiB 0 0.00569754 65.53MiB 675.82KiB 26.97KiB 0 0.0100639 False False
http_pipelines_blackhole -4.72KiB -0.75 14.58% 632.31KiB 454.18KiB 18.76KiB 0 0.717669 627.59KiB 426.35KiB 17.54KiB 0 0.67877 True True
splunk_transforms_splunk3 -119.75KiB -1.22 74.54% 9.61MiB 1.78MiB 73.77KiB 0 0.184818 9.49MiB 1.8MiB 74.81KiB 0 0.189268 False False
splunk_hec_route_s3 -226.44KiB -1.53 87.70% 14.43MiB 2.18MiB 108.78KiB 0 0.15085 14.21MiB 2.18MiB 98.42KiB 0 0.153046 False False
http_pipelines_no_grok_blackhole -89.55KiB -1.55 96.87% 5.62MiB 615.08KiB 26.67KiB 0 0.106696 5.54MiB 654.01KiB 31.84KiB 0 0.115213 False False
syslog_loki -190.18KiB -1.63 100.00% 11.39MiB 186.6KiB 7.41KiB 0 0.0159836 11.21MiB 455.86KiB 20.87KiB 0 0.0396836 False False
socket_to_socket_blackhole -472.81KiB -1.79 100.00% 25.77MiB 203.52KiB 8.27KiB 0 0.00770497 25.31MiB 223.32KiB 9.07KiB 0 0.00860905 False False
Fine details of each soak run.
(experiment, variant, run_id) total samples mean std min median p90 p95 p99 max skewness
('fluent_remap_aws_firehose', 'baseline', 'fc015de1-7c4f-4c63-9513-ccb5899f34cc') 202 79.47MiB 57.6KiB 79.35MiB 79.47MiB 79.55MiB 79.57MiB 79.6MiB 79.62MiB 0.149612
('fluent_elasticsearch', 'baseline', '3743aa19-cdbf-4bdd-a4af-5765ce2ceb1d') 204 79.47MiB 53.12KiB 79.34MiB 79.47MiB 79.55MiB 79.56MiB 79.58MiB 79.59MiB 0.0199927
('fluent_remap_aws_firehose', 'comparison', 'f8e6c8b1-970f-4182-923f-71189b0177c6') 202 79.47MiB 57.5KiB 79.32MiB 79.47MiB 79.55MiB 79.56MiB 79.6MiB 79.64MiB 0.0296274
('fluent_elasticsearch', 'comparison', 'acccba5f-1bb5-4120-944e-37c8fca47c10') 204 79.47MiB 55.72KiB 79.33MiB 79.47MiB 79.55MiB 79.56MiB 79.59MiB 79.61MiB 0.0641285
('fluent_remap_aws_firehose', 'comparison', 'a53bb99d-a589-4f55-8b69-f8d282a28f5d') 202 79.47MiB 52.38KiB 79.34MiB 79.47MiB 79.54MiB 79.55MiB 79.58MiB 79.61MiB -0.0519805
('fluent_elasticsearch', 'comparison', '80515ae0-ffcd-4a99-8582-986cee105171') 228 79.47MiB 53.9KiB 79.34MiB 79.47MiB 79.54MiB 79.56MiB 79.59MiB 79.6MiB 0.0832349
('fluent_elasticsearch', 'comparison', '082c55c6-7797-4e37-83d2-7a9a841c40aa') 204 79.47MiB 54.92KiB 79.33MiB 79.47MiB 79.55MiB 79.56MiB 79.58MiB 79.6MiB -0.0225445
('fluent_remap_aws_firehose', 'comparison', '434550d1-1da1-4a16-95b5-c08301766535') 202 79.47MiB 55.68KiB 79.35MiB 79.48MiB 79.55MiB 79.56MiB 79.58MiB 79.59MiB -0.0710367
('fluent_remap_aws_firehose', 'baseline', 'f2a3fda4-edaf-41df-ac0b-06566b27c74a') 203 79.47MiB 52.35KiB 79.34MiB 79.47MiB 79.54MiB 79.55MiB 79.57MiB 79.59MiB -0.175154
('fluent_elasticsearch', 'baseline', 'f6eb409f-8bf9-4097-ba7a-902d6ebebe2c') 204 79.47MiB 56.5KiB 79.32MiB 79.47MiB 79.55MiB 79.56MiB 79.59MiB 79.61MiB 0.0525009
('fluent_elasticsearch', 'baseline', '98748ce0-7497-4540-9b69-515022a136db') 204 79.47MiB 56.43KiB 79.34MiB 79.47MiB 79.55MiB 79.56MiB 79.6MiB 79.6MiB 0.0358149
('fluent_remap_aws_firehose', 'baseline', '81b3213b-90ed-41f4-9ffb-76a3e66d1bdf') 203 79.45MiB 359.91KiB 74.51MiB 79.47MiB 79.54MiB 79.55MiB 79.57MiB 79.59MiB -13.8417
('datadog_agent_remap_datadog_logs', 'baseline', '113b9c4b-5755-4ccd-8cea-01552e5b0021') 200 66.26MiB 255.39KiB 65.44MiB 66.25MiB 66.57MiB 66.64MiB 66.77MiB 66.87MiB -0.349457
('datadog_agent_remap_datadog_logs', 'baseline', '397dbe88-bd2f-4151-bd60-659ffb10b7ec') 200 66.06MiB 233.42KiB 65.49MiB 66.05MiB 66.31MiB 66.35MiB 66.93MiB 67.07MiB 0.869711
('datadog_agent_remap_datadog_logs', 'comparison', 'a8ce6f98-3149-4ec9-908f-6dbea7793070') 200 65.73MiB 325.87KiB 65.05MiB 65.72MiB 66.08MiB 66.17MiB 66.91MiB 67.36MiB 1.564
('datadog_agent_remap_datadog_logs_acks', 'comparison', '31534400-c10d-4ed6-bf92-039c213910c3') 202 65.72MiB 748.56KiB 64.47MiB 65.92MiB 66.59MiB 66.67MiB 66.82MiB 66.89MiB -0.0952579
('datadog_agent_remap_datadog_logs_acks', 'baseline', '956fa23a-c0cf-4a3b-bc5a-e5e48df32f21') 203 65.7MiB 315.67KiB 65.1MiB 65.67MiB 66.03MiB 66.23MiB 66.66MiB 67.55MiB 1.61991
('datadog_agent_remap_datadog_logs', 'comparison', '683f3b20-3a2b-4c5b-93c6-44216bb4322b') 228 65.55MiB 1.0MiB 64.6MiB 65.24MiB 67.17MiB 68.48MiB 68.78MiB 69.33MiB 2.51138
('datadog_agent_remap_datadog_logs', 'baseline', 'df17eae6-f173-42ab-a6e1-1435215bd629') 200 65.54MiB 195.16KiB 65.0MiB 65.55MiB 65.77MiB 65.81MiB 65.93MiB 65.98MiB -0.330359
('datadog_agent_remap_datadog_logs', 'comparison', '1c86b9bd-23e9-4611-bd56-181223a9f888') 200 65.3MiB 173.85KiB 64.79MiB 65.29MiB 65.52MiB 65.57MiB 65.68MiB 65.76MiB 0.0489111
('datadog_agent_remap_datadog_logs_acks', 'baseline', '932e0286-2204-44e0-8d7c-df02344cb69f') 203 64.6MiB 230.66KiB 64.01MiB 64.6MiB 64.88MiB 64.99MiB 65.13MiB 65.23MiB 0.187483
('datadog_agent_remap_datadog_logs_acks', 'comparison', '8d8214d9-ccc1-47b8-bfcc-c8ee38e8af1a') 202 64.21MiB 325.94KiB 63.46MiB 64.19MiB 64.48MiB 64.61MiB 65.63MiB 65.84MiB 2.24174
('datadog_agent_remap_datadog_logs_acks', 'baseline', '46af5275-38bd-4138-91d6-3a0ae19529e8') 203 64.14MiB 223.1KiB 63.26MiB 64.16MiB 64.39MiB 64.46MiB 64.63MiB 64.73MiB -0.406853
('datadog_agent_remap_datadog_logs_acks', 'comparison', 'ae46eac8-1cff-4e6a-83f1-8a8b9c9cf1cb') 94 63.38MiB 3.57MiB 29.39MiB 63.71MiB 64.06MiB 64.22MiB 65.0MiB 65.05MiB -9.50734
('datadog_agent_remap_blackhole_acks', 'comparison', '6d34b252-39ec-4522-8e23-7128b0663233') 200 40.48MiB 374.91KiB 39.65MiB 40.42MiB 40.99MiB 41.16MiB 41.43MiB 41.69MiB 0.479555
('datadog_agent_remap_blackhole', 'comparison', 'c68f0703-24d8-42a7-8343-dd87349fa245') 201 40.31MiB 427.4KiB 39.18MiB 40.32MiB 40.77MiB 40.95MiB 41.27MiB 41.31MiB -0.0904259
('datadog_agent_remap_blackhole', 'comparison', 'e6a3a8fd-e54a-4acb-9438-5633aff59853') 201 39.91MiB 486.56KiB 38.91MiB 39.88MiB 40.57MiB 40.78MiB 40.99MiB 41.95MiB 0.726347
('datadog_agent_remap_blackhole_acks', 'baseline', '45876692-93bf-46a8-a26c-f7e55cd7ad82') 200 39.9MiB 389.4KiB 38.66MiB 39.92MiB 40.3MiB 40.54MiB 40.75MiB 41.27MiB -0.0288796
('datadog_agent_remap_blackhole', 'baseline', '85a62126-971d-4b02-b00b-1504e2163c83') 202 39.76MiB 430.99KiB 38.85MiB 39.73MiB 40.3MiB 40.42MiB 40.68MiB 41.09MiB 0.320589
('datadog_agent_remap_blackhole', 'baseline', 'c0193f2e-bffa-43e9-b76e-304f096c083a') 202 39.09MiB 448.52KiB 37.8MiB 39.08MiB 39.63MiB 39.73MiB 39.95MiB 40.9MiB 0.275497
('datadog_agent_remap_blackhole_acks', 'comparison', '62ef82df-f296-4d8f-acf8-c162b1e1a1e8') 200 39.08MiB 404.17KiB 37.97MiB 39.09MiB 39.61MiB 39.76MiB 39.83MiB 39.88MiB -0.0747946
('datadog_agent_remap_blackhole_acks', 'baseline', '3455ef67-1598-4529-8ac5-075045369ec0') 199 39.04MiB 3.9MiB 2.09MiB 39.51MiB 40.07MiB 40.15MiB 40.47MiB 40.7MiB -8.07351
('datadog_agent_remap_blackhole', 'comparison', '4ecc3d72-d43d-4c5c-8745-ed54af25c670') 200 38.93MiB 4.31MiB 447.24KiB 39.48MiB 40.04MiB 40.22MiB 40.51MiB 40.89MiB -7.81885
('datadog_agent_remap_blackhole_acks', 'baseline', 'ac8d98b0-9c88-43a7-9203-02066c8ccf97') 200 38.83MiB 2.72MiB 8.06MiB 39.13MiB 39.64MiB 39.84MiB 40.0MiB 40.14MiB -9.21897
('datadog_agent_remap_blackhole_acks', 'comparison', 'cb963a5e-8109-435a-9125-1d508f81b06b') 200 38.31MiB 431.53KiB 37.22MiB 38.34MiB 38.83MiB 39.02MiB 39.22MiB 39.3MiB -0.230617
('datadog_agent_remap_blackhole', 'baseline', 'c5b0dcd0-71ef-4d49-9959-300035c9c3a0') 202 38.31MiB 436.97KiB 37.36MiB 38.33MiB 38.85MiB 39.01MiB 39.19MiB 39.24MiB -0.0102153
('socket_to_socket_blackhole', 'baseline', '54769491-548c-44b4-bed0-b7bbae967de7') 202 25.97MiB 109.01KiB 25.56MiB 26.0MiB 26.05MiB 26.09MiB 26.11MiB 26.14MiB -1.88697
('socket_to_socket_blackhole', 'baseline', '31331e9f-bca0-46af-99f0-920416b35a65') 202 25.77MiB 127.64KiB 25.34MiB 25.8MiB 25.89MiB 25.91MiB 25.95MiB 25.95MiB -1.11029
('socket_to_socket_blackhole', 'baseline', 'd87f6515-3785-407a-9dc2-2af0b7189f1d') 202 25.58MiB 130.44KiB 25.26MiB 25.59MiB 25.71MiB 25.84MiB 25.89MiB 25.94MiB -0.0395912
('socket_to_socket_blackhole', 'comparison', '460e30fa-6a3e-4529-ac7a-b3587c353c45') 202 25.53MiB 104.53KiB 25.09MiB 25.54MiB 25.63MiB 25.64MiB 25.68MiB 25.69MiB -1.73784
('socket_to_socket_blackhole', 'comparison', '9387394a-82f7-41d4-b104-c3fa1cb9c621') 202 25.21MiB 121.4KiB 24.73MiB 25.21MiB 25.35MiB 25.4MiB 25.44MiB 25.48MiB -0.412202
('socket_to_socket_blackhole', 'comparison', 'fde6ee7c-6369-4a0e-8cc2-99102474866b') 202 25.2MiB 227.45KiB 24.85MiB 25.11MiB 25.52MiB 25.55MiB 25.64MiB 25.65MiB 0.440077
('splunk_hec_indexer_ack_blackhole', 'baseline', 'ab39f5d5-d984-4442-89ee-f5eabe44e75c') 200 23.84MiB 309.68KiB 23.15MiB 23.87MiB 24.21MiB 24.29MiB 24.45MiB 24.67MiB -0.159815
('splunk_hec_to_splunk_hec_logs_noack', 'baseline', '659c1831-9265-4ccc-90e6-0ac60b0db515') 200 23.84MiB 329.27KiB 23.06MiB 23.84MiB 24.27MiB 24.39MiB 24.57MiB 24.91MiB 0.118079
('splunk_hec_to_splunk_hec_logs_noack', 'comparison', 'c7348c1c-52a6-42fb-b051-9848b666c66a') 204 23.84MiB 331.37KiB 23.06MiB 23.85MiB 24.24MiB 24.37MiB 24.58MiB 24.6MiB -0.22278
('splunk_hec_to_splunk_hec_logs_noack', 'comparison', 'eacd149d-dba2-4271-8f6d-cf889932ebb3') 204 23.84MiB 320.51KiB 23.08MiB 23.87MiB 24.19MiB 24.34MiB 24.48MiB 24.6MiB -0.251453
('splunk_hec_indexer_ack_blackhole', 'comparison', '09d4ab2d-be6e-448b-b7aa-9df05abee1dd') 200 23.84MiB 334.83KiB 23.06MiB 23.85MiB 24.27MiB 24.33MiB 24.49MiB 24.6MiB -0.100454
('splunk_hec_to_splunk_hec_logs_acks', 'comparison', '21178ef3-48e0-45ff-997d-083e1ba89916') 203 23.84MiB 347.41KiB 22.94MiB 23.84MiB 24.33MiB 24.4MiB 24.48MiB 24.6MiB -0.0367581
('splunk_hec_to_splunk_hec_logs_noack', 'baseline', '1c9027ec-e766-438f-a977-8c6da5becd78') 204 23.84MiB 315.72KiB 23.06MiB 23.84MiB 24.23MiB 24.33MiB 24.45MiB 24.6MiB -0.127011
('splunk_hec_indexer_ack_blackhole', 'comparison', '168e2efd-13e1-42b8-85b9-a54d985ed78e') 200 23.84MiB 324.33KiB 23.06MiB 23.87MiB 24.21MiB 24.3MiB 24.48MiB 24.6MiB -0.265888
('splunk_hec_to_splunk_hec_logs_acks', 'baseline', '6e39f931-3557-4169-b4cc-b5dbb4cddf78') 200 23.84MiB 359.89KiB 22.93MiB 23.84MiB 24.24MiB 24.4MiB 24.6MiB 24.75MiB -0.186936
('splunk_hec_indexer_ack_blackhole', 'baseline', '0f6fe019-4ba9-46a5-8aa3-49d94b7d2941') 200 23.84MiB 331.48KiB 22.94MiB 23.84MiB 24.27MiB 24.37MiB 24.51MiB 24.64MiB -0.140805
('splunk_hec_to_splunk_hec_logs_acks', 'comparison', '8f598b9f-9c6b-421b-9356-b07db7b95422') 203 23.84MiB 616.98KiB 21.25MiB 23.84MiB 24.33MiB 24.37MiB 26.08MiB 26.34MiB -0.153526
('splunk_hec_to_splunk_hec_logs_acks', 'comparison', '078c4ea4-b340-427b-bb4c-fd28abca7452') 203 23.84MiB 358.86KiB 22.79MiB 23.85MiB 24.24MiB 24.39MiB 24.61MiB 24.81MiB -0.0486836
('splunk_hec_indexer_ack_blackhole', 'comparison', 'c6d9e896-bf84-48ca-8d4c-56c206e1d633') 200 23.84MiB 305.01KiB 22.94MiB 23.86MiB 24.21MiB 24.27MiB 24.4MiB 24.57MiB -0.354833
('splunk_hec_to_splunk_hec_logs_noack', 'baseline', '1dd8993f-7bdd-4f8d-b4e7-dd28f1ca7237') 200 23.84MiB 324.83KiB 23.0MiB 23.84MiB 24.24MiB 24.32MiB 24.48MiB 24.6MiB -0.247756
('splunk_hec_to_splunk_hec_logs_acks', 'baseline', '82bfc23f-1bc1-4faa-8794-ff685c358aad') 200 23.84MiB 365.39KiB 22.68MiB 23.84MiB 24.25MiB 24.38MiB 24.66MiB 24.84MiB -0.161645
('splunk_hec_to_splunk_hec_logs_acks', 'baseline', '63b41bb7-f99b-4cfb-900d-e16f5ac1f95c') 205 23.83MiB 352.84KiB 22.3MiB 23.85MiB 24.24MiB 24.36MiB 24.57MiB 24.61MiB -0.518749
('splunk_hec_indexer_ack_blackhole', 'baseline', 'd468ba60-942f-4352-88f4-9a29287b29aa') 199 23.83MiB 1.38MiB 9.55MiB 23.85MiB 24.24MiB 24.37MiB 24.6MiB 36.14MiB -2.02124
('splunk_hec_to_splunk_hec_logs_noack', 'comparison', '1d9e5a10-63dd-4e2f-bdcc-8d875158559a') 179 23.73MiB 1.3MiB 7.39MiB 23.87MiB 24.21MiB 24.27MiB 24.4MiB 24.6MiB -11.4451
('http_to_http_json', 'comparison', '27e327f2-832b-47c5-8de1-6b28d9a64e82') 205 20.89MiB 786.2KiB 17.65MiB 20.9MiB 21.72MiB 22.19MiB 22.64MiB 22.83MiB -0.336526
('http_to_http_json', 'baseline', '54c44e8d-f7d5-448b-bcb2-62dfc024f39a') 201 20.77MiB 788.32KiB 18.44MiB 20.79MiB 21.7MiB 22.0MiB 22.53MiB 22.61MiB -0.158749
('http_to_http_json', 'baseline', '2365a74b-edcd-4c63-b667-412a7d6c4160') 204 20.65MiB 723.77KiB 18.86MiB 20.67MiB 21.61MiB 21.82MiB 22.1MiB 22.47MiB 0.0578184
('http_to_http_json', 'baseline', 'c633f087-c1ac-43d9-9f12-ddb9df9a2f19') 190 20.54MiB 1.23MiB 7.34MiB 20.64MiB 21.65MiB 21.84MiB 22.17MiB 22.23MiB -6.59723
('http_to_http_json', 'comparison', '7e14e98e-c1fd-464b-8453-6055ad1caa30') 229 20.41MiB 726.56KiB 18.71MiB 20.36MiB 21.34MiB 21.57MiB 22.22MiB 22.93MiB 0.344752
('http_to_http_json', 'comparison', '6935451a-f27d-4faa-8e9c-93b87bc42d01') 87 20.05MiB 1.64MiB 6.07MiB 20.27MiB 20.95MiB 21.18MiB 21.54MiB 21.73MiB -7.36334
('http_to_http_acks', 'comparison', '069e8d03-cb5c-41a8-899f-a9f814ba143f') 156 17.83MiB 7.44MiB 899.76KiB 19.02MiB 26.61MiB 29.86MiB 30.74MiB 30.75MiB -0.17249
('http_to_http_acks', 'baseline', '81410ac7-4394-47a9-8080-af22278548a5') 7 17.44MiB 9.75MiB 1.1MiB 20.12MiB 25.82MiB 28.29MiB 30.26MiB 30.75MiB -0.588245
('http_to_http_acks', 'comparison', '6c5af729-07aa-4f47-8448-5e89a75b6de9') 13 16.5MiB 8.88MiB 534.03KiB 17.63MiB 24.95MiB 27.13MiB 29.72MiB 30.37MiB -0.344329
('syslog_log2metric_splunk_hec_metrics', 'baseline', '100c18f4-72f7-4755-be9d-bc7f5cd45fc1') 200 16.43MiB 38.62KiB 16.31MiB 16.43MiB 16.47MiB 16.48MiB 16.52MiB 16.53MiB 0.0663383
('syslog_log2metric_splunk_hec_metrics', 'comparison', 'b9186170-057b-4e6e-a355-3a63b1966c10') 200 16.23MiB 53.02KiB 16.07MiB 16.22MiB 16.28MiB 16.32MiB 16.4MiB 16.41MiB 0.724256
('syslog_humio_logs', 'comparison', 'e10d4ecf-9149-43f9-9470-9b206d31e4d4') 204 16.18MiB 82.12KiB 16.09MiB 16.17MiB 16.26MiB 16.35MiB 16.52MiB 16.64MiB 2.59105
('syslog_log2metric_splunk_hec_metrics', 'comparison', '2e8dc3bc-925e-4394-b882-febe3d53567a') 200 16.14MiB 46.06KiB 16.01MiB 16.14MiB 16.2MiB 16.22MiB 16.25MiB 16.28MiB 0.155873
('syslog_humio_logs', 'comparison', '640901ff-324a-4c1e-834e-ab5a90a1f667') 204 16.14MiB 38.69KiB 16.05MiB 16.14MiB 16.18MiB 16.2MiB 16.23MiB 16.27MiB 0.24955
('syslog_splunk_hec_logs', 'comparison', 'ab0555c9-226e-4005-9e42-87e2ee2227c9') 200 16.07MiB 54.2KiB 15.95MiB 16.07MiB 16.14MiB 16.16MiB 16.21MiB 16.22MiB 0.461074
('syslog_log2metric_splunk_hec_metrics', 'baseline', '689cf49c-228d-400f-993a-72d5b2436e62') 200 16.06MiB 45.49KiB 15.94MiB 16.06MiB 16.11MiB 16.13MiB 16.16MiB 16.2MiB 0.0620997
('syslog_splunk_hec_logs', 'comparison', 'e432891b-0e64-43ff-beb8-63591d5f9502') 200 15.92MiB 42.0KiB 15.8MiB 15.92MiB 15.97MiB 15.98MiB 16.0MiB 16.02MiB -0.138162
('syslog_humio_logs', 'comparison', '08be7be5-335b-4ea3-a8d1-3e2c3bc137e8') 204 15.89MiB 38.03KiB 15.75MiB 15.89MiB 15.94MiB 15.94MiB 15.97MiB 15.97MiB -0.324094
('syslog_log2metric_splunk_hec_metrics', 'baseline', '326e971c-4250-4fe1-b25e-e15b13089b47') 200 15.88MiB 54.67KiB 15.7MiB 15.88MiB 15.94MiB 15.97MiB 16.03MiB 16.06MiB 0.285773
('syslog_splunk_hec_logs', 'baseline', '87b780fd-7019-454c-988f-abe2805ada96') 204 15.86MiB 74.4KiB 15.74MiB 15.86MiB 15.92MiB 15.94MiB 16.21MiB 16.29MiB 2.89853
('syslog_splunk_hec_logs', 'baseline', '47695263-5ab3-40ac-ba2d-f6eb784a6815') 204 15.85MiB 41.45KiB 15.73MiB 15.84MiB 15.89MiB 15.9MiB 16.0MiB 16.05MiB 1.23097
('syslog_splunk_hec_logs', 'comparison', '8fe3cc0f-b3be-4d84-b64e-54dd98aac87e') 200 15.81MiB 78.43KiB 15.68MiB 15.81MiB 15.85MiB 15.87MiB 16.24MiB 16.37MiB 4.6677
('syslog_splunk_hec_logs', 'baseline', '52940b04-4f28-4cc2-86ea-db2409f9dba2') 204 15.77MiB 54.7KiB 15.42MiB 15.77MiB 15.81MiB 15.83MiB 15.95MiB 16.04MiB -0.369842
('syslog_humio_logs', 'baseline', '54702b1e-cc1c-4cad-a440-a6253a61b94f') 202 15.73MiB 52.63KiB 15.56MiB 15.73MiB 15.8MiB 15.81MiB 15.85MiB 15.87MiB 0.110272
('syslog_log2metric_splunk_hec_metrics', 'comparison', '6b18f17c-06f3-454e-81bc-318ac6cadba0') 81 15.54MiB 4.06MiB 25.23KiB 16.65MiB 16.71MiB 16.72MiB 16.81MiB 16.81MiB -3.51987
('syslog_humio_logs', 'baseline', 'c4d8a94f-a70f-4134-a986-ee0cb8e35253') 82 15.14MiB 3.77MiB 49.56KiB 16.12MiB 16.22MiB 16.32MiB 16.34MiB 16.34MiB -3.66462
('http_to_http_acks', 'baseline', '91594c38-2350-4bce-96d5-ebff7b0d1f00') 5 14.96MiB 11.58MiB 1.03MiB 18.03MiB 25.67MiB 25.89MiB 26.06MiB 26.11MiB -0.370828
('syslog_humio_logs', 'baseline', '047025f3-b0fe-4a75-a224-3c183bdadbf3') 86 14.76MiB 4.62MiB 12.42KiB 16.27MiB 16.3MiB 16.32MiB 16.33MiB 16.34MiB -2.84743
('splunk_hec_route_s3', 'baseline', 'dce37da0-627a-4566-af28-d542e746874d') 205 14.53MiB 2.12MiB 9.31MiB 14.6MiB 17.31MiB 17.83MiB 18.43MiB 19.61MiB -0.0288392
('splunk_hec_route_s3', 'comparison', '89d728cc-d867-4d69-8466-001cf0db2f60') 204 14.38MiB 2.18MiB 10.03MiB 14.5MiB 17.27MiB 17.68MiB 18.23MiB 18.97MiB -0.0340457
('splunk_hec_route_s3', 'baseline', 'd05727e7-30e7-4a02-ba20-a95564d87185') 204 14.36MiB 2.2MiB 8.92MiB 14.3MiB 17.06MiB 18.05MiB 19.07MiB 19.58MiB 0.0123952
('splunk_hec_route_s3', 'comparison', '336dbba4-a0b7-449f-a3ec-f782662882c8') 109 14.22MiB 2.07MiB 7.21MiB 14.24MiB 17.05MiB 17.29MiB 17.48MiB 17.74MiB -0.374438
('splunk_hec_route_s3', 'comparison', 'b48d4bc9-d830-48a4-a606-ef4ff022e50f') 200 14.03MiB 2.23MiB 5.97MiB 14.02MiB 16.81MiB 17.51MiB 18.16MiB 18.68MiB -0.19165
('splunk_hec_route_s3', 'baseline', '964c129a-d759-4e34-a818-e621ce6cb25f') 12 13.99MiB 2.87MiB 5.85MiB 14.44MiB 16.42MiB 16.45MiB 16.46MiB 16.46MiB -2.2847
('syslog_log2metric_humio_metrics', 'baseline', 'a01f0aac-d533-4564-8597-08994317d222') 202 13.11MiB 81.35KiB 12.88MiB 13.12MiB 13.21MiB 13.24MiB 13.28MiB 13.32MiB -0.0490077
('syslog_log2metric_humio_metrics', 'comparison', '3481d4a7-b697-4a81-9287-924d748e9a69') 200 12.95MiB 89.56KiB 12.71MiB 12.95MiB 13.07MiB 13.08MiB 13.13MiB 13.19MiB -0.141693
('syslog_log2metric_humio_metrics', 'comparison', '8d563d27-a662-4fda-8943-64a595ace379') 200 12.94MiB 99.5KiB 12.75MiB 12.94MiB 13.05MiB 13.08MiB 13.24MiB 13.32MiB 0.712585
('syslog_log2metric_humio_metrics', 'baseline', '2a4c65cd-7e62-44f6-8caa-a526d9514e57') 202 12.93MiB 105.23KiB 12.67MiB 12.92MiB 13.03MiB 13.07MiB 13.4MiB 13.51MiB 2.05395
('syslog_log2metric_humio_metrics', 'comparison', '17c70429-e0f4-4031-81ec-548f3959dc1b') 79 12.64MiB 2.49MiB 50.17KiB 13.18MiB 13.32MiB 13.39MiB 13.48MiB 13.49MiB -4.64204
('syslog_log2metric_humio_metrics', 'baseline', 'bd24c400-255d-47c4-bf08-2be67ae0b7ce') 78 12.0MiB 2.95MiB 25.19KiB 12.77MiB 12.86MiB 12.87MiB 12.9MiB 12.93MiB -3.74567
('syslog_regex_logs2metric_ddmetrics', 'baseline', 'e8ebfb87-83fc-4dc5-b533-36311f727755') 200 11.99MiB 180.02KiB 11.63MiB 12.08MiB 12.17MiB 12.18MiB 12.23MiB 12.24MiB -0.814445
('syslog_regex_logs2metric_ddmetrics', 'comparison', 'd790f77c-2e43-4cb3-9b5b-69ecf3811714') 200 11.91MiB 145.5KiB 11.6MiB 11.95MiB 12.04MiB 12.09MiB 12.23MiB 12.24MiB -0.347964
('syslog_regex_logs2metric_ddmetrics', 'baseline', '7cb68b34-8f1c-4797-a4f6-8cc61d08683e') 200 11.79MiB 88.3KiB 11.62MiB 11.79MiB 11.9MiB 11.94MiB 12.0MiB 12.03MiB 0.248335
('syslog_regex_logs2metric_ddmetrics', 'comparison', 'b2d1e55b-58ee-4456-8c8d-4ead4425997a') 200 11.78MiB 74.15KiB 11.62MiB 11.78MiB 11.86MiB 11.89MiB 11.93MiB 12.03MiB 0.0919047
('syslog_regex_logs2metric_ddmetrics', 'comparison', '1c0fcd39-84d3-4455-a8b8-220206b3cd2c') 200 11.75MiB 57.15KiB 11.62MiB 11.75MiB 11.83MiB 11.84MiB 11.86MiB 11.87MiB -0.000376923
('syslog_regex_logs2metric_ddmetrics', 'baseline', '9b36d87b-e2dd-42a4-b3f0-449eeacedbcf') 200 11.57MiB 108.53KiB 11.35MiB 11.53MiB 11.7MiB 11.75MiB 11.83MiB 11.91MiB 0.62917
('syslog_loki', 'baseline', '7738a765-5452-4e94-8d7d-54da77d3befa') 202 11.51MiB 41.11KiB 11.39MiB 11.51MiB 11.56MiB 11.57MiB 11.61MiB 11.63MiB -0.0750169
('syslog_loki', 'baseline', 'db68a517-6be4-4882-a448-2ed95aabe964') 231 11.34MiB 236.03KiB 10.75MiB 11.42MiB 11.53MiB 11.58MiB 11.61MiB 11.69MiB -1.46361
('syslog_loki', 'baseline', 'deea39b2-ecbe-4695-943b-4a8d2d3d0d19') 202 11.33MiB 147.93KiB 10.75MiB 11.36MiB 11.43MiB 11.44MiB 11.46MiB 11.47MiB -2.56943
('syslog_loki', 'comparison', 'b5015dae-c36f-4f38-9eed-af10d903ce91') 200 11.32MiB 183.68KiB 11.01MiB 11.39MiB 11.51MiB 11.53MiB 11.56MiB 11.57MiB -0.33671
('syslog_loki', 'comparison', '6ad0a445-9973-46ed-b03e-c444c3fd3f64') 77 11.13MiB 1.01MiB 2.9MiB 11.23MiB 11.37MiB 11.59MiB 11.65MiB 11.67MiB -7.54867
('syslog_loki', 'comparison', 'f9c74628-a30a-4f1d-af58-96e6fb59cd7c') 200 11.13MiB 181.37KiB 10.94MiB 11.06MiB 11.48MiB 11.51MiB 11.56MiB 11.57MiB 1.4868
('splunk_transforms_splunk3', 'baseline', '3e8091a0-00fb-4833-a100-fda11b2de524') 203 9.71MiB 1.76MiB 6.06MiB 9.86MiB 11.92MiB 12.29MiB 12.84MiB 13.48MiB -0.122585
('splunk_transforms_splunk3', 'comparison', '633fe534-8138-46b0-839b-da98f0050616') 202 9.64MiB 1.8MiB 5.72MiB 9.77MiB 11.82MiB 12.52MiB 13.39MiB 14.29MiB 0.013802
('splunk_transforms_splunk3', 'baseline', '09c9eb0b-fc1f-4803-a906-7e81e3d63873') 203 9.59MiB 1.82MiB 4.56MiB 9.45MiB 11.94MiB 12.41MiB 13.21MiB 14.02MiB 0.0418342
('splunk_transforms_splunk3', 'baseline', '8dfe91fb-b6f8-4f36-a0ba-b5afa2c00d08') 203 9.53MiB 1.76MiB 5.68MiB 9.59MiB 12.02MiB 12.37MiB 12.99MiB 13.69MiB 0.0777581
('splunk_transforms_splunk3', 'comparison', 'e319ecf9-3f60-45c5-b7d9-9d5dae96c8d2') 202 9.43MiB 1.88MiB 5.09MiB 9.35MiB 11.87MiB 12.44MiB 13.33MiB 13.98MiB 0.0612442
('splunk_transforms_splunk3', 'comparison', '7c1f055a-dc0e-4d19-9f61-2ecf39d46b23') 202 9.41MiB 1.72MiB 4.98MiB 9.52MiB 11.77MiB 12.02MiB 12.97MiB 13.13MiB -0.11124
('http_datadog_filter_blackhole', 'comparison', '8d12e3db-cad1-49ac-867e-06409c50768f') 163 5.9MiB 639.77KiB 3.13MiB 5.89MiB 6.73MiB 6.89MiB 7.25MiB 7.5MiB -0.294182
('http_datadog_filter_blackhole', 'comparison', '127c0a7c-9ff8-4795-ba2e-550f5446c9b1') 201 5.88MiB 620.54KiB 4.61MiB 5.81MiB 6.68MiB 6.96MiB 7.52MiB 8.18MiB 0.632228
('http_datadog_filter_blackhole', 'comparison', 'b23eeeea-dfce-4773-81f1-172708d331e5') 202 5.87MiB 605.35KiB 4.18MiB 5.87MiB 6.63MiB 6.92MiB 7.49MiB 7.5MiB 0.309255
('http_datadog_filter_blackhole', 'baseline', 'e0cba486-6ef9-48bf-a37b-8f3e2fa2456f') 203 5.81MiB 619.86KiB 4.4MiB 5.76MiB 6.66MiB 6.98MiB 7.47MiB 7.97MiB 0.759535
('http_datadog_filter_blackhole', 'baseline', '110bd2eb-8bfb-42b8-850a-564bbe46a424') 202 5.73MiB 581.94KiB 4.31MiB 5.65MiB 6.48MiB 6.73MiB 7.07MiB 7.11MiB 0.279739
('http_pipelines_no_grok_blackhole', 'baseline', 'e4aae8ce-5e83-4cd3-b8d8-229e0ac41371') 200 5.69MiB 579.29KiB 4.33MiB 5.67MiB 6.38MiB 6.56MiB 7.1MiB 7.57MiB 0.269477
('http_pipelines_no_grok_blackhole', 'baseline', 'a940c3c9-02ac-47f3-b5de-9a0efec1bb5d') 132 5.67MiB 708.45KiB 1.45MiB 5.57MiB 6.46MiB 6.72MiB 6.98MiB 7.56MiB -1.41612
('http_pipelines_no_grok_blackhole', 'comparison', '55fa5719-0c2e-4db7-9426-4adbf0fd9d07') 200 5.65MiB 603.74KiB 4.25MiB 5.65MiB 6.53MiB 6.64MiB 6.99MiB 7.09MiB 0.251807
('http_datadog_filter_blackhole', 'baseline', 'f730e363-ef72-48b3-916b-06120e4a96c6') 202 5.6MiB 592.94KiB 4.14MiB 5.52MiB 6.35MiB 6.53MiB 7.25MiB 7.33MiB 0.459511
('http_pipelines_no_grok_blackhole', 'baseline', '9fc63c07-0410-417f-b4fe-55e54ed11b71') 200 5.53MiB 573.21KiB 3.95MiB 5.5MiB 6.17MiB 6.56MiB 6.97MiB 7.16MiB 0.335979
('http_pipelines_no_grok_blackhole', 'comparison', 'b07b4beb-0970-4656-84fc-2048acbc66cc') 200 5.45MiB 584.76KiB 4.07MiB 5.41MiB 6.17MiB 6.46MiB 6.94MiB 7.16MiB 0.42857
('http_pipelines_no_grok_blackhole', 'comparison', 'f4105de6-c38e-4782-a2df-8735aa82e04a') 22 5.25MiB 1.23MiB 552.36KiB 5.33MiB 6.22MiB 6.24MiB 6.8MiB 6.95MiB -2.75809
('http_pipelines_blackhole', 'baseline', '9d35fc31-ed5a-4e68-9e85-2e2615cb8877') 192 642.11KiB 487.96KiB 15.99KiB 543.49KiB 1.3MiB 1.53MiB 2.08MiB 2.51MiB 1.08408
('http_pipelines_blackhole', 'comparison', 'ab54ec46-8dda-4613-908f-1b3b5f966339') 195 640.24KiB 426.4KiB 15.99KiB 569.38KiB 1.11MiB 1.39MiB 1.82MiB 2.38MiB 0.984527
('http_pipelines_blackhole_acks', 'comparison', 'd6f34d6f-6e9c-4103-bc13-ca8fdfb159af') 195 637.87KiB 472.2KiB 15.99KiB 550.68KiB 1.27MiB 1.52MiB 1.75MiB 2.5MiB 0.930898
('http_pipelines_blackhole_acks', 'baseline', '6025dcc4-7288-4e16-8e5f-3e8426d7b114') 194 635.13KiB 459.16KiB 15.99KiB 550.39KiB 1.26MiB 1.49MiB 1.71MiB 2.36MiB 0.854318
('http_pipelines_blackhole_acks', 'comparison', '5e37c675-f41c-4f30-967c-73c5b00a499e') 197 629.71KiB 505.17KiB 15.99KiB 520.3KiB 1.34MiB 1.61MiB 2.08MiB 2.5MiB 1.15435
('http_pipelines_blackhole', 'baseline', '81123f19-7841-4df2-8714-84d6fec5e44e') 196 628.68KiB 425.13KiB 30.89KiB 569.94KiB 1.16MiB 1.48MiB 1.7MiB 1.92MiB 0.805889
('http_pipelines_blackhole', 'baseline', '2a2b01fd-c8f1-4235-8a7f-bd1add71787b') 198 626.4KiB 450.17KiB 15.99KiB 545.98KiB 1.15MiB 1.57MiB 1.96MiB 2.45MiB 1.19184
('http_pipelines_blackhole', 'comparison', '6900dcd9-47b5-4e42-a326-8b5277dab8f0') 197 624.04KiB 436.29KiB 15.99KiB 535.21KiB 1.21MiB 1.43MiB 1.64MiB 1.81MiB 0.692299
('http_pipelines_blackhole_acks', 'baseline', 'e36f572f-175f-4bd6-8181-41984518a790') 197 622.91KiB 468.83KiB 30.89KiB 520.3KiB 1.29MiB 1.51MiB 1.81MiB 1.88MiB 0.853575
('http_pipelines_blackhole', 'comparison', '942b074f-7968-4a53-b2dc-07bb7d071c64') 199 618.72KiB 418.14KiB 15.99KiB 554.51KiB 1.11MiB 1.21MiB 1.93MiB 2.5MiB 1.17245
('http_pipelines_blackhole_acks', 'baseline', '6f53fb6a-341f-4cac-8ba4-aacdb6176b52') 199 614.19KiB 468.98KiB 15.99KiB 540.7KiB 1.26MiB 1.45MiB 2.02MiB 2.21MiB 1.00305
('http_pipelines_blackhole_acks', 'comparison', '79cd9954-905b-49af-9de9-0acf7addea8a') 196 610.43KiB 450.98KiB 15.99KiB 520.3KiB 1.26MiB 1.4MiB 1.58MiB 1.9MiB 0.638267

@blt blt merged commit 11dddce into master Mar 5, 2022
@blt blt deleted the transform_route_benchmarks branch March 5, 2022 23:49
blt added a commit that referenced this pull request Mar 5, 2022
This commit is a follow-up to #11697. We don't actually need to iterate an
`IndexMap` repeatedly here as we never actually use the map capabilities of the
conditions field: a vec is enough. This is worth a small boost in the micro but
I suspect nothing in the macro.

If we are to actually optimize route we'll probably need to run multiple copies
of them, run an `EventArray` through it and/or dramatically improve the behavior
of `condition.check`.

Signed-off-by: Brian L. Troutwine <brian@troutwine.us>
blt added a commit that referenced this pull request Mar 6, 2022
This commit is a follow-up to #11697. We don't actually need to iterate an
`IndexMap` repeatedly here as we never actually use the map capabilities of the
conditions field: a vec is enough. This is worth a small boost in the micro but
I suspect nothing in the macro.

If we are to actually optimize route we'll probably need to run multiple copies
of them, run an `EventArray` through it and/or dramatically improve the behavior
of `condition.check`.

Signed-off-by: Brian L. Troutwine <brian@troutwine.us>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
domain: core Anything related to core crates i.e. vector-core, core-common, etc
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants