Skip to content

Commit

Permalink
source-pendo: increase events interval
Browse files Browse the repository at this point in the history
Events don't show up in the Pendo API until 45+ minutes after they
occur. Increasing the Events interval to align with the Aggregated
Events interval makes sense because of this API lag.
  • Loading branch information
Alex-Bair committed Oct 7, 2024
1 parent fa0070f commit fbf281f
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion source-pendo/source_pendo/resources.py
Original file line number Diff line number Diff line change
Expand Up @@ -188,7 +188,7 @@ def open(
backfill=ResourceState.Backfill(next_page=backfill_start_ts, cutoff=cutoff)
),
initial_config=ResourceConfig(
name=resource_name, interval=timedelta(seconds=0)
name=resource_name, interval=timedelta(minutes=5)
),
schema_inference=True,
)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -333,7 +333,7 @@
"recommendedName": "GuideEvents",
"resourceConfig": {
"name": "GuideEvents",
"interval": "PT0S"
"interval": "PT5M"
},
"documentSchema": {
"$defs": {
Expand Down Expand Up @@ -414,7 +414,7 @@
"recommendedName": "PollEvents",
"resourceConfig": {
"name": "PollEvents",
"interval": "PT0S"
"interval": "PT5M"
},
"documentSchema": {
"$defs": {
Expand Down

0 comments on commit fbf281f

Please sign in to comment.