Hello - I am very to keen to get some expert opini...
# general
k
Hello - I am very to keen to get some expert opinion for Signoz in production AKS cluster ! Are we good with to use it in AKS production cluster ? Also, can we have any sample project by which I can deploy it to AKS clusters and see the Traces, Service Maps, Logs etc..
v
@Prashant Shahi Can you please help with this?
p
Hi @Koushik Maiti 👋 You should be able to follow instructions k8s/others docs to set up SigNoz in AKS: https://signoz.io/docs/install/kubernetes/others/ Also, we had help from community member to verify SigNoz chart in different K8s version of AKS. https://github.com/SigNoz/signoz/issues/2197#issuecomment-1491230029
override-values.yaml
Copy code
global:
  clusterName: "koushik-cluster"

clickhouse:
  persistence:
    size: 100Gi

k8s-infra:
  presets:
    resourceDetection:
      detectors:
        - aks
        - azure
        - system
@Koushik Maiti you can use the override values to set up in AKS cluster. If you wish to use non-default storage class, you can use
global.storageClass
configuration to set it during installation (and not later). Commands:
Copy code
helm repo add signoz <https://charts.signoz.io>

helm install -n platform --create-namespace my-release signoz/signoz -f override-values.yaml
k
Thanks @Prashant Shahi. I have made available the SigNoz in AKS cluster. I'm looking for some application/ready made Application so that I can deploy it to cluster and see Traces, Service Maps and Logs.
p
You should already see logs being captured from the cluster where you installed signoz. For traces, you can use HotROD sample application or any of the sample applications in desired language/framework. • https://signoz.io/docs/install/kubernetes/others#optional-install-a-sample-application-and-generate-tracing-data • https://signoz.io/opentelemetry/ Also, you can import dashboards from step 3, 4 and 5 of the following K8s Infra docs. https://signoz.io/docs/tutorial/kubernetes-infra-metrics/