-
Notifications
You must be signed in to change notification settings - Fork 561
feat: add config example validation script and workflow #2627
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
Merged
Merged
Changes from all commits
Commits
Show all changes
65 commits
Select commit
Hold shift + click to select a range
7cf52f6
feat: add config example validation script and workflow
patrick-stephens b2275c9
fix: suppress known failures due to unrelated Fluent Bit issue 12113
patrick-stephens 55d7bac
fix: resolve incorrect syntax in parsers configuration
patrick-stephens e7ddd72
fix: missing quote for dummy config in geoip filter
patrick-stephens b44504e
fix: incorrect comment format used in buffering examples
patrick-stephens fd07b27
fix: naming of parser files
patrick-stephens a767b5a
fix: incorrect format and quoting for dynatrace
patrick-stephens 483d763
fix: remove redundant and incorrect parser definition for gelf output
patrick-stephens b134d71
fix: rename tab titles to match usage for containers
patrick-stephens e5c82b0
fix: use correct language block for legacy config in cpu-metrics input
patrick-stephens 234fa5a
fix: remove tab for conditional processing YAML definition block
patrick-stephens 2212cd4
fix: suppress known failures due to Windows kubelet config
patrick-stephens 5eb82b9
feat: add multi-example validation
patrick-stephens 4eb6302
fix: additional failures in tail examples
patrick-stephens f2e026a
fix: incorrect elasticsearch output name used in routing
patrick-stephens 9bc87c3
fix: resolve routing examples
patrick-stephens 6a0172b
fix: resolve loki examples
patrick-stephens 14ec567
feat: remove common leading indentation to prevent spurious failures …
patrick-stephens a884bb8
feat: support configurable image
patrick-stephens 25e3a3c
fix: resolve sql indentiation issue
patrick-stephens ca08d54
fix: resolve missing AVRO support in release FB for Kafka
patrick-stephens 0bd5387
fix: resolve s3 examples
patrick-stephens 71bac14
fix: resolve lua in kafka examples
patrick-stephens 68d6a34
fix: resolve quoting for blob input
patrick-stephens 838e395
fix: resolve examples for K8S filter
patrick-stephens be6a651
docs: fix Vale and markdownlint findings across PR files
eschabell d3b2c6d
docs: ci: fix example validation workflow and script defects
eschabell 60ce9ed
Extract file change detection into standalone reusable scripts
patrick-stephens 247205b
fix: resolve issue with incorrect ref used
patrick-stephens 6061f81
fix: resolve parser filter failures due to invalid path
patrick-stephens 63e4b49
docs: outputs: file: add log rotation support and configuration examp…
SagiROosto 689d74a
docs: maintainers: Updated company references. (#2660)
eschabell 5155832
docs: pipeline: filters: expect: document per-record batch behavior (…
eschabell 7107de3
docs: installation: linux: document service restart on package upgrad…
eschabell 68f6d92
docs: pipeline: outputs: gcs: add Google Cloud Storage output plugin …
eschabell c7e5120
docs: administration: document adaptive flush intervals and FIPS mode…
eschabell 51daac5
docs: pipeline: inputs: tail: document windows.path_encoding (#2641)
eschabell 6c17c1a
docs: pipeline: inputs: kubernetes-events: document kube_watch_timeou…
eschabell d103dd1
docs: pipeline: inputs: node-exporter-metrics: document powersupplycl…
eschabell 4954163
docs: pipeline: filters: rewrite_tag: document emitter cycle rejectio…
eschabell 91c292f
docs: administration: document pause behavior for HTTP-based inputs (…
eschabell 2031f5b
docs: administration: yaml: document the extensions section (#2650)
eschabell a03a0fd
docs: document behavior changes for s3 log_key and HTTP server (#2649)
eschabell c23e995
docs: administration: transport-security: document certificate reload…
eschabell 77579f9
docs: pipeline: outputs: elasticsearch: document the elasticsearch al…
eschabell 6637e88
docs: administration: document logs tag records telemetry metrics (#2…
eschabell 3b83d66
docs: pipeline: outputs: file: document dynamic destinations (#2639)
eschabell aba7dd0
docs: administration: http-proxy: document tls.proxy.* options (#2651)
antoniomrfranco 077fd4b
release: update to v5.1.0 (#2662)
fluent-bot 2b28e5e
docs: installation: consolidate what's new pages into a rolling v5 pa…
eschabell caf7b84
docs pipeline: outputs: syslog: document DTLS transport mode (#2643)
eschabell 1ee3d0d
docs: fix broken and redirected links from link checker report (#2661)
eschabell 9912da4
docs: pipeline: outputs: kafka: document schema registry support (#2640)
eschabell 376f343
docs: installation: downloads: docker: document Windows Server 2025 a…
eschabell 2b48db3
docs: pipeline: buffering: document input rate gate and rate window (…
eschabell b9df496
docs: pipeline: inputs: node-exporter-metrics: mark timex collector r…
eschabell bba8472
fix: resolve overuse of parser config
patrick-stephens a3ed4f5
docs: update contribution guide
patrick-stephens a283687
fix: resolve missing env var
patrick-stephens fdeb858
fix: unsupported Avro config
patrick-stephens 433bdbe
fix: resolve overuse of parser config
patrick-stephens 944156f
fix: ignore Windows specific tail config
patrick-stephens bed2564
fix: ignore Windows events plugin
patrick-stephens aba5558
fix: resolve lint failure
patrick-stephens 029cff2
Merge branch 'master' into 2459_auto_validate_config_examples
patrick-stephens File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,31 @@ | ||
| name: Validate example configurations in PRs | ||
|
|
||
| on: | ||
| pull_request: | ||
| paths: | ||
| - '**/*.md' | ||
|
|
||
| permissions: {} | ||
|
|
||
| # Avoid multiple commits on the same PR racing to update the comment. | ||
| concurrency: | ||
| group: ${{ github.workflow }}-${{ github.event.pull_request.number }} | ||
| cancel-in-progress: true | ||
|
|
||
| jobs: | ||
| validate-configs: | ||
| name: Validate example configurations in changed Markdown files | ||
| runs-on: ubuntu-latest | ||
| permissions: | ||
| contents: read | ||
| steps: | ||
| - name: Check out code | ||
| uses: actions/checkout@v7 | ||
| with: | ||
| fetch-depth: 0 | ||
| persist-credentials: false | ||
|
|
||
| - name: Validate example configurations in changed files | ||
| run: | | ||
| ./scripts/validate-changed-files.sh "${{ github.event.pull_request.base.sha }}" HEAD | ||
| shell: bash | ||
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.