Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
slapos
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Eteri
slapos
Commits
d9ae0eb1
Commit
d9ae0eb1
authored
Dec 18, 2017
by
Eteri
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fluentbit: add go output plugin
parent
80756a17
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
25 additions
and
4 deletions
+25
-4
software/fluentbit/instance.cfg.in
software/fluentbit/instance.cfg.in
+3
-1
software/fluentbit/software.cfg
software/fluentbit/software.cfg
+22
-3
No files found.
software/fluentbit/instance.cfg.in
View file @
d9ae0eb1
...
...
@@ -19,6 +19,8 @@ bin = ${:home}/bin
[fluentbit-service]
recipe = slapos.cookbook:wrapper
command-line = {{ fluentbit_source_location }}/build/bin/fluent-bit -i cpu -o stdout
#command-line = {{ fluentbit_source_location }}/build/bin/fluent-bit -i cpu -o stdout
command-line = {{ fluentbit_source_location }}/build/bin/fluent-bit -e {{ fluentbit_go_repository_location}}/examples/out_gstdout/out_gstdout.so -i cpu -o gstdout
wrapper-path = ${directory:service}/fluentbit-service
output = $${:wrapper-path}
software/fluentbit/software.cfg
View file @
d9ae0eb1
...
...
@@ -2,22 +2,28 @@
extends =
../../stack/slapos.cfg
../../component/cmake/buildout.cfg
../../component/golang/buildout.cfg
parts =
golang19
slapos-cookbook
fluentbit-source
fluentbit
instance-profile
fluentbit-go-repository
fluentbit-build-go
[instance-profile]
recipe = slapos.recipe.template:jinja2
template = ${:_profile_base_location_}/instance.cfg.in
rendered = ${buildout:directory}/instance.cfg
md5sum = a4cc579e1a4dd0eb58792a8dc6d47bc9
#
md5sum = a4cc579e1a4dd0eb58792a8dc6d47bc9
mode = 0644
context =
section buildout buildout
key fluentbit_source_location fluentbit-source:location
key fluentbit_go_repository_location fluentbit-go-repository:location
[fluentbit-source]
recipe = slapos.recipe.build:gitclone
...
...
@@ -28,7 +34,20 @@ recipe = slapos.recipe.cmmi
path = ${fluentbit-source:location}
location = ${buildout:parts-directory}/${:_buildout_section_name_}
configure-command =
cd build && ${cmake:location}/bin/cmake ..
cd build && ${cmake:location}/bin/cmake
-DFLB_DEBUG=On -DFLB_PROXY_GO=On
..
make-targets =
make-binary =
cd build && make
[fluentbit-go-repository]
recipe = slapos.recipe.build:gitclone
repository = https://github.com/fluent/fluent-bit-go
[fluentbit-build-go]
recipe = slapos.recipe.cmmi
go = ${golang19:location}/bin/go
path = ${fluentbit-go-repository:location}
configure-command = cd ${:path} && ${:go} get github.com/fluent/fluent-bit-go/output
make-binary =
make-targets = cd ${:path}/examples/out_gstdout &&
${:go} build -buildmode=c-shared -o out_gstdout.so out_gstdout.go
\ No newline at end of file
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment