├── .circleci └── config.yml ├── .github ├── ISSUE_TEMPLATE │ ├── CODEOWNERS │ ├── bug_report.md │ └── feature_request.md └── pull_request_template.md ├── .gitignore ├── CHANGELOG.md ├── LICENSE ├── README.md ├── analyses └── periscope │ ├── README.md │ ├── dashboard.png │ ├── deployments.sql │ ├── models.sql │ ├── models_out_of_sla.sql │ └── models_summary.sql ├── dbt_project.yml ├── integration_tests ├── .gitignore ├── Makefile ├── README.md ├── ci │ └── sample.profiles.yml ├── dbt_project.yml ├── macros │ ├── create_old_audit_table.sql │ └── drop_audit_schema.sql ├── models │ └── my_model.sql └── packages.yml ├── lookml ├── dbt_audit.dashboard.lookml ├── dbt_audit.model.lkml ├── dbt_audit_log.view.lkml ├── dbt_deployments.view.lkml └── dbt_model_deployments.view.lkml ├── macros ├── audit.sql └── bigquery.sql ├── models ├── bigquery │ ├── stg_dbt_deployments.sql │ └── stg_dbt_model_deployments.sql ├── default │ ├── stg_dbt_deployments.sql │ └── stg_dbt_model_deployments.sql └── stg_dbt_audit_log.sql └── packages.yml /.circleci/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbt-labs/dbt-event-logging/HEAD/.circleci/config.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/CODEOWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbt-labs/dbt-event-logging/HEAD/.github/ISSUE_TEMPLATE/CODEOWNERS -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbt-labs/dbt-event-logging/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbt-labs/dbt-event-logging/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/pull_request_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbt-labs/dbt-event-logging/HEAD/.github/pull_request_template.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | 2 | target/ 3 | dbt_modules/ 4 | logs/ 5 | 6 | # pycharm 7 | .idea/ 8 | -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbt-labs/dbt-event-logging/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbt-labs/dbt-event-logging/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbt-labs/dbt-event-logging/HEAD/README.md -------------------------------------------------------------------------------- /analyses/periscope/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbt-labs/dbt-event-logging/HEAD/analyses/periscope/README.md -------------------------------------------------------------------------------- /analyses/periscope/dashboard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbt-labs/dbt-event-logging/HEAD/analyses/periscope/dashboard.png -------------------------------------------------------------------------------- /analyses/periscope/deployments.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbt-labs/dbt-event-logging/HEAD/analyses/periscope/deployments.sql -------------------------------------------------------------------------------- /analyses/periscope/models.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbt-labs/dbt-event-logging/HEAD/analyses/periscope/models.sql -------------------------------------------------------------------------------- /analyses/periscope/models_out_of_sla.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbt-labs/dbt-event-logging/HEAD/analyses/periscope/models_out_of_sla.sql -------------------------------------------------------------------------------- /analyses/periscope/models_summary.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbt-labs/dbt-event-logging/HEAD/analyses/periscope/models_summary.sql -------------------------------------------------------------------------------- /dbt_project.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbt-labs/dbt-event-logging/HEAD/dbt_project.yml -------------------------------------------------------------------------------- /integration_tests/.gitignore: -------------------------------------------------------------------------------- 1 | 2 | target/ 3 | dbt_modules/ 4 | logs/ 5 | -------------------------------------------------------------------------------- /integration_tests/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbt-labs/dbt-event-logging/HEAD/integration_tests/Makefile -------------------------------------------------------------------------------- /integration_tests/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbt-labs/dbt-event-logging/HEAD/integration_tests/README.md -------------------------------------------------------------------------------- /integration_tests/ci/sample.profiles.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbt-labs/dbt-event-logging/HEAD/integration_tests/ci/sample.profiles.yml -------------------------------------------------------------------------------- /integration_tests/dbt_project.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbt-labs/dbt-event-logging/HEAD/integration_tests/dbt_project.yml -------------------------------------------------------------------------------- /integration_tests/macros/create_old_audit_table.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbt-labs/dbt-event-logging/HEAD/integration_tests/macros/create_old_audit_table.sql -------------------------------------------------------------------------------- /integration_tests/macros/drop_audit_schema.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbt-labs/dbt-event-logging/HEAD/integration_tests/macros/drop_audit_schema.sql -------------------------------------------------------------------------------- /integration_tests/models/my_model.sql: -------------------------------------------------------------------------------- 1 | select 1 as my_col 2 | -------------------------------------------------------------------------------- /integration_tests/packages.yml: -------------------------------------------------------------------------------- 1 | 2 | packages: 3 | - local: ../ 4 | -------------------------------------------------------------------------------- /lookml/dbt_audit.dashboard.lookml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbt-labs/dbt-event-logging/HEAD/lookml/dbt_audit.dashboard.lookml -------------------------------------------------------------------------------- /lookml/dbt_audit.model.lkml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbt-labs/dbt-event-logging/HEAD/lookml/dbt_audit.model.lkml -------------------------------------------------------------------------------- /lookml/dbt_audit_log.view.lkml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbt-labs/dbt-event-logging/HEAD/lookml/dbt_audit_log.view.lkml -------------------------------------------------------------------------------- /lookml/dbt_deployments.view.lkml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbt-labs/dbt-event-logging/HEAD/lookml/dbt_deployments.view.lkml -------------------------------------------------------------------------------- /lookml/dbt_model_deployments.view.lkml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbt-labs/dbt-event-logging/HEAD/lookml/dbt_model_deployments.view.lkml -------------------------------------------------------------------------------- /macros/audit.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbt-labs/dbt-event-logging/HEAD/macros/audit.sql -------------------------------------------------------------------------------- /macros/bigquery.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbt-labs/dbt-event-logging/HEAD/macros/bigquery.sql -------------------------------------------------------------------------------- /models/bigquery/stg_dbt_deployments.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbt-labs/dbt-event-logging/HEAD/models/bigquery/stg_dbt_deployments.sql -------------------------------------------------------------------------------- /models/bigquery/stg_dbt_model_deployments.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbt-labs/dbt-event-logging/HEAD/models/bigquery/stg_dbt_model_deployments.sql -------------------------------------------------------------------------------- /models/default/stg_dbt_deployments.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbt-labs/dbt-event-logging/HEAD/models/default/stg_dbt_deployments.sql -------------------------------------------------------------------------------- /models/default/stg_dbt_model_deployments.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbt-labs/dbt-event-logging/HEAD/models/default/stg_dbt_model_deployments.sql -------------------------------------------------------------------------------- /models/stg_dbt_audit_log.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbt-labs/dbt-event-logging/HEAD/models/stg_dbt_audit_log.sql -------------------------------------------------------------------------------- /packages.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbt-labs/dbt-event-logging/HEAD/packages.yml --------------------------------------------------------------------------------