From 16cd597fd12402ce70be38c7666cea495ad2c8d3 Mon Sep 17 00:00:00 2001 From: Niall Woodward Date: Fri, 28 Jul 2023 16:32:33 +0100 Subject: [PATCH 1/2] Remove data transfer history --- dbt_project.yml | 2 +- models/staging/sources.yml | 1 - models/staging/stg_data_transfer_history.sql | 10 ---------- 3 files changed, 1 insertion(+), 12 deletions(-) delete mode 100644 models/staging/stg_data_transfer_history.sql diff --git a/dbt_project.yml b/dbt_project.yml index d49e7f8..4de0b49 100644 --- a/dbt_project.yml +++ b/dbt_project.yml @@ -1,5 +1,5 @@ name: 'dbt_snowflake_monitoring' -version: '4.4.0' +version: '4.4.1' config-version: 2 profile: dbt_snowflake_monitoring diff --git a/models/staging/sources.yml b/models/staging/sources.yml index 144d55e..f4d2478 100644 --- a/models/staging/sources.yml +++ b/models/staging/sources.yml @@ -6,7 +6,6 @@ sources: schema: account_usage tables: - name: access_history - - name: data_transfer_history - name: database_storage_usage_history - name: metering_daily_history - name: metering_history diff --git a/models/staging/stg_data_transfer_history.sql b/models/staging/stg_data_transfer_history.sql deleted file mode 100644 index 5a259b0..0000000 --- a/models/staging/stg_data_transfer_history.sql +++ /dev/null @@ -1,10 +0,0 @@ -select - start_time, - end_time, - source_cloud, - source_region, - target_cloud, - target_region, - bytes_transferred, - transfer_type -from {{ source('snowflake_account_usage', 'data_transfer_history') }} From cc62d1c2dfd426a2053aff34c716ce34bd248a94 Mon Sep 17 00:00:00 2001 From: Niall Woodward Date: Fri, 28 Jul 2023 16:33:41 +0100 Subject: [PATCH 2/2] 4.4.1 --- .changes/4.4.1.md | 7 +++++++ CHANGELOG.md | 8 ++++++++ 2 files changed, 15 insertions(+) create mode 100644 .changes/4.4.1.md diff --git a/.changes/4.4.1.md b/.changes/4.4.1.md new file mode 100644 index 0000000..b0ae998 --- /dev/null +++ b/.changes/4.4.1.md @@ -0,0 +1,7 @@ +## dbt-snowflake-monitoring 4.4.1 - July 28, 2023 + +### Features + +- Remove unneeded data_transfer_history source and stg model ([#124](https://github.com/get-select/dbt-snowflake-monitoring/pull/124)) + + diff --git a/CHANGELOG.md b/CHANGELOG.md index 25268b4..2b4d776 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,14 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html), and is generated by [Changie](https://github.com/miniscruff/changie). +## dbt-snowflake-monitoring 4.4.1 - July 28, 2023 + +### Features + +- Remove unneeded data_transfer_history source and stg model ([#124](https://github.com/get-select/dbt-snowflake-monitoring/pull/124)) + + + ## dbt-snowflake-monitoring 4.4.0 - July 26, 2023 ### Features