Search
K

Sensitive Data Obfuscation

As any application monitoring system, the data collected by groundcover is by nature sensitive and contains payloads of full requests and queries. Raw traces can go a long way in a troubleshooting process, but you can choose to obfuscate their payload.

How to use

Prepare values override

Write the yaml content below to obfuscate.yaml, this will override the default values.yaml
agent:
alligator:
obfuscateData: true

Using CLI on New or Existing Installation

groundcover deploy --values obfuscate.yaml

Using Helm on New Installation

more on getting api-key, see: Using Helm
helm upgrade \
groundcover \
groundcover/groundcover \
-n groundcover \
-i \
--set global.groundcover_token=<api-key>,clusterId=my_cluster
--values obfuscate.yaml

Using Helm on Existing Installation

helm upgrade \
groundcover \
groundcover/groundcover \
-n groundcover \
--reuse-values \
--values obfuscate.yaml