Using GCP, I instantiate workflows for my processing. I'd like to activate Stackdriver logging to have more metrics (see https://cloud.google.com/dataproc/docs/guides/stackdriver-logging).
From documentation, I should set the property:
dataproc:dataproc.logging.stackdriver.job.driver.enable=true
My workflow template looks like:
placement:
managedCluster:
clusterName: my-cluster
config:
gceClusterConfig:
zoneUri: europe-west1-d
masterConfig:
machineTypeUri: n1-standard-4
workerConfig:
machineTypeUri: n1-standard-4
numInstances: 10
Where should I set this property?
Thx.