From 3e4b0855fef7c3471948f0efea3e76be861852f1 Mon Sep 17 00:00:00 2001 From: hmuthusamy Date: Fri, 25 Oct 2024 13:28:39 -0400 Subject: [PATCH] Resolved issues with nginx java and added polyglot on otel --- modules/eks-monitoring/README.md | 2 +- modules/eks-monitoring/variables.tf | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/modules/eks-monitoring/README.md b/modules/eks-monitoring/README.md index 95a0f6b5..b4db6a19 100644 --- a/modules/eks-monitoring/README.md +++ b/modules/eks-monitoring/README.md @@ -90,7 +90,7 @@ See examples using this Terraform modules in the **Amazon EKS** section of [this | [enable\_grafana\_operator](#input\_enable\_grafana\_operator) | Deploys Grafana Operator to EKS Cluster | `bool` | `true` | no | | [enable\_istio](#input\_enable\_istio) | Enable ISTIO workloads monitoring, alerting and default dashboards | `bool` | `false` | no | | [enable\_java](#input\_enable\_java) | Enable Java workloads monitoring, alerting and default dashboards | `bool` | `false` | no | -| [enable\_polyglot](#input\_enable\_polyglot) | Enable monitoring, alerting and default dashboards for .net,Rust and other languages | `bool` | `false` | no | +| [enable\_polyglot](#input\_enable\_polyglot) | Enable monitoring for .Net,Rust and other languages | `bool` | `false` | no | | [enable\_kube\_state\_metrics](#input\_enable\_kube\_state\_metrics) | Enables or disables Kube State metrics exporter. Disabling this might affect some data in the dashboards | `bool` | `true` | no | | [enable\_logs](#input\_enable\_logs) | Using AWS For FluentBit to collect cluster and application logs to Amazon CloudWatch | `bool` | `true` | no | | [enable\_managed\_prometheus](#input\_enable\_managed\_prometheus) | Creates a new Amazon Managed Service for Prometheus Workspace | `bool` | `true` | no | diff --git a/modules/eks-monitoring/variables.tf b/modules/eks-monitoring/variables.tf index ff1eb0c1..c1929248 100644 --- a/modules/eks-monitoring/variables.tf +++ b/modules/eks-monitoring/variables.tf @@ -567,7 +567,7 @@ variable "kubeproxy_monitoring_config" { } variable "enable_polyglot" { - description = "Enable monitoring for .net,Rust and other languages" + description = "Enable monitoring for .Net,Rust and other languages" type = bool default = false }