GCP - Cloud Monitoring and Logging
Given this code snippet in a Python app:
What will happen when this code runs?
from google.cloud import error_reporting
client = error_reporting.Client()
try:
1 / 0
except Exception as e:
client.report_exception()What will happen when this code runs?
