├── .gitignore ├── LICENSE ├── README.md ├── notebooks ├── create_queries_and_alerts.py ├── functions.py └── geolocation_function_and_queries.sql ├── requirements.txt ├── resources └── queries_and_alerts.json └── terraform ├── README.md ├── job.tf ├── main.tf ├── sql.tf └── variables.tf /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyweaves/system-tables-audit-logs/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyweaves/system-tables-audit-logs/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyweaves/system-tables-audit-logs/HEAD/README.md -------------------------------------------------------------------------------- /notebooks/create_queries_and_alerts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyweaves/system-tables-audit-logs/HEAD/notebooks/create_queries_and_alerts.py -------------------------------------------------------------------------------- /notebooks/functions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyweaves/system-tables-audit-logs/HEAD/notebooks/functions.py -------------------------------------------------------------------------------- /notebooks/geolocation_function_and_queries.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyweaves/system-tables-audit-logs/HEAD/notebooks/geolocation_function_and_queries.sql -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | databricks-sdk -------------------------------------------------------------------------------- /resources/queries_and_alerts.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyweaves/system-tables-audit-logs/HEAD/resources/queries_and_alerts.json -------------------------------------------------------------------------------- /terraform/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyweaves/system-tables-audit-logs/HEAD/terraform/README.md -------------------------------------------------------------------------------- /terraform/job.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyweaves/system-tables-audit-logs/HEAD/terraform/job.tf -------------------------------------------------------------------------------- /terraform/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyweaves/system-tables-audit-logs/HEAD/terraform/main.tf -------------------------------------------------------------------------------- /terraform/sql.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyweaves/system-tables-audit-logs/HEAD/terraform/sql.tf -------------------------------------------------------------------------------- /terraform/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyweaves/system-tables-audit-logs/HEAD/terraform/variables.tf --------------------------------------------------------------------------------