-
Notifications
You must be signed in to change notification settings - Fork 73
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
mtojek
committed
Feb 19, 2021
1 parent
6d41481
commit 07e5d63
Showing
6 changed files
with
128 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
- version: 1.0.0 | ||
changes: | ||
- description: initial release | ||
type: enhancement | ||
link: https://github.com/elastic/package-spec/pull/0 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
README for integration |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
DynamoDB README file |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
EC2 README file |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,119 @@ | ||
format_version: 1.0.0 | ||
name: aws | ||
title: AWS | ||
version: 0.3.17 | ||
license: basic | ||
description: AWS Integration | ||
type: integration | ||
categories: | ||
- aws | ||
- cloud | ||
- network | ||
- security | ||
release: beta | ||
conditions: | ||
kibana.version: '^7.9.0' | ||
icons: | ||
- src: /img/logo_aws.svg | ||
title: logo aws | ||
size: 32x32 | ||
type: image/svg+xml | ||
screenshots: | ||
- src: /img/filebeat-aws-cloudtrail.png | ||
title: filebeat aws cloudtrail | ||
size: 1702x1063 | ||
type: image/png | ||
- src: /img/filebeat-aws-elb-overview.png | ||
title: filebeat aws elb overview | ||
size: 5120x2704 | ||
type: image/png | ||
vars: | ||
- name: access_key_id | ||
type: text | ||
title: Access Key ID | ||
- name: secret_access_key | ||
type: text | ||
title: Secret Access Key | ||
policy_templates: | ||
- name: ec2 | ||
title: AWS EC2 | ||
description: Collect logs and metrics from EC2 service | ||
inputs: | ||
- type: s3 | ||
title: Collect logs from EC2 service | ||
description: Collecting EC2 logs using S3 input | ||
policy_group: ec2_logs | ||
vars: | ||
- name: visibility_timeout | ||
type: text | ||
title: Visibility Timeout | ||
description: The duration that the received messages are hidden from subsequent retrieve requests after being retrieved by a ReceiveMessage request. The maximum is 12 hours. | ||
- name: api_timeout | ||
type: text | ||
title: API Timeout | ||
description: The maximum duration of AWS API can take. The maximum is half of the visibility timeout value. | ||
- type: aws/metrics | ||
title: Collect metrics from EC2 service | ||
description: Collecting EC2 metrics using AWS CloudWatch | ||
policy_group: ec2_metrics | ||
vars: | ||
- name: endpoint | ||
type: text | ||
title: Endpoint | ||
default: "amazonaws.com" | ||
description: URL of the entry point for an AWS web service. | ||
icons: | ||
- src: /img/aws-ec2.svg | ||
title: AWS EC2 logo | ||
size: 32x32 | ||
type: image/svg+xml | ||
screenshots: | ||
- src: /img/aws-ec2-overview.png | ||
title: AWS EC2 Overview | ||
size: 1702x1063 | ||
type: image/png | ||
vars: | ||
- name: ec2_foobar_property | ||
type: bool | ||
title: EC2 Specific Property | ||
- name: dynamodb | ||
title: AWS DynamoDB | ||
description: Collect logs and metrics from DynamoDB service | ||
inputs: | ||
- type: s3 | ||
title: Collect logs from the DynamoDB service | ||
description: Collecting DynamoDB logs using S3 input | ||
policy_group: dynamodb_logs | ||
- type: aws/metrics | ||
title: Collect metrics from DynamoDB service | ||
description: Collecting DynamoDB metrics using AWS CloudWatch | ||
policy_group: dynamodb_metrics | ||
icons: | ||
- src: /img/aws-dynamodb.svg | ||
title: AWS DynamoDB logo | ||
size: 32x32 | ||
type: image/svg+xml | ||
screenshots: | ||
- src: /img/aws-dynamodb-overview.png | ||
title: AWS DynamoDB Overview | ||
size: 1702x1063 | ||
type: image/png | ||
vars: | ||
- name: dynamodb_foobar_property | ||
type: bool | ||
title: DynamoDB Specific Property | ||
policy_groups: | ||
- name: ec2_logs | ||
title: "Logs" | ||
description: "Collect logs from EC2 service" | ||
- name: ec2_metrics | ||
title: "Metrics" | ||
description: "Collect metrics from EC2 service" | ||
- name: dynamodb_logs | ||
title: "Logs" | ||
description: "Collect logs from DynamoDB service" | ||
- name: dynamodb_metrics | ||
title: "Metrics" | ||
description: "Collect metrics from DynamoDB service" | ||
owner: | ||
github: elastic/integrations-platforms |