Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
40 commits
Select commit Hold shift + click to select a range
939e323
add configuration for telegraf
vishiy Jan 14, 2019
93f70b9
fix for perms
vishiy Jan 14, 2019
a5f32b8
fix telegraf config.
vishiy Jan 15, 2019
a6c2d2b
fix file location & config
vishiy Jan 15, 2019
cdfafaa
update to config
vishiy Jan 15, 2019
5668ce7
fix namespace
vishiy Jan 15, 2019
6b24725
trying different namespace and also debug=true
vishiy Jan 16, 2019
2cc4cf9
add placeholder for nodename
vishiy Jan 16, 2019
53b302c
change namespace
vishiy Jan 16, 2019
dd7d618
updated config
vishiy Jan 24, 2019
702e508
fix uri
vishiy Jan 25, 2019
34e374d
fix azMon settings
vishiy Jan 29, 2019
0d1b3c1
remove aad settings
vishiy Jan 29, 2019
36c46a2
add custom metrics regions
vishiy Jan 30, 2019
d1fc711
fix config
vishiy Jan 31, 2019
e68bba5
add support for replica-set config
vishiy Feb 8, 2019
185c4ca
fix oomkilled
vishiy Feb 8, 2019
e76ef3a
Add telegraf 403 metric telemetry & non 403 trace telemetry
vishiy Feb 10, 2019
57a2797
fix type
vishiy Feb 10, 2019
68db7f3
fix package
vishiy Feb 10, 2019
1d2bd74
fix package import
vishiy Feb 10, 2019
9fa30b7
fix filename
vishiy Feb 10, 2019
7979e7c
delete unused file
vishiy Feb 10, 2019
95e7b99
conf file for rs; fix 403counttotal metric for telegraf, remove host …
vishiy Feb 10, 2019
50d8572
fix statefulsets
vishiy Feb 10, 2019
2f8f4bf
fix typo.
vishiy Feb 10, 2019
dd12b3d
fix another typo.
vishiy Feb 10, 2019
49c251f
fix telemetry
vishiy Feb 10, 2019
2a3ef70
fix casing issue
vishiy Feb 10, 2019
63426d2
fix comma issue.
vishiy Feb 10, 2019
6063f79
disable telemetry for rs ; fix stateful set name
vishiy Feb 11, 2019
c896546
worksround for namespace fix
vishiy Feb 12, 2019
a1991ce
telegraf integration - v1
vishiy Mar 16, 2019
1c4c714
telemetry changes for telegraf
vishiy Mar 20, 2019
f1325de
telemetry & other changes
vishiy Mar 21, 2019
55de51d
Merge branch 'vishwa/telegraftcp' into vishwa/telegraf
vishiy Mar 21, 2019
5740778
remove custom metric regions as we dont need anymore
vishiy Mar 21, 2019
19cd1ec
Merge branch 'vishwa/telegraf' of https://github.com/Microsoft/Docker…
vishiy Mar 21, 2019
9d534d0
remove un-needed files
vishiy Mar 21, 2019
bfb7331
fixes
vishiy Mar 21, 2019
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
31 changes: 29 additions & 2 deletions installer/conf/td-agent-bit.conf
Original file line number Diff line number Diff line change
Expand Up @@ -23,10 +23,37 @@
Mem_Buf_Limit 2m
Path_Key filepath
Skip_Long_Lines On
Ignore_Older 5m

[INPUT]
Name tail
Tag oms.container.log.telegraf.err.*
Path /var/opt/microsoft/docker-cimprov/log/telegraf.log
DB /var/opt/microsoft/docker-cimprov/state/telegraf-log-state.db
Mem_Buf_Limit 2m
Path_Key filepath
Skip_Long_Lines On
Ignore_Older 5m

[INPUT]
Name tcp
Tag oms.container.perf.telegraf.*
Listen 0.0.0.0
Port 25226
Chunk_Size 32
Buffer_Size 64

[FILTER]
Name grep
Match oms.container.log.telegraf.err.*
#Regex log /^(?:(?!\[azure_monitor\]: failed to write batch: \[403\] 403 Forbidden).)*$/

[OUTPUT]
Name oms
EnableTelemetry true
TelemetryPushIntervalSeconds 300
Match oms.container.log.*
AgentVersion ciprod03122019
Match oms.container.*

#[OUTPUT]
# Name file
# Match oms.container.perf.telegraf.*
Loading