Skip to content

Commit

Permalink
Disable AppSignal on EKS Windows (aws#76)
Browse files Browse the repository at this point in the history
# Problem
AppSignal is having issues around initializing k8s client on EKS Windows
when running it as Host process container. Similar issues existed for
CI Windows but workaround was implemented for CI, similar workaround is
required for AppSignal or We can upgrade container to 1.7 which solves this
issue.
  • Loading branch information
KlwntSingh committed Mar 2, 2024
1 parent 6ecbf3f commit b3ae332
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 1 deletion.
2 changes: 1 addition & 1 deletion helm/templates/cloudwatch-agent-daemonset-windows.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ spec:
{{- if .Values.agent.config }}
config: {{ .Values.agent.config | toJson | quote }}
{{- else }}
config: {{ .Values.agent.defaultConfig | toJson | quote }}
config: {{ .Values.agent.windowsDefaultConfig | toJson | quote }}
{{- end }}
resources:
requests:
Expand Down
10 changes: 10 additions & 0 deletions helm/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -165,4 +165,14 @@ agent:
"app_signals": { }
}
}
}
windowsDefaultConfig:
{
"logs": {
"metrics_collected": {
"kubernetes": {
"enhanced_container_insights": true
},
}
}
}

0 comments on commit b3ae332

Please sign in to comment.