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

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -202,6 +202,8 @@ def test_command(
err_msg += 'Please provide a "Indicator Type Field" or "Indicator Type"\n'
elif not default_type:
err_msg += 'Please provide a "Indicator Type"\n'
if not time_field:
err_msg += 'Please provide a "Time Field" e.g. @timestamp\n'
if not time_method:
err_msg += 'Please provide a "Time Method"\n'
if time_field and not fetch_time:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -185,7 +185,7 @@ configuration:
- Timestamp-Milliseconds
section: Collect
advanced: true
- additionalinfo: Used for sorting and limiting data. If empty, results are not sorted. Relevant for generic feed type only.
- additionalinfo: 'The time field used for incremental fetching (for example, @timestamp). When configured, only new indicators since the last fetch are retrieved. Relevant for generic feed type only.'
display: Index Time Field
name: time_field
type: 0
Expand Down Expand Up @@ -230,7 +230,7 @@ script:
required: true
description: Gets indicators available in the configured Elasticsearch database.
name: es-get-indicators
dockerimage: demisto/elasticsearch:1.0.0.117175
dockerimage: demisto/elasticsearch:1.0.0.4861252
feed: true
runonce: false
script: '-'
Expand Down
7 changes: 7 additions & 0 deletions Packs/FeedElasticsearch/ReleaseNotes/1_1_14.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@

#### Integrations

##### Elasticsearch Feed

- Updated the Docker image to: *demisto/elasticsearch:1.0.0.4861252*.
- Fixed an issue where the ***fetch indicators*** command would fail when using the "Generic Feed" feed type and the time field was not specified.
2 changes: 1 addition & 1 deletion Packs/FeedElasticsearch/pack_metadata.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "Elasticsearch Feed",
"description": "Indicators feed from Elasticsearch database",
"support": "xsoar",
"currentVersion": "1.1.13",
"currentVersion": "1.1.14",
"author": "Cortex XSOAR",
"url": "https://www.paloaltonetworks.com/cortex",
"email": "",
Expand Down
Loading