Skip to content
Open
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/zoom/_dev/build/docs/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,11 @@ This integration collects data using two complementary methods:
- **Webhook**: a real-time HTTP listener that receives event notifications pushed by Zoom (meeting, webinar, recording, user, account, phone, team chat, and Zoom Room events).
- **REST API**: a periodic poll of the Zoom REST API to collect the sign in / sign out **activity** report, the **operation** logs report, and the **meeting_activity** logs report for an account.

## Elastic Managed Enabled Integration

Elastic Managed 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 [Elastic Managed integrations](https://www.elastic.co/guide/en/serverless/current/security-agentless-integrations.html) and the [Elastic Managed integrations FAQ](https://www.elastic.co/guide/en/serverless/current/agentless-integration-troubleshooting.html).
Elastic Managed 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

- The **activity** data stream uses the Zoom REST API [`GET /report/activities`](https://developers.zoom.us/docs/api/meetings/#tag/reports/get/report/activities) endpoint and requires a Zoom Pro (or higher) plan.
Expand Down
5 changes: 5 additions & 0 deletions packages/zoom/changelog.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,9 @@
# newer versions go on top
- version: "1.27.0"
changes:
- description: Enable Agentless deployment.
type: enhancement
link: https://github.com/elastic/integrations/pull/20087
- version: "1.26.0"
changes:
- description: Add support for the `meeting_activity` data stream.
Expand Down
5 changes: 5 additions & 0 deletions packages/zoom/docs/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,11 @@ This integration collects data using two complementary methods:
- **Webhook**: a real-time HTTP listener that receives event notifications pushed by Zoom (meeting, webinar, recording, user, account, phone, team chat, and Zoom Room events).
- **REST API**: a periodic poll of the Zoom REST API to collect the sign in / sign out **activity** report, the **operation** logs report, and the **meeting_activity** logs report for an account.

## Elastic Managed Enabled Integration

Elastic Managed 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 [Elastic Managed integrations](https://www.elastic.co/guide/en/serverless/current/security-agentless-integrations.html) and the [Elastic Managed integrations FAQ](https://www.elastic.co/guide/en/serverless/current/agentless-integration-troubleshooting.html).
Elastic Managed 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

- The **activity** data stream uses the Zoom REST API [`GET /report/activities`](https://developers.zoom.us/docs/api/meetings/#tag/reports/get/report/activities) endpoint and requires a Zoom Pro (or higher) plan.
Expand Down
13 changes: 11 additions & 2 deletions packages/zoom/manifest.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: zoom
title: Zoom
version: "1.26.0"
version: "1.27.0"
description: Collect logs from Zoom with Elastic Agent.
type: integration
format_version: "3.3.2"
Expand All @@ -11,7 +11,7 @@ categories:
- observability
conditions:
kibana:
version: "^8.19.0 || ^9.1.0"
version: "^8.19.2 || ^9.1.2"
icons:
- src: /img/zoom_blue.svg
title: Zoom
Expand All @@ -34,6 +34,15 @@ policy_templates:
- name: zoom
title: Zoom logs
description: Collect logs from Zoom instances
deployment_modes:
default:
enabled: true
agentless:
enabled: true
release: beta
organization: security
division: engineering
team: security-service-integrations
inputs:
- type: http_endpoint
title: "Collect Zoom logs via Webhook"
Expand Down
Loading