27 Apr 2023 09:55 AM - edited 26 May 2023 03:38 PM
Hello members,
I deployed Dynatrace on AKS cluster with host monitoring mode in order to cover infrastructure monitoring on cluster nodes :
https://www.dynatrace.com/support/help/shortlink/dto-deploy-options-k8s#host
My dynakube ressource is based on template hostMonitoring.yaml :
https://github.com/Dynatrace/dynatrace-operator/blob/v0.11.0/assets/samples/hostMonitoring.yaml
But Oneagent nodes appear in full stack mode instead of infra_only on Dynatrace and the consumption of host units is like a full stack mode :
Do you think it's a abnormal behaviour or it's a specificity of kubernetes instrumentation ?
Thank you.
Solved! Go to Solution.
26 May 2023 03:45 PM
Hello members,
FYI, I have solved my issue by adding the following configuration on the oneagent section in my dynakube custom ressource yaml file :
# Optional: Adds custom arguments to the OneAgent installer
# For a list of available options, see https://www.dynatrace.com/support/help/shortlink/linux-custom-installation
# For a list of the limitations for OneAgents in Docker, see https://www.dynatrace.com/support/help/shortlink/oneagent-docker#limitations
#
args:
- "--set-infra-only=true"
- "--set-host-group=_A_AppName_E_Prod"
- "--set-network-zone=eu.azure.westeurope"
After apply the new version of dynakube resource yaml , nodes appears in INFRA_ONLY mode.
Regards.