Skip to content

Commit 8b9ca18

Browse files
fivetran-catfritzfivetran-jamiefivetran-joemarkiewicz
authored
Feature/historical schedules (#55)
* stage changes * seed * bk * add seed back in * add using_holidays * doc updates * fix vars * fix vars * Update vars * update yml * update changelog & regen docs * update var names, readme, regen docs * update run models * update changelog * Apply suggestions from code review Co-authored-by: Joe Markiewicz <[email protected]> * Apply suggestions from code review Co-authored-by: Jamie Rodriguez <[email protected]> --------- Co-authored-by: Jamie Rodriguez <[email protected]> Co-authored-by: Joe Markiewicz <[email protected]>
1 parent fd7ffca commit 8b9ca18

16 files changed

+167
-20
lines changed

.buildkite/scripts/run_models.sh

+2
Original file line numberDiff line numberDiff line change
@@ -21,4 +21,6 @@ dbt run --target "$db" --full-refresh
2121
dbt test --target "$db"
2222
dbt run --vars '{using_schedules: false, using_domain_names: false, using_user_tags: false, using_ticket_form_history: false, using_organization_tags: false}' --target "$db" --full-refresh
2323
dbt test --target "$db"
24+
dbt run --vars '{using_schedule_histories: true, using_holidays: false}' --target "$db" --full-refresh
25+
dbt test --target "$db"
2426
dbt run-operation fivetran_utils.drop_schemas_automation --target "$db"

CHANGELOG.md

+15
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,18 @@
1+
# dbt_zendesk_source v0.13.0
2+
[PR #55](https://github.com/fivetran/dbt_zendesk_source/pull/55) includes the following updates:
3+
4+
## Breaking Changes
5+
- Introduced the `stg_zendesk__audit_log` table for capturing schedule changes from Zendesk's audit log.
6+
- This model is disabled by default, to enable it set variable `using_schedule_histories` to `true` in your `dbt_project.yml`.
7+
- While currently used for schedule tracking, this table has possible future applications, such as tracking user changes.
8+
9+
## Features
10+
- Updated the `stg_zendesk__schedule_holidays` model to allow users to disable holiday processing (while still using schedules) by setting `using_holidays` to `false`.
11+
- Added field-level documentation for the `stg_zendesk__audit_log` table.
12+
13+
## Under the Hood Improvements
14+
- Added seed data for `audit_log` to enhance integration testing capabilities.
15+
116
# dbt_zendesk_source v0.12.0
217
[PR #53](https://github.com/fivetran/dbt_zendesk_source/pull/53) includes the following updates:
318
## Breaking changes

README.md

+6-4
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ Include the following zendesk_source package version in your `packages.yml` file
4444
```yaml
4545
packages:
4646
- package: fivetran/zendesk_source
47-
version: [">=0.12.0", "<0.13.0"]
47+
version: [">=0.13.0", "<0.14.0"]
4848
```
4949
### Step 3: Define database and schema variables
5050
By default, this package runs using your target database and the `zendesk` schema. If this is not where your Zendesk Support data is (for example, if your zendesk schema is named `zendesk_fivetran`), add the following configuration to your root `dbt_project.yml` file:
@@ -54,11 +54,13 @@ vars:
5454
zendesk_database: your_destination_name
5555
zendesk_schema: your_schema_name
5656
```
57-
### Step 4: Disable models for non-existent sources
58-
This package takes into consideration that not every Zendesk Support account utilizes the `schedule`, `domain_name`, `user_tag`, `organization_tag`, or `ticket_form_history` features, and allows you to disable the corresponding functionality. By default, all variables' values are assumed to be `true`. Add variables for only the tables you want to disable:
57+
### Step 4: Enable/Disable models for non-existent sources
58+
This package takes into consideration that not every Zendesk Support account utilizes the `schedule`, `schedule_holiday`, `ticket_schedule`, `daylight_time`, `time_zone`, `audit_log`, `domain_name`, `user_tag`, `organization_tag`, or `ticket_form_history` features, and allows you to disable the corresponding functionality. By default, all variables' values are assumed to be `true`, except for `using_schedule_histories`. Add variables for only the tables you want to enable/disable:
5959
```yml
6060
vars:
61-
using_schedules: False #Disable if you are not using schedules
61+
using_schedule_histories: True #Enable if you are using audit_logs for schedule histories
62+
using_schedules: False #Disable if you are not using schedules, which requires source tables ticket_schedule, daylight_time, and time_zone
63+
using_holidays: False #Disable if you are not using schedule_holidays for holidays
6264
using_domain_names: False #Disable if you are not using domain names
6365
using_user_tags: False #Disable if you are not using user tags
6466
using_ticket_form_history: False #Disable if you are not using ticket form history

dbt_project.yml

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
config-version: 2
22
name: 'zendesk_source'
3-
version: '0.12.0'
3+
version: '0.13.0'
44
require-dbt-version: [">=1.3.0", "<2.0.0"]
55
models:
66
zendesk_source:
@@ -28,6 +28,7 @@ vars:
2828
user: "{{ source('zendesk', 'user') }}"
2929
time_zone: "{{ source('zendesk', 'time_zone') }}"
3030
daylight_time: "{{ source('zendesk', 'daylight_time') }}"
31+
audit_log: "{{ source('zendesk', 'audit_log') }}"
3132

3233
zendesk__ticket_passthrough_columns: []
3334
zendesk__user_passthrough_columns: []

docs/catalog.json

+1-1
Large diffs are not rendered by default.

docs/manifest.json

+1-1
Large diffs are not rendered by default.

docs/run_results.json

-1
This file was deleted.

integration_tests/dbt_project.yml

+5-7
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,12 @@
11
config-version: 2
22

33
name: 'zendesk_source_integration_tests'
4-
version: '0.12.0'
4+
version: '0.13.0'
55

66
profile: 'integration_tests'
77

88
vars:
9+
910
zendesk_schema: zendesk_source_integrations_tests_5
1011
zendesk_source:
1112
zendesk_organization_identifier: "organization_data"
@@ -25,14 +26,11 @@ vars:
2526
zendesk_organization_tag_identifier: "organization_tag_data"
2627
zendesk_user_identifier: "user_data"
2728
zendesk_user_tag_identifier: "user_tag_data"
29+
zendesk_audit_log_identifier: "audit_log_data"
2830

31+
## Uncomment for docs generation
32+
# using_schedule_histories: True
2933

30-
using_schedules: True
31-
using_domain_names: True
32-
using_user_tags: True
33-
using_ticket_form_history: True
34-
using_organization_tags: True
35-
3634
seeds:
3735
zendesk_source_integration_tests:
3836
+quote_columns: "{{ true if target.type == 'redshift' else false }}"
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
id,_fivetran_synced,action,actor_id,change_description,created_at,source_id,source_label,source_type
2+
579796,2024-05-28 21:53:06.793000,update,37253,"Workweek changed from {:sun=&amp;gt;{""01:45""=&amp;gt;""02:45""}, :mon=&amp;gt;{""09:00""=&amp;gt;""20:00""}, :tue=&amp;gt;{""09:00""=&amp;gt;""20:00""}, :wed=&amp;gt;{""08:00""=&amp;gt;""20:00""}, :thu=&amp;gt;{""08:00""=&amp;gt;""20:00""}, :fri=&amp;gt;{""08:00""=&amp;gt;""20:00""}} to {:sun=&amp;gt;{""03:00""=&amp;gt;""04:00""}, :mon=&amp;gt;{""08:00""=&amp;gt;""20:00""}, :tue=&amp;gt;{""08:00""=&amp;gt;""20:00""}, :wed=&amp;gt;{""07:15""=&amp;gt;""20:00""}, :thu=&amp;gt;{""07:15""=&amp;gt;""20:00""}, :fri=&amp;gt;{""07:15""=&amp;gt;""20:00""}}",2024-05-28 21:51:37.000000,18542,Workweek: Central US Schedule,zendesk/business_hours/workweek
3+
2679952,2024-05-28 16:18:58.471000,update,37253,"Workweek changed from {:thu=&amp;gt;{""09:00""=&amp;gt;""17:00""}, :fri=&amp;gt;{""09:00""=&amp;gt;""17:00""}, :mon=&amp;gt;{""09:00""=&amp;gt;""17:00""}, :tue=&amp;gt;{""09:00""=&amp;gt;""17:00""}, :wed=&amp;gt;{""09:00""=&amp;gt;""17:00""}} to {:mon=&amp;gt;{""09:00""=&amp;gt;""17:00""}, :tue=&amp;gt;{""09:00""=&amp;gt;""17:00""}, :wed=&amp;gt;{""09:00""=&amp;gt;""17:00""}, :thu=&amp;gt;{""09:00""=&amp;gt;""17:00""}, :fri=&amp;gt;{""09:00""=&amp;gt;""17:00""}}",2024-05-21 11:20:29.000000,267996,Workweek: New schedule here,zendesk/business_hours/workweek
4+
293556,2024-05-28 16:18:58.471000,update,37253,"Workweek changed from {} to {:mon=&amp;gt;{""09:00""=&amp;gt;""17:00""}, :tue=&amp;gt;{""09:00""=&amp;gt;""17:00""}, :wed=&amp;gt;{""09:00""=&amp;gt;""17:00""}, :thu=&amp;gt;{""09:00""=&amp;gt;""17:00""}, :fri=&amp;gt;{""09:00""=&amp;gt;""17:00""}}",2024-05-21 11:20:28.000000,267996,Workweek: New schedule here,zendesk/business_hours/workweek
5+
4441364,2024-05-28 16:18:58.471000,update,37253,"Workweek changed from {:wed=&amp;gt;{""09:00""=&amp;gt;""17:00""}, :thu=&amp;gt;{""09:00""=&amp;gt;""17:00""}, :mon=&amp;gt;{""09:00""=&amp;gt;""17:00""}, :tue=&amp;gt;{""09:00""=&amp;gt;""17:00""}, :fri=&amp;gt;{""09:00""=&amp;gt;""17:00""}} to {:mon=&amp;gt;{""09:00""=&amp;gt;""17:00""}, :tue=&amp;gt;{""09:00""=&amp;gt;""17:00""}, :wed=&amp;gt;{""09:00""=&amp;gt;""17:00""}, :thu=&amp;gt;{""09:00""=&amp;gt;""17:00""}, :fri=&amp;gt;{""09:00""=&amp;gt;""17:00""}}",2024-05-21 11:20:10.000000,267996,Workweek: New schedule 2,zendesk/business_hours/workweek
6+
70900,2024-05-28 16:18:58.471000,update,37253,"Workweek changed from {} to {:mon=&amp;gt;{""09:00""=&amp;gt;""17:00""}, :tue=&amp;gt;{""09:00""=&amp;gt;""17:00""}, :wed=&amp;gt;{""09:00""=&amp;gt;""17:00""}, :thu=&amp;gt;{""09:00""=&amp;gt;""17:00""}, :fri=&amp;gt;{""09:00""=&amp;gt;""17:00""}}",2024-05-21 11:20:09.000000,267996,Workweek: New schedule 2,zendesk/business_hours/workweek
7+
70901,2024-05-28 16:18:58.471000,update,37253,"Workweek changed from {&quot;mon&quot;:{&quot;10:00&quot;:&quot;20:00&quot;},&quot;tue&quot;:{&quot;10:00&quot;:&quot;20:00&quot;},&quot;wed&quot;:{&quot;10:00&quot;:&quot;20:00&quot;},&quot;thu&quot;:{&quot;10:00&quot;:&quot;20:00&quot;},&quot;fri&quot;:{&quot;10:00&quot;:&quot;20:00&quot;}} to {&quot;mon&quot;:{&quot;10:00&quot;:&quot;22:00&quot;},&quot;tue&quot;:{&quot;10:00&quot;:&quot;22:00&quot;},&quot;wed&quot;:{&quot;10:00&quot;:&quot;22:00&quot;},&quot;thu&quot;:{&quot;10:00&quot;:&quot;22:00&quot;},&quot;fri&quot;:{&quot;10:00&quot;:&quot;22:00&quot;}}",2024-05-21 11:20:09.000000,267996,Workweek: New schedule 2,zendesk/business_hours/workweek
8+
70902,2024-05-28 16:18:58.471000,update,37253,"Workweek changed from {:mon=&amp;gt;{""09:00""=&amp;gt;""10:45"", ""11:45""=&amp;gt;""12:45"", ""13:45""=&amp;gt;""14:45"", ""15:15""=&amp;gt;""16:15"", ""19:00""=&amp;gt;""20:00"", ""17:30""=&amp;gt;""18:30""}, :tue=&amp;gt;{""00:15""=&amp;gt;""13:15"", ""13:30""=&amp;gt;""18:30"", ""18:45""=&amp;gt;""21:45"", ""22:00""=&amp;gt;""24:00""}, :wed=&amp;gt;{""09:00""=&amp;gt;""21:00""}, :thu=&amp;gt;{""17:00""=&amp;gt;""18:00"", ""19:45""=&amp;gt;""20:45"", ""09:00""=&amp;gt;""10:45"", ""12:15""=&amp;gt;""13:15"", ""14:30""=&amp;gt;""15:30""}, :fri=&amp;gt;{""09:00""=&amp;gt;""12:45"", ""19:15""=&amp;gt;""22:30"", ""14:45""=&amp;gt;""15:45"", ""17:30""=&amp;gt;""18:30""}} to {:mon=&amp;gt;{""09:00""=&amp;gt;""10:45"", ""11:45""=&amp;gt;""12:45"", ""13:45""=&amp;gt;""14:45"", ""15:15""=&amp;gt;""16:15"", ""17:30""=&amp;gt;""18:30"", ""19:00""=&amp;gt;""20:00""}, :tue=&amp;gt;{""00:15""=&amp;gt;""13:15"", ""13:30""=&amp;gt;""18:30"", ""18:45""=&amp;gt;""21:45"", ""22:00""=&amp;gt;""24:00""}, :wed=&amp;gt;{""02:30""=&amp;gt;""21:45""}, :thu=&amp;gt;{""09:00""=&amp;gt;""10:45"", ""12:15""=&amp;gt;""13:15"", ""14:30""=&amp;gt;""15:30"", ""17:00""=&amp;gt;""18:00"", ""19:45""=&amp;gt;""20:45""}, :fri=&amp;gt;{""09:00""=&amp;gt;""12:45"", ""14:45""=&amp;gt;""15:45"", ""17:30""=&amp;gt;""18:30"", ""19:15""=&amp;gt;""22:30""}}",2024-05-21 11:20:09.000000,267996,Workweek: New schedule 2,zendesk/business_hours/workweek

macros/get_audit_log_columns.sql

+17
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
{% macro get_audit_log_columns() %}
2+
3+
{% set columns = [
4+
{"name": "_fivetran_synced", "datatype": dbt.type_timestamp()},
5+
{"name": "id", "datatype": dbt.type_int()},
6+
{"name": "action", "datatype": dbt.type_string()},
7+
{"name": "actor_id", "datatype": dbt.type_int()},
8+
{"name": "change_description", "datatype": dbt.type_string()},
9+
{"name": "created_at", "datatype": dbt.type_timestamp()},
10+
{"name": "source_id", "datatype": dbt.type_int()},
11+
{"name": "source_label", "datatype": dbt.type_string()},
12+
{"name": "source_type", "datatype": dbt.type_string()}
13+
] %}
14+
15+
{{ return(columns) }}
16+
17+
{% endmacro %}

models/src_zendesk.yml

+31-1
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,36 @@ sources:
1313

1414

1515
tables:
16+
- name: audit_log
17+
identifier: "{{ var('zendesk_audit_log_identifier', 'audit_log')}}"
18+
config:
19+
enabled: "{{ var('using_schedules', true) and var('using_schedule_histories', false) }}"
20+
freshness: null
21+
description: >
22+
The `audit_log` table captures historical changes and actions within Zendesk. It provides a record of modifications
23+
made to tickets, schedules, and other objects, allowing for a detailed audit trail. Each row represents an action
24+
performed by an actor, including the time of the action, the affected entity, and a description of the changes. This
25+
table is especially useful for tracking schedule modifications and maintaining a history of schedule changes.
26+
columns:
27+
- name: id
28+
description: The unique identifier for each audit log entry, representing a distinct action or change.
29+
- name: action
30+
description: Describes the specific action performed within Zendesk, such as ticket updates or schedule modifications.
31+
- name: actor_id
32+
description: The unique identifier of the user or system responsible for performing the action.
33+
- name: change_description
34+
description: A detailed description of the changes made during the action, capturing what was altered.
35+
- name: created_at
36+
description: The timestamp indicating when the action was performed and recorded in the audit log.
37+
- name: source_id
38+
description: The unique identifier of the entity affected by the action, such as a ticket or schedule.
39+
- name: source_label
40+
description: A label that provides additional context about the affected entity, typically related to its type or name.
41+
- name: source_type
42+
description: Specifies the type of entity impacted by the action, such as a ticket, schedule, or user.
43+
- name: _fivetran_synced
44+
description: The timestamp when the record was last synchronized by Fivetran, used to track data freshness.
45+
1646
- name: ticket
1747
identifier: "{{ var('zendesk_ticket_identifier', 'ticket')}}"
1848
description: >
@@ -355,7 +385,7 @@ sources:
355385
description: Information about holidays for each specified schedule.
356386
freshness: null
357387
config:
358-
enabled: "{{ var('using_schedules', true) }}"
388+
enabled: "{{ var('using_schedules', true) and var('using_holidays', true) }}"
359389
columns:
360390
- name: end_date
361391
description: ISO 8601 representation of the holiday end date.

models/stg_zendesk.yml

+26
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,32 @@
11
version: 2
22

33
models:
4+
- name: stg_zendesk__audit_log
5+
description: >
6+
The `audit_log` table captures historical changes and actions within Zendesk. It provides a record of modifications
7+
made to tickets, schedules, and other objects, allowing for a detailed audit trail. Each row represents an action
8+
performed by an actor, including the time of the action, the affected entity, and a description of the changes. This
9+
table is especially useful for tracking schedule modifications and maintaining a history of schedule changes.
10+
columns:
11+
- name: audit_log_id
12+
description: The unique identifier for each audit log entry, representing a distinct action or change.
13+
- name: action
14+
description: Describes the specific action performed within Zendesk, such as ticket updates or schedule modifications.
15+
- name: actor_id
16+
description: The unique identifier of the user or system responsible for performing the action.
17+
- name: change_description
18+
description: A detailed description of the changes made during the action, capturing what was altered.
19+
- name: created_at
20+
description: The timestamp indicating when the action was performed and recorded in the audit log.
21+
- name: source_id
22+
description: The unique identifier of the entity affected by the action, such as a ticket or schedule.
23+
- name: source_label
24+
description: A label that provides additional context about the affected entity, typically related to its type or name.
25+
- name: source_type
26+
description: Specifies the type of entity impacted by the action, such as a ticket, schedule, or user.
27+
- name: _fivetran_synced
28+
description: The timestamp when the record was last synchronized by Fivetran, used to track data freshness.
29+
430
- name: stg_zendesk__ticket
531
description: >
632
Tickets are the means through which your end users (customers) communicate with agents in Zendesk Support. Tickets can

models/stg_zendesk__audit_log.sql

+45
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,45 @@
1+
{{ config(enabled=var('using_schedules', True) and var('using_schedule_histories', False)) }}
2+
3+
with base as (
4+
5+
select *
6+
from {{ ref('stg_zendesk__audit_log_tmp') }}
7+
8+
),
9+
10+
fields as (
11+
12+
select
13+
/*
14+
The below macro is used to generate the correct SQL for package staging models. It takes a list of columns
15+
that are expected/needed (staging_columns from dbt_zendesk_source/models/tmp/) and compares it with columns
16+
in the source (source_columns from dbt_zendesk_source/macros/).
17+
For more information refer to our dbt_fivetran_utils documentation (https://github.com/fivetran/dbt_fivetran_utils.git).
18+
*/
19+
{{
20+
fivetran_utils.fill_staging_columns(
21+
source_columns=adapter.get_columns_in_relation(ref('stg_zendesk__audit_log_tmp')),
22+
staging_columns=get_audit_log_columns()
23+
)
24+
}}
25+
26+
from base
27+
),
28+
29+
final as (
30+
select
31+
cast(id as {{ dbt.type_string() }}) as audit_log_id,
32+
action,
33+
actor_id,
34+
change_description,
35+
cast(created_at as {{ dbt.type_timestamp() }}) as created_at,
36+
source_id,
37+
source_label,
38+
source_type,
39+
_fivetran_synced
40+
41+
from fields
42+
)
43+
44+
select *
45+
from final

models/stg_zendesk__schedule_holiday.sql

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
--To disable this model, set the using_schedules variable within your dbt_project.yml file to False.
2-
{{ config(enabled=var('using_schedules', True)) }}
1+
--To disable this model, set the using_schedules or using_holidays variable within your dbt_project.yml file to False.
2+
{{ config(enabled=var('using_schedules', True) and var('using_holidays', True)) }}
33

44
with base as (
55

Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
{{ config(enabled=var('using_schedules', True) and var('using_schedule_histories', False)) }}
2+
3+
select {{ dbt_utils.star(source('zendesk','audit_log')) }}
4+
from {{ source('zendesk','audit_log') }} as audit_log_table
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
--To disable this model, set the using_schedules variable within your dbt_project.yml file to False.
2-
{{ config(enabled=var('using_schedules', True)) }}
1+
--To disable this model, set the using_schedules or using_holidays variable within your dbt_project.yml file to False.
2+
{{ config(enabled=var('using_schedules', True) and var('using_holidays', True)) }}
33

44
select {{ dbt_utils.star(source('zendesk', 'schedule_holiday')) }}
55
from {{ source('zendesk', 'schedule_holiday') }} as schedule_holiday_table

0 commit comments

Comments
 (0)