Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions packages/atlassian_confluence/changelog.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,9 @@
# newer versions go on top
- version: "1.29.2"
changes:
- description: Expected timestamp layout added in cursor logic.
type: bugfix
link: https://github.com/elastic/integrations/pull/13784
- version: "1.29.1"
changes:
- description: Update cursor logic to remove duplicate events.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,7 @@ response.pagination:

cursor:
last_timestamp:
value: '[[formatDate (parseTimestampMilli (add (parseDate .first_event.timestamp).UnixMilli 1))]]'
value: '[[formatDate (parseTimestampMilli (add (parseDate .first_event.timestamp).UnixMilli 1)) "2006-01-02T15:04:05.999Z"]]'
{{/if}}

tags:
Expand Down
2 changes: 1 addition & 1 deletion packages/atlassian_confluence/manifest.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
format_version: "3.0.2"
name: atlassian_confluence
title: Atlassian Confluence
version: "1.29.1"
version: "1.29.2"
description: Collect logs from Atlassian Confluence with Elastic Agent.
type: integration
categories:
Expand Down
5 changes: 5 additions & 0 deletions packages/atlassian_jira/changelog.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,9 @@
# newer versions go on top
- version: "1.30.3"
changes:
- description: Expected timestamp layout added in cursor logic.
type: bugfix
link: https://github.com/elastic/integrations/pull/13784
- version: "1.30.2"
changes:
- description: Update cursor logic to remove duplicate events.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ response.pagination:
value: '{{limit}}'
cursor:
last_timestamp:
value: '[[formatDate (parseTimestampMilli (add (parseDate .first_event.created).UnixMilli 1))]]'
value: '[[formatDate (parseTimestampMilli (add (parseDate .first_event.created "2006-01-02T15:04:05.999+0000").UnixMilli 1)) "2006-01-02T15:04:05.999Z"]]'
{{else}}
{{#unless username}}
{{#unless password}}
Expand Down Expand Up @@ -91,7 +91,7 @@ response.pagination:

cursor:
last_timestamp:
value: '[[formatDate (parseTimestampMilli (add (parseDate .first_event.timestamp).UnixMilli 1))]]'
value: '[[formatDate (parseTimestampMilli (add (parseDate .first_event.timestamp).UnixMilli 1)) "2006-01-02T15:04:05.999Z"]]'
{{/if}}

tags:
Expand Down
2 changes: 1 addition & 1 deletion packages/atlassian_jira/manifest.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
format_version: "3.0.2"
name: atlassian_jira
title: Atlassian Jira
version: "1.30.2"
version: "1.30.3"
description: Collect logs from Atlassian Jira with Elastic Agent.
type: integration
categories:
Expand Down