Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
F
fluentd-client
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Deploy
Releases
Model registry
Monitor
Incidents
Service Desk
Analyze
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Ansible
Roles
fluentd-client
Compare revisions
2b2abbe752b91bab11130fbc479ffd8f548c606f to b2eca526635b5babed189b49c79ec7c01d1b1c15
Compare revisions
Changes are shown as if the
source
revision was being merged into the
target
revision.
Learn more about comparing revisions.
Source
ansible/roles/fluentd-client
Select target project
No results found
b2eca526635b5babed189b49c79ec7c01d1b1c15
Select Git revision
Swap
Target
ansible/roles/fluentd-client
Select target project
ansible/roles/fluentd-client
1 result
2b2abbe752b91bab11130fbc479ffd8f548c606f
Select Git revision
Show changes
Only incoming changes from source
Include changes to target since source was created
Compare
Commits on Source (1)
Fix syntax
· b2eca526
jurgenhaas
authored
1 year ago
b2eca526
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
templates/td-agent.conf
+10
-10
10 additions, 10 deletions
templates/td-agent.conf
with
10 additions
and
10 deletions
templates/td-agent.conf
View file @
b2eca526
...
...
@@ -252,7 +252,7 @@
@
type
forward
port
24284
</
source
>
{%
if
elasticsearch_install
|
default
(
yes
) %}
{%
if
elasticsearch_install
|
default
(
'
yes
'
) %}
<
filter
app
.
ansible
>
@
type
elasticsearch_timestamp_check
...
...
@@ -263,7 +263,7 @@
@
type
kvp
parse_key
log
</
filter
>
{%
if
elasticsearch_install
|
default
(
yes
) %}
{%
if
elasticsearch_install
|
default
(
'
yes
'
) %}
<
filter
app
.
uptime
.
ping
>
@
type
elasticsearch_timestamp_check
...
...
@@ -274,8 +274,8 @@
{%
for
appl
in
hostvars
[
host
].
fluentd_applications
|
default
([]) %}
{%
if
appl
.
type
|
default
(
false
) %}
<
match
{{
appl
.
index
}}>
@
type
{%
if
elasticsearch_install
|
default
(
yes
) %}{{
appl
.
plugin
|
default
(
'elasticsearch'
) }}{%
else
%}
http
{%
endif
%}
{%
if
elasticsearch_install
|
default
(
yes
) %}
@
type
{%
if
elasticsearch_install
|
default
(
'
yes
'
) %}{{
appl
.
plugin
|
default
(
'elasticsearch'
) }}{%
else
%}
http
{%
endif
%}
{%
if
elasticsearch_install
|
default
(
'
yes
'
) %}
host
127
.
0
.
0
.
1
port
9200
include_tag_key
true
...
...
@@ -311,7 +311,7 @@
{%
endfor
%}
<
match
app
.
ansible
>
{%
if
elasticsearch_install
|
default
(
yes
) %}
{%
if
elasticsearch_install
|
default
(
'
yes
'
) %}
@
type
elasticsearch
host
127
.
0
.
0
.
1
port
9200
...
...
@@ -343,7 +343,7 @@
</
match
>
<
match
app
.
uptime
.
ping
>
{%
if
elasticsearch_install
|
default
(
yes
) %}
{%
if
elasticsearch_install
|
default
(
'
yes
'
) %}
@
type
elasticsearch
host
127
.
0
.
0
.
1
port
9200
...
...
@@ -375,7 +375,7 @@
</
match
>
<
match
haproxy
.*>
{%
if
elasticsearch_install
|
default
(
yes
) %}
{%
if
elasticsearch_install
|
default
(
'
yes
'
) %}
@
type
elasticsearch
host
127
.
0
.
0
.
1
port
9200
...
...
@@ -407,7 +407,7 @@
</
match
>
<
match
*
beat
>
{%
if
elasticsearch_install
|
default
(
yes
) %}
{%
if
elasticsearch_install
|
default
(
'
yes
'
) %}
@
type
elasticsearch_dynamic
logstash_format
true
logstash_prefix
${
tag_parts
[
0
]}
...
...
@@ -440,7 +440,7 @@
</
match
>
<
match
netdata
>
{%
if
elasticsearch_install
|
default
(
yes
) %}
{%
if
elasticsearch_install
|
default
(
'
yes
'
) %}
@
type
elasticsearch
host
127
.
0
.
0
.
1
port
9200
...
...
@@ -475,7 +475,7 @@
</
match
>
<
match
**>
{%
if
elasticsearch_install
|
default
(
yes
) %}
{%
if
elasticsearch_install
|
default
(
'
yes
'
) %}
@
type
elasticsearch
logstash_format
true
host
127
.
0
.
0
.
1
...
...
This diff is collapsed.
Click to expand it.