generated from cloudoperators/repository-template
-
Notifications
You must be signed in to change notification settings - Fork 3
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
[logshipper] Debug helm chart test #421
Closed
Closed
Changes from all commits
Commits
Show all changes
11 commits
Select commit
Hold shift + click to select a range
f2f5193
chore(logshipper): debug helm chart test
ibakshay 462bb20
chore(logshipper): add logshipper to the test config
ibakshay f45ecbe
chore(logshipper) add chart repo
ibakshay ff82625
chore(logshipper): Add support for monitoring.coreos.com/v1 API versi…
ibakshay 2d2ee78
Automatic application of license header
eb8a56e
clean up
ibakshay 8ddd9c7
cleanup
ibakshay 77e13b3
chore(logshipper): Update fluent-bit configuration
ibakshay e3306c7
Merge branch 'debug-logshipper-test' of https://github.com/cloudopera…
ibakshay f247db8
chore: debug
ibakshay 3952978
fix: remove trailing space
ibakshay 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 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 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 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 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 |
---|---|---|
|
@@ -17,7 +17,6 @@ data: | |
Daemon Off | ||
Log_Level info | ||
Parsers_File parsers.conf | ||
Parsers_File parsers_custom.conf | ||
HTTP_Server On | ||
HTTP_Listen 0.0.0.0 | ||
HTTP_Port {{ index .Values "fluent-bit" "metricsPort" }} | ||
|
@@ -44,51 +43,6 @@ data: | |
Strip_Underscores On | ||
Lowercase On | ||
|
||
{{ if (( index .Values "fluent-bit" "customConfig").inputs) }} | ||
@INCLUDE custom-inputs.conf | ||
{{- end }} | ||
|
||
[FILTER] | ||
Name record_modifier | ||
Match default_systemd.* | ||
Whitelist_key _SYSTEMD_UNIT | ||
Whitelist_key MESSAGE | ||
Whitelist_key _PID | ||
Whitelist_key _PRIORITY | ||
Whitelist_key _COMM | ||
Whitelist_key _HOSTNAME | ||
|
||
[FILTER] | ||
Name modify | ||
Match default_systemd.* | ||
Rename _SYSTEMD_UNIT unit | ||
Rename MESSAGE log | ||
Rename _PID pid | ||
Rename _PRIORITY priority | ||
Rename _COMM cmd | ||
Rename _HOSTNAME hostname | ||
|
||
[FILTER] | ||
Name record_modifier | ||
Match default_kube.* | ||
Remove_key time | ||
Remove_key ts | ||
|
||
[FILTER] | ||
Name modify | ||
Match default_kube.* | ||
Rename message log | ||
|
||
[FILTER] | ||
Name kubernetes | ||
Match default_kube.* | ||
Kube_Tag_Prefix kube.var.log.containers. | ||
Kube_URL https://kubernetes.default.svc:443 | ||
Kube_CA_File /var/run/secrets/kubernetes.io/serviceaccount/ca.crt | ||
Kube_Token_File /var/run/secrets/kubernetes.io/serviceaccount/token | ||
Merge_Log On | ||
Merge_Log_Trim On | ||
|
||
{{ if (( index .Values "fluent-bit" "customConfig").filters) }} | ||
@INCLUDE custom-filters.conf | ||
{{- end }} | ||
|
@@ -120,17 +74,6 @@ data: | |
tls.debug {{ index .Values "fluent-bit" "backend" "opensearch" "tls" "debug"}} | ||
{{ end }} | ||
|
||
{{ if ((index .Values "fluent-bit" "customConfig").outputs) }} | ||
@INCLUDE custom-outputs.conf | ||
{{- end }} | ||
|
||
[OUTPUT] | ||
Name prometheus_exporter | ||
Match internal_metrics | ||
Host 0.0.0.0 | ||
Port 2021 | ||
Add_label app {{ include "fluent-bit.name" . }} | ||
|
||
Comment on lines
-123
to
-133
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. This is a breaking change. What is the reason for removing this? |
||
{{ if ((index .Values "fluent-bit" "customConfig").inputs) }} | ||
custom-inputs.conf: |- | ||
{{- tpl (index .Values "fluent-bit" "customConfig" "inputs") . | nindent 6 }} | ||
|
This file contains 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 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.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This is a breaking change. What is the reason for removing this?