https://theorchard.atlassian.net/browse/PP-1196



- `1_principal_tenant__successfully_logs_to_datadog`: Shows a log that shows up in datadog
- `10_principal_tenants`: Shows a log that does not show up in datadog
- `complicated_user_request_and_log`: Another log that does not show up in datadog


### To run the example cerbos queries
The scripts send a request directly to the cerbos cluster, bypassing ows-pdp. The cerbos response
should be logged in Datadog with metadata: `@log.logger:cerbos.audit environment:qa @log.kind:decision`.


```bash
bash 1_principal_tenant__successfully_logs_to_datadog/request.sh 
```

```bash
bash 10_principal_tenants/request.sh
```

```bash
bash complicated_user_request_and_log/request.sh
```


### Sizes
- A 8k log shows up in datadog.
- A 26k log does not show up in datadog
- A 1.9M log does not show up in datadog (obviously)



```text
% find . -type f -name '*.txt' | xargs ls -alh
-rw-r--r--@ 1 tcalhoun  staff   8.1K Jan 15 10:59 ./1_principal_tenant__successfully_logs_to_datadog/audit_log.txt
-rw-r--r--@ 1 tcalhoun  staff    26K Jan 15 11:01 ./10_principal_tenants/audit_log.txt
-rw-r--r--  1 tcalhoun  staff   1.9M Jan 15 09:02 ./complicated_user_request_and_log/complicated_user_cerbos_audit_log.txt
```