-
Notifications
You must be signed in to change notification settings - Fork 1.6k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
packaging: switch to YAML config files for Linux packages by default
Signed-off-by: Patrick Stephens <[email protected]>
- Loading branch information
1 parent
e9a2f87
commit d44a034
Showing
14 changed files
with
115 additions
and
13 deletions.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
service: | ||
flush: 1 | ||
log_level: info | ||
http_server: false | ||
http_listen: 0.0.0.0 | ||
http_port: 2020 | ||
parsers_file: parsers.yaml | ||
plugins_file: plugins.yaml | ||
|
||
pipeline: | ||
inputs: | ||
- name: dummy | ||
tag: dummy.local | ||
|
||
outputs: | ||
- name: stdout | ||
match: '*' |
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 |
---|---|---|
@@ -0,0 +1,14 @@ | ||
service: | ||
flush: 1 | ||
log_level: info | ||
|
||
pipeline: | ||
inputs: | ||
- name: node_exporter_metrics | ||
tag: node_metrics | ||
|
||
outputs: | ||
- name: prometheus_exporter | ||
match: node_metrics | ||
host: 0.0.0.0 | ||
port: 2021 |
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 |
---|---|---|
@@ -0,0 +1,17 @@ | ||
service: | ||
flush: 1 | ||
log_level: info | ||
http_server: false | ||
http_listen: 0.0.0.0 | ||
http_port: 2020 | ||
parsers_file: parsers.yaml | ||
plugins_file: plugins.yaml | ||
|
||
pipeline: | ||
inputs: | ||
- name: winlog | ||
channels: 'Setup,Windows PowerShell' | ||
|
||
outputs: | ||
- name: stdout | ||
match: '*' |
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 |
---|---|---|
@@ -0,0 +1,17 @@ | ||
service: | ||
flush: 1 | ||
log_level: info | ||
http_server: false | ||
http_listen: 0.0.0.0 | ||
http_port: 2020 | ||
parsers_file: parsers.yaml | ||
plugins_file: plugins.yaml | ||
|
||
pipeline: | ||
inputs: | ||
- name: cpu | ||
tag: cpu.local | ||
|
||
outputs: | ||
- name: stdout | ||
match: '*' |
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 |
---|---|---|
@@ -0,0 +1,9 @@ | ||
parsers: | ||
- name: json | ||
format: json | ||
|
||
- name: docker | ||
format: json | ||
time_key: time | ||
time_format: "%Y-%m-%dT%H:%M:%S.%L" | ||
time_keep: true |
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 |
---|---|---|
@@ -0,0 +1,2 @@ | ||
plugins: | ||
# - /other/path/to/out_gstdout.so |
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 |
---|---|---|
@@ -1,3 +1,6 @@ | ||
/etc/fluent-bit/parsers.conf | ||
/etc/fluent-bit/plugins.conf | ||
/etc/fluent-bit/fluent-bit.conf | ||
/etc/fluent-bit/parsers.yaml | ||
/etc/fluent-bit/plugins.yaml | ||
/etc/fluent-bit/fluent-bit.yaml |
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 |
---|---|---|
|
@@ -83,7 +83,7 @@ | |
</SetProperty> | ||
|
||
<Property Id="CreateFluentBitWinSvc" Value=" "/> | ||
<CustomAction Id="SetCreateFluentBitWinSvcCommand" Property="CreateFluentBitWinSvc" Value=""sc.exe" create @FLB_OUT_NAME@ binpath= "\"[INSTALL_ROOT]bin\@[email protected]\" -c \"[INSTALL_ROOT]conf\@FLB_OUT_NAME@.conf\"" start= delayed-auto" Execute="immediate" /> | ||
<CustomAction Id="SetCreateFluentBitWinSvcCommand" Property="CreateFluentBitWinSvc" Value=""sc.exe" create @FLB_OUT_NAME@ binpath= "\"[INSTALL_ROOT]bin\@[email protected]\" -c \"[INSTALL_ROOT]conf\@FLB_OUT_NAME@.yaml\"" start= delayed-auto" Execute="immediate" /> | ||
<CustomAction Id="CreateFluentBitWinSvc" BinaryKey="WixCA" DllEntry="CAQuietExec" Execute="deferred" Return="ignore" Impersonate="no" /> | ||
|
||
<Property Id="LaunchFluentBitWinSvc" Value=" "/> | ||
|
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