Skip to content

[qualys_was] Added scripts to convert doubles to long. Added terminate Processor. Added IDs to web app tag list #14322

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
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
8 changes: 8 additions & 0 deletions packages/qualys_was/changelog.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,12 @@
# newer versions go on top
- version: "0.2.0"
changes:
- description: |
Explicitly cast all long fields to long in case the agent sends them as doubles.
Terminate ingest pipeline early if agent sends an error message.
Change web app tags from list of names to list of tag objects with name and id.
type: breaking-change
link: https://github.com/elastic/integrations/pull/14322
- version: "0.1.0"
changes:
- description: Initial Release.
Expand Down

Large diffs are not rendered by default.

Large diffs are not rendered by default.

Original file line number Diff line number Diff line change
Expand Up @@ -111,8 +111,14 @@
"id": 987654321,
"name": "Description Name",
"tags": [
"Tag:1",
"Tag:2"
{
"id": 12348765,
"name": "Tag:1"
},
{
"id": 23459876,
"name": "Tag:2"
}
],
"url": "https://web.address.com"
}
Expand Down Expand Up @@ -203,8 +209,14 @@
"id": 181609281,
"name": "Scan Target",
"tags": [
"Tag:1",
"Tag:2"
{
"id": 12348765,
"name": "Tag:1"
},
{
"id": 23459876,
"name": "Tag:2"
}
],
"url": "https://7bcc84396e87475c864b3dc3215d808c.webapp.address:9243"
}
Expand Down Expand Up @@ -292,8 +304,14 @@
"id": 181609281,
"name": "Scan Target",
"tags": [
"Tag:1",
"Tag:2"
{
"id": 12348765,
"name": "Tag:1"
},
{
"id": 23459876,
"name": "Tag:2"
}
],
"url": "https://7bcc84396e87475c864b3dc3215d808c.webapp.address:9243"
}
Expand Down Expand Up @@ -432,8 +450,14 @@
"id": 987654321,
"name": "Description Name",
"tags": [
"Tag:1",
"Tag:2"
{
"id": 12348765,
"name": "Tag:1"
},
{
"id": 23459876,
"name": "Tag:2"
}
],
"url": "https://console.webapp.address"
}
Expand Down
Loading