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(config): improve config schema output with more precise unevaluatedProperties + schema ref flattening #17026

Merged

Conversation

tobz
Copy link
Contributor

@tobz tobz commented Mar 31, 2023

This PR is a beefy one, so bear with me...

Context

As part of the work to support generating a "closed" schema (a schema that disallows unknown fields), we had previously implemented support for emitting unevaluatedProperties: false within the schema, via a schema visitor, which took the raw, generated schema and traversed it, figuring out which (sub)schemas should be marked, and which should not.

This logic was fairly simplistic, which led to cases where the logic did not correctly account for the schema structure and either mistakenly applied or mistakenly removed the annotation, leading to some parts of the schema incorrectly disallowing unknown fields.

Solution

This PR does two primary things:

  • adds a new visitor, InlineSingleUseReferencesVisitor, for flattening out schema references where the schema being referred to is only referred to once
  • refactors the existing visitor for unevaluated properties, DisallowedUnevaluatedPropertiesVisitor, to denormalize schema references (by flattening) depending on if the schema reference would cause the referred-to schema to be incorrectly unmarked, thereby allowing unevaluated properties to become allowed

Inlining single-use schema references

The visitor documentation covers this, but essentially, we generally create one schema definition per Rust type, which can mean a lot of types that are specific to, say, a component, are extracted as a schema definition and then referred to via a schema reference... but only once, from that related component.

This is inefficient because you have to "chase" schema references when looking at the overall schema, but also from an anti-don't-repeat-yourself standpoint: there's no need to make it a definition because it's never reused.

As well, it turns out that it makes things slightly faster in the visitor for disallowing unevaluated properties by not having to consider single-use schema references.

Refactoring the unevaluated properties visitor to denormalize schema references to avoid clobbering marked schemas

For shorthand, we refer to a "marked" schema as one that's been "marked" with unevaluatedProperties: false. As a refresher, the visitor would visit all schema objects in a depth-first search, marking object schemas with unevaluatedProperties: false, and then work its way back up the graph, unmarking object schemas as necessary in scenario where the referring schema would have the unevaluatedProperties: false marking.

Where this logic fell down is that, in some cases, a single schema definition could be referred to in multiple locations, where one location might dictate that the referred-to schema needs to be unmarked, even if the other references would have left the referred-to schema as-is.

We've refactored the visitor so that it does a pass of the schema before visiting, and builds a "flattening eligibility map", which is a map of referred-to schemas and the schemas which refer to them, and whether or not those referrers would cause the schema to be unmarked. Using this map, we can calculate which schema references should instead be denormalized, or flattened, where we copy the referred-to schema and inline it. This allows us to unmark a given referred-to schema at the point of use, while leaving the other references to the schema untouched.

The code takes some efforts to try and figure out which approach is more efficient: flattening all of the references that would cause the schema to be unmarked, or all of the references that would cause the sceham to not be unmarked.

Reviewer notes

I've added unit tests to both of these visitors, and I would suggest examining those first to familiarize yourself with what the behavior of each visitor is, and what it's attempting to do.

The overarching principle to remember is that, in JSON Schema, it only makes sense to apply unevaluatedProperties to object schemas -- schemas which deal with struct fields, essentially -- but if those object schemas are flattened together, using what we would call "subschema validation", each subschema generally meant to only validate a portion of the input, but during validation, it sees the entire input. This requires us to move the unevaluatedProperties annotation from the object schemas themselves to the parent, so that each subschema doesn't inadvertently believe it's gotten "unevaluated properties" just because it's being used with subschema validation.

Beyond that, there's a lot of helper code that was written to try and compartmentalize the various preprocessing steps involved before the visitors perform their main visiting logic. There's stuff like SchemaReference and SchemaScopeStack that aren't super intuitive, because they bounce between one concept -- a schema reference -- and the idea of a schema reference being "active". Don't hesitate to point these things out if you feel like they're too opaque, but do know that I plan to almost immediately follow this PR up with some refactoring to make those areas more concise and correct.

Additionally, some of the machine-generated base docs have changed. I also plan on investigating that in the aforementioned follow-up PR, but left the change as-is because it's fairly benign.

@tobz tobz requested a review from a team March 31, 2023 20:45
@tobz tobz marked this pull request as draft March 31, 2023 20:45
@netlify
Copy link

netlify bot commented Mar 31, 2023

Deploy Preview for vector-project canceled.

Name Link
🔨 Latest commit 51d833e
🔍 Latest deploy log https://app.netlify.com/sites/vector-project/deploys/643552d38f694a0008d3fa0b

@datadog-vectordotdev
Copy link

datadog-vectordotdev bot commented Mar 31, 2023

Datadog Report

Branch report: tobz/config-schema-more-precise-unevaluated-properties-visitor
Commit report: 81074f5

vector: 0 Failed, 0 New Flaky, 1862 Passed, 0 Skipped, 10m 23.56s Wall Time

@github-actions
Copy link

Regression Detector Results

Run ID: 974c8538-0bf8-4235-bd54-8d8a9472caf9
Baseline: 00c0316
Comparison: 39ca8db
Total vector CPUs: 7

Explanation

A regression 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.

The table below, if present, lists those experiments that have experienced a statistically significant change in mean optimization goal performance between baseline and comparison SHAs with 90.00% 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.00% change in their mean optimization goal are discarded. An experiment is erratic if its coefficient of variation is greater than 0.1. The abbreviated table will be omitted if no interesting change is observed.

Changes in experiment optimization goals with confidence ≥ 90.00% and |Δ mean %| ≥ 5.00%:

experiment goal Δ mean Δ mean % confidence
http_text_to_http_json ingress throughput 1.44MiB/CPU-s 6.0 100.00%
Fine details of change detection per experiment.
experiment goal Δ 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
file_to_blackhole egress throughput 922.45KiB/CPU-s 16.17 100.00% 5.57MiB/CPU-s 4.64MiB/CPU-s 110.58KiB/CPU-s 0.0 0.832851 6.47MiB/CPU-s 4.21MiB/CPU-s 125.82KiB/CPU-s 1.106383 0.650496 True True
http_text_to_http_json ingress throughput 1.44MiB/CPU-s 6.00 100.00% 24.05MiB/CPU-s 713.23KiB/CPU-s 8.77KiB/CPU-s 0.0 0.028953 25.5MiB/CPU-s 635.15KiB/CPU-s 7.85KiB/CPU-s 0.0 0.024326 False False
datadog_agent_remap_blackhole_acks ingress throughput 1.0MiB/CPU-s 3.34 100.00% 29.98MiB/CPU-s 1.14MiB/CPU-s 14.33KiB/CPU-s 0.0 0.03792 30.98MiB/CPU-s 1021.06KiB/CPU-s 12.57KiB/CPU-s 0.0 0.032186 False False
socket_to_socket_blackhole ingress throughput 180.44KiB/CPU-s 1.31 100.00% 13.44MiB/CPU-s 227.48KiB/CPU-s 2.8KiB/CPU-s 0.0 0.016528 13.62MiB/CPU-s 287.33KiB/CPU-s 3.54KiB/CPU-s 0.0 0.020606 False False
otlp_http_to_blackhole ingress throughput 19.93KiB/CPU-s 1.27 100.00% 1.53MiB/CPU-s 120.93KiB/CPU-s 1.49KiB/CPU-s 0.0 0.077112 1.55MiB/CPU-s 108.35KiB/CPU-s 1.33KiB/CPU-s 0.0 0.068227 False False
datadog_agent_remap_datadog_logs_acks ingress throughput 215.8KiB/CPU-s 0.65 100.00% 32.34MiB/CPU-s 1.04MiB/CPU-s 13.08KiB/CPU-s 0.0 0.032095 32.55MiB/CPU-s 1.43MiB/CPU-s 18.03KiB/CPU-s 0.0 0.043961 False False
datadog_agent_remap_datadog_logs ingress throughput 180.17KiB/CPU-s 0.53 100.00% 32.93MiB/CPU-s 978.27KiB/CPU-s 12.04KiB/CPU-s 0.0 0.02901 33.11MiB/CPU-s 1.29MiB/CPU-s 16.22KiB/CPU-s 0.0 0.038881 False False
splunk_hec_route_s3 ingress throughput 63.94KiB/CPU-s 0.53 100.00% 11.69MiB/CPU-s 542.13KiB/CPU-s 6.67KiB/CPU-s 0.0 0.04528 11.75MiB/CPU-s 552.15KiB/CPU-s 6.79KiB/CPU-s 0.0 0.045872 False False
otlp_grpc_to_blackhole ingress throughput 5.12KiB/CPU-s 0.49 100.00% 1.03MiB/CPU-s 50.79KiB/CPU-s 639.96B/CPU-s 0.0 0.048388 1.03MiB/CPU-s 49.18KiB/CPU-s 619.59B/CPU-s 0.0 0.046621 False False
datadog_agent_remap_blackhole ingress throughput 102.28KiB/CPU-s 0.32 100.00% 31.15MiB/CPU-s 1.09MiB/CPU-s 13.71KiB/CPU-s 0.0 0.034929 31.25MiB/CPU-s 1.25MiB/CPU-s 15.72KiB/CPU-s 0.0 0.039911 False False
enterprise_http_to_http ingress throughput 7.37KiB/CPU-s 0.05 94.40% 13.62MiB/CPU-s 273.18KiB/CPU-s 3.36KiB/CPU-s 0.0 0.01959 13.62MiB/CPU-s 153.42KiB/CPU-s 1.89KiB/CPU-s 0.0 0.010996 False False
fluent_elasticsearch ingress throughput 3.44KiB/CPU-s 0.01 67.70% 45.41MiB/CPU-s 284.68KiB/CPU-s 3.46KiB/CPU-s 0.0 0.006121 45.41MiB/CPU-s 30.19KiB/CPU-s 376.28B/CPU-s 0.0 0.000649 False False
splunk_hec_to_splunk_hec_logs_acks ingress throughput 567.34B/CPU-s 0.00 7.30% 13.61MiB/CPU-s 352.36KiB/CPU-s 4.33KiB/CPU-s 0.0 0.025274 13.61MiB/CPU-s 343.38KiB/CPU-s 4.22KiB/CPU-s 0.0 0.024629 False False
splunk_hec_to_splunk_hec_logs_noack ingress throughput -958.98B/CPU-s -0.01 15.66% 13.61MiB/CPU-s 270.88KiB/CPU-s 3.33KiB/CPU-s 0.0 0.019429 13.61MiB/CPU-s 274.16KiB/CPU-s 3.37KiB/CPU-s 0.0 0.019665 False False
splunk_hec_indexer_ack_blackhole ingress throughput -2.18KiB/CPU-s -0.02 36.75% 13.62MiB/CPU-s 256.33KiB/CPU-s 3.15KiB/CPU-s 0.0 0.018383 13.61MiB/CPU-s 267.45KiB/CPU-s 3.29KiB/CPU-s 0.0 0.019183 False False
http_to_http_noack ingress throughput -3.5KiB/CPU-s -0.03 41.69% 13.61MiB/CPU-s 338.59KiB/CPU-s 4.17KiB/CPU-s 0.0 0.024291 13.61MiB/CPU-s 373.47KiB/CPU-s 4.82KiB/CPU-s 0.0 0.026799 False False
http_to_http_json ingress throughput -64.18KiB/CPU-s -0.46 100.00% 13.62MiB/CPU-s 229.79KiB/CPU-s 2.83KiB/CPU-s 0.0 0.016474 13.56MiB/CPU-s 306.03KiB/CPU-s 3.76KiB/CPU-s 0.0 0.022042 False False
syslog_regex_logs2metric_ddmetrics ingress throughput -30.82KiB/CPU-s -0.82 100.00% 3.65MiB/CPU-s 463.01KiB/CPU-s 5.7KiB/CPU-s 0.0 0.123871 3.62MiB/CPU-s 382.82KiB/CPU-s 4.71KiB/CPU-s 0.0 0.103271 True True
http_to_http_acks ingress throughput -69.54KiB/CPU-s -1.27 84.46% 5.33MiB/CPU-s 2.77MiB/CPU-s 34.97KiB/CPU-s 0.0 0.520406 5.26MiB/CPU-s 2.72MiB/CPU-s 34.24KiB/CPU-s 0.0 0.516123 True False
syslog_log2metric_splunk_hec_metrics ingress throughput -134.85KiB/CPU-s -1.42 100.00% 9.26MiB/CPU-s 279.1KiB/CPU-s 3.43KiB/CPU-s 0.0 0.02944 9.13MiB/CPU-s 427.2KiB/CPU-s 5.26KiB/CPU-s 0.0 0.045713 False False
syslog_splunk_hec_logs ingress throughput -140.69KiB/CPU-s -1.53 100.00% 8.96MiB/CPU-s 282.48KiB/CPU-s 3.47KiB/CPU-s 0.0 0.030775 8.83MiB/CPU-s 278.26KiB/CPU-s 3.42KiB/CPU-s 0.0 0.030787 False False
syslog_log2metric_humio_metrics ingress throughput -144.59KiB/CPU-s -2.27 100.00% 6.23MiB/CPU-s 306.46KiB/CPU-s 3.77KiB/CPU-s 0.0 0.048045 6.09MiB/CPU-s 217.17KiB/CPU-s 2.67KiB/CPU-s 0.0 0.034836 False False
syslog_loki ingress throughput -235.41KiB/CPU-s -2.75 100.00% 8.35MiB/CPU-s 275.3KiB/CPU-s 3.39KiB/CPU-s 0.0 0.032182 8.12MiB/CPU-s 265.65KiB/CPU-s 3.27KiB/CPU-s 0.0 0.031933 False False
syslog_humio_logs ingress throughput -267.3KiB/CPU-s -2.92 100.00% 8.95MiB/CPU-s 308.67KiB/CPU-s 3.8KiB/CPU-s 0.0 0.033678 8.69MiB/CPU-s 473.76KiB/CPU-s 5.83KiB/CPU-s 0.0 0.053245 False False

@tobz tobz force-pushed the tobz/config-schema-more-precise-unevaluated-properties-visitor branch from 39ca8db to d334ee1 Compare April 7, 2023 15:53
@netlify
Copy link

netlify bot commented Apr 7, 2023

Deploy Preview for vrl-playground ready!

Name Link
🔨 Latest commit 51d833e
🔍 Latest deploy log https://app.netlify.com/sites/vrl-playground/deploys/643552d3e5338900088a37da
😎 Deploy Preview https://deploy-preview-17026--vrl-playground.netlify.app
📱 Preview on mobile
Toggle QR Code...

QR Code

Use your smartphone camera to open QR code link.

To edit notification comments on pull requests, go to your Netlify site settings.

@github-actions github-actions bot added domain: ci Anything related to Vector's CI environment domain: external docs Anything related to Vector's external, public documentation labels Apr 7, 2023
@github-actions
Copy link

github-actions bot commented Apr 7, 2023

Regression Detector Results

Run ID: 2b9087f3-679a-4df9-8178-b1c2e6c1ccfc
Baseline: eafba69
Comparison: d334ee1
Total vector CPUs: 7

Explanation

A regression 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.

The table below, if present, lists those experiments that have experienced a statistically significant change in mean optimization goal performance between baseline and comparison SHAs with 90.00% 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.00% change in their mean optimization goal are discarded. An experiment is erratic if its coefficient of variation is greater than 0.1. The abbreviated table will be omitted if no interesting change is observed.

Changes in experiment optimization goals with confidence ≥ 90.00% and |Δ mean %| ≥ 5.00%:

experiment goal Δ mean Δ mean % confidence
http_text_to_http_json ingress throughput 1.41MiB/CPU-s 6.03 100.00%
Fine details of change detection per experiment.
experiment goal Δ 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
file_to_blackhole egress throughput 734.65KiB/CPU-s 11.89 99.98% 6.03MiB/CPU-s 4.8MiB/CPU-s 137.6KiB/CPU-s 0.0 0.795204 6.75MiB/CPU-s 4.22MiB/CPU-s 140.02KiB/CPU-s 0.628931 0.625219 True True
http_text_to_http_json ingress throughput 1.41MiB/CPU-s 6.03 100.00% 23.35MiB/CPU-s 725.45KiB/CPU-s 9.36KiB/CPU-s 0.0 0.030339 24.76MiB/CPU-s 791.73KiB/CPU-s 10.22KiB/CPU-s 0.0 0.031227 False False
socket_to_socket_blackhole ingress throughput 350.37KiB/CPU-s 2.63 100.00% 13.03MiB/CPU-s 269.11KiB/CPU-s 3.47KiB/CPU-s 0.0 0.020163 13.37MiB/CPU-s 240.71KiB/CPU-s 3.11KiB/CPU-s 0.0 0.017574 False False
datadog_agent_remap_datadog_logs ingress throughput 781.26KiB/CPU-s 2.40 100.00% 31.74MiB/CPU-s 1.66MiB/CPU-s 21.89KiB/CPU-s 0.0 0.052181 32.51MiB/CPU-s 1.29MiB/CPU-s 17.09KiB/CPU-s 0.0 0.039788 False False
http_to_http_acks ingress throughput 87.59KiB/CPU-s 1.63 91.44% 5.24MiB/CPU-s 2.71MiB/CPU-s 35.84KiB/CPU-s 0.0 0.517687 5.32MiB/CPU-s 2.74MiB/CPU-s 36.22KiB/CPU-s 0.0 0.51468 True False
otlp_http_to_blackhole ingress throughput 20.59KiB/CPU-s 1.31 100.00% 1.54MiB/CPU-s 115.06KiB/CPU-s 1.48KiB/CPU-s 0.0 0.073162 1.56MiB/CPU-s 100.85KiB/CPU-s 1.3KiB/CPU-s 0.0 0.063299 False False
otlp_grpc_to_blackhole ingress throughput 12.58KiB/CPU-s 1.19 100.00% 1.03MiB/CPU-s 47.21KiB/CPU-s 623.95B/CPU-s 0.0 0.044638 1.05MiB/CPU-s 40.16KiB/CPU-s 530.82B/CPU-s 0.0 0.037522 False False
syslog_splunk_hec_logs ingress throughput 37.47KiB/CPU-s 0.41 100.00% 9.03MiB/CPU-s 270.91KiB/CPU-s 3.49KiB/CPU-s 0.0 0.029303 9.06MiB/CPU-s 259.52KiB/CPU-s 3.35KiB/CPU-s 0.0 0.027958 False False
datadog_agent_remap_blackhole_acks ingress throughput 117.23KiB/CPU-s 0.37 100.00% 30.97MiB/CPU-s 1.03MiB/CPU-s 13.6KiB/CPU-s 0.0 0.033233 31.08MiB/CPU-s 1.11MiB/CPU-s 14.71KiB/CPU-s 0.0 0.035813 False False
datadog_agent_remap_datadog_logs_acks ingress throughput 106.66KiB/CPU-s 0.32 100.00% 33.0MiB/CPU-s 1.15MiB/CPU-s 15.24KiB/CPU-s 0.0 0.034952 33.1MiB/CPU-s 1.13MiB/CPU-s 14.94KiB/CPU-s 0.0 0.034159 False False
enterprise_http_to_http ingress throughput 6.12KiB/CPU-s 0.04 88.96% 13.62MiB/CPU-s 256.7KiB/CPU-s 3.31KiB/CPU-s 0.0 0.018406 13.62MiB/CPU-s 149.37KiB/CPU-s 1.93KiB/CPU-s 0.0 0.010706 False False
http_to_http_noack ingress throughput 4.09KiB/CPU-s 0.03 48.00% 13.61MiB/CPU-s 368.46KiB/CPU-s 4.75KiB/CPU-s 0.0 0.02644 13.61MiB/CPU-s 326.65KiB/CPU-s 4.21KiB/CPU-s 0.0 0.023432 False False
splunk_hec_indexer_ack_blackhole ingress throughput 1.91KiB/CPU-s 0.01 31.84% 13.61MiB/CPU-s 258.97KiB/CPU-s 3.34KiB/CPU-s 0.0 0.018574 13.62MiB/CPU-s 252.04KiB/CPU-s 3.25KiB/CPU-s 0.0 0.018074 False False
splunk_hec_to_splunk_hec_logs_acks ingress throughput -184.39B/CPU-s -0.00 2.20% 13.61MiB/CPU-s 368.9KiB/CPU-s 4.76KiB/CPU-s 0.0 0.02646 13.61MiB/CPU-s 345.37KiB/CPU-s 4.46KiB/CPU-s 0.0 0.024772 False False
fluent_elasticsearch ingress throughput 171.83B/CPU-s 0.00 24.35% 45.41MiB/CPU-s 30.1KiB/CPU-s 393.44B/CPU-s 0.0 0.000647 45.41MiB/CPU-s 29.85KiB/CPU-s 390.22B/CPU-s 0.0 0.000642 False False
splunk_hec_to_splunk_hec_logs_noack ingress throughput -1.32KiB/CPU-s -0.01 21.39% 13.62MiB/CPU-s 260.9KiB/CPU-s 3.37KiB/CPU-s 0.0 0.018711 13.61MiB/CPU-s 271.24KiB/CPU-s 3.5KiB/CPU-s 0.0 0.019454 False False
syslog_loki ingress throughput -3.17KiB/CPU-s -0.04 50.80% 8.46MiB/CPU-s 255.25KiB/CPU-s 3.29KiB/CPU-s 0.0 0.029452 8.46MiB/CPU-s 249.91KiB/CPU-s 3.22KiB/CPU-s 0.0 0.028846 False False
splunk_hec_route_s3 ingress throughput -23.5KiB/CPU-s -0.20 95.58% 11.61MiB/CPU-s 628.67KiB/CPU-s 8.11KiB/CPU-s 0.0 0.052884 11.59MiB/CPU-s 651.09KiB/CPU-s 8.4KiB/CPU-s 0.0 0.054879 False False
http_to_http_json ingress throughput -32.66KiB/CPU-s -0.24 100.00% 13.53MiB/CPU-s 356.95KiB/CPU-s 4.61KiB/CPU-s 0.0 0.025766 13.5MiB/CPU-s 465.64KiB/CPU-s 6.01KiB/CPU-s 0.0 0.033692 False False
syslog_humio_logs ingress throughput -28.96KiB/CPU-s -0.31 100.00% 9.12MiB/CPU-s 223.95KiB/CPU-s 2.89KiB/CPU-s 0.0 0.023974 9.09MiB/CPU-s 251.64KiB/CPU-s 3.25KiB/CPU-s 0.0 0.027022 False False
datadog_agent_remap_blackhole ingress throughput -102.77KiB/CPU-s -0.32 100.00% 31.71MiB/CPU-s 995.72KiB/CPU-s 12.85KiB/CPU-s 0.0 0.030662 31.61MiB/CPU-s 994.82KiB/CPU-s 12.84KiB/CPU-s 0.0 0.030732 False False
syslog_log2metric_splunk_hec_metrics ingress throughput -112.74KiB/CPU-s -1.19 100.00% 9.28MiB/CPU-s 338.07KiB/CPU-s 4.36KiB/CPU-s 0.0 0.035586 9.17MiB/CPU-s 323.1KiB/CPU-s 4.17KiB/CPU-s 0.0 0.03442 False False
syslog_log2metric_humio_metrics ingress throughput -146.32KiB/CPU-s -2.17 100.00% 6.57MiB/CPU-s 259.27KiB/CPU-s 3.35KiB/CPU-s 0.0 0.038515 6.43MiB/CPU-s 211.1KiB/CPU-s 2.72KiB/CPU-s 0.0 0.032055 False False
syslog_regex_logs2metric_ddmetrics ingress throughput -188.13KiB/CPU-s -4.94 100.00% 3.72MiB/CPU-s 432.92KiB/CPU-s 5.59KiB/CPU-s 0.0 0.113691 3.53MiB/CPU-s 395.37KiB/CPU-s 5.1KiB/CPU-s 0.0 0.109228 True True

@github-actions
Copy link

github-actions bot commented Apr 7, 2023

Regression Detector Results

Run ID: 166dab2e-fcf0-437c-a12e-858ddb937955
Baseline: eafba69
Comparison: cd6d716
Total vector CPUs: 7

Explanation

A regression 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.

The table below, if present, lists those experiments that have experienced a statistically significant change in mean optimization goal performance between baseline and comparison SHAs with 90.00% 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.00% change in their mean optimization goal are discarded. An experiment is erratic if its coefficient of variation is greater than 0.1. The abbreviated table will be omitted if no interesting change is observed.

No interesting changes in experiment optimization goals with confidence ≥ 90.00% and |Δ mean %| ≥ 5.00%.

Fine details of change detection per experiment.
experiment goal Δ 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
file_to_blackhole egress throughput 733.02KiB/CPU-s 11.69 99.98% 6.12MiB/CPU-s 4.69MiB/CPU-s 129.73KiB/CPU-s 0.0 0.76537 6.84MiB/CPU-s 4.63MiB/CPU-s 143.51KiB/CPU-s 0.0 0.676422 True True
http_text_to_http_json ingress throughput 1.02MiB/CPU-s 4.40 100.00% 23.09MiB/CPU-s 713.69KiB/CPU-s 9.21KiB/CPU-s 0.0 0.030183 24.11MiB/CPU-s 785.14KiB/CPU-s 10.14KiB/CPU-s 0.0 0.031804 False False
syslog_regex_logs2metric_ddmetrics ingress throughput 67.54KiB/CPU-s 1.84 100.00% 3.58MiB/CPU-s 363.53KiB/CPU-s 4.69KiB/CPU-s 0.0 0.099035 3.65MiB/CPU-s 397.1KiB/CPU-s 5.12KiB/CPU-s 0.0 0.106225 True True
datadog_agent_remap_blackhole_acks ingress throughput 537.54KiB/CPU-s 1.74 100.00% 30.12MiB/CPU-s 1.43MiB/CPU-s 18.89KiB/CPU-s 0.0 0.047455 30.65MiB/CPU-s 1.34MiB/CPU-s 17.76KiB/CPU-s 0.0 0.043844 False False
otlp_http_to_blackhole ingress throughput 23.48KiB/CPU-s 1.52 100.00% 1.51MiB/CPU-s 124.77KiB/CPU-s 1.61KiB/CPU-s 0.0 0.080598 1.53MiB/CPU-s 113.99KiB/CPU-s 1.47KiB/CPU-s 0.0 0.072533 False False
otlp_grpc_to_blackhole ingress throughput 15.3KiB/CPU-s 1.45 100.00% 1.03MiB/CPU-s 48.21KiB/CPU-s 637.2B/CPU-s 0.0 0.045714 1.04MiB/CPU-s 44.6KiB/CPU-s 589.45B/CPU-s 0.0 0.041684 False False
splunk_hec_route_s3 ingress throughput 64.08KiB/CPU-s 0.55 100.00% 11.42MiB/CPU-s 725.3KiB/CPU-s 9.36KiB/CPU-s 0.0 0.061992 11.49MiB/CPU-s 679.09KiB/CPU-s 8.76KiB/CPU-s 0.0 0.057727 False False
enterprise_http_to_http ingress throughput 4.29KiB/CPU-s 0.03 77.45% 13.62MiB/CPU-s 228.95KiB/CPU-s 2.96KiB/CPU-s 0.0 0.016414 13.62MiB/CPU-s 150.49KiB/CPU-s 1.94KiB/CPU-s 0.0 0.010786 False False
fluent_elasticsearch ingress throughput -883.21B/CPU-s -0.00 76.41% 45.41MiB/CPU-s 30.25KiB/CPU-s 395.4B/CPU-s 0.0 0.00065 45.41MiB/CPU-s 48.31KiB/CPU-s 631.51B/CPU-s 0.0 0.001039 False False
splunk_hec_indexer_ack_blackhole ingress throughput 57.93B/CPU-s 0.00 0.94% 13.61MiB/CPU-s 264.32KiB/CPU-s 3.41KiB/CPU-s 0.0 0.018959 13.61MiB/CPU-s 262.85KiB/CPU-s 3.39KiB/CPU-s 0.0 0.018853 False False
splunk_hec_to_splunk_hec_logs_acks ingress throughput 53.55B/CPU-s 0.00 0.63% 13.61MiB/CPU-s 367.86KiB/CPU-s 4.75KiB/CPU-s 0.0 0.026385 13.61MiB/CPU-s 353.06KiB/CPU-s 4.55KiB/CPU-s 0.0 0.025324 False False
datadog_agent_remap_datadog_logs_acks ingress throughput 1.21KiB/CPU-s 0.00 3.42% 32.23MiB/CPU-s 1.45MiB/CPU-s 19.22KiB/CPU-s 0.0 0.045138 32.23MiB/CPU-s 1.56MiB/CPU-s 20.6KiB/CPU-s 0.0 0.048357 False False
http_to_http_noack ingress throughput -521.39B/CPU-s -0.00 6.03% 13.61MiB/CPU-s 367.43KiB/CPU-s 4.74KiB/CPU-s 0.0 0.026365 13.61MiB/CPU-s 370.65KiB/CPU-s 4.78KiB/CPU-s 0.0 0.026597 False False
splunk_hec_to_splunk_hec_logs_noack ingress throughput -908.6B/CPU-s -0.01 15.04% 13.62MiB/CPU-s 252.82KiB/CPU-s 3.26KiB/CPU-s 0.0 0.01813 13.62MiB/CPU-s 259.9KiB/CPU-s 3.35KiB/CPU-s 0.0 0.018639 False False
datadog_agent_remap_datadog_logs ingress throughput -89.75KiB/CPU-s -0.27 99.72% 32.56MiB/CPU-s 1.59MiB/CPU-s 20.99KiB/CPU-s 0.0 0.048778 32.47MiB/CPU-s 1.63MiB/CPU-s 21.5KiB/CPU-s 0.0 0.050096 False False
socket_to_socket_blackhole ingress throughput -54.25KiB/CPU-s -0.41 100.00% 13.08MiB/CPU-s 271.63KiB/CPU-s 3.5KiB/CPU-s 0.0 0.020282 13.02MiB/CPU-s 265.09KiB/CPU-s 3.42KiB/CPU-s 0.0 0.019875 False False
http_to_http_json ingress throughput -58.77KiB/CPU-s -0.42 100.00% 13.58MiB/CPU-s 280.79KiB/CPU-s 3.62KiB/CPU-s 0.0 0.020188 13.52MiB/CPU-s 346.64KiB/CPU-s 4.47KiB/CPU-s 0.0 0.025027 False False
syslog_splunk_hec_logs ingress throughput -44.7KiB/CPU-s -0.49 100.00% 8.96MiB/CPU-s 262.04KiB/CPU-s 3.38KiB/CPU-s 0.0 0.028544 8.92MiB/CPU-s 231.82KiB/CPU-s 2.99KiB/CPU-s 0.0 0.025376 False False
http_to_http_acks ingress throughput -81.99KiB/CPU-s -1.52 89.40% 5.26MiB/CPU-s 2.74MiB/CPU-s 36.23KiB/CPU-s 0.0 0.521499 5.18MiB/CPU-s 2.69MiB/CPU-s 35.5KiB/CPU-s 0.0 0.518981 True False
datadog_agent_remap_blackhole ingress throughput -476.84KiB/CPU-s -1.52 100.00% 30.68MiB/CPU-s 1.42MiB/CPU-s 18.79KiB/CPU-s 0.0 0.046353 30.21MiB/CPU-s 1.63MiB/CPU-s 21.5KiB/CPU-s 0.0 0.053834 False False
syslog_log2metric_humio_metrics ingress throughput -103.71KiB/CPU-s -1.58 100.00% 6.41MiB/CPU-s 279.47KiB/CPU-s 3.61KiB/CPU-s 0.0 0.042555 6.31MiB/CPU-s 258.44KiB/CPU-s 3.34KiB/CPU-s 0.0 0.039985 False False
syslog_loki ingress throughput -141.06KiB/CPU-s -1.65 100.00% 8.34MiB/CPU-s 340.96KiB/CPU-s 4.4KiB/CPU-s 0.0 0.039927 8.2MiB/CPU-s 326.7KiB/CPU-s 4.22KiB/CPU-s 0.0 0.038899 False False
syslog_humio_logs ingress throughput -182.87KiB/CPU-s -1.98 100.00% 9.03MiB/CPU-s 244.98KiB/CPU-s 3.16KiB/CPU-s 0.0 0.026478 8.86MiB/CPU-s 324.22KiB/CPU-s 4.18KiB/CPU-s 0.0 0.035749 False False
syslog_log2metric_splunk_hec_metrics ingress throughput -267.37KiB/CPU-s -2.83 100.00% 9.24MiB/CPU-s 216.56KiB/CPU-s 2.8KiB/CPU-s 0.0 0.02288 8.98MiB/CPU-s 285.16KiB/CPU-s 3.68KiB/CPU-s 0.0 0.031004 False False

@tobz tobz changed the title WIP: chore(config): make DisallowUnevaluatedPropertiesVisitor more precise chore(config): improve config schema output with more precise unevaluatedProperties + schema ref flattening Apr 7, 2023
@tobz tobz marked this pull request as ready for review April 7, 2023 18:21
@tobz tobz requested a review from a team as a code owner April 7, 2023 18:21
Copy link
Contributor

@spencergilbert spencergilbert left a comment

Choose a reason for hiding this comment

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

This was a remarkable read 😆 didn't see any problems when I read through it.

I think you'll want to run:

curl -s -S -L 'https://raw.githubusercontent.com/check-spelling/check-spelling/v0.0.21/apply.pl' |
perl - 'https://github.com/vectordotdev/vector/actions/runs/4640241193/attempts/1'

locally on your branch to update the spell checker for your new words.

lib/vector-config/src/schema/visitors/unevaluated.rs Outdated Show resolved Hide resolved
@datadog-vectordotdev
Copy link

datadog-vectordotdev bot commented Apr 10, 2023

Datadog Report

Branch report: tobz/config-schema-more-precise-unevaluated-properties-visitor
Commit report: 8dab1a8

vector: 0 Failed, 0 New Flaky, 1861 Passed, 0 Skipped, 7m 22.46s Wall Time

@github-actions
Copy link

Regression Detector Results

Run ID: f35b2eae-c2a5-4163-acb0-5ed303751e0e
Baseline: 38607cd
Comparison: a6b4fc1
Total vector CPUs: 7

Explanation

A regression 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.

The table below, if present, lists those experiments that have experienced a statistically significant change in mean optimization goal performance between baseline and comparison SHAs with 90.00% 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.00% change in their mean optimization goal are discarded. An experiment is erratic if its coefficient of variation is greater than 0.1. The abbreviated table will be omitted if no interesting change is observed.

No interesting changes in experiment optimization goals with confidence ≥ 90.00% and |Δ mean %| ≥ 5.00%.

Fine details of change detection per experiment.
experiment goal Δ 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
file_to_blackhole egress throughput 315.35KiB/CPU-s 4.35 87.34% 7.08MiB/CPU-s 4.56MiB/CPU-s 144.75KiB/CPU-s 3.458213 0.644036 7.39MiB/CPU-s 4.08MiB/CPU-s 147.03KiB/CPU-s 0.0 0.551539 True True
otlp_grpc_to_blackhole ingress throughput 31.23KiB/CPU-s 2.97 100.00% 1.03MiB/CPU-s 51.96KiB/CPU-s 686.58B/CPU-s 0.0 0.049453 1.06MiB/CPU-s 47.3KiB/CPU-s 625.04B/CPU-s 0.0 0.04372 False False
syslog_humio_logs ingress throughput 162.21KiB/CPU-s 1.77 100.00% 8.93MiB/CPU-s 368.36KiB/CPU-s 4.75KiB/CPU-s 0.0 0.040293 9.09MiB/CPU-s 317.93KiB/CPU-s 4.1KiB/CPU-s 0.0 0.03417 False False
datadog_agent_remap_blackhole_acks ingress throughput 546.67KiB/CPU-s 1.72 100.00% 31.09MiB/CPU-s 1.06MiB/CPU-s 14.06KiB/CPU-s 0.0 0.034216 31.62MiB/CPU-s 785.07KiB/CPU-s 10.13KiB/CPU-s 0.0 0.024244 False False
http_text_to_http_json ingress throughput 389.62KiB/CPU-s 1.49 100.00% 25.57MiB/CPU-s 813.19KiB/CPU-s 10.49KiB/CPU-s 0.0 0.031051 25.95MiB/CPU-s 662.17KiB/CPU-s 8.55KiB/CPU-s 0.0 0.024914 False False
syslog_log2metric_splunk_hec_metrics ingress throughput 134.84KiB/CPU-s 1.40 100.00% 9.38MiB/CPU-s 358.95KiB/CPU-s 4.63KiB/CPU-s 0.0 0.037375 9.51MiB/CPU-s 281.36KiB/CPU-s 3.63KiB/CPU-s 0.0 0.028891 False False
otlp_http_to_blackhole ingress throughput 16.84KiB/CPU-s 1.05 100.00% 1.56MiB/CPU-s 111.28KiB/CPU-s 1.44KiB/CPU-s 0.0 0.069653 1.58MiB/CPU-s 95.61KiB/CPU-s 1.23KiB/CPU-s 0.0 0.059223 False False
http_to_http_acks ingress throughput 46.43KiB/CPU-s 0.86 63.48% 5.28MiB/CPU-s 2.76MiB/CPU-s 36.42KiB/CPU-s 0.0 0.522207 5.32MiB/CPU-s 2.73MiB/CPU-s 36.08KiB/CPU-s 0.0 0.512914 True False
socket_to_socket_blackhole ingress throughput 107.81KiB/CPU-s 0.77 100.00% 13.63MiB/CPU-s 436.16KiB/CPU-s 5.63KiB/CPU-s 0.0 0.031252 13.73MiB/CPU-s 407.28KiB/CPU-s 5.26KiB/CPU-s 0.0 0.028959 False False
datadog_agent_remap_blackhole ingress throughput 187.73KiB/CPU-s 0.61 100.00% 30.2MiB/CPU-s 1.34MiB/CPU-s 17.66KiB/CPU-s 0.0 0.044274 30.38MiB/CPU-s 1.1MiB/CPU-s 14.55KiB/CPU-s 0.0 0.036219 False False
enterprise_http_to_http ingress throughput 2.26KiB/CPU-s 0.02 52.54% 13.62MiB/CPU-s 193.04KiB/CPU-s 2.49KiB/CPU-s 0.0 0.013838 13.62MiB/CPU-s 150.75KiB/CPU-s 1.95KiB/CPU-s 0.0 0.010805 False False
http_to_http_noack ingress throughput 2.01KiB/CPU-s 0.01 22.84% 13.61MiB/CPU-s 387.03KiB/CPU-s 4.99KiB/CPU-s 0.0 0.027776 13.61MiB/CPU-s 370.04KiB/CPU-s 4.77KiB/CPU-s 0.0 0.026553 False False
fluent_elasticsearch ingress throughput 75.01B/CPU-s 0.00 10.69% 45.41MiB/CPU-s 29.78KiB/CPU-s 389.37B/CPU-s 0.0 0.00064 45.41MiB/CPU-s 30.59KiB/CPU-s 400.07B/CPU-s 0.0 0.000658 False False
splunk_hec_indexer_ack_blackhole ingress throughput -130.58B/CPU-s -0.00 2.11% 13.61MiB/CPU-s 262.83KiB/CPU-s 3.39KiB/CPU-s 0.0 0.018851 13.61MiB/CPU-s 264.75KiB/CPU-s 3.42KiB/CPU-s 0.0 0.018989 False False
splunk_hec_to_splunk_hec_logs_noack ingress throughput -56.44B/CPU-s -0.00 0.90% 13.61MiB/CPU-s 269.16KiB/CPU-s 3.47KiB/CPU-s 0.0 0.019305 13.61MiB/CPU-s 268.08KiB/CPU-s 3.46KiB/CPU-s 0.0 0.019227 False False
splunk_hec_to_splunk_hec_logs_acks ingress throughput 9.42B/CPU-s 0.00 0.11% 13.61MiB/CPU-s 361.08KiB/CPU-s 4.66KiB/CPU-s 0.0 0.0259 13.61MiB/CPU-s 352.98KiB/CPU-s 4.55KiB/CPU-s 0.0 0.025318 False False
http_to_http_json ingress throughput -14.01KiB/CPU-s -0.10 99.78% 13.62MiB/CPU-s 244.41KiB/CPU-s 3.15KiB/CPU-s 0.0 0.017529 13.6MiB/CPU-s 257.38KiB/CPU-s 3.32KiB/CPU-s 0.0 0.018477 False False
syslog_log2metric_humio_metrics ingress throughput -14.72KiB/CPU-s -0.22 98.99% 6.44MiB/CPU-s 297.31KiB/CPU-s 3.84KiB/CPU-s 0.0 0.045079 6.43MiB/CPU-s 329.01KiB/CPU-s 4.25KiB/CPU-s 0.0 0.049997 False False
syslog_loki ingress throughput -104.14KiB/CPU-s -1.19 100.00% 8.54MiB/CPU-s 254.72KiB/CPU-s 3.29KiB/CPU-s 0.0 0.029122 8.44MiB/CPU-s 291.04KiB/CPU-s 3.76KiB/CPU-s 0.0 0.033676 False False
datadog_agent_remap_datadog_logs ingress throughput -423.24KiB/CPU-s -1.27 100.00% 32.67MiB/CPU-s 1.81MiB/CPU-s 23.92KiB/CPU-s 0.0 0.055393 32.26MiB/CPU-s 1.52MiB/CPU-s 20.04KiB/CPU-s 0.0 0.047003 False False
splunk_hec_route_s3 ingress throughput -153.1KiB/CPU-s -1.28 100.00% 11.69MiB/CPU-s 613.96KiB/CPU-s 7.92KiB/CPU-s 0.0 0.051273 11.54MiB/CPU-s 696.16KiB/CPU-s 8.98KiB/CPU-s 0.0 0.05889 False False
datadog_agent_remap_datadog_logs_acks ingress throughput -493.22KiB/CPU-s -1.48 100.00% 32.61MiB/CPU-s 1.35MiB/CPU-s 17.8KiB/CPU-s 0.0 0.041319 32.12MiB/CPU-s 1.53MiB/CPU-s 20.23KiB/CPU-s 0.0 0.047655 False False
syslog_splunk_hec_logs ingress throughput -154.73KiB/CPU-s -1.67 100.00% 9.07MiB/CPU-s 247.97KiB/CPU-s 3.2KiB/CPU-s 0.0 0.026686 8.92MiB/CPU-s 283.64KiB/CPU-s 3.66KiB/CPU-s 0.0 0.031042 False False
syslog_regex_logs2metric_ddmetrics ingress throughput -158.23KiB/CPU-s -4.24 100.00% 3.65MiB/CPU-s 389.61KiB/CPU-s 5.03KiB/CPU-s 0.0 0.104343 3.49MiB/CPU-s 407.43KiB/CPU-s 5.26KiB/CPU-s 0.0 0.113944 True True

@spencergilbert
Copy link
Contributor

Current failures should be resolved by merging master back in, a regression had been merged earlier.

@github-actions
Copy link

Regression Detector Results

Run ID: f61cf366-37d5-4c3e-930e-f13e27c9879d
Baseline: 1bdb24d
Comparison: 51d833e
Total vector CPUs: 7

Explanation

A regression 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.

The table below, if present, lists those experiments that have experienced a statistically significant change in mean optimization goal performance between baseline and comparison SHAs with 90.00% 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.00% change in their mean optimization goal are discarded. An experiment is erratic if its coefficient of variation is greater than 0.1. The abbreviated table will be omitted if no interesting change is observed.

Changes in experiment optimization goals with confidence ≥ 90.00% and |Δ mean %| ≥ 5.00%:

experiment goal Δ mean Δ mean % confidence
http_text_to_http_json ingress throughput -1.39MiB/CPU-s -5.38 100.00%
Fine details of change detection per experiment.
experiment goal Δ 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
datadog_agent_remap_blackhole ingress throughput 632.2KiB/CPU-s 2.05 100.00% 30.1MiB/CPU-s 1.79MiB/CPU-s 23.63KiB/CPU-s 0.0 0.059423 30.72MiB/CPU-s 1.27MiB/CPU-s 16.75KiB/CPU-s 0.0 0.041245 False False
syslog_humio_logs ingress throughput 157.23KiB/CPU-s 1.72 100.00% 8.92MiB/CPU-s 258.63KiB/CPU-s 3.34KiB/CPU-s 0.0 0.028326 9.07MiB/CPU-s 254.17KiB/CPU-s 3.28KiB/CPU-s 0.0 0.027367 False False
syslog_splunk_hec_logs ingress throughput 77.54KiB/CPU-s 0.84 100.00% 8.97MiB/CPU-s 231.58KiB/CPU-s 2.99KiB/CPU-s 0.0 0.025218 9.04MiB/CPU-s 225.04KiB/CPU-s 2.9KiB/CPU-s 0.0 0.0243 False False
datadog_agent_remap_blackhole_acks ingress throughput 255.37KiB/CPU-s 0.82 100.00% 30.47MiB/CPU-s 1.2MiB/CPU-s 15.92KiB/CPU-s 0.0 0.039524 30.72MiB/CPU-s 1.19MiB/CPU-s 15.67KiB/CPU-s 0.0 0.038592 False False
syslog_log2metric_humio_metrics ingress throughput 38.11KiB/CPU-s 0.60 100.00% 6.23MiB/CPU-s 388.15KiB/CPU-s 5.01KiB/CPU-s 0.0 0.060793 6.27MiB/CPU-s 221.23KiB/CPU-s 2.86KiB/CPU-s 0.0 0.034444 False False
http_to_http_acks ingress throughput 22.58KiB/CPU-s 0.42 34.00% 5.22MiB/CPU-s 2.74MiB/CPU-s 36.2KiB/CPU-s 0.0 0.524241 5.25MiB/CPU-s 2.75MiB/CPU-s 36.39KiB/CPU-s 0.0 0.524899 True False
enterprise_http_to_http ingress throughput 14.63KiB/CPU-s 0.10 99.70% 13.61MiB/CPU-s 351.33KiB/CPU-s 4.53KiB/CPU-s 0.0 0.025207 13.62MiB/CPU-s 151.23KiB/CPU-s 1.95KiB/CPU-s 0.0 0.010839 False False
splunk_hec_indexer_ack_blackhole ingress throughput 726.73B/CPU-s 0.01 12.18% 13.62MiB/CPU-s 255.47KiB/CPU-s 3.3KiB/CPU-s 0.0 0.018321 13.62MiB/CPU-s 252.32KiB/CPU-s 3.26KiB/CPU-s 0.0 0.018094 False False
fluent_elasticsearch ingress throughput 101.41B/CPU-s 0.00 14.19% 45.41MiB/CPU-s 30.24KiB/CPU-s 395.37B/CPU-s 0.0 0.00065 45.41MiB/CPU-s 31.09KiB/CPU-s 406.46B/CPU-s 0.0 0.000668 False False
splunk_hec_to_splunk_hec_logs_acks ingress throughput 248.98B/CPU-s 0.00 2.88% 13.61MiB/CPU-s 371.76KiB/CPU-s 4.8KiB/CPU-s 0.0 0.026665 13.61MiB/CPU-s 365.94KiB/CPU-s 4.72KiB/CPU-s 0.0 0.026247 False False
http_to_http_noack ingress throughput -4.21KiB/CPU-s -0.03 51.25% 13.61MiB/CPU-s 309.01KiB/CPU-s 3.99KiB/CPU-s 0.0 0.022164 13.61MiB/CPU-s 354.67KiB/CPU-s 4.58KiB/CPU-s 0.0 0.025447 False False
splunk_hec_to_splunk_hec_logs_noack ingress throughput -5.33KiB/CPU-s -0.04 74.29% 13.62MiB/CPU-s 237.77KiB/CPU-s 3.07KiB/CPU-s 0.0 0.017048 13.61MiB/CPU-s 276.44KiB/CPU-s 3.57KiB/CPU-s 0.0 0.019828 False False
syslog_log2metric_splunk_hec_metrics ingress throughput -4.97KiB/CPU-s -0.05 50.65% 9.27MiB/CPU-s 427.99KiB/CPU-s 5.52KiB/CPU-s 0.0 0.045088 9.26MiB/CPU-s 364.31KiB/CPU-s 4.7KiB/CPU-s 0.0 0.038399 False False
http_to_http_json ingress throughput -14.26KiB/CPU-s -0.10 99.77% 13.61MiB/CPU-s 244.54KiB/CPU-s 3.16KiB/CPU-s 0.0 0.017543 13.6MiB/CPU-s 266.8KiB/CPU-s 3.44KiB/CPU-s 0.0 0.01916 False False
otlp_grpc_to_blackhole ingress throughput -1.35KiB/CPU-s -0.13 86.29% 1.05MiB/CPU-s 53.14KiB/CPU-s 701.98B/CPU-s 0.0 0.049553 1.05MiB/CPU-s 46.2KiB/CPU-s 610.67B/CPU-s 0.0 0.043144 False False
datadog_agent_remap_datadog_logs ingress throughput -71.99KiB/CPU-s -0.22 97.94% 32.44MiB/CPU-s 1.83MiB/CPU-s 24.24KiB/CPU-s 0.0 0.056549 32.37MiB/CPU-s 1.47MiB/CPU-s 19.48KiB/CPU-s 0.0 0.045535 False False
splunk_hec_route_s3 ingress throughput -29.84KiB/CPU-s -0.25 98.92% 11.66MiB/CPU-s 648.27KiB/CPU-s 8.37KiB/CPU-s 0.0 0.054308 11.63MiB/CPU-s 634.63KiB/CPU-s 8.19KiB/CPU-s 0.0 0.053299 False False
datadog_agent_remap_datadog_logs_acks ingress throughput -238.83KiB/CPU-s -0.72 100.00% 32.52MiB/CPU-s 1.39MiB/CPU-s 18.31KiB/CPU-s 0.0 0.042623 32.28MiB/CPU-s 1.11MiB/CPU-s 14.68KiB/CPU-s 0.0 0.034419 False False
syslog_loki ingress throughput -83.06KiB/CPU-s -0.96 100.00% 8.48MiB/CPU-s 248.21KiB/CPU-s 3.2KiB/CPU-s 0.0 0.028571 8.4MiB/CPU-s 262.01KiB/CPU-s 3.38KiB/CPU-s 0.0 0.030451 False False
otlp_http_to_blackhole ingress throughput -37.35KiB/CPU-s -2.31 100.00% 1.58MiB/CPU-s 103.51KiB/CPU-s 1.34KiB/CPU-s 0.0 0.064034 1.54MiB/CPU-s 109.31KiB/CPU-s 1.41KiB/CPU-s 0.0 0.069225 False False
socket_to_socket_blackhole ingress throughput -459.75KiB/CPU-s -3.30 100.00% 13.62MiB/CPU-s 366.36KiB/CPU-s 4.73KiB/CPU-s 0.0 0.026272 13.17MiB/CPU-s 306.94KiB/CPU-s 3.96KiB/CPU-s 0.0 0.022761 False False
syslog_regex_logs2metric_ddmetrics ingress throughput -138.45KiB/CPU-s -3.68 100.00% 3.67MiB/CPU-s 426.74KiB/CPU-s 5.51KiB/CPU-s 0.0 0.113572 3.53MiB/CPU-s 460.2KiB/CPU-s 5.94KiB/CPU-s 0.0 0.127163 True True
http_text_to_http_json ingress throughput -1.39MiB/CPU-s -5.38 100.00% 25.78MiB/CPU-s 629.24KiB/CPU-s 8.12KiB/CPU-s 0.0 0.023829 24.4MiB/CPU-s 700.62KiB/CPU-s 9.04KiB/CPU-s 0.0 0.02804 False False
file_to_blackhole egress throughput -509.13KiB/CPU-s -6.98 99.17% 7.12MiB/CPU-s 4.07MiB/CPU-s 136.74KiB/CPU-s 0.0 0.57075 6.62MiB/CPU-s 4.52MiB/CPU-s 135.88KiB/CPU-s 0.172117 0.682754 True True

@tobz tobz merged commit 2d72f82 into master Apr 11, 2023
@tobz tobz deleted the tobz/config-schema-more-precise-unevaluated-properties-visitor branch April 11, 2023 21:24
aholmberg pushed a commit to aholmberg/vector that referenced this pull request Feb 14, 2024
# [1.13.0](answerbook/vector@v1.12.1...v1.13.0) (2023-09-13)

### Bug Fixes

* **appsignal sink**: Add TLS config option (vectordotdev#17122) [198068c](answerbook/vector@198068c) - GitHub
* **buffers**: correctly handle partial writes in reader seek during initialization (vectordotdev#17099) [a791595](answerbook/vector@a791595) - GitHub
* **config**: recurse through schema refs when determining eligibility for unevaluated properties (vectordotdev#17150) [71d1bf6](answerbook/vector@71d1bf6) - GitHub
* **docker_logs source**: Support tcp schema [e1c0c02](answerbook/vector@e1c0c02) - GitHub
* **elasticsearch sink**:  Elasticsearch sink with api_version set to "auto" does not recognize the API version of ES6 as V6 (vectordotdev#17226) (vectordotdev#17227) [9b6ef24](answerbook/vector@9b6ef24) - GitHub
* **gcp_stackdriver_metrics sink**: Call function to regenerate auth token (vectordotdev#17297) [bf7904b](answerbook/vector@bf7904b) - GitHub
* **influxdb_logs**: encode influx line when no tags present (vectordotdev#17029) [c3aa14f](answerbook/vector@c3aa14f) - GitHub
* **reduce transform**: Revert flushing on interval change to `expire_metrics_ms` (vectordotdev#17084) [e86b155](answerbook/vector@e86b155) - GitHub
* **releasing**: Fix globbing of release artifacts for GitHub (vectordotdev#17114) [7fe089c](answerbook/vector@7fe089c) - GitHub
* **schemas**: Dont panic with non object field kinds (vectordotdev#17140) [1e43208](answerbook/vector@1e43208) - GitHub

### Chores

* (syslog source): add source_ip to some syslog tests (vectordotdev#17235) [29c34c0](answerbook/vector@29c34c0) - GitHub
* add note to DEVELOPING.md re panics (vectordotdev#17277) [03e905e](answerbook/vector@03e905e) - GitHub
* Add UX note about encoding of log_schema keys (vectordotdev#17266) [dc6e54c](answerbook/vector@dc6e54c) - GitHub
* **administration**: add `appsignal` to codeowners (vectordotdev#17127) [7b15d19](answerbook/vector@7b15d19) - GitHub
* **buffer**: tidy up some of the module level docs for `disk_v2` (vectordotdev#17093) [edaa612](answerbook/vector@edaa612) - GitHub
* **ci**: bump docker/metadata-action from 4.3.0 to 4.4.0 (vectordotdev#17170) [854d71e](answerbook/vector@854d71e) - GitHub
* **ci**: Disable `appsignal` integration test until CA issues are resolved (vectordotdev#17109) [f3b5d42](answerbook/vector@f3b5d42) - GitHub
* **ci**: Disable scheduled runs of Baseline Timings workflow (vectordotdev#17281) [4335b0a](answerbook/vector@4335b0a) - GitHub
* **ci**: Fix event assertions for `aws_ec2_metadata` transform (vectordotdev#17413) [da36fb6](answerbook/vector@da36fb6) - GitHub
* **ci**: Increase timeout for integration tests (vectordotdev#17326) [e1f125a](answerbook/vector@e1f125a) - GitHub
* **ci**: Increase timeout for integration tests to 30m (vectordotdev#17350) [5d3f619](answerbook/vector@5d3f619) - GitHub
* **ci**: re-enable `appsignal` integration test (vectordotdev#17111) [48fc574](answerbook/vector@48fc574) - GitHub
* **ci**: Remove ci-sweep tasks (vectordotdev#17415) [5c33f99](answerbook/vector@5c33f99) - GitHub
* **ci**: remove unnecessary dep install (vectordotdev#17128) [f56d1ef](answerbook/vector@f56d1ef) - GitHub
* **ci**: Try to fix apt retries (vectordotdev#17393) [6b3db04](answerbook/vector@6b3db04) - GitHub
* **ci**: update unsupported ubuntu version runners (vectordotdev#17113) [e7c4815](answerbook/vector@e7c4815) - GitHub
* **ci**: use python v3.8 in ubuntu 20.04 runner (vectordotdev#17116) [7a40c81](answerbook/vector@7a40c81) - GitHub
* **config**: begin laying out primitives for programmatically querying schema (vectordotdev#17130) [aad8115](answerbook/vector@aad8115) - GitHub
* **config**: emit human-friendly version of enum variant/property names in schema (vectordotdev#17171) [3b38ba8](answerbook/vector@3b38ba8) - GitHub
* **config**: improve config schema output with more precise `unevaluatedProperties` + schema ref flattening (vectordotdev#17026) [2d72f82](answerbook/vector@2d72f82) - GitHub
* **deps**: Add 3rd party license file and CI checks (vectordotdev#17344) [7350e1a](answerbook/vector@7350e1a) - GitHub
* **deps**: bump anyhow from 1.0.70 to 1.0.71 (vectordotdev#17300) [6a5af3b](answerbook/vector@6a5af3b) - GitHub
* **deps**: bump assert_cmd from 2.0.10 to 2.0.11 (vectordotdev#17290) [c4784fd](answerbook/vector@c4784fd) - GitHub
* **deps**: bump async-compression from 0.3.15 to 0.4.0 (vectordotdev#17365) [b9aac47](answerbook/vector@b9aac47) - GitHub
* **deps**: bump async-graphql from 5.0.7 to 5.0.8 (vectordotdev#17357) [05a4f17](answerbook/vector@05a4f17) - GitHub
* **deps**: bump async-graphql-warp from 5.0.7 to 5.0.8 (vectordotdev#17367) [693584e](answerbook/vector@693584e) - GitHub
* **deps**: bump async-stream from 0.3.4 to 0.3.5 (vectordotdev#17076) [c29c817](answerbook/vector@c29c817) - GitHub
* **deps**: bump aws-sigv4 from 0.55.0 to 0.55.1 (vectordotdev#17138) [dbb3f25](answerbook/vector@dbb3f25) - GitHub
* **deps**: bump axum from 0.6.12 to 0.6.18 (vectordotdev#17257) [41ac76e](answerbook/vector@41ac76e) - GitHub
* **deps**: bump cached from 0.42.0 to 0.43.0 (vectordotdev#17118) [f90b3b3](answerbook/vector@f90b3b3) - GitHub
* **deps**: bump chrono-tz from 0.8.1 to 0.8.2 (vectordotdev#17088) [623b838](answerbook/vector@623b838) - GitHub
* **deps**: bump clap_complete from 4.2.0 to 4.2.1 (vectordotdev#17229) [d286d16](answerbook/vector@d286d16) - GitHub
* **deps**: bump clap_complete from 4.2.1 to 4.2.2 (vectordotdev#17359) [565668e](answerbook/vector@565668e) - GitHub
* **deps**: bump clap_complete from 4.2.2 to 4.2.3 (vectordotdev#17383) [111cd07](answerbook/vector@111cd07) - GitHub
* **deps**: bump console-subscriber from 0.1.8 to 0.1.9 (vectordotdev#17358) [97b862c](answerbook/vector@97b862c) - GitHub
* **deps**: bump directories from 5.0.0 to 5.0.1 (vectordotdev#17271) [be69f5f](answerbook/vector@be69f5f) - GitHub
* **deps**: bump dunce from 1.0.3 to 1.0.4 (vectordotdev#17244) [cfc387d](answerbook/vector@cfc387d) - GitHub
* **deps**: bump enumflags2 from 0.7.5 to 0.7.6 (vectordotdev#17079) [cbc17be](answerbook/vector@cbc17be) - GitHub
* **deps**: bump enumflags2 from 0.7.6 to 0.7.7 (vectordotdev#17206) [c80c5eb](answerbook/vector@c80c5eb) - GitHub
* **deps**: bump flate2 from 1.0.25 to 1.0.26 (vectordotdev#17320) [ef13370](answerbook/vector@ef13370) - GitHub
* **deps**: bump getrandom from 0.2.8 to 0.2.9 (vectordotdev#17101) [d53240b](answerbook/vector@d53240b) - GitHub
* **deps**: bump h2 from 0.3.18 to 0.3.19 (vectordotdev#17388) [6088abd](answerbook/vector@6088abd) - GitHub
* **deps**: bump hashlink from 0.8.1 to 0.8.2 (vectordotdev#17419) [01b3cd7](answerbook/vector@01b3cd7) - GitHub
* **deps**: bump hyper from 0.14.25 to 0.14.26 (vectordotdev#17347) [c43dcfd](answerbook/vector@c43dcfd) - GitHub
* **deps**: bump inventory from 0.3.5 to 0.3.6 (vectordotdev#17401) [5b5ad16](answerbook/vector@5b5ad16) - GitHub
* **deps**: bump libc from 0.2.140 to 0.2.141 (vectordotdev#17104) [dd9608a](answerbook/vector@dd9608a) - GitHub
* **deps**: bump libc from 0.2.141 to 0.2.142 (vectordotdev#17273) [bc618a2](answerbook/vector@bc618a2) - GitHub
* **deps**: bump libc from 0.2.142 to 0.2.143 (vectordotdev#17338) [6afe206](answerbook/vector@6afe206) - GitHub
* **deps**: bump libc from 0.2.143 to 0.2.144 (vectordotdev#17346) [99b8dc1](answerbook/vector@99b8dc1) - GitHub
* **deps**: bump memmap2 from 0.5.10 to 0.6.0 (vectordotdev#17355) [dae0c6a](answerbook/vector@dae0c6a) - GitHub
* **deps**: bump memmap2 from 0.6.0 to 0.6.1 (vectordotdev#17364) [58ba741](answerbook/vector@58ba741) - GitHub
* **deps**: bump metrics, metrics-tracing-context, metrics-util (vectordotdev#17336) [9a723e3](answerbook/vector@9a723e3) - GitHub
* **deps**: bump mlua from 0.8.8 to 0.8.9 (vectordotdev#17423) [57f8bd4](answerbook/vector@57f8bd4) - GitHub
* **deps**: bump mock_instant from 0.2.1 to 0.3.0 (vectordotdev#17210) [40c9afc](answerbook/vector@40c9afc) - GitHub
* **deps**: bump mongodb from 2.4.0 to 2.5.0 (vectordotdev#17337) [64f4f69](answerbook/vector@64f4f69) - GitHub
* **deps**: bump nkeys from 0.2.0 to 0.3.0 (vectordotdev#17421) [3320eda](answerbook/vector@3320eda) - GitHub
* **deps**: bump notify from 5.1.0 to 6.0.0 (vectordotdev#17422) [58603b9](answerbook/vector@58603b9) - GitHub
* **deps**: bump num_enum from 0.5.11 to 0.6.0 (vectordotdev#17106) [42f298b](answerbook/vector@42f298b) - GitHub
* **deps**: bump num_enum from 0.6.0 to 0.6.1 (vectordotdev#17272) [f696e7b](answerbook/vector@f696e7b) - GitHub
* **deps**: bump opendal from 0.30.5 to 0.31.0 (vectordotdev#17119) [8762563](answerbook/vector@8762563) - GitHub
* **deps**: bump opendal from 0.31.0 to 0.33.2 (vectordotdev#17286) [3d41931](answerbook/vector@3d41931) - GitHub
* **deps**: bump opendal from 0.33.2 to 0.34.0 (vectordotdev#17354) [ae602da](answerbook/vector@ae602da) - GitHub
* **deps**: bump openssl from 0.10.48 to 0.10.50 (vectordotdev#17087) [9a56ed8](answerbook/vector@9a56ed8) - GitHub
* **deps**: bump openssl from 0.10.50 to 0.10.52 (vectordotdev#17299) [0ecceb3](answerbook/vector@0ecceb3) - GitHub
* **deps**: bump pin-project from 1.0.12 to 1.1.0 (vectordotdev#17385) [e8d3002](answerbook/vector@e8d3002) - GitHub
* **deps**: bump prettydiff from 0.6.2 to 0.6.4 (vectordotdev#17089) [e090610](answerbook/vector@e090610) - GitHub
* **deps**: bump prettydiff from 0.6.2 to 0.6.4 (vectordotdev#17315) [a1ec68d](answerbook/vector@a1ec68d) - GitHub
* **deps**: bump proc-macro2 from 1.0.55 to 1.0.56 (vectordotdev#17103) [6f74523](answerbook/vector@6f74523) - GitHub
* **deps**: bump proc-macro2 from 1.0.56 to 1.0.57 (vectordotdev#17400) [a6e1ae7](answerbook/vector@a6e1ae7) - GitHub
* **deps**: bump prost-build from 0.11.8 to 0.11.9 (vectordotdev#17260) [a88aba4](answerbook/vector@a88aba4) - GitHub
* **deps**: bump quote from 1.0.26 to 1.0.27 (vectordotdev#17348) [f81ff18](answerbook/vector@f81ff18) - GitHub
* **deps**: bump rdkafka from 0.29.0 to 0.30.0 (vectordotdev#17387) [9703188](answerbook/vector@9703188) - GitHub
* **deps**: bump regex from 1.7.3 to 1.8.1 (vectordotdev#17222) [410aa3c](answerbook/vector@410aa3c) - GitHub
* **deps**: bump reqwest from 0.11.16 to 0.11.17 (vectordotdev#17316) [09176ec](answerbook/vector@09176ec) - GitHub
* **deps**: bump security-framework from 2.8.2 to 2.9.0 (vectordotdev#17386) [1287168](answerbook/vector@1287168) - GitHub
* **deps**: bump serde from 1.0.159 to 1.0.160 (vectordotdev#17270) [036ad4a](answerbook/vector@036ad4a) - GitHub
* **deps**: bump serde from 1.0.160 to 1.0.162 (vectordotdev#17317) [79e97a2](answerbook/vector@79e97a2) - GitHub
* **deps**: bump serde from 1.0.162 to 1.0.163 (vectordotdev#17366) [9852c17](answerbook/vector@9852c17) - GitHub
* **deps**: bump serde_json from 1.0.95 to 1.0.96 (vectordotdev#17258) [7570bb3](answerbook/vector@7570bb3) - GitHub
* **deps**: bump serde_with from 2.3.1 to 2.3.2 (vectordotdev#17090) [adbf4d5](answerbook/vector@adbf4d5) - GitHub
* **deps**: bump serde_yaml from 0.9.19 to 0.9.21 (vectordotdev#17120) [d6f2625](answerbook/vector@d6f2625) - GitHub
* **deps**: bump socket2 from 0.4.7 to 0.5.2 (vectordotdev#17121) [db39d83](answerbook/vector@db39d83) - GitHub
* **deps**: bump socket2 from 0.5.2 to 0.5.3 (vectordotdev#17384) [ac51b8a](answerbook/vector@ac51b8a) - GitHub
* **deps**: bump syslog from 6.0.1 to 6.1.0 (vectordotdev#17301) [61e6154](answerbook/vector@61e6154) - GitHub
* **deps**: bump tokio from 1.27.0 to 1.28.0 (vectordotdev#17231) [8067f84](answerbook/vector@8067f84) - GitHub
* **deps**: bump tokio from 1.28.0 to 1.28.1 (vectordotdev#17368) [ae6a51b](answerbook/vector@ae6a51b) - GitHub
* **deps**: bump tokio-stream from 0.1.12 to 0.1.14 (vectordotdev#17339) [80c8247](answerbook/vector@80c8247) - GitHub
* **deps**: bump tokio-tungstenite from 0.18.0 to 0.19.0 (vectordotdev#17404) [ae1dd6e](answerbook/vector@ae1dd6e) - GitHub
* **deps**: bump tonic from 0.8.3 to 0.9.1 (vectordotdev#17077) [eafba69](answerbook/vector@eafba69) - GitHub
* **deps**: bump tonic from 0.9.1 to 0.9.2 (vectordotdev#17221) [aa9cbd0](answerbook/vector@aa9cbd0) - GitHub
* **deps**: bump tonic-build from 0.8.4 to 0.9.2 (vectordotdev#17274) [e0a07c6](answerbook/vector@e0a07c6) - GitHub
* **deps**: bump tracing-subscriber from 0.3.16 to 0.3.17 (vectordotdev#17268) [1406c08](answerbook/vector@1406c08) - GitHub
* **deps**: bump typetag from 0.2.7 to 0.2.8 (vectordotdev#17302) [c8e0e5f](answerbook/vector@c8e0e5f) - GitHub
* **deps**: bump uuid from 1.3.0 to 1.3.1 (vectordotdev#17091) [9cc2f1d](answerbook/vector@9cc2f1d) - GitHub
* **deps**: bump uuid from 1.3.0 to 1.3.2 (vectordotdev#17256) [bc6f7fd](answerbook/vector@bc6f7fd) - GitHub
* **deps**: bump uuid from 1.3.2 to 1.3.3 (vectordotdev#17403) [3a3fe63](answerbook/vector@3a3fe63) - GitHub
* **deps**: bump warp from 0.3.4 to 0.3.5 (vectordotdev#17288) [d8c1f12](answerbook/vector@d8c1f12) - GitHub
* **deps**: bump wasm-bindgen from 0.2.84 to 0.2.85 (vectordotdev#17356) [ea24b4d](answerbook/vector@ea24b4d) - GitHub
* **deps**: bump wasm-bindgen from 0.2.85 to 0.2.86 (vectordotdev#17402) [0518176](answerbook/vector@0518176) - GitHub
* **deps**: bump wiremock from 0.5.17 to 0.5.18 (vectordotdev#17092) [51312aa](answerbook/vector@51312aa) - GitHub
* **deps**: Fix up missing license (vectordotdev#17379) [a2b8903](answerbook/vector@a2b8903) - GitHub
* **deps**: Reset dependencies bumped by a61dea1 (vectordotdev#17100) [887d6d7](answerbook/vector@887d6d7) - GitHub
* **deps**: true up cargo.lock (vectordotdev#17149) [10fce65](answerbook/vector@10fce65) - GitHub
* **deps**: Update h2 (vectordotdev#17189) [a2882f3](answerbook/vector@a2882f3) - GitHub
* **deps**: Upgrade cue to 0.5.0 (vectordotdev#17204) [d396320](answerbook/vector@d396320) - GitHub
* **deps**: Upgrade Debian to bullseye for distroless image (vectordotdev#17160) [c304a8c](answerbook/vector@c304a8c) - GitHub
* **deps**: Upgrade rust to 1.69.0 (vectordotdev#17194) [ef15696](answerbook/vector@ef15696) - GitHub
* **dev**: Add note about generating licenses to CONTRIBUTING.md (vectordotdev#17410) [539f379](answerbook/vector@539f379) - GitHub
* **dev**: ignore `.helix` dir (vectordotdev#17203) [32a935b](answerbook/vector@32a935b) - GitHub
* **dev**: Install the correct `mold` based on CPU architecture (vectordotdev#17248) [4b80c71](answerbook/vector@4b80c71) - GitHub
* **dev**: remove editors from gitignore (vectordotdev#17267) [61c0d76](answerbook/vector@61c0d76) - GitHub
* **docs**: Add Enterprise link and update Support link (vectordotdev#17408) [5184d50](answerbook/vector@5184d50) - GitHub
* **docs**: Add missing 0.28.2 version [38607cd](answerbook/vector@38607cd) - Jesse Szwedko
* **docs**: Clarify `key_field` for `sample` and `throttle` transforms (vectordotdev#17372) [d1e5588](answerbook/vector@d1e5588) - GitHub
* **docs**: Document event type conditions (vectordotdev#17311) [a9c8dc8](answerbook/vector@a9c8dc8) - GitHub
* **docs**: make doc style edits (vectordotdev#17155) [65a8856](answerbook/vector@65a8856) - GitHub
* **docs**: Remove trailing, unmatched quote (vectordotdev#17163) [3c92556](answerbook/vector@3c92556) - GitHub
* **docs**: Remove unneeded `yaml` dependency from website (vectordotdev#17215) [752d424](answerbook/vector@752d424) - GitHub
* **docs**: Update component statuses 2023Q2 (vectordotdev#17362) [22cda94](answerbook/vector@22cda94) - GitHub
* **docs**: update the `v0.28.0` upgrade guide with note about `datadog_logs` sink `hostname` key (vectordotdev#17156) [c169131](answerbook/vector@c169131) - GitHub
* **external docs**: correctly mark some sinks as stateful (vectordotdev#17085) [64d560d](answerbook/vector@64d560d) - GitHub
* **loki sink**: warn on label expansions and collisions (vectordotdev#17052) [f06692b](answerbook/vector@f06692b) - GitHub
* **pulsar**: pulsar-rs bump to v5.1.1 (vectordotdev#17159) [68b54a9](answerbook/vector@68b54a9) - GitHub
* Re-add transform definitions (vectordotdev#17152) [9031d0f](answerbook/vector@9031d0f) - GitHub
* Regen docs for sample and throttle (vectordotdev#17390) [6c57ca0](answerbook/vector@6c57ca0) - GitHub
* **releasing**: Add known issues fixed by 0.29.1 (vectordotdev#17218) [40d543a](answerbook/vector@40d543a) - GitHub
* **releasing**: Bump Vector version to 0.30.0 (vectordotdev#17134) [3834612](answerbook/vector@3834612) - GitHub
* **releasing**: Fix homebrew release script (vectordotdev#17131) [cfbf233](answerbook/vector@cfbf233) - Jesse Szwedko
* **releasing**: Fix release channels (vectordotdev#17133) [58b44e8](answerbook/vector@58b44e8) - Jesse Szwedko
* **releasing**: Prepare v0.28.2 release [a61dea1](answerbook/vector@a61dea1) - Jesse Szwedko
* **releasing**: Prepare v0.29.0 release [4bf6805](answerbook/vector@4bf6805) - Jesse Szwedko
* **releasing**: Prepare v0.30.0 release [38c3f0b](answerbook/vector@38c3f0b) - Jesse Szwedko
* **releasing**: Regenerate Kubernetes manifests for 0.21.2 (vectordotdev#17108) [fd13d64](answerbook/vector@fd13d64) - GitHub
* **releasing**: Regenerate manifests for 0.21.1 chart (vectordotdev#17187) [1f0de6b](answerbook/vector@1f0de6b) - GitHub
* **releasing**: Regenerate manifests for 0.22.0 chart (vectordotdev#17135) [e7ea0a8](answerbook/vector@e7ea0a8) - GitHub
* **releasing**: update patch release template with extra step details [27c3526](answerbook/vector@27c3526) - GitHub
* Remove skaffold from project (vectordotdev#17145) [d245927](answerbook/vector@d245927) - GitHub
* remove transform type coercion (vectordotdev#17411) [b6c7e0a](answerbook/vector@b6c7e0a) - GitHub
* Revert transform definitions (vectordotdev#17146) [05a3f44](answerbook/vector@05a3f44) - GitHub
* **socket source**: Remove deprecated `max_length` setting from `tcp` and `unix` modes. (vectordotdev#17162) [9ecfc8c](answerbook/vector@9ecfc8c) - GitHub
* **syslog source**: remove the remove of source_ip (vectordotdev#17184) [5dff0ed](answerbook/vector@5dff0ed) - GitHub
* **topology**: Transform outputs hash table of OutputId -> Definition (vectordotdev#17059) [1bdb24d](answerbook/vector@1bdb24d) - GitHub
* Upgrade `VRL` to `0.3.0` (vectordotdev#17325) [4911d36](answerbook/vector@4911d36) - GitHub

### Features

* adds 'metric_name' field to internal logs for the tag_cardinality_limit component (vectordotdev#17295) [4317340](answerbook/vector@4317340) - GitHub
* **codecs**: Add full codec support to AWS S3 source/sink (vectordotdev#17098) [d648c86](answerbook/vector@d648c86) - GitHub
* **kubernetes_logs**: use kube-apiserver cache for list requests (vectordotdev#17095) [e46fae7](answerbook/vector@e46fae7) - GitHub
* Merge with upstream v0.30.0 [6b93177](answerbook/vector@6b93177) - GitHub [LOG-17997](https://logdna.atlassian.net/browse/LOG-17997)
* **new sink**: Initial `datadog_events` sink (vectordotdev#7678) [fef3810](answerbook/vector@fef3810) - Jesse Szwedko
* Update VRL library [6ace1e6](answerbook/vector@6ace1e6) - Jorge Bay

### Miscellaneous

* Merge branch 'master' [d4b35bb](answerbook/vector@d4b35bb) - Jorge Bay
* Merge tag 'v0.30.0' into update-upstream [ee2f300](answerbook/vector@ee2f300) - Jorge Bay
* Merge commit '9031d0faa2811187874364e1b5a3305c9ed0c0da' into update-upstream [c12faae](answerbook/vector@c12faae) - Jorge Bay
* Improve tokio::select behavior for kafka source and finalizers (vectordotdev#17380) [d4df21c](answerbook/vector@d4df21c) - GitHub
* Prepare v0.29.1 release [21beed7](answerbook/vector@21beed7) - Kyle Criddle
* Add a quickfix to handle special capitalization cases (vectordotdev#17141) [ba63e21](answerbook/vector@ba63e21) - GitHub
* Adjust doc comment locations (vectordotdev#17154) [730c938](answerbook/vector@730c938) - GitHub
* **amqp sink**: Support AMQ Properties (content-type) in AMQP sink (vectordotdev#17174) [c10d30b](answerbook/vector@c10d30b) - GitHub
* **aws provider**: Let `region` be configured for default authentication (vectordotdev#17414) [c81ad30](answerbook/vector@c81ad30) - GitHub
* **core**: add unit test (ignored) for support for encoding special chars in `ProxyConfig` (vectordotdev#17148) [5247972](answerbook/vector@5247972) - GitHub
* **loki sink**: Fix formatting in labels example (vectordotdev#17396) [f3734e8](answerbook/vector@f3734e8) - GitHub
* **observability**: Log underlying error for unhandled HTTP errors (vectordotdev#17327) [bf8376c](answerbook/vector@bf8376c) - GitHub
* **observability**: Update internal log rate limiting messages (vectordotdev#17394) [1951535](answerbook/vector@1951535) - GitHub
* **pulsar sink**: Refactor to use StreamSink (vectordotdev#14345) [1e97a2f](answerbook/vector@1e97a2f) - GitHub
* **topology**: Add source id to metadata (vectordotdev#17369) [c683999](answerbook/vector@c683999) - GitHub
* **vdev**: Load compose files and inject network block (vectordotdev#17025) [5d88655](answerbook/vector@5d88655) - GitHub
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
domain: ci Anything related to Vector's CI environment domain: external docs Anything related to Vector's external, public documentation
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants