Skip to content
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
5 changes: 5 additions & 0 deletions packages/servicenow/_dev/build/docs/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,11 @@ The ServiceNow integration can be used in three different modes to collect logs:
- **AWS S3 SQS mode**: ServiceNow writes data to S3; S3 sends a notification of a new object to SQS; the Elastic Agent receives the notification from SQS and then reads the S3 object. Multiple agents can be used in this mode.
- **REST API mode**: ServiceNow offers table APIs to retrieve data from its tables; the Elastic Agent polls these APIs to list their contents and read any new data. Visit this [page](https://developer.servicenow.com/dev.do#!/reference/api/washingtondc/rest/c_TableAPI#table-GET) for additional information about REST APIs.

## Agentless Enabled Integration

Agentless integrations allow you to collect data without having to manage Elastic Agent in your cloud. They make manual agent deployment unnecessary, so you can focus on your data instead of the agent that collects it. For more information, refer to [Agentless integrations](https://www.elastic.co/guide/en/serverless/current/security-agentless-integrations.html) and the [Agentless integrations FAQ](https://www.elastic.co/guide/en/serverless/current/agentless-integration-troubleshooting.html).
Agentless deployments are only supported in Elastic Serverless and Elastic Cloud environments. This functionality is in beta and is subject to change. Beta features are not subject to the support SLA of official GA features.

## Compatibility

This module has been tested with the latest(updated as of August 1, 2024) version of Xanadu on ServiceNow.
Expand Down
10 changes: 9 additions & 1 deletion packages/servicenow/changelog.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,9 @@
# newer versions go on top
- version: "2.1.0"
changes:
- description: Enable Agentless deployment.
type: enhancement
link: https://github.com/elastic/integrations/pull/19432
- version: "2.0.1"
changes:
- description: Change page_size/batch_size variable type from text to integer for Fleet input validation.
Expand Down Expand Up @@ -46,7 +51,10 @@
link: https://github.com/elastic/integrations/pull/14393
- version: "1.0.2"
changes:
- description: "Add support for dates containing AM/PM, specifically support the `yyyy-MM-dd hh:mm:ss a` format. \nEncode unencoded URLs to allow them to parse into URL parts.\nAppend pipeline_error to `event.kind` on non-terminal processor failures to not overwrite event.kind type.\n"
- description: |
Add support for dates containing AM/PM, specifically support the `yyyy-MM-dd hh:mm:ss a` format.
Encode unencoded URLs to allow them to parse into URL parts.
Append pipeline_error to `event.kind` on non-terminal processor failures to not overwrite event.kind type.
type: bugfix
link: https://github.com/elastic/integrations/pull/14193
- version: "1.0.1"
Expand Down
5 changes: 5 additions & 0 deletions packages/servicenow/docs/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,11 @@ The ServiceNow integration can be used in three different modes to collect logs:
- **AWS S3 SQS mode**: ServiceNow writes data to S3; S3 sends a notification of a new object to SQS; the Elastic Agent receives the notification from SQS and then reads the S3 object. Multiple agents can be used in this mode.
- **REST API mode**: ServiceNow offers table APIs to retrieve data from its tables; the Elastic Agent polls these APIs to list their contents and read any new data. Visit this [page](https://developer.servicenow.com/dev.do#!/reference/api/washingtondc/rest/c_TableAPI#table-GET) for additional information about REST APIs.

## Agentless Enabled Integration

Agentless integrations allow you to collect data without having to manage Elastic Agent in your cloud. They make manual agent deployment unnecessary, so you can focus on your data instead of the agent that collects it. For more information, refer to [Agentless integrations](https://www.elastic.co/guide/en/serverless/current/security-agentless-integrations.html) and the [Agentless integrations FAQ](https://www.elastic.co/guide/en/serverless/current/agentless-integration-troubleshooting.html).
Agentless deployments are only supported in Elastic Serverless and Elastic Cloud environments. This functionality is in beta and is subject to change. Beta features are not subject to the support SLA of official GA features.

## Compatibility

This module has been tested with the latest(updated as of August 1, 2024) version of Xanadu on ServiceNow.
Expand Down
12 changes: 10 additions & 2 deletions packages/servicenow/manifest.yml
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
format_version: 3.3.2
name: servicenow
title: "ServiceNow"
version: "2.0.1"
version: "2.1.0"
description: "Collect logs from ServiceNow with Elastic Agent."
type: integration
categories:
- security
conditions:
kibana:
version: "^8.16.5 || ^9.0.0"
version: "^8.19.2 || ^9.0.5"
elastic:
subscription: "basic"
screenshots:
Expand Down Expand Up @@ -69,6 +69,14 @@ policy_templates:
- name: servicenow
title: ServiceNow logs
description: Collect ServiceNow logs.
deployment_modes:
default:
enabled: true
agentless:
enabled: true
organization: security
division: engineering
team: security-service-integrations
inputs:
- type: cel
title: Collect ServiceNow tables via API
Expand Down
Loading