From 378aa1a44c581e0971511847eb7b9c0f89188b1b Mon Sep 17 00:00:00 2001 From: 8naama Date: Wed, 10 Jul 2024 16:04:45 +0300 Subject: [PATCH 1/6] update api fetcher docs following version refactor --- docs/shipping/Azure/azure-active-directory.md | 103 ++--- docs/shipping/Azure/azure-graph.md | 99 ++--- docs/shipping/Azure/azure-mail-reports.md | 105 ++--- docs/shipping/Azure/azure-security-center.md | 103 ++--- docs/shipping/Other/microsoft-graph.md | 117 ++---- docs/shipping/Security/cisco-securex.md | 5 +- docs/user-guide/log-management/api-fetcher.md | 358 ++++++++++-------- 7 files changed, 388 insertions(+), 502 deletions(-) diff --git a/docs/shipping/Azure/azure-active-directory.md b/docs/shipping/Azure/azure-active-directory.md index cab216ca..9457e766 100644 --- a/docs/shipping/Azure/azure-active-directory.md +++ b/docs/shipping/Azure/azure-active-directory.md @@ -73,16 +73,6 @@ Only Azure administrators can grant consent for Default Directory. If the _Grant docker pull logzio/logzio-api-fetcher ``` - -### Create a local directory for this integration - -You will need a dedicated directory to use it as mounted directory for the Docker container of the Logz.io API fetcher. - -```shell -mkdir logzio-api-fetcher -cd logzio-api-fetcher -``` - ### Create a configuration file In the directory created in the previous step, create a file `config.yaml` using the example configuration below: @@ -92,69 +82,36 @@ logzio: url: https://<>:8071 token: <> -oauth_apis: - - type: azure_graph - name: azure_test - credentials: - id: <> - key: <> - token_http_request: - url: https://login.microsoftonline.com/<>/oauth2/v2.0/token - body: client_id=<> - &scope=https://graph.microsoft.com/.default - &client_secret=<> - &grant_type=client_credentials - headers: - method: POST - data_http_request: +apis: + - name: azure graph example + type: azure_graph + azure_ad_tenant_id: <> + azure_ad_client_id: <> + azure_ad_secret_value: <> + data_request: url: https://graph.microsoft.com/v1.0/auditLogs/signIns - method: GET - headers: - json_paths: - data_date: createdDateTime - next_url: - data: - settings: - time_interval: 1 - days_back_fetch: 30 + additional_fields: + type: azure_graph + field_to_add_to_my_logs: 123 + scrape_interval: 1 + days_back_fetch: 30 ``` -| Parameter | Description | Required/Default | -|---|---|---| -| URL | {@include: ../../_include/log-shipping/listener-var.md} | Required | -| TOKEN | Your Logz.io account token. {@include: ../../_include/log-shipping/log-shipping-token.html} | Required | -| type | The type of the OAuth API. Currently we support the following types: azure_graph, general. | Required | -| name | The name of the OAuth API. Please make names unique. | Required | -| credentials.id | The OAuth API credentials id. | Required | -| credentials.key | The OAuth API credentials key. | Required | -| http_request.method | The HTTP method. Can be GET or POST. | Required | -| http_request.url | The OAuth API url. Make sure the url is without `?` at the end. | Required | -| http_request.headers | Pairs of key and value the represents the headers of the HTTP request. | Optional | -| http_request.body | The body of the HTTP request. Will be added to HTTP POST requests only. | Optional | -| token_http_request.method | The HTTP method. Can be GET or POST. | Required | -| token_http_request.url | The OAuth API token request url. Make sure the url is without `?` at the end. | Required | -| token_http_request.headers | Pairs of key and value the represents the headers of the HTTP request. | Optional | -| token_http_request.body | The body of the HTTP request. Will be added to HTTP POST requests only. | Optional | -| json_paths.data_date | The json path to the data's date value inside the response of the OAuth API. | Required | -| settings.time_interval | The OAuth API time interval between runs. | Required | -| settings.days_back_fetch | The max days back to fetch from the OAuth API. | Optional. Default value is 14 days.| -| filters | Pairs of key and value of parameters that can be added to the OAuth API url. Make sure the keys and values are valid for the OAuth API. | Optional | -| custom_fields | Pairs of key and value that will be added to each data and be sent to Logz.io. | Optional | - -### Create a Last Start Dates text file - -Create an empty text file named last_start_dates.txt in the same directory as the config file: - -```shell -$ touch last_start_dates.txt -``` - -After every successful iteration of an API, the last start date of the next iteration will be written to last_start_dates.txt. Each line starts with the API name and ends with the last start date. - -If you stopped the container, you can continue from the exact place you stopped, by adding the date to the API filters in the configuration. +| Parameter Name | Description | Required/Optional | Default | +|-----------------------|-----------------------------------------------------------------------------------------------------|-------------------|-------------| +| name | Name of the API (custom name) | Optional | `azure api` | +| azure_ad_tenant_id | The Azure AD Tenant id | Required | - | +| azure_ad_client_id | The Azure AD Client id | Required | - | +| azure_ad_secret_value | The Azure AD Secret value | Required | - | +| date_filter_key | The name of key to use for the date filter in the request URL params | Optional | `createdDateTime` | +| data_request.url | The request URL | Required | - | +| data_request.additional_fields | Additional custom fields to add to the logs before sending to logzio | Optional | - | +| days_back_fetch | The amount of days to fetch back in the first request | Optional | 1 (day) | +| scrape_interval | Time interval to wait between runs (unit: `minutes`) | Optional | 1 (minute) | ### Run the Docker container +In the path where you saved your `config.yaml`, run: ```shell docker run --name logzio-api-fetcher \ @@ -162,6 +119,17 @@ docker run --name logzio-api-fetcher \ logzio/logzio-api-fetcher ``` +:::note +To run in Debug mode add `--level` flag to the command: +```shell +docker run --name logzio-api-fetcher \ +-v "$(pwd)":/app/src/shared \ +logzio/logzio-api-fetcher \ +--level DEBUG +``` +Available Options: `INFO`, `WARN`, `ERROR`, `DEBUG` +::: + ### Stop the Docker container When you stop the container, the code will run until the iteration is completed. To make sure it will finish the iteration on time, please give it a grace period of 30 seconds when you run the `docker stop` command. @@ -177,4 +145,3 @@ and then open [Open Search Dashboards](https://app.logz.io/#/dashboard/osd). You If you still don’t see your logs, see [log shipping troubleshooting](https://docs.logz.io/docs/user-guide/log-management/troubleshooting/log-shipping-troubleshooting). - diff --git a/docs/shipping/Azure/azure-graph.md b/docs/shipping/Azure/azure-graph.md index 549d7451..70183065 100644 --- a/docs/shipping/Azure/azure-graph.md +++ b/docs/shipping/Azure/azure-graph.md @@ -85,15 +85,6 @@ docker pull logzio/logzio-api-fetcher ``` -## Create a local directory for this integration - -You will need a dedicated directory to use it as mounted directory for the Docker container of the Logz.io API fetcher. - -```shell -mkdir logzio-api-fetcher -cd logzio-api-fetcher -``` - ## Create a configuration file In the directory created in the previous step, create a file `config.yaml` using the example configuration below: @@ -103,66 +94,36 @@ logzio: url: https://<>:8071 token: <> -oauth_apis: - - type: azure_graph - name: azure_test - credentials: - id: <> - key: <> - token_http_request: - url: https://login.microsoftonline.com/<>/oauth2/v2.0/token - body: client_id=<> - &scope=https://graph.microsoft.com/.default - &client_secret=<> - &grant_type=client_credentials - headers: - method: POST - data_http_request: +apis: + - name: azure graph example + type: azure_graph + azure_ad_tenant_id: <> + azure_ad_client_id: <> + azure_ad_secret_value: <> + data_request: url: https://graph.microsoft.com/v1.0/auditLogs/signIns - method: GET - headers: - json_paths: - data_date: createdDateTime - settings: - time_interval: 1 - days_back_fetch: 30 -``` - -| Parameter | Description | Required/Default | -|---|---|---| -| URL | {@include: ../../_include/log-shipping/listener-var.md} | Required | -| TOKEN | Your Logz.io account token. {@include: ../../_include/log-shipping/log-shipping-token.html} | Required | -| type | The type of the OAuth API. Currently we support the following types: azure_graph, general. | Required | -| name | The name of the OAuth API. Please make names unique. | Required | -| credentials.id | The OAuth API credentials id. | Required | -| credentials.key | The OAuth API credentials key. | Required | -| data_http_request.method | The HTTP method. Can be GET or POST. | Required | -| data_http_request.url | The OAuth API url. Make sure the url is without `?` at the end. | Required | -| data_http_request.headers | Pairs of key and value the represents the headers of the HTTP request. | Optional | -| data_http_request.body | The body of the HTTP request. Will be added to HTTP POST requests only. | Optional | -| token_http_request.method | The HTTP method. Can be GET or POST. | Required | -| token_http_request.url | The OAuth API token request url. Make sure the url is without `?` at the end. | Required | -| token_http_request.headers | Pairs of key and value the represents the headers of the HTTP request. | Optional | -| token_http_request.body | The body of the HTTP request. Will be added to HTTP POST requests only. | Optional | -| json_paths.data_date | The json path to the data's date value inside the response of the OAuth API. | Required | -| settings.time_interval | The OAuth API time interval between runs. | Required | -| settings.days_back_fetch | The max days back to fetch from the OAuth API. | Optional. Default value is 14 days.| -| filters | Pairs of key and value of parameters that can be added to the OAuth API url. Make sure the keys and values are valid for the OAuth API. | Optional | -| custom_fields | Pairs of key and value that will be added to each data and be sent to Logz.io. | Optional | - -## Create a Last Start Dates text file - -Create an empty text file named last_start_dates.txt in the same directory as the config file: - -```shell -$ touch last_start_dates.txt + additional_fields: + type: azure_graph + field_to_add_to_my_logs: 123 + scrape_interval: 1 + days_back_fetch: 30 ``` -After every successful iteration of an API, the last start date of the next iteration will be written to last_start_dates.txt. Each line starts with the API name and ends with the last start date. +| Parameter Name | Description | Required/Optional | Default | +|-----------------------|-----------------------------------------------------------------------------------------------------|-------------------|-------------| +| name | Name of the API (custom name) | Optional | `azure api` | +| azure_ad_tenant_id | The Azure AD Tenant id | Required | - | +| azure_ad_client_id | The Azure AD Client id | Required | - | +| azure_ad_secret_value | The Azure AD Secret value | Required | - | +| date_filter_key | The name of key to use for the date filter in the request URL params | Optional | `createdDateTime` | +| data_request.url | The request URL | Required | - | +| data_request.additional_fields | Additional custom fields to add to the logs before sending to logzio | Optional | - | +| days_back_fetch | The amount of days to fetch back in the first request | Optional | 1 (day) | +| scrape_interval | Time interval to wait between runs (unit: `minutes`) | Optional | 1 (minute) | -If you stopped the container, you can continue from the exact place you stopped, by adding the date to the API filters in the configuration. ## Run the Docker container +In the path where you saved your `config.yaml`, run: ```shell docker run --name logzio-api-fetcher \ @@ -170,6 +131,18 @@ docker run --name logzio-api-fetcher \ logzio/logzio-api-fetcher ``` +:::note +To run in Debug mode add `--level` flag to the command: +```shell +docker run --name logzio-api-fetcher \ +-v "$(pwd)":/app/src/shared \ +logzio/logzio-api-fetcher \ +--level DEBUG +``` +Available Options: `INFO`, `WARN`, `ERROR`, `DEBUG` +::: + + ## Stop the Docker container When you stop the container, the code will run until the iteration is completed. To make sure it will finish the iteration on time, please give it a grace period of 30 seconds when you run the `docker stop` command. diff --git a/docs/shipping/Azure/azure-mail-reports.md b/docs/shipping/Azure/azure-mail-reports.md index 819a4be8..7987de90 100644 --- a/docs/shipping/Azure/azure-mail-reports.md +++ b/docs/shipping/Azure/azure-mail-reports.md @@ -88,15 +88,6 @@ docker pull logzio/logzio-api-fetcher ``` -## Create a local directory for this integration - -You will need a dedicated directory to use it as mounted directory for the Docker container of the Logz.io API fetcher. - -```shell -mkdir logzio-api-fetcher -cd logzio-api-fetcher -``` - ## Create a configuration file In the directory created in the previous step, create a file `config.yaml` using the example configuration below: @@ -106,58 +97,33 @@ logzio: url: https://<>:8071 token: <> -oauth_apis: - - type: azure_mail_reports - name: mail_reports - credentials: - id: <> - key: <> - token_http_request: - url: https://login.microsoftonline.com/abcd-efgh-abcd-efgh/oauth2/v2.0/token - body: client_id=<> - &scope=https://outlook.office365.com/.default - &client_secret=<> - &grant_type=client_credentials - headers: - method: POST - data_http_request: - url: https://reports.office365.com/ecp/reportingwebservice/reporting.svc/MessageTrace - method: GET - headers: - json_paths: - data_date: EndDate - next_url: - data: - filters: - format: Json - settings: - time_interval: 60 # for mail reports we suggest no less than 60 minutes - days_back_fetch: 8 # for mail reports we suggest up to 8 days - start_date_name: StartDate - end_date_name: EndDate +apis: + - name: mail reports example + type: azure_mail_reports + azure_ad_tenant_id: <> + azure_ad_client_id: <> + azure_ad_secret_value: <> + data_request: + url: https://login.microsoftonline.com/<>/oauth2/v2.0/token + additional_fields: + type: azure_mail_reports + scrape_interval: 60 # for mail reports we suggest no less than 60 minutes + days_back_fetch: 8 # for mail reports we suggest up to 8 days + ``` -| Parameter | Description | Required/Default | -|---|---|---| -| URL | {@include: ../../_include/log-shipping/listener-var.md} | Required | -| TOKEN | Your Logz.io account token. {@include: ../../_include/log-shipping/log-shipping-token.html} | Required | -| type | The type of the OAuth API. Currently we support the following types: azure_graph, general. | Required | -| name | The name of the OAuth API. Please make names unique. | Required | -| credentials.id | The OAuth API credentials id. | Required | -| credentials.key | The OAuth API credentials key. | Required | -| data_http_request.method | The HTTP method. Can be GET or POST. | Required | -| data_http_request.url | The OAuth API url. Make sure the url is without `?` at the end. | Required | -| data_http_request.headers | Pairs of key and value the represents the headers of the HTTP request. | Optional | -| data_http_request.body | The body of the HTTP request. Will be added to HTTP POST requests only. | Optional | -| token_http_request.method | The HTTP method. Can be GET or POST. | Required | -| token_http_request.url | The OAuth API token request url. Make sure the url is without `?` at the end. | Required | -| token_http_request.headers | Pairs of key and value the represents the headers of the HTTP request. | Optional | -| token_http_request.body | The body of the HTTP request. Will be added to HTTP POST requests only. | Optional | -| json_paths.data_date | The json path to the data's date value inside the response of the OAuth API. | Required | -| settings.time_interval | The OAuth API time interval between runs. | Required | -| settings.days_back_fetch | The max days back to fetch from the OAuth API. | Optional. Default value is 14 days.| -| filters | Pairs of key and value of parameters that can be added to the OAuth API url. Make sure the keys and values are valid for the OAuth API. | Optional | -| custom_fields | Pairs of key and value that will be added to each data and be sent to Logz.io. | Optional | +| Parameter Name | Description | Required/Optional | Default | +|-----------------------|-----------------------------------------------------------------------------------------------------|-------------------|-------------| +| name | Name of the API (custom name) | Optional | `azure api` | +| azure_ad_tenant_id | The Azure AD Tenant id | Required | - | +| azure_ad_client_id | The Azure AD Client id | Required | - | +| azure_ad_secret_value | The Azure AD Secret value | Required | - | +| start_date_filter_key | The name of key to use for the start date filter in the request URL params. | Optional | `startDate` | +| end_date_filter_key | The name of key to use for the end date filter in the request URL params. | Optional | `EndDate` | +| data_request.url | The request URL | Required | - | +| data_request.additional_fields | Additional custom fields to add to the logs before sending to logzio | Optional | - | +| days_back_fetch | The amount of days to fetch back in the first request | Optional | 1 (day) | +| scrape_interval | Time interval to wait between runs (unit: `minutes`) | Optional | 1 (minute) | ## Important notes and limitations @@ -165,25 +131,26 @@ oauth_apis: * We recommend setting the `time_interval` parameter to no less than `60`, to avoid short time frames in which messages trace will be missed. * Microsoft may delay trace events for up to 24 hours, and events are not guaranteed to be sequential during this delay. For more information, see the Data granularity, persistence, and availability section of the MessageTrace report topic in the Microsoft documentation: MessageTrace report API -## Create a Last Start Dates text file -Create an empty text file named last_start_dates.txt in the same directory as the config file: +## Run the Docker container +In the path where you saved your `config.yaml`, run: ```shell -$ touch last_start_dates.txt +docker run --name logzio-api-fetcher \ +-v "$(pwd)":/app/src/shared \ +logzio/logzio-api-fetcher ``` -After every successful iteration of an API, the last start date of the next iteration will be written to last_start_dates.txt. Each line starts with the API name and ends with the last start date. - -If you stopped the container, you can continue from the exact place you stopped, by adding the date to the API filters in the configuration. - -## Run the Docker container - +:::note +To run in Debug mode add `--level` flag to the command: ```shell docker run --name logzio-api-fetcher \ -v "$(pwd)":/app/src/shared \ -logzio/logzio-api-fetcher +logzio/logzio-api-fetcher \ +--level DEBUG ``` +Available Options: `INFO`, `WARN`, `ERROR`, `DEBUG` +::: ## Stop the Docker container diff --git a/docs/shipping/Azure/azure-security-center.md b/docs/shipping/Azure/azure-security-center.md index 4a96d4c6..54bd2c9e 100644 --- a/docs/shipping/Azure/azure-security-center.md +++ b/docs/shipping/Azure/azure-security-center.md @@ -69,16 +69,6 @@ Only Azure administrators can grant consent for Default Directory. If the _Grant docker pull logzio/logzio-api-fetcher ``` - -### Create a local directory for this integration - -You will need a dedicated directory to use it as mounted directory for the Docker container of the Logz.io API fetcher. - -```shell -mkdir logzio-api-fetcher -cd logzio-api-fetcher -``` - ### Create a configuration file In the directory created in the previous step, create a file `config.yaml` using the example configuration below: @@ -88,69 +78,37 @@ logzio: url: https://<>:8071 token: <> -oauth_apis: - - type: azure_graph - name: azure_test - credentials: - id: <> - key: <> - token_http_request: - url: https://login.microsoftonline.com/<>/oauth2/v2.0/token - body: client_id=<> - &scope=https://graph.microsoft.com/.default - &client_secret=<> - &grant_type=client_credentials - headers: - method: POST - data_http_request: - url: https://graph.microsoft.com/v1.0/security/alerts - method: GET - headers: - json_paths: - data_date: createdDateTime - next_url: - data: - settings: - time_interval: 1 - days_back_fetch: 30 +apis: + - name: azure graph example + type: azure_graph + azure_ad_tenant_id: <> + azure_ad_client_id: <> + azure_ad_secret_value: <> + data_request: + url: https://graph.microsoft.com/v1.0/auditLogs/signIns + additional_fields: + type: azure_graph + field_to_add_to_my_logs: 123 + scrape_interval: 1 + days_back_fetch: 30 ``` -| Parameter | Description | Required/Default | -|---|---|---| -| URL | {@include: ../../_include/log-shipping/listener-var.md} | Required | -| TOKEN | Your Logz.io account token. {@include: ../../_include/log-shipping/log-shipping-token.html} | Required | -| type | The type of the OAuth API. Currently we support the following types: azure_graph, general. | Required | -| name | The name of the OAuth API. Please make names unique. | Required | -| credentials.id | The OAuth API credentials id. | Required | -| credentials.key | The OAuth API credentials key. | Required | -| http_request.method | The HTTP method. Can be GET or POST. | Required | -| http_request.url | The OAuth API url. Make sure the url is without `?` at the end. | Required | -| http_request.headers | Pairs of key and value the represents the headers of the HTTP request. | Optional | -| http_request.body | The body of the HTTP request. Will be added to HTTP POST requests only. | Optional | -| token_http_request.method | The HTTP method. Can be GET or POST. | Required | -| token_http_request.url | The OAuth API token request url. Make sure the url is without `?` at the end. | Required | -| token_http_request.headers | Pairs of key and value the represents the headers of the HTTP request. | Optional | -| token_http_request.body | The body of the HTTP request. Will be added to HTTP POST requests only. | Optional | -| json_paths.data_date | The json path to the data's date value inside the response of the OAuth API. | Required | -| settings.time_interval | The OAuth API time interval between runs. | Required | -| settings.days_back_fetch | The max days back to fetch from the OAuth API. | Optional. Default value is 14 days.| -| filters | Pairs of key and value of parameters that can be added to the OAuth API url. Make sure the keys and values are valid for the OAuth API. | Optional | -| custom_fields | Pairs of key and value that will be added to each data and be sent to Logz.io. | Optional | - -### Create a Last Start Dates text file - -Create an empty text file named last_start_dates.txt in the same directory as the config file: - -```shell -$ touch last_start_dates.txt -``` +| Parameter Name | Description | Required/Optional | Default | +|-----------------------|-----------------------------------------------------------------------------------------------------|-------------------|-------------| +| name | Name of the API (custom name) | Optional | `azure api` | +| azure_ad_tenant_id | The Azure AD Tenant id | Required | - | +| azure_ad_client_id | The Azure AD Client id | Required | - | +| azure_ad_secret_value | The Azure AD Secret value | Required | - | +| date_filter_key | The name of key to use for the date filter in the request URL params | Optional | `createdDateTime` | +| data_request.url | The request URL | Required | - | +| data_request.additional_fields | Additional custom fields to add to the logs before sending to logzio | Optional | - | +| days_back_fetch | The amount of days to fetch back in the first request | Optional | 1 (day) | +| scrape_interval | Time interval to wait between runs (unit: `minutes`) | Optional | 1 (minute) | -After every successful iteration of an API, the last start date of the next iteration will be written to last_start_dates.txt. Each line starts with the API name and ends with the last start date. - -If you stopped the container, you can continue from the exact place you stopped, by adding the date to the API filters in the configuration. ### Run the Docker container +In the path where you saved your `config.yaml`, run: ```shell docker run --name logzio-api-fetcher \ @@ -158,6 +116,17 @@ docker run --name logzio-api-fetcher \ logzio/logzio-api-fetcher ``` +:::note +To run in Debug mode add `--level` flag to the command: +```shell +docker run --name logzio-api-fetcher \ +-v "$(pwd)":/app/src/shared \ +logzio/logzio-api-fetcher \ +--level DEBUG +``` +Available Options: `INFO`, `WARN`, `ERROR`, `DEBUG` +::: + ### Stop the Docker container When you stop the container, the code will run until the iteration is completed. To make sure it will finish the iteration on time, please give it a grace period of 30 seconds when you run the `docker stop` command. diff --git a/docs/shipping/Other/microsoft-graph.md b/docs/shipping/Other/microsoft-graph.md index cb44c2d5..8530d257 100644 --- a/docs/shipping/Other/microsoft-graph.md +++ b/docs/shipping/Other/microsoft-graph.md @@ -29,14 +29,6 @@ Microsoft Graph is a RESTful web API that enables you to access Microsoft Cloud docker pull logzio/logzio-api-fetcher ``` -### Create a local directory for this integration -You will need a dedicated directory to use it as mounted directory for the Docker container of the Logz.io API fetcher. - -```shell -mkdir logzio-api-fetcher -cd logzio-api-fetcher -``` - ### Create a configuration file In the directory created in the previous step, create a file `config.yaml` using the example configuration below: @@ -46,83 +38,35 @@ logzio: url: https://<>:8071 token: <> -oauth_apis: - - type: azure_graph - name: azure_test - credentials: - id: <> - key: <> - token_http_request: - url: https://login.microsoftonline.com/<>/oauth2/v2.0/token - body: client_id=<> - &scope=https://graph.microsoft.com/.default - &client_secret=<> - &grant_type=client_credentials - headers: - method: POST - data_http_request: +apis: + - name: azure graph example + type: azure_graph + azure_ad_tenant_id: <> + azure_ad_client_id: <> + azure_ad_secret_value: <> + data_request: url: https://graph.microsoft.com/v1.0/auditLogs/signIns - method: GET - headers: - json_paths: - data_date: createdDateTime - settings: - time_interval: 1 - days_back_fetch: 30 - -``` - -| Parameter | Description | Required/Default | -|---|---|---| -| URL | {@include: ../../_include/log-shipping/listener-var.md} | Required | -| TOKEN | Your Logz.io account token. {@include: ../../_include/log-shipping/log-shipping-token.html} | Required | -| type | The type of the OAuth API. Currently we support the following types: azure_graph, general. | Required | -| name | The name of the OAuth API. Please make names unique. | Required | -| credentials.id | The OAuth API credentials id. | Required | -| credentials.key | The OAuth API credentials key. | Required | -| http_request.method | The HTTP method. Can be GET or POST. | Required | -| http_request.url | The OAuth API url. Make sure the url is without `?` at the end. | Required | -| http_request.headers | Pairs of key and value the represents the headers of the HTTP request. | Optional | -| http_request.body | The body of the HTTP request. Will be added to HTTP POST requests only. | Optional | -| token_http_request.method | The HTTP method. Can be GET or POST. | Required | -| token_http_request.url | The OAuth API token request url. Make sure the url is without `?` at the end. | Required | -| token_http_request.headers | Pairs of key and value the represents the headers of the HTTP request. | Optional | -| token_http_request.body | The body of the HTTP request. Will be added to HTTP POST requests only. | Optional | -| json_paths.data_date | The json path to the data's date value inside the response of the OAuth API. | Required | -| settings.time_interval | The OAuth API time interval between runs. | Required | -| settings.days_back_fetch | The max days back to fetch from the OAuth API. | Optional. Default value is 14 days.| -| filters | Pairs of key and value of parameters that can be added to the OAuth API url. Make sure the keys and values are valid for the OAuth API. | Optional | -| custom_fields | Pairs of key and value that will be added to each data and be sent to Logz.io. | Optional | - -### Create a Last Start Dates text file - -Create an empty text file named last_start_dates.txt in the same directory as the config file: - -import Tabs from '@theme/Tabs'; -import TabItem from '@theme/TabItem'; - - - - - #### Linux or Mac -```shell -$ touch last_start_dates.txt -``` - - - -#### Windows -```shell -echo.> last_start_dates.txt + additional_fields: + type: azure_graph + field_to_add_to_my_logs: 123 + scrape_interval: 1 + days_back_fetch: 30 ``` - - -After every successful iteration of an API, the last start date of the next iteration will be written to last_start_dates.txt. Each line starts with the API name and ends with the last start date. - -If you stopped the container, you can continue from the exact place you stopped, by adding the date to the API filters in the configuration. +| Parameter Name | Description | Required/Optional | Default | +|-----------------------|-----------------------------------------------------------------------------------------------------|-------------------|-------------| +| name | Name of the API (custom name) | Optional | `azure api` | +| azure_ad_tenant_id | The Azure AD Tenant id | Required | - | +| azure_ad_client_id | The Azure AD Client id | Required | - | +| azure_ad_secret_value | The Azure AD Secret value | Required | - | +| date_filter_key | The name of key to use for the date filter in the request URL params | Optional | `createdDateTime` | +| data_request.url | The request URL | Required | - | +| data_request.additional_fields | Additional custom fields to add to the logs before sending to logzio | Optional | - | +| days_back_fetch | The amount of days to fetch back in the first request | Optional | 1 (day) | +| scrape_interval | Time interval to wait between runs (unit: `minutes`) | Optional | 1 (minute) | ### Run the Docker container +In the path where you saved your `config.yaml`, run: ```shell docker run --name logzio-api-fetcher \ @@ -130,6 +74,17 @@ docker run --name logzio-api-fetcher \ logzio/logzio-api-fetcher ``` +:::note +To run in Debug mode add `--level` flag to the command: +```shell +docker run --name logzio-api-fetcher \ +-v "$(pwd)":/app/src/shared \ +logzio/logzio-api-fetcher \ +--level DEBUG +``` +Available Options: `INFO`, `WARN`, `ERROR`, `DEBUG` +::: + ### Stop the Docker container When you stop the container, the code will run until the iteration is completed. To make sure it will finish the iteration on time, please give it a grace period of 30 seconds when you run the `docker stop` command. @@ -145,5 +100,3 @@ and then open [Open Search Dashboards](https://app.logz.io/#/dashboard/osd). You If you still don't see your logs, see [log shipping troubleshooting](https://docs.logz.io/docs/user-guide/log-management/troubleshooting/log-shipping-troubleshooting/). - - diff --git a/docs/shipping/Security/cisco-securex.md b/docs/shipping/Security/cisco-securex.md index 587dd2d5..6427647a 100644 --- a/docs/shipping/Security/cisco-securex.md +++ b/docs/shipping/Security/cisco-securex.md @@ -20,7 +20,7 @@ Cisco SecureX connects the breadth of Cisco's integrated security portfolio and :::note -[Project's GitHub repo](https://github.com/logzio/logzio-api-fetcher/) +[Project's GitHub repo](https://github.com/logzio/logzio-api-fetcher/tree/v0.1.3) ::: @@ -28,7 +28,7 @@ Cisco SecureX connects the breadth of Cisco's integrated security portfolio and ### Pull the Docker image of the Logz.io API fetcher ```shell -docker pull logzio/logzio-api-fetcher +docker pull logzio/logzio-api-fetcher:0.1.3 ``` @@ -94,6 +94,7 @@ After every successful iteration of an API, the last start date of the next iter If you stopped the container, you can continue from the exact place you stopped, by adding the date to the API filters in the configuration. ### Run the Docker container +In the path where you saved your `config.yaml`, run: ```shell docker run --name logzio-api-fetcher \ diff --git a/docs/user-guide/log-management/api-fetcher.md b/docs/user-guide/log-management/api-fetcher.md index 70381a3e..1089e599 100644 --- a/docs/user-guide/log-management/api-fetcher.md +++ b/docs/user-guide/log-management/api-fetcher.md @@ -19,44 +19,41 @@ logzio: url: https://<>:8071 token: <> -oauth_apis: - - type: azure_graph - name: azure_test - credentials: - id: <> - key: <> - token_http_request: - url: https://login.microsoftonline.com/<>/oauth2/v2.0/token - body: client_id=<>&scope=https://graph.microsoft.com/.default - &client_secret=<>&grant_type=client_credentials - method: POST - data_http_request: +apis: + - name: azure graph example + type: azure_graph + azure_ad_tenant_id: <> + azure_ad_client_id: <> + azure_ad_secret_value: <> + data_request: url: https://graph.microsoft.com/v1.0/auditLogs/signIns - method: GET - json_paths: - data_date: createdDateTime - settings: - time_interval: 1 - days_back_fetch: 30 - - type: general - name: general_test - credentials: - id: aaaa-bbbb-cccc - key: abcabcabc - token_http_request: - url: https://login.microsoftonline.com/abcd-efgh-abcd-efgh/oauth2/v2.0/token - body: client_id=aaaa-bbbb-cccc&scope=https://graph.microsoft.com/.default - &client_secret=abcabcabc&grant_type=client_credentials - method: POST - data_http_request: - url: https://graph.microsoft.com/v1.0/auditLogs/directoryAudits - json_paths: - data_date: activityDateTime - data: value - next_url: '@odata.nextLink' - settings: - time_interval: 1 - start_date_name: activityDateTime + additional_fields: + type: azure_graph + field_to_add_to_my_logs: 123 + scrape_interval: 1 + days_back_fetch: 30 + + - name: general example + type: general + url: https://first/request/url + headers: + CONTENT-TYPE: application/json + another-header: XXX + body: { + "size": 1000 + } + method: POST + additional_fields: + type: my_fetcher + another_field: 123 + pagination: + type: url + url_format: ?page={res.info.page+1} + update_first_url: True + stop_indication: + field: result + condition: empty + response_data_path: result ``` ## Configuration @@ -74,128 +71,174 @@ logzio: {@include: ../../_include/log-shipping/log-shipping-token.md} {@include: ../../_include/log-shipping/listener-var.html} -### Identify the Required API Endpoint +### Configure your APIs -Use the official documentation to find the necessary API endpoint. For Azure Graph alerts, relevant documentation can be found at [Microsoft's official site](https://learn.microsoft.com/en-us/graph/api/resources/alert?view=graph-rest-1.0). + + -:::note -The following step is specifically for using Azure-based APIs. If you are utilizing a different provider, please refer to the respective provider's documentation. -::: - -#### Search for the necessary permissions for the API - -In this instance: https://learn.microsoft.com/en-us/graph/api/alert-list?view=graph-rest-1.0&tabs=http#permissions - -The type of permissions required is `Application permissions`. For security purposes, it's advisable to select the least privileged permissions available. In this case, that would be `SecurityEvents.Read.All`. - - -#### Register a new application in Azure Active Directory - -API communication in Azure is facilitated through Applications. To fetch data from the API, it's necessary to create and configure an Azure Application. To do this: - -1. Navigate to **App registration** in the Azure portal. -2. Select **New registration** at the top of the page. -3. Enter a name for your app. -4. Click **Register**. - -#### Create a client secret - -1. Go to **Certificates & secrets** in the side menu. -2. Select **New client secret**. -3. Provide a description. A specific identifier, such as "secret for Logzio-Api-fetcher," is recommended. -4. Choose **Never** for the **Expires** option. -5. Click **Add**. - -Note the value of the generated secret for later use. - -:::note -The secret's value cannot be retrieved once you navigate away from this page. -::: + #### General API Settings -#### Configure the App's Permissions - -1. Select **API permissions** from the side menu and click **Add a permission**. -2. Choose **Microsoft Graph > Application permissions**. -3. Utilize the application permissions identified in step 1: `SecurityEvents.Read.All`. -4. Proceed to **Add permissions**. -5. Select **Grant admin consent for Default Directory** and confirm with **Yes**. - -:::note -Granting admin consent for Default Directory is an action limited to Azure administrators. If the Grant admin consent option is not available, consult your Azure administrator to make the necessary adjustments. -::: - - -### Set Up Authentication - -Determine the necessary authentication method and details for the API. Azure Graph requires [OAuth for authentication](https://learn.microsoft.com/en-us/entra/identity-platform/scenario-daemon-acquire-token?tabs=java#protocol). - -### Configure OAuth and API Requests - -Following the information gathered, configure the OAuth and API request details in your configuration file. - -```yaml -logzio: - url: https://<>:8071 - token: <> - -oauth_apis: - - type: azure_graph - name: azure_test - credentials: - id: <> - key: <> - token_http_request: - url: https://login.microsoftonline.com/aassddeeedff/oauth2/v2.0/token - body: client_id=<> - &scope=https://graph.microsoft.com/.default - &client_secret=aassddeee - &grant_type=client_credentials - headers: - method: POST - data_http_request: - url: https://graph.microsoft.com/v1.0/security/alerts - method: GET - headers: +## Configuration +| Parameter Name | Description | Required/Optional | Default | +|--------------------|-----------------------------------------------------------------------------------------------------------------------------------|-------------------|-----------------------------| +| name | Name of the API (custom name) | Optional | the defined `url` | +| url | The request URL | Required | - | +| headers | The request Headers | Optional | `{}` | +| body | The request body | Optional | - | +| method | The request method (`GET` or `POST`) | Optional | `GET` | +| pagination | Pagination settings if needed (see [options below](#pagination-configuration-options)) | Optional | - | +| next_url | If needed to update the URL in next requests based on the last response. Supports using variables ([see below](#using-variables)) | Optional | - | +| response_data_path | The path to the data inside the response | Optional | response root | +| additional_fields | Additional custom fields to add to the logs before sending to logzio | Optional | Add `type` as `api-fetcher` | +| scrape_interval | Time interval to wait between runs (unit: `minutes`) | Optional | 1 (minute) | + +## Pagination Configuration Options +If needed, you can configure pagination. + +| Parameter Name | Description | Required/Optional | Default | +|------------------|--------------------------------------------------------------------------------------------------------------------------------------------------|----------------------------------------------------|---------| +| type | The pagination type (`url`, `body` or `headers`) | Required | - | +| url_format | If pagination type is `url`, configure the URL format used for the pagination. Supports using variables ([see below](#using-variables)). | Required if pagination type is `url` | - | +| update_first_url | `True` or `False`; If pagination type is `url`, and it's required to append new params to the first request URL and not reset it completely. | Optional if pagination type is `url` | False | +| headers_format | If pagination type is `headers`, configure the headers format used for the pagination. Supports using variables ([see below](#using-variables)). | Required if pagination type is `headers` | - | +| body_format | If pagination type is `body`, configure the body format used for the pagination. Supports using variables ([see below](#using-variables)). | Required if pagination type is `body` | - | +| stop_indication | When should the pagination end based on the response. (see [options below](#pagination-stop-indication-configuration)). | Optional (if not defined will stop on `max_calls`) | - | +| max_calls | Max calls that the pagination can make. (Supports up to 1000) | Optional | 1000 | + +## Pagination Stop Indication Configuration + +| Parameter Name | Description | Required/Optional | Default | +|----------------|-----------------------------------------------------------------------------------------|-------------------------------------------------|---------| +| field | The name of the field in the response body, to search the stop indication at | Required | - | +| condition | The stop condition (`empty`, `equals` or `contains`) | Required | - | +| value | If condition is `equals` or `contains`, the value of the `field` that we should stop at | Required if condition is `equals` or `contains` | - | + +## Using Variables +Using variables allows taking values from the response of the first request, to structure the request after it. +Mathematical operations `+` and `-` are supported, to add or reduce a number from the variable value. + +Use case examples for variable usage: +1. Update a date filter at every call +2. Update a page number in pagination + +To use variables: +- Wrap the variable name in curly brackets +- Provide the full path to that variable in the response +- Add `res.` prefix to the path. + +Example: Say this is my response: +```json +{ + "field": "value", + "another_field": { + "nested": 123 + }, + "num_arr": [1, 2, 3], + "obj_arr": [ + { + "field2": 345 + }, + { + "field2": 567 + } + ] +} ``` - -:::note -If you are trying to configure an unimplemented API type, please use `general` as the API type. -::: - -Replace `<>`, `<>` and `<>` with your specifics. - -### Define JSON Paths - -Specify the JSON paths for data extraction. These fields usually use the same value, which is the field name that holds the value for the log creation/generation date. For Azure Graph, please refer to the [Azure documentation](https://learn.microsoft.com/en-us/graph/api/resources/alert?view=graph-rest-1.0#properties). Following this documentation, the `CreatedDateTime` field is the relevant field name for our requirements: - -```yaml - json_paths: - data_date: CreatedDateTime - start_date_name: CreatedDateTime +Paths to fields values are structured like so: +- `{res.field}` = `"value"` +- `{res.another_field.nested}` = `123` +- `{res.num_arr.[2]}` = `3` +- `{res.obj_arr.[0].field2}` = `345` + +Using the fields values in the `next_url` for example like the below: +```Yaml +next_url: https://logz.io/{res.field}/{res.obj_arr[0].field2} ``` - -:::note -When using `general` API type, additional fields are required for the json paths. -::: - - -### Adjust General Settings - -Set the interval between fetch cycles (in minutes) and configure how many days back to fetch logs on the first run. - -```yaml - settings: - time_interval: 1 - days_back_fetch: 30 +Would update the URL at every call to have the value of the given fields from the response. In our example the url for the next call would be: ``` +https://logz.io/value/345 +``` +And in the call after it, it would update again according to the response and the `next_url` structure, and so on. + + + + + +#### General OAuth API Settings + +| Parameter Name | Description | Required/Optional | Default | +|-------------------|-------------------------------------------------------------------------------------------------------------------------------|-------------------|-----------------------------| +| name | Name of the API (custom name) | Optional | the defined `url` | +| token_request | Nest here any detail relevant to the request to get the bearer access token. (Options in [General API](../general/README.md)) | Required | - | +| data_request | Nest here any detail relevant to the data request. (Options in [General API](../general/README.md)) | Required | - | +| scrape_interval | Time interval to wait between runs (unit: `minutes`) | Optional | 1 (minute) | +| additional_fields | Additional custom fields to add to the logs before sending to logzio | Optional | Add `type` as `api-fetcher` | + + + + + +#### Azure API Settings +Below fields are relevant for **all Azure API types** + +| Parameter Name | Description | Required/Optional | Default | +|-----------------------|-----------------------------------------------------------------------------------------------------|-------------------|-------------| +| name | Name of the API (custom name) | Optional | `azure api` | +| azure_ad_tenant_id | The Azure AD Tenant id | Required | - | +| azure_ad_client_id | The Azure AD Client id | Required | - | +| azure_ad_secret_value | The Azure AD Secret value | Required | - | +| data_request | Nest here any detail relevant to the data request. (Options in [General API](../general/README.md)) | Required | - | +| days_back_fetch | The amount of days to fetch back in the first request | Optional | 1 (day) | +| scrape_interval | Time interval to wait between runs (unit: `minutes`) | Optional | 1 (minute) | + +#### Azure Graph +By default `azure_graph` API type has built in pagination settings and sets the `response_data_path` to `value` field. +The below fields are relevant **in addition** to the required ones listed under Azure General. + +| Parameter Name | Description | Required/Optional | Default | +|--------------------------------|----------------------------------------------------------------------|-------------------|-------------------| +| date_filter_key | The name of key to use for the date filter in the request URL params | Optional | `createdDateTime` | +| data_request.url | The request URL | Required | - | +| data_request.additional_fields | Additional custom fields to add to the logs before sending to logzio | Optional | - | + +#### Azure Mail Reports +By default `azure_mail_reports` API type has built in pagination settings and sets the `response_data_path` to `d.results` field. +The below fields are relevant **in addition** to the required ones listed under Azure General. + +| Parameter Name | Description | Required/Optional | Default | +|--------------------------------|-----------------------------------------------------------------------------|-------------------|-------------| +| start_date_filter_key | The name of key to use for the start date filter in the request URL params. | Optional | `startDate` | +| end_date_filter_key | The name of key to use for the end date filter in the request URL params. | Optional | `EndDate` | +| data_request.url | The request URL | Required | - | +| data_request.additional_fields | Additional custom fields to add to the logs before sending to logzio | Optional | - | + + + + + +#### Cloudflare API Settings +By default `cloudflare` API type has built in pagination settings and sets the `response_data_path` to `result` field. + +| Parameter Name | Description | Required/Optional | Default | +|-------------------------|---------------------------------------------------------------------------------------------------------------------------------------------|-------------------|-------------------| +| name | Name of the API (custom name) | Optional | the defined `url` | +| cloudflare_account_id | The CloudFlare Account ID | Required | - | +| cloudflare_bearer_token | The Cloudflare Bearer token | Required | - | +| url | The request URL | Required | - | +| next_url | If needed to update the URL in next requests based on the last response. Supports using variables (see [General API](../general/README.md)) | Optional | - | +| additional_fields | Additional custom fields to add to the logs before sending to logzio | Optional | - | +| days_back_fetch | The amount of days to fetch back in the first request. Applies a filter on `since` parameter. | Optional | - | +| scrape_interval | Time interval to wait between runs (unit: `minutes`) | Optional | 1 (minute) | +| pagination_off | True if builtin pagination should be off, False otherwise | Optional | `False` | + + + + -### Create a Last Start Dates Text File - -Prepare a text file named `last_start_dates.txt` to track the last start date for each API and save it in the same directory as the configuration file. ### Launch the Docker Container -Use Docker to run the Logz.io API Fetcher with the provided command. +Use Docker to run the Logz.io API Fetcher with the provided command in the path where you saved your `config.yaml`: ```shell docker run --name logzio-api-fetcher \ @@ -203,8 +246,21 @@ docker run --name logzio-api-fetcher \ logzio/logzio-api-fetcher ``` +:::note +To run in Debug mode add `--level` flag to the command: +```shell +docker run --name logzio-api-fetcher \ +-v "$(pwd)":/app/src/shared \ +logzio/logzio-api-fetcher \ +--level DEBUG +``` +Available Options: `INFO`, `WARN`, `ERROR`, `DEBUG` +::: -### Manage the Last Start Dates File +### Stop the Docker container -After each successful API fetch cycle, the `last_start_dates.txt` file will be updated with the last start date for the next iteration. This allows for a seamless continuation of data fetching, even after the container is stopped. +When you stop the container, the code will run until the iteration is completed. To make sure it will finish the iteration on time, please give it a grace period of 30 seconds when you run the `docker stop` command. +```shell +docker stop -t 30 logzio-api-fetcher +``` From 36e7683171c260cd068aef3c39964a8312ef4600 Mon Sep 17 00:00:00 2001 From: 8naama <8naama@users.noreply.github.com> Date: Wed, 10 Jul 2024 13:06:00 +0000 Subject: [PATCH 2/6] auto generated manifest --- static/manifest.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/static/manifest.json b/static/manifest.json index a91ec366..a451f2b3 100644 --- a/static/manifest.json +++ b/static/manifest.json @@ -1 +1 @@ -{"collectors": [{"id": "GCP-Cloud-Trace", "title": "GCP Trace", "description": "Send Google Cloud Trace metrics to your Logz.io account.", "productTags": ["LOG_ANALYTICS", "METRICS"], "osTags": ["windows", "linux"], "filterTags": ["GCP", "Other"], "logo": "https://logzbucket.s3.eu-west-1.amazonaws.com/logz-docs/shipper-logos/gcptrace.png", "bundle": [], "dataLink": "https://raw.githubusercontent.com/logzio/documentation/master/docs/shipping/GCP/gcp-cloud-trace.md"}, {"id": "gcp-app-engine", "title": "GCP App Engine", "description": "Send Google Cloud App Engine metrics to your Logz.io account.", "productTags": ["LOG_ANALYTICS", "METRICS"], "osTags": ["windows", "linux"], "filterTags": ["GCP", "Compute"], "logo": "https://logzbucket.s3.eu-west-1.amazonaws.com/logz-docs/shipper-logos/appengine.png", "bundle": [], "dataLink": "https://raw.githubusercontent.com/logzio/documentation/master/docs/shipping/GCP/gcp-app-engine.md"}, {"id": "GCP-Cloud-Logging", "title": "GCP Cloud Logging", "description": "Send Google Cloud Logging metrics to your Logz.io account.", "productTags": ["LOG_ANALYTICS", "METRICS"], "osTags": ["windows", "linux"], "filterTags": ["GCP", "Other"], "logo": "https://logzbucket.s3.eu-west-1.amazonaws.com/logz-docs/shipper-logos/cloudlogging.png", "bundle": [], "dataLink": "https://raw.githubusercontent.com/logzio/documentation/master/docs/shipping/GCP/gcp-cloud-logging.md"}, {"id": "GCP-Cloud-Monitoring", "title": "GCP Monitoring", "description": "Send Google Cloud Monitoring metrics to your Logz.io account.", "productTags": ["LOG_ANALYTICS", "METRICS"], "osTags": ["windows", "linux"], "filterTags": ["GCP", "Monitoring"], "logo": "https://logzbucket.s3.eu-west-1.amazonaws.com/logz-docs/shipper-logos/cloudmonitoring.png", "bundle": [], "dataLink": "https://raw.githubusercontent.com/logzio/documentation/master/docs/shipping/GCP/gcp-cloud-monitoring.md"}, {"id": "GCP-AI-Platform", "title": "GCP AI Platform", "description": "Send Google AI Platform metrics to your Logz.io account.", "productTags": ["LOG_ANALYTICS", "METRICS"], "osTags": ["windows", "linux"], "filterTags": ["GCP", "Other"], "logo": "https://logzbucket.s3.eu-west-1.amazonaws.com/logz-docs/shipper-logos/gcpai.png", "bundle": [], "dataLink": "https://raw.githubusercontent.com/logzio/documentation/master/docs/shipping/GCP/gcp-ai-platform.md"}, {"id": "gcp-internet-of-things", "title": "GCP Cloud Internet of Things (IoT) Core", "description": "Send Google Cloud Internet of Things (IoT) Core metrics to your Logz.io account.", "productTags": ["LOG_ANALYTICS", "METRICS"], "osTags": ["windows", "linux"], "filterTags": ["GCP", "IoT"], "logo": "https://logzbucket.s3.eu-west-1.amazonaws.com/logz-docs/shipper-logos/googleiot.png", "bundle": [], "dataLink": "https://raw.githubusercontent.com/logzio/documentation/master/docs/shipping/GCP/gcp-internet-of-things.md"}, {"id": "GCP-BigQuery", "title": "GCP BigQuery", "description": "Send Google Cloud BigQuery metrics to your Logz.io account.", "productTags": ["LOG_ANALYTICS", "METRICS"], "osTags": ["windows", "linux"], "filterTags": ["GCP", "Data Store"], "logo": "https://logzbucket.s3.eu-west-1.amazonaws.com/logz-docs/shipper-logos/bigquery.png", "bundle": [], "dataLink": "https://raw.githubusercontent.com/logzio/documentation/master/docs/shipping/GCP/gcp-bigquery.md"}, {"id": "GCP-Filestore", "title": "GCP Filestore", "description": "Send Google Cloud Filestore metrics to your Logz.io account.", "productTags": ["LOG_ANALYTICS", "METRICS"], "osTags": ["windows", "linux"], "filterTags": ["GCP", "Data Store"], "logo": "https://logzbucket.s3.eu-west-1.amazonaws.com/logz-docs/shipper-logos/gcpfilestore.png", "bundle": [{"type": "GRAFANA_DASHBOARD", "id": "4LAZ8Zep644MzbT1x089GG"}], "dataLink": "https://raw.githubusercontent.com/logzio/documentation/master/docs/shipping/GCP/gcp-filestorage.md"}, {"id": "GCP-Cloud-DNS", "title": "GCP DNS", "description": "Send Google Cloud DNS metrics to your Logz.io account.", "productTags": ["LOG_ANALYTICS", "METRICS"], "osTags": ["windows", "linux"], "filterTags": ["GCP", "Network"], "logo": "https://logzbucket.s3.eu-west-1.amazonaws.com/logz-docs/shipper-logos/dns.png", "bundle": [], "dataLink": "https://raw.githubusercontent.com/logzio/documentation/master/docs/shipping/GCP/gcp-cloud-dns.md"}, {"id": "GCP-Firebase", "title": "GCP Firebase", "description": "Send Google Cloud Firebase metrics to your Logz.io account.", "productTags": ["LOG_ANALYTICS", "METRICS"], "osTags": ["windows", "linux"], "filterTags": ["GCP", "Other"], "logo": "https://logzbucket.s3.eu-west-1.amazonaws.com/logz-docs/shipper-logos/firebase.png", "bundle": [], "dataLink": "https://raw.githubusercontent.com/logzio/documentation/master/docs/shipping/GCP/gcp-firebase.md"}, {"id": "GCP-VM-Manager", "title": "GCP VM Manager", "description": "Send Google Cloud VM Manager metrics to your Logz.io account.", "productTags": ["LOG_ANALYTICS", "METRICS"], "osTags": ["windows", "linux"], "filterTags": ["GCP", "Compute"], "logo": "https://logzbucket.s3.eu-west-1.amazonaws.com/logz-docs/shipper-logos/computeengine.png", "bundle": [], "dataLink": "https://raw.githubusercontent.com/logzio/documentation/master/docs/shipping/GCP/gcp-vm-manager.md"}, {"id": "GCP-Cloud-API", "title": "GCP API", "description": "Send Google Cloud API metrics to your Logz.io account.", "productTags": ["LOG_ANALYTICS", "METRICS"], "osTags": ["windows", "linux"], "filterTags": ["GCP", "Other"], "logo": "https://logzbucket.s3.eu-west-1.amazonaws.com/logz-docs/shipper-logos/gcpapis.png", "bundle": [], "dataLink": "https://raw.githubusercontent.com/logzio/documentation/master/docs/shipping/GCP/gcp-cloud-api.md"}, {"id": "GCP-Dataflow", "title": "GCP Dataflow", "description": "Send Google Cloud Dataflow metrics to your Logz.io account.", "productTags": ["LOG_ANALYTICS", "METRICS"], "osTags": ["windows", "linux"], "filterTags": ["GCP", "Data Store"], "logo": "https://logzbucket.s3.eu-west-1.amazonaws.com/logz-docs/shipper-logos/gcpdataflow.png", "bundle": [], "dataLink": "https://raw.githubusercontent.com/logzio/documentation/master/docs/shipping/GCP/gcp-dataflow.md"}, {"id": "GCP-Cloud-Healthcare", "title": "GCP Healthcare", "description": "Send Google Cloud Healthcare metrics to your Logz.io account.", "productTags": ["LOG_ANALYTICS", "METRICS"], "osTags": ["windows", "linux"], "filterTags": ["GCP", "Other"], "logo": "https://logzbucket.s3.eu-west-1.amazonaws.com/logz-docs/shipper-logos/gcphealthcare.png", "bundle": [], "dataLink": "https://raw.githubusercontent.com/logzio/documentation/master/docs/shipping/GCP/gcp-cloud-healthcare.md"}, {"id": "gcp-load-balancing", "title": "GCP Load Balancing", "description": "Send Google Cloud Load Balancing metrics to your Logz.io account.", "productTags": ["LOG_ANALYTICS", "METRICS"], "osTags": ["windows", "linux"], "filterTags": ["GCP", "Load Balancer"], "logo": "https://logzbucket.s3.eu-west-1.amazonaws.com/logz-docs/shipper-logos/gcplb.png", "bundle": [{"type": "GRAFANA_DASHBOARD", "id": "2qF8pBXlwH0Pw6noOMfzRk"}, {"type": "GRAFANA_DASHBOARD", "id": "48vnzAEl0x6hh3DWKIWkpx"}, {"type": "GRAFANA_DASHBOARD", "id": "7s5HblMf4IVimoRSwnCRJ6"}], "dataLink": "https://raw.githubusercontent.com/logzio/documentation/master/docs/shipping/GCP/gcp-load-balancing.md"}, {"id": "GCP-Dataproc-Metastore", "title": "GCP Dataproc Metastore", "description": "Send Google Cloud Dataproc Metastore metrics to your Logz.io account.", "productTags": ["LOG_ANALYTICS", "METRICS"], "osTags": ["windows", "linux"], "filterTags": ["GCP", "Data Store"], "logo": "https://logzbucket.s3.eu-west-1.amazonaws.com/logz-docs/shipper-logos/gcpdataproc.png", "bundle": [], "dataLink": "https://raw.githubusercontent.com/logzio/documentation/master/docs/shipping/GCP/gcp-dataproc-metastore.md"}, {"id": "GCP-Cloud-Interconnect", "title": "GCP Interconnect", "description": "Send Google Cloud Interconnect metrics to your Logz.io account.", "productTags": ["LOG_ANALYTICS", "METRICS"], "osTags": ["windows", "linux"], "filterTags": ["GCP", "Network"], "logo": "https://logzbucket.s3.eu-west-1.amazonaws.com/logz-docs/shipper-logos/interconnect.png", "bundle": [], "dataLink": "https://raw.githubusercontent.com/logzio/documentation/master/docs/shipping/GCP/gcp-cloud-interconnect.md"}, {"id": "GCP-Cloud-Composer", "title": "GCP Cloud Composer", "description": "Send Google Cloud Composer metrics to your Logz.io account.", "productTags": ["LOG_ANALYTICS", "METRICS"], "osTags": ["windows", "linux"], "filterTags": ["GCP", "Orchestration"], "logo": "https://logzbucket.s3.eu-west-1.amazonaws.com/logz-docs/shipper-logos/gcpcomposer.png", "bundle": [], "dataLink": "https://raw.githubusercontent.com/logzio/documentation/master/docs/shipping/GCP/gcp-cloud-composer.md"}, {"id": "GCP-Recommendations", "title": "GCP Recommendations", "description": "Send Google Cloud Recommendations metrics to your Logz.io account.", "productTags": ["LOG_ANALYTICS", "METRICS"], "osTags": ["windows", "linux"], "filterTags": ["GCP", "Other"], "logo": "https://logzbucket.s3.eu-west-1.amazonaws.com/logz-docs/shipper-logos/gcpai.png", "bundle": [], "dataLink": "https://raw.githubusercontent.com/logzio/documentation/master/docs/shipping/GCP/gcp-recommendations.md"}, {"id": "GCP-BigQuery-Data-Transfer-Service", "title": "GCP BigQuery Data Transfer Service", "description": "Send Google Cloud BigQuery Data Transfer Service metrics to your Logz.io account.", "productTags": ["LOG_ANALYTICS", "METRICS"], "osTags": ["windows", "linux"], "filterTags": ["GCP", "Data Store"], "logo": "https://logzbucket.s3.eu-west-1.amazonaws.com/logz-docs/shipper-logos/bigquery.png", "bundle": [], "dataLink": "https://raw.githubusercontent.com/logzio/documentation/master/docs/shipping/GCP/gcp-bigquery-data-transfer-service.md"}, {"id": "GCP-Cloud-Functions", "title": "GCP Cloud Functions", "description": "Send Google Cloud Functions metrics to your Logz.io account.", "productTags": ["LOG_ANALYTICS", "METRICS"], "osTags": ["windows", "linux"], "filterTags": ["GCP", "Compute"], "logo": "https://logzbucket.s3.eu-west-1.amazonaws.com/logz-docs/shipper-logos/cloudfunctions.png", "bundle": [{"type": "GRAFANA_DASHBOARD", "id": "78mU6GZUeRLhMtExlMvshT"}], "dataLink": "https://raw.githubusercontent.com/logzio/documentation/master/docs/shipping/GCP/gcp-cloudfunctions.md"}, {"id": "gcp-contact-center-ai-insights", "title": "GCP Contact Center AI Insights", "description": "Send Google Cloud Contact Center AI Insights metrics to your Logz.io account.", "productTags": ["METRICS"], "osTags": ["windows", "linux"], "filterTags": ["GCP", "Other"], "logo": "https://logzbucket.s3.eu-west-1.amazonaws.com/logz-docs/shipper-logos/gcpai.png", "bundle": [], "dataLink": "https://raw.githubusercontent.com/logzio/documentation/master/docs/shipping/GCP/gcp-contact-center-ai-insights.md"}, {"id": "GCP-VPN", "title": "GCP VPN", "description": "Send Google Cloud VPN metrics to your Logz.io account.", "productTags": ["LOG_ANALYTICS", "METRICS"], "osTags": ["windows", "linux"], "filterTags": ["GCP", "Network"], "logo": "https://logzbucket.s3.eu-west-1.amazonaws.com/logz-docs/shipper-logos/aws-vpn.png", "bundle": [{"type": "GRAFANA_DASHBOARD", "id": "4gdYz2iIWFeIL3WDDcYRm"}], "dataLink": "https://raw.githubusercontent.com/logzio/documentation/master/docs/shipping/GCP/gcp-vpn.md"}, {"id": "GCP-API-Gateway", "title": "GCP API Gateway", "description": "Send Google Cloud API Gateway metrics to your Logz.io account.", "productTags": ["LOG_ANALYTICS", "METRICS"], "osTags": ["windows", "linux"], "filterTags": ["GCP", "Access Management"], "logo": "https://logzbucket.s3.eu-west-1.amazonaws.com/logz-docs/shipper-logos/apigateway.png", "bundle": [], "dataLink": "https://raw.githubusercontent.com/logzio/documentation/master/docs/shipping/GCP/gcp-api-gateway.md"}, {"id": "google-certificate-authority-service", "title": "Google Certificate Authority Service", "description": "Send Google Cloud Certificate Authority Service metrics to your Logz.io account.", "productTags": ["LOG_ANALYTICS", "METRICS"], "osTags": ["windows", "linux"], "filterTags": ["GCP", "Security"], "logo": "https://logzbucket.s3.eu-west-1.amazonaws.com/logz-docs/shipper-logos/certmanager.png", "bundle": [], "dataLink": "https://raw.githubusercontent.com/logzio/documentation/master/docs/shipping/GCP/google-certificate-authority-service.md"}, {"id": "GCP-Workflows", "title": "GCP Workflows", "description": "Send Google Cloud Workflows metrics to your Logz.io account.", "productTags": ["LOG_ANALYTICS", "METRICS"], "osTags": ["windows", "linux"], "filterTags": ["GCP", "Orchestration"], "logo": "https://logzbucket.s3.eu-west-1.amazonaws.com/logz-docs/shipper-logos/workflows.png", "bundle": [], "dataLink": "https://raw.githubusercontent.com/logzio/documentation/master/docs/shipping/GCP/gcp-workflows.md"}, {"id": "gcp-memorystore-for-memcached", "title": "GCP Memorystore for Memcached", "description": "Send Google Cloud Memorystore for Memcached metrics to your Logz.io account.", "productTags": ["LOG_ANALYTICS", "METRICS"], "osTags": ["windows", "linux"], "filterTags": ["GCP", "Memory Caching"], "logo": "https://logzbucket.s3.eu-west-1.amazonaws.com/logz-docs/shipper-logos/memorystore.png", "bundle": [{"type": "GRAFANA_DASHBOARD", "id": "6V6DBzsX8cRZXCSvuSkHiA"}], "dataLink": "https://raw.githubusercontent.com/logzio/documentation/master/docs/shipping/GCP/gcp-memorystore-for-memcached.md"}, {"id": "GCP-PubSub", "title": "GCP PubSub", "description": "Send Google Cloud PubSub metrics to your Logz.io account.", "productTags": ["LOG_ANALYTICS", "METRICS"], "osTags": ["windows", "linux"], "filterTags": ["GCP", "Distributed Messaging"], "logo": "https://logzbucket.s3.eu-west-1.amazonaws.com/logz-docs/shipper-logos/pubsub.png", "bundle": [], "dataLink": "https://raw.githubusercontent.com/logzio/documentation/master/docs/shipping/GCP/gcp-pubsub.md"}, {"id": "GCP-Firestore", "title": "GCP Firestore", "description": "Send Google Cloud Firestore metrics to your Logz.io account.", "productTags": ["LOG_ANALYTICS", "METRICS"], "osTags": ["windows", "linux"], "filterTags": ["GCP", "Database"], "logo": "https://logzbucket.s3.eu-west-1.amazonaws.com/logz-docs/shipper-logos/firestore.png", "bundle": [], "dataLink": "https://raw.githubusercontent.com/logzio/documentation/master/docs/shipping/GCP/gcp-firestore.md"}, {"id": "GPC-Apigee", "title": "GCP Apigee", "description": "Apigee, part of Google Cloud, helps design, secure, and scale application programming interfaces (APIs). Telegraf is a plug-in driven server agent for collecting and sending metrics and events from databases, systems and IoT sensors.", "productTags": ["LOG_ANALYTICS", "METRICS"], "osTags": ["windows", "linux"], "filterTags": ["GCP", "Other"], "logo": "https://logzbucket.s3.eu-west-1.amazonaws.com/logz-docs/shipper-logos/apigee.png", "bundle": [], "dataLink": "https://raw.githubusercontent.com/logzio/documentation/master/docs/shipping/GCP/gcp-apigee.md"}, {"id": "GCP-Cloud-Router", "title": "GCP Router", "description": "Send Google Cloud Router metrics to your Logz.io account.", "productTags": ["LOG_ANALYTICS", "METRICS"], "osTags": ["windows", "linux"], "filterTags": ["GCP", "Network"], "logo": "https://logzbucket.s3.eu-west-1.amazonaws.com/logz-docs/shipper-logos/gcprouter.png", "bundle": [], "dataLink": "https://raw.githubusercontent.com/logzio/documentation/master/docs/shipping/GCP/gcp-cloud-router.md"}, {"id": "GCP-Workspace", "title": "GCP Workspace", "description": "Send Google Cloud Workspace metrics to your Logz.io account.", "productTags": ["LOG_ANALYTICS", "METRICS", "SIEM"], "osTags": ["windows", "linux"], "filterTags": ["GCP", "Other"], "logo": "https://logzbucket.s3.eu-west-1.amazonaws.com/logz-docs/shipper-logos/google-workspace.svg", "bundle": [], "dataLink": "https://raw.githubusercontent.com/logzio/documentation/master/docs/shipping/GCP/gcp-workspace.md"}, {"id": "GCP-Memorystore-for-Redis", "title": "GCP Memorystore for Redis", "description": "Send Google Cloud Memorystore for Redis metrics to your Logz.io account.", "productTags": ["LOG_ANALYTICS", "METRICS"], "osTags": ["windows", "linux"], "filterTags": ["GCP", "Memory Caching"], "logo": "https://logzbucket.s3.eu-west-1.amazonaws.com/logz-docs/shipper-logos/memorystore.png", "bundle": [{"type": "GRAFANA_DASHBOARD", "id": "771vgmjMzFBHHma1Jov3bG"}], "dataLink": "https://raw.githubusercontent.com/logzio/documentation/master/docs/shipping/GCP/gcp-memorystore-for-redis.md"}, {"id": "GCP-reCAPTCHA-Enterprise", "title": "GCP reCAPTCHA Enterprise", "description": "Send Google Cloud reCAPTCHA Enterprise metrics to your Logz.io account.", "productTags": ["LOG_ANALYTICS", "METRICS"], "osTags": ["windows", "linux"], "filterTags": ["GCP", "Security"], "logo": "https://logzbucket.s3.eu-west-1.amazonaws.com/logz-docs/shipper-logos/recap.png", "bundle": [], "dataLink": "https://raw.githubusercontent.com/logzio/documentation/master/docs/shipping/GCP/gcp-recaptcha-enterprise.md"}, {"id": "gcp-network-topology", "title": "GCP Network Topology", "description": "Send Google Cloud Network Topology metrics to your Logz.io account.", "productTags": ["LOG_ANALYTICS", "METRICS"], "osTags": ["windows", "linux"], "filterTags": ["GCP", "Network"], "logo": "https://logzbucket.s3.eu-west-1.amazonaws.com/logz-docs/shipper-logos/gcpnetwork.png", "bundle": [], "dataLink": "https://raw.githubusercontent.com/logzio/documentation/master/docs/shipping/GCP/gcp-network-topology.md"}, {"id": "GCP-Bigtable", "title": "GCP Bigtable", "description": "Send Google Cloud Bigtable metrics to your Logz.io account.", "productTags": ["LOG_ANALYTICS", "METRICS"], "osTags": ["windows", "linux"], "filterTags": ["GCP", "Data Store"], "logo": "https://logzbucket.s3.eu-west-1.amazonaws.com/logz-docs/shipper-logos/bigtable.png", "bundle": [{"type": "GRAFANA_DASHBOARD", "id": "z2VVwfx5bq2xD5zhQUzk6"}], "dataLink": "https://raw.githubusercontent.com/logzio/documentation/master/docs/shipping/GCP/gcp-bigtable.md"}, {"id": "GCP-Compute-Engine", "title": "GCP Compute Engine", "description": "Send Google Cloud Compute Engine metrics to your Logz.io account.", "productTags": ["LOG_ANALYTICS", "METRICS"], "osTags": ["windows", "linux"], "filterTags": ["GCP", "Compute"], "logo": "https://logzbucket.s3.eu-west-1.amazonaws.com/logz-docs/shipper-logos/computeengine.png", "bundle": [{"type": "GRAFANA_DASHBOARD", "id": "2UHWhKZvymlkGU7yy4jKIK"}], "dataLink": "https://raw.githubusercontent.com/logzio/documentation/master/docs/shipping/GCP/gcp-compute-engine.md"}, {"id": "GCP-Cloud-SQL", "title": "GCP SQL", "description": "Send Google Cloud SQL metrics to your Logz.io account.", "productTags": ["LOG_ANALYTICS", "METRICS"], "osTags": ["windows", "linux"], "filterTags": ["GCP", "Database"], "logo": "https://logzbucket.s3.eu-west-1.amazonaws.com/logz-docs/shipper-logos/gcpsql.png", "bundle": [{"type": "GRAFANA_DASHBOARD", "id": "4KUp9D8EhuMuCuLLhIZBEP"}], "dataLink": "https://raw.githubusercontent.com/logzio/documentation/master/docs/shipping/GCP/gcp-cloudsql.md"}, {"id": "GCP-Datastream", "title": "GCP Datastream", "description": "Send Google Cloud Datastream metrics to your Logz.io account.", "productTags": ["LOG_ANALYTICS", "METRICS"], "osTags": ["windows", "linux"], "filterTags": ["GCP", "Data Store"], "logo": "https://logzbucket.s3.eu-west-1.amazonaws.com/logz-docs/shipper-logos/gcpdatastream.png", "bundle": [], "dataLink": "https://raw.githubusercontent.com/logzio/documentation/master/docs/shipping/GCP/gcp-datastream.md"}, {"id": "GCP-BigQuery-BI-Engine", "title": "GCP BigQuery BI Engine", "description": "Send Google Cloud BigQuery BI Engine metrics to your Logz.io account.", "productTags": ["LOG_ANALYTICS", "METRICS"], "osTags": ["windows", "linux"], "filterTags": ["GCP", "Data Store"], "logo": "https://logzbucket.s3.eu-west-1.amazonaws.com/logz-docs/shipper-logos/bigquery.png", "bundle": [], "dataLink": "https://raw.githubusercontent.com/logzio/documentation/master/docs/shipping/GCP/gcp-bigquerybiengine.md"}, {"id": "GCP-Cloud-Armor", "title": "GCP Cloud Armor", "description": "Send Google Cloud Armor metrics to your Logz.io account.", "productTags": ["LOG_ANALYTICS", "METRICS"], "osTags": ["windows", "linux"], "filterTags": ["GCP", "Security"], "logo": "https://logzbucket.s3.eu-west-1.amazonaws.com/logz-docs/shipper-logos/cloudarmor.png", "bundle": [], "dataLink": "https://raw.githubusercontent.com/logzio/documentation/master/docs/shipping/GCP/gcp-cloud-armor.md"}, {"id": "GCP-Cloud-Tasks", "title": "GCP Tasks", "description": "Send Google Cloud Tasks metrics to your Logz.io account.", "productTags": ["LOG_ANALYTICS", "METRICS"], "osTags": ["windows", "linux"], "filterTags": ["GCP", "Other"], "logo": "https://logzbucket.s3.eu-west-1.amazonaws.com/logz-docs/shipper-logos/gcptasks.png", "bundle": [], "dataLink": "https://raw.githubusercontent.com/logzio/documentation/master/docs/shipping/GCP/gcp-cloudtasks.md"}, {"id": "GCP-Identity-and-Access-Management", "title": "GCP Identity and Access Management", "description": "Send Google Cloud Identity and Access Management metrics to your Logz.io account.", "productTags": ["LOG_ANALYTICS", "METRICS"], "osTags": ["windows", "linux"], "filterTags": ["GCP", "Access Management"], "logo": "https://logzbucket.s3.eu-west-1.amazonaws.com/logz-docs/shipper-logos/gcpiam.png", "bundle": [], "dataLink": "https://raw.githubusercontent.com/logzio/documentation/master/docs/shipping/GCP/gcp-identity-and-access-management.md"}, {"id": "GCP-Data-Loss-Prevention", "title": "GCP Data Loss Prevention", "description": "Send Google Cloud Data Loss Prevention metrics to your Logz.io account.", "productTags": ["LOG_ANALYTICS", "METRICS"], "osTags": ["windows", "linux"], "filterTags": ["GCP", "Security"], "logo": "https://logzbucket.s3.eu-west-1.amazonaws.com/logz-docs/shipper-logos/lossprevention.png", "bundle": [], "dataLink": "https://raw.githubusercontent.com/logzio/documentation/master/docs/shipping/GCP/gcp-data-loss-prevention.md"}, {"id": "GCP-Vertex-AI", "title": "GCP Vertex AI", "description": "Send Google Cloud Vertex AI metrics to your Logz.io account.", "productTags": ["LOG_ANALYTICS", "METRICS"], "osTags": ["windows", "linux"], "filterTags": ["GCP", "Other"], "logo": "https://logzbucket.s3.eu-west-1.amazonaws.com/logz-docs/shipper-logos/vertexai.png", "bundle": [], "dataLink": "https://raw.githubusercontent.com/logzio/documentation/master/docs/shipping/GCP/gcp-vertex-ai.md"}, {"id": "GCP-Stackdriver", "title": "GCP Operation Suite (Stackdriver)", "description": "Send Google Cloud Operation Suite (Stackdriver) metrics to your Logz.io account.", "productTags": ["LOG_ANALYTICS", "METRICS"], "osTags": ["windows", "linux"], "filterTags": ["GCP", "Monitoring"], "logo": "https://logzbucket.s3.eu-west-1.amazonaws.com/logz-docs/shipper-logos/gcp-stackdriver.svg", "bundle": [], "dataLink": "https://raw.githubusercontent.com/logzio/documentation/master/docs/shipping/GCP/gcp-stackdriver.md"}, {"id": "GCP-Datastore", "title": "GCP Datastore", "description": "Send Google Cloud Datastore metrics to your Logz.io account.", "productTags": ["LOG_ANALYTICS", "METRICS"], "osTags": ["windows", "linux"], "filterTags": ["GCP", "Data Store"], "logo": "https://logzbucket.s3.eu-west-1.amazonaws.com/logz-docs/shipper-logos/gcpdatastore.png", "bundle": [], "dataLink": "https://raw.githubusercontent.com/logzio/documentation/master/docs/shipping/GCP/gcp-cloud-datastore.md"}, {"id": "GCP-Storage", "title": "GCP Storage", "description": "Send Google Cloud Storage metrics to your Logz.io account.", "productTags": ["LOG_ANALYTICS", "METRICS"], "osTags": ["windows", "linux"], "filterTags": ["GCP", "Data Store"], "logo": "https://logzbucket.s3.eu-west-1.amazonaws.com/logz-docs/shipper-logos/gcpstorage.png", "bundle": [{"type": "GRAFANA_DASHBOARD", "id": "4LAZ8Zep644MzbT1x089GG"}], "dataLink": "https://raw.githubusercontent.com/logzio/documentation/master/docs/shipping/GCP/gcp-cloud-storage.md"}, {"id": "GCP-Compute-Engine-Autoscaler", "title": "GCP Compute Engine Autoscaler", "description": "Send Google Cloud Compute Engine Autoscaler metrics to your Logz.io account.", "productTags": ["LOG_ANALYTICS", "METRICS"], "osTags": ["windows", "linux"], "filterTags": ["GCP", "Compute"], "logo": "https://logzbucket.s3.eu-west-1.amazonaws.com/logz-docs/shipper-logos/computeengine.png", "bundle": [], "dataLink": "https://raw.githubusercontent.com/logzio/documentation/master/docs/shipping/GCP/gcp-compute-engine-autoscaler.md"}, {"id": "gcp-managed-service-for-microsoft-active-directory", "title": "GCP Managed Service for Microsoft Active Directory", "description": "Send Google Cloud Managed Service for Microsoft Active Directory metrics to your Logz.io account.", "productTags": ["LOG_ANALYTICS", "METRICS"], "osTags": ["windows", "linux"], "filterTags": ["GCP", "Access Management"], "logo": "https://logzbucket.s3.eu-west-1.amazonaws.com/logz-docs/shipper-logos/gcpiam.png", "bundle": [], "dataLink": "https://raw.githubusercontent.com/logzio/documentation/master/docs/shipping/GCP/gcp-managed-service-for-microsoft-active-directory.md"}, {"id": "GCP-Cloud-TPU", "title": "GCP TPU", "description": "Send Google Cloud TPU metrics to your Logz.io account.", "productTags": ["LOG_ANALYTICS", "METRICS"], "osTags": ["windows", "linux"], "filterTags": ["GCP", "Compute"], "logo": "https://logzbucket.s3.eu-west-1.amazonaws.com/logz-docs/shipper-logos/tpu.png", "bundle": [], "dataLink": "https://raw.githubusercontent.com/logzio/documentation/master/docs/shipping/GCP/gcp-cloud-tpu.md"}, {"id": "Google-Cloud-Run", "title": "GCP Cloud Run", "description": "Send Google Cloud Run metrics to your Logz.io account.", "productTags": ["LOG_ANALYTICS", "METRICS"], "osTags": ["windows", "linux"], "filterTags": ["GCP", "Compute"], "logo": "https://logzbucket.s3.eu-west-1.amazonaws.com/logz-docs/shipper-logos/cloudrun.png", "bundle": [], "dataLink": "https://raw.githubusercontent.com/logzio/documentation/master/docs/shipping/GCP/gcp-cloud-run.md"}, {"id": "GCP-Dataproc", "title": "GCP Dataproc", "description": "Send Google Cloud Dataproc metrics to your Logz.io account.", "productTags": ["LOG_ANALYTICS", "METRICS"], "osTags": ["windows", "linux"], "filterTags": ["GCP", "Compute"], "logo": "https://logzbucket.s3.eu-west-1.amazonaws.com/logz-docs/shipper-logos/gcpdataproc.png", "bundle": [], "dataLink": "https://raw.githubusercontent.com/logzio/documentation/master/docs/shipping/GCP/gcp-dataproc.md"}, {"id": "GCP-Cloud-IDS", "title": "GCP IDS", "description": "Send Google Cloud IDS metrics to your Logz.io account.", "productTags": ["LOG_ANALYTICS", "METRICS"], "osTags": ["windows", "linux"], "filterTags": ["GCP", "Security"], "logo": "https://logzbucket.s3.eu-west-1.amazonaws.com/logz-docs/shipper-logos/ids.png", "bundle": [], "dataLink": "https://raw.githubusercontent.com/logzio/documentation/master/docs/shipping/GCP/gcp-cloud-ids.md"}, {"id": "GCP-Storage-Transfer", "title": "GCP Storage Transfer Service", "description": "Send Google Cloud Storage Transfer Service metrics to your Logz.io account.", "productTags": ["LOG_ANALYTICS", "METRICS"], "osTags": ["windows", "linux"], "filterTags": ["GCP", "Data Store"], "logo": "https://logzbucket.s3.eu-west-1.amazonaws.com/logz-docs/shipper-logos/gcpstorage.png", "bundle": [], "dataLink": "https://raw.githubusercontent.com/logzio/documentation/master/docs/shipping/GCP/gcp-storage-transfer.md"}, {"id": "gcp-firewall-insights", "title": "GCP Firewall Insights", "description": "Send Google Cloud Firewall metrics to your Logz.io account.", "productTags": ["LOG_ANALYTICS", "METRICS"], "osTags": ["windows", "linux"], "filterTags": ["GCP", "Network", "Security"], "logo": "https://logzbucket.s3.eu-west-1.amazonaws.com/logz-docs/shipper-logos/gcpfirewall.png", "bundle": [], "dataLink": "https://raw.githubusercontent.com/logzio/documentation/master/docs/shipping/GCP/gcp-firewall-insights.md"}, {"id": "Service-Performance-Monitoring-App360", "title": "App360", "description": "This integration allows you to configure App360 with OpenTelemetry collector and send data from your OpenTelemetry installation to Logz.io.", "productTags": ["TRACING"], "osTags": ["windows", "linux"], "filterTags": ["Other"], "logo": "https://logzbucket.s3.eu-west-1.amazonaws.com/logz-docs/shipper-logos/span-metrics.png", "bundle": [{"type": "GRAFANA_DASHBOARD", "id": "40ZpsSfzfGhbguMYoxwOqm"}, {"type": "GRAFANA_DASHBOARD", "id": "5PFq9YHx2iQkwVMLCMOmjJ"}], "dataLink": "https://raw.githubusercontent.com/logzio/documentation/master/docs/shipping/App360/App360.md"}, {"id": "VMware-vSphere", "title": "VMware vSphere", "description": "VMware vSphere is VMware's cloud computing virtualization platform. Telegraf is a plug-in driven server agent for collecting and sending metrics and events from databases, systems and IoT sensors.", "productTags": ["METRICS"], "osTags": ["windows", "linux"], "filterTags": ["Compute"], "logo": "https://logzbucket.s3.eu-west-1.amazonaws.com/logz-docs/shipper-logos/vsphere-logo.png", "bundle": [{"type": "GRAFANA_DASHBOARD", "id": "VpeHVDlhfo1mF22Lc0UKf"}, {"type": "GRAFANA_DASHBOARD", "id": "6CpW1YzdonmTQ8uIXAN5OL"}, {"type": "GRAFANA_DASHBOARD", "id": "3AvORCMPVJd8948i9oKaBO"}], "dataLink": "https://raw.githubusercontent.com/logzio/documentation/master/docs/shipping/Compute/vmware-vsphere.md"}, {"id": "internet-information-services", "title": "Internet Information Services (IIS)", "description": "Internet Information Services (IIS) for Windows\u00ae Server is a flexible, secure and manageable Web server for hosting on the Web. This integration allows you to send logs from your IIS services to your Logz.io account.", "productTags": ["LOG_ANALYTICS"], "osTags": ["windows", "linux"], "filterTags": ["Compute"], "logo": "https://logzbucket.s3.eu-west-1.amazonaws.com/logz-docs/shipper-logos/iis.png", "bundle": [], "dataLink": "https://raw.githubusercontent.com/logzio/documentation/master/docs/shipping/Compute/internet-information-services.md"}, {"id": "Apache-HTTP-Server", "title": "Apache HTTP Server", "description": "The Apache HTTP Server, colloquially called Apache, is a free and open-source cross-platform web server. This integration sends Apache HTTP server logs and metrics to Logz.io.", "productTags": ["METRICS"], "osTags": ["windows", "linux"], "filterTags": ["Compute"], "logo": "https://logzbucket.s3.eu-west-1.amazonaws.com/logz-docs/shipper-logos/apache-http-logo.png", "bundle": [], "dataLink": "https://raw.githubusercontent.com/logzio/documentation/master/docs/shipping/Compute/apache-http-server.md"}, {"id": "Apache-Tomcat", "title": "Apache Tomcat", "description": "Apache Tomcat is a web server and servlet container that allows the execution of Java Servlets and JavaServer Pages (JSP) for web applications.", "productTags": ["METRICS"], "osTags": ["windows", "linux"], "filterTags": ["Compute"], "logo": "https://logzbucket.s3.eu-west-1.amazonaws.com/logz-docs/shipper-logos/tomcat-logo.png", "bundle": [{"type": "GRAFANA_DASHBOARD", "id": "1QIverGwIdtlC5ZbKohyvj"}, {"type": "GRAFANA_DASHBOARD", "id": "6J2RujMalRK3oC4y0r88ax"}], "dataLink": "https://raw.githubusercontent.com/logzio/documentation/master/docs/shipping/Compute/apache-tomcat.md"}, {"id": "Telegraf-sysmetrics", "title": "Telegraf System Metrics", "description": "Telegraf is a plug-in driven server agent for collecting and sending metrics and events from databases, systems and IoT sensors.", "productTags": ["METRICS"], "osTags": ["windows", "linux"], "filterTags": ["Other"], "logo": "https://logzbucket.s3.eu-west-1.amazonaws.com/logz-docs/shipper-logos/telegraf-logo.png", "bundle": [{"type": "GRAFANA_DASHBOARD", "id": "32X5zm8qW7ByLlp1YPFkrJ"}], "dataLink": "https://raw.githubusercontent.com/logzio/documentation/master/docs/shipping/Compute/telegraf-sysmetrics.md"}, {"id": "Docker", "title": "Docker", "description": "Docker lets you work in standardized environments using local containers, promoting continuous integration and continuous delivery (CI/CD) workflows. With Logz.io you can collect logs and metrics from your Docker environment to gain observability and know if and when issues occur.", "productTags": ["LOG_ANALYTICS", "METRICS"], "recommendedFor": ["DevOps Engineer"], "osTags": ["windows", "linux"], "filterTags": ["Containers", "Most Popular"], "logo": "https://logzbucket.s3.eu-west-1.amazonaws.com/logz-docs/shipper-logos/docker.png", "bundle": [], "dataLink": "https://raw.githubusercontent.com/logzio/documentation/master/docs/shipping/Containers/docker.md"}, {"id": "Kubernetes", "title": "Kubernetes", "description": "Kubernetes, also known as K8s, is an open-source system for automating deployments, scaling, and managing containerized applications. Integrate your Kubernetes system with Logz.io to monitor your logs, metrics, and traces, gain observability into your environment, and be able to identify and resolve issues with just a few clicks.", "productTags": ["LOG_ANALYTICS", "METRICS", "TRACING"], "recommendedFor": ["DevOps Engineer"], "osTags": ["windows", "linux"], "filterTags": ["Containers", "Most Popular"], "logo": "https://logzbucket.s3.eu-west-1.amazonaws.com/logz-docs/shipper-logos/kubernetes.svg", "bundle": [{"type": "OSD_DASHBOARD", "id": "3D1grGcEYB5Oe2feUPImak"}, {"type": "OSD_DASHBOARD", "id": "qryn7oYYoeaBBGMFRvm67"}, {"type": "LOG_ALERT", "id": "1AZRkKc64I12yxAMf2Wyny"}, {"type": "LOG_ALERT", "id": "6H7dfFOPUaHVMIjxdOMASx"}, {"type": "LOG_ALERT", "id": "1F6zSL5me5XJt9Lrjw3vxU"}, {"type": "LOG_ALERT", "id": "2dQHLx0WxmKmLk1kc67Ags"}, {"type": "LOG_ALERT", "id": "3dyFejyivMaZFdudbwKGRG"}, {"type": "GRAFANA_DASHBOARD", "id": "7nILXHYFZbThgTSMObUxkw"}, {"type": "GRAFANA_DASHBOARD", "id": "5TGD77ZKuTiZUXtiM51m6V"}, {"type": "GRAFANA_DASHBOARD", "id": "6pY6DKD0oQJL4sO7bW728"}, {"type": "GRAFANA_DASHBOARD", "id": "5kkUAuEwA0Ygvlgm9iXTHY"}, {"type": "GRAFANA_DASHBOARD", "id": "53g5kSILqoj1T10U1jnvKV"}, {"type": "GRAFANA_DASHBOARD", "id": "5e1xRaDdQnOvs5LCuwKCh5"}, {"type": "GRAFANA_DASHBOARD", "id": "7Cy6DUN78jlKUtMCsbt6GC"}, {"type": "GRAFANA_DASHBOARD", "id": "29HGYsE3kgFEdgJbalTqeY"}, {"type": "GRAFANA_DASHBOARD", "id": "1Hij49FKdnAKVJTjOmpDbH"}, {"type": "GRAFANA_DASHBOARD", "id": "6ThbRK67ZxBGeYwp8n74D0"}, {"type": "GRAFANA_ALERT", "id": "5Ng398K19vXP9197bRV1If"}], "dataLink": "https://raw.githubusercontent.com/logzio/documentation/master/docs/shipping/Containers/kubernetes.md"}, {"id": "OpenShift", "title": "OpenShift", "description": "OpenShift is a family of containerization software products developed by Red Hat. Deploy this integration to ship logs from your OpenShift cluster to Logz.io. Deploy this integration to ship logs from your OpenShift cluster to Logz.io. This integration will deploy the default daemonset, which sends only container logs while ignoring all containers with \"openshift\" namespace.", "productTags": ["LOG_ANALYTICS"], "osTags": ["windows", "linux"], "filterTags": ["Containers", "Orchestration"], "logo": "https://logzbucket.s3.eu-west-1.amazonaws.com/logz-docs/shipper-logos/openshift.png", "bundle": [], "dataLink": "https://raw.githubusercontent.com/logzio/documentation/master/docs/shipping/Containers/openshift.md"}, {"id": "oracle-cloud-infrastructure-container-engine-for-kubernetes", "title": "Oracle Cloud Infrastructure Container Engine for Kubernetes (OKE)", "description": "Oracle Cloud Infrastructure Container Engine for Kubernetes (OKE) is a fully-managed, scalable, and highly available service that you can use to deploy your containerized applications to the cloud.", "productTags": ["LOG_ANALYTICS"], "osTags": ["windows", "linux"], "filterTags": ["Containers", "Orchestration"], "logo": "https://logzbucket.s3.eu-west-1.amazonaws.com/logz-docs/shipper-logos/oke.png", "bundle": [], "dataLink": "https://raw.githubusercontent.com/logzio/documentation/master/docs/shipping/Containers/oracle-cloud-infrastructure-container-engine-for-kubernetes.md"}, {"id": "Control-plane", "title": "Control Plane", "description": "Control Plane is a hybrid platform that integrates multiple cloud services, such as AWS, GCP, and Azure, providing a unified and flexible environment for developers to build and manage backend applications and services across various public and private clouds.", "productTags": ["LOG_ANALYTICS"], "osTags": ["windows", "linux"], "filterTags": ["Containers"], "logo": "https://logzbucket.s3.eu-west-1.amazonaws.com/logz-docs/shipper-logos/control-plane.png", "bundle": [], "dataLink": "https://raw.githubusercontent.com/logzio/documentation/master/docs/shipping/Containers/control-plane.md"}, {"id": "Telegraf-Windows-services", "title": "Telegraf Windows Services", "description": "Telegraf is a plug-in driven server agent for collecting and sending metrics and events from databases, systems and IoT sensors.", "productTags": ["METRICS"], "osTags": ["windows"], "filterTags": ["Other"], "logo": "https://logzbucket.s3.eu-west-1.amazonaws.com/logz-docs/shipper-logos/windows.svg", "bundle": [], "dataLink": "https://raw.githubusercontent.com/logzio/documentation/master/docs/shipping/Operating-Systems/telegraf-windows-services.md"}, {"id": "Linux-data", "title": "Linux Operating System", "description": "Send your Linux machine logs and metrics to Logz.io to monitor and manage your Linux data, allowing you to identify anomalies, investigate incidents, get to the root cause of any issue, and quickly resolve it.", "productTags": ["LOG_ANALYTICS", "METRICS"], "osTags": ["linux"], "filterTags": ["Operating Systems", "Most Popular"], "logo": "https://logzbucket.s3.eu-west-1.amazonaws.com/logz-docs/shipper-logos/linux.svg", "bundle": [{"type": "GRAFANA_DASHBOARD", "id": "6hb5Nww0ar4SXoF92QxMx"}, {"type": "GRAFANA_ALERT", "id": "6y7xNsm1RXlXAFUAXLyOpZ"}], "dataLink": "https://raw.githubusercontent.com/logzio/documentation/master/docs/shipping/Operating-Systems/linux.md"}, {"id": "Telegraf-windows-performance", "title": "Telegraf Windows Performance", "description": "Telegraf is a plug-in driven server agent for collecting and sending metrics and events from databases, systems and IoT sensors.", "productTags": ["METRICS"], "osTags": ["windows"], "filterTags": ["Other"], "logo": "https://logzbucket.s3.eu-west-1.amazonaws.com/logz-docs/shipper-logos/windows.svg", "bundle": [{"type": "GRAFANA_DASHBOARD", "id": "3AND5wMrjcMC9ngDTghmHx"}], "dataLink": "https://raw.githubusercontent.com/logzio/documentation/master/docs/shipping/Operating-Systems/telegraf-windows-performance.md"}, {"id": "localhost-mac", "title": "Mac Operating System", "description": "Send your Mac machine logs and metrics to Logz.io to monitor and manage your Mac data, allowing you to identify anomalies, investigate incidents, get to the root cause of any issue, and quickly resolve it.", "productTags": ["LOG_ANALYTICS", "METRICS"], "osTags": ["mac"], "filterTags": ["Operating Systems", "Most Popular"], "logo": "https://logzbucket.s3.eu-west-1.amazonaws.com/logz-docs/shipper-logos/mac-os.svg", "bundle": [{"type": "GRAFANA_DASHBOARD", "id": "2gsQP2xRef7dkwt8pxWieo"}, {"type": "GRAFANA_ALERT", "id": "hWld33IEO6gZMpp2e4vs0"}], "dataLink": "https://raw.githubusercontent.com/logzio/documentation/master/docs/shipping/Operating-Systems/localhost-mac.md"}, {"id": "Windows", "title": "Windows Operating System", "description": "Send your Windows machine logs and metrics to Logz.io to monitor and manage your Windows data, allowing you to identify anomalies, investigate incidents, get to the root cause of any issue, and quickly resolve it.", "productTags": ["LOG_ANALYTICS"], "osTags": ["windows"], "filterTags": ["Operating Systems", "Most Popular"], "logo": "https://logzbucket.s3.eu-west-1.amazonaws.com/logz-docs/shipper-logos/windows.svg", "bundle": [{"type": "LOG_ALERT", "id": "72Yry8pK5OfiGdPOV2y9RZ"}, {"type": "LOG_ALERT", "id": "4Mkw0OICZz7xnZZjlGWX9x"}, {"type": "GRAFANA_DASHBOARD", "id": "7vydxtpnlKLILHIGK4puX5"}, {"type": "GRAFANA_ALERT", "id": "4GVNTAqeH4lSRQBfN7dCXQ"}], "dataLink": "https://raw.githubusercontent.com/logzio/documentation/master/docs/shipping/Operating-Systems/windows.md"}, {"id": "Alcide-kAudit", "title": "Alcide kAudit", "description": "Alcide kAudit is a security service for monitoring Kubernetes audit logs, and easily identifying abnormal administrative activity and compromised Kubernetes resources.", "productTags": ["LOG_ANALYTICS", "SIEM"], "osTags": ["windows", "linux"], "filterTags": ["Security"], "logo": "https://logzbucket.s3.eu-west-1.amazonaws.com/logz-docs/shipper-logos/alcide.png", "bundle": [], "dataLink": "https://raw.githubusercontent.com/logzio/documentation/master/docs/shipping/Security/alcide-kaudit.md"}, {"id": "Avast", "title": "Avast", "description": "Avast is a family of cross-platform internet security applications. This topic describes how to send system logs from your Avast Antivirus platform to Logz.io.", "productTags": ["LOG_ANALYTICS", "SIEM"], "osTags": ["windows", "linux"], "filterTags": ["Security"], "logo": "https://logzbucket.s3.eu-west-1.amazonaws.com/logz-docs/shipper-logos/avast.png", "bundle": [], "dataLink": "https://raw.githubusercontent.com/logzio/documentation/master/docs/shipping/Security/avast.md"}, {"id": "Wazuh", "title": "Wazuh", "description": "Wazuh is a free, open source and enterprise-ready security monitoring solution for threat detection, integrity monitoring, incident response and compliance. This integration allows you to send Wazuh logs to your Logz.io SIEM account.", "productTags": ["LOG_ANALYTICS", "SIEM"], "osTags": ["windows", "linux"], "filterTags": ["Security"], "logo": "https://logzbucket.s3.eu-west-1.amazonaws.com/logz-docs/shipper-logos/wazuh.svg", "bundle": [], "dataLink": "https://raw.githubusercontent.com/logzio/documentation/master/docs/shipping/Security/wazuh.md"}, {"id": "auditbeat", "title": "Auditbeat", "description": "As its name suggests, auditd is a service that audits activities in a Linux environment. It's available for most major Linux distributions.", "productTags": ["LOG_ANALYTICS", "SIEM"], "osTags": ["linux"], "filterTags": ["Security"], "logo": "https://logzbucket.s3.eu-west-1.amazonaws.com/logz-docs/shipper-logos/linux.svg", "bundle": [], "dataLink": "https://raw.githubusercontent.com/logzio/documentation/master/docs/shipping/Security/auditbeat.md"}, {"id": "Windows-Defender", "title": "Windows Defender via Winlogbeat", "description": "This integration enable you to send Windows Defender events to Logz.io using winlogbeat", "productTags": ["LOG_ANALYTICS", "SIEM"], "osTags": ["windows"], "filterTags": ["Security"], "logo": "https://logzbucket.s3.eu-west-1.amazonaws.com/logz-docs/shipper-logos/windows-defender.svg", "bundle": [], "dataLink": "https://raw.githubusercontent.com/logzio/documentation/master/docs/shipping/Security/windows-defender.md"}, {"id": "FortiGate", "title": "FortiGate", "description": "FortiGate units are installed as a gateway or router between two networks. This integration allows you to send FortiGate logs to your Logz.io SIEM account.", "productTags": ["LOG_ANALYTICS"], "osTags": ["windows", "linux"], "filterTags": ["Network", "Security"], "logo": "https://logzbucket.s3.eu-west-1.amazonaws.com/logz-docs/shipper-logos/fortinet.svg", "bundle": [], "dataLink": "https://raw.githubusercontent.com/logzio/documentation/master/docs/shipping/Security/fortigate.md"}, {"id": "Crowdstrike", "title": "Crowdstrike", "description": "Crowdstrike is a SaaS (software as a service) system security solution. Deploy this integration to ship Crowdstrike events from your Crowdstrike account to Logz.io using FluentD.", "productTags": ["SIEM"], "osTags": ["windows", "linux"], "filterTags": ["Security"], "logo": "https://logzbucket.s3.eu-west-1.amazonaws.com/logz-docs/shipper-logos/crowdstrike-logo.svg", "bundle": [], "dataLink": "https://raw.githubusercontent.com/logzio/documentation/master/docs/shipping/Security/crowdstrike.md"}, {"id": "Sophos", "title": "Sophos", "description": "Sophos Endpoint is an endpoint protection product that combines antimalware, web and application control, device control and much more. This integration allows you to send logs from your Linux-based Sophos applications to your Logz.io SIEM account.", "productTags": ["LOG_ANALYTICS", "SIEM"], "osTags": ["windows", "linux"], "filterTags": ["Security"], "logo": "https://logzbucket.s3.eu-west-1.amazonaws.com/logz-docs/shipper-logos/sophos-shield.png", "bundle": [], "dataLink": "https://raw.githubusercontent.com/logzio/documentation/master/docs/shipping/Security/sophos.md"}, {"id": "Zeek", "title": "Zeek", "description": "Zeek is a free and open-source software network analysis framework. This integration allows you to send Zeek logs to your Logz.io SIEM account.", "productTags": ["LOG_ANALYTICS", "SIEM"], "osTags": ["windows", "linux"], "filterTags": ["Security"], "logo": "https://logzbucket.s3.eu-west-1.amazonaws.com/logz-docs/shipper-logos/zeek.png", "bundle": [], "dataLink": "https://raw.githubusercontent.com/logzio/documentation/master/docs/shipping/Security/zeek.md"}, {"id": "SentinelOne", "title": "SentinelOne", "description": "SentinelOne platform delivers the defenses to prevent, detect, and undo\u2014known and unknown\u2014threats. This integration allows you to send logs from your SentinelOne applications to your Logz.io SIEM account.", "productTags": ["LOG_ANALYTICS", "SIEM"], "osTags": ["windows", "linux"], "filterTags": ["Security"], "logo": "https://logzbucket.s3.eu-west-1.amazonaws.com/logz-docs/shipper-logos/sentintelone-icon.png", "bundle": [], "dataLink": "https://raw.githubusercontent.com/logzio/documentation/master/docs/shipping/Security/sentinelone.md"}, {"id": "ESET", "title": "ESET", "description": "ESET provides anti-virus and firewall solutions. This integration allows you to send ESET logs to your Logz.io SIEM account.", "productTags": ["SIEM"], "osTags": ["windows", "linux"], "filterTags": ["Security"], "logo": "https://logzbucket.s3.eu-west-1.amazonaws.com/logz-docs/shipper-logos/eset.png", "bundle": [], "dataLink": "https://raw.githubusercontent.com/logzio/documentation/master/docs/shipping/Security/eset.md"}, {"id": "McAfee-ePolicy-Orchestrator", "title": "McAfee ePolicy Orchestrator", "description": "McAfee ePolicy Orchestrator (McAfee ePO) software centralizes and streamlines management of endpoint, network, data security, and compliance solutions. This integration allows you to send McAfee ePolicy Orchestrator logs to your Logz.io SIEM account.", "productTags": ["LOG_ANALYTICS", "SIEM"], "osTags": ["windows", "linux"], "filterTags": ["Security"], "logo": "https://logzbucket.s3.eu-west-1.amazonaws.com/logz-docs/shipper-logos/mcafee.svg", "bundle": [], "dataLink": "https://raw.githubusercontent.com/logzio/documentation/master/docs/shipping/Security/mcafee-epolicy-orchestrator.md"}, {"id": "SonicWall", "title": "SonicWall", "description": "SonicWall firewalls allow you to identify and control all of the applications in use on your network. This integration allows you to send logs from your SonicWall applications to your Logz.io SIEM account.", "productTags": ["LOG_ANALYTICS", "SIEM"], "osTags": ["windows", "linux"], "filterTags": ["Network", "Security"], "logo": "https://logzbucket.s3.eu-west-1.amazonaws.com/logz-docs/shipper-logos/SonicWall-Logo.svg", "bundle": [], "dataLink": "https://raw.githubusercontent.com/logzio/documentation/master/docs/shipping/Security/sonicwall.md"}, {"id": "Trend-micro", "title": "Trend Micro", "description": "This integration enables users to monitor and analyze cybersecurity threats and events in real-time, enhancing their overall security visibility and incident response capabilities.", "productTags": ["METRICS", "SIEM"], "osTags": ["windows", "linux"], "filterTags": ["Security"], "logo": "https://logzbucket.s3.eu-west-1.amazonaws.com/logz-docs/shipper-logos/trendmicro-small-logo.png", "bundle": [], "dataLink": "https://raw.githubusercontent.com/logzio/documentation/master/docs/shipping/Security/trend-micro.md"}, {"id": "Cisco-ASA", "title": "Cisco ASA", "description": "Cisco ASA is a security device that combines firewall, antivirus, intrusion prevention, and virtual private network (VPN) capabilities.", "productTags": ["LOG_ANALYTICS", "SIEM"], "osTags": ["windows", "linux"], "filterTags": ["Network", "Security"], "logo": "https://logzbucket.s3.eu-west-1.amazonaws.com/logz-docs/shipper-logos/cisco.svg", "bundle": [], "dataLink": "https://raw.githubusercontent.com/logzio/documentation/master/docs/shipping/Security/cisco-asa.md"}, {"id": "Cisco-Meraki", "title": "Cisco Meraki", "description": "This integration creates a Kinesis Data Firehose delivery stream that links to your Amazon S3 metrics stream and then sends the metrics to your Logz.io account. It also creates a Lambda function that adds AWS namespaces to the metric stream, and a Lambda function that collects and ships the resources' tags.", "productTags": ["LOG_ANALYTICS", "SIEM"], "osTags": ["windows", "linux"], "filterTags": ["Network", "Security"], "logo": "https://logzbucket.s3.eu-west-1.amazonaws.com/logz-docs/shipper-logos/cisco-meraki-logo.png", "bundle": [], "dataLink": "https://raw.githubusercontent.com/logzio/documentation/master/docs/shipping/Security/cisco-meraki.md"}, {"id": "Carbon-Black", "title": "Carbon Black", "description": "Carbon Black enables multi-cloud workload and endpoint threat protection. Connect your Carbon Black to Logz.io to monitor and analyze endpoint security, threat detection, user behavior, software inventory, compliance, and incident response to enhance overall cybersecurity.", "productTags": ["LOG_ANALYTICS", "SIEM"], "osTags": ["windows", "linux"], "filterTags": ["Security"], "logo": "https://logzbucket.s3.eu-west-1.amazonaws.com/logz-docs/shipper-logos/carbon-black.png", "bundle": [], "dataLink": "https://raw.githubusercontent.com/logzio/documentation/master/docs/shipping/Security/carbon-black.md"}, {"id": "Cynet", "title": "Cynet", "description": "Cynet is a cybersecurity asset management platform. This topic describes how to send system logs from your Cynet platform to Logz.io.", "productTags": ["SIEM"], "osTags": ["windows", "linux"], "filterTags": ["Security"], "logo": "https://logzbucket.s3.eu-west-1.amazonaws.com/logz-docs/shipper-logos/cynet.png", "bundle": [], "dataLink": "https://raw.githubusercontent.com/logzio/documentation/master/docs/shipping/Security/cynet.md"}, {"id": "ModSecurity", "title": "ModSecurity", "description": "ModSecurity, sometimes called Modsec, is an open-source web application firewall. This integration allows you to send ModSecurity logs to your Logz.io SIEM account.", "productTags": ["LOG_ANALYTICS", "SIEM"], "osTags": ["windows", "linux"], "filterTags": ["Security"], "logo": "https://logzbucket.s3.eu-west-1.amazonaws.com/logz-docs/shipper-logos/modsec.png", "bundle": [], "dataLink": "https://raw.githubusercontent.com/logzio/documentation/master/docs/shipping/Security/modsecurity.md"}, {"id": "Bitdefender", "title": "Bitdefender", "description": "Bitdefender is an antivirus software. This integration allows you to send Bitdefender logs to your Logz.io SIEM account.", "productTags": ["LOG_ANALYTICS", "SIEM"], "osTags": ["windows", "linux"], "filterTags": ["Security"], "logo": "https://logzbucket.s3.eu-west-1.amazonaws.com/logz-docs/shipper-logos/bitdefender.svg", "bundle": [], "dataLink": "https://raw.githubusercontent.com/logzio/documentation/master/docs/shipping/Security/bitdefender.md"}, {"id": "Check-Point", "title": "Check Point", "description": "Check Point provides hardware and software products for IT security, including network security, endpoint security, cloud security, mobile security, data security and security management. This integration allows you to send Check Point logs to your Logz.io SIEM account.", "productTags": ["LOG_ANALYTICS", "SIEM"], "osTags": ["windows", "linux"], "filterTags": ["Security"], "logo": "https://logzbucket.s3.eu-west-1.amazonaws.com/logz-docs/shipper-logos/check-point.png", "bundle": [], "dataLink": "https://raw.githubusercontent.com/logzio/documentation/master/docs/shipping/Security/check-point.md"}, {"id": "Palo-Alto-Networks", "title": "Palo Alto Networks", "description": "Palo Alto Networks provides advanced protection, security and consistency across locations and clouds. This integration allows you to send logs from your Palo Alto Networks applications to your Logz.io SIEM account.", "productTags": ["LOG_ANALYTICS", "SIEM"], "osTags": ["windows", "linux"], "filterTags": ["Security", "Network"], "logo": "https://logzbucket.s3.eu-west-1.amazonaws.com/logz-docs/shipper-logos/palo-alto-networks.svg", "bundle": [], "dataLink": "https://raw.githubusercontent.com/logzio/documentation/master/docs/shipping/Security/palo-alto-networks.md"}, {"id": "Suricata", "title": "Suricata", "description": "Suricata is an open source-based intrusion detection system and intrusion prevention system. Telegraf is a plug-in driven server agent for collecting and sending metrics and events from databases, systems and IoT sensors.", "productTags": ["METRICS"], "osTags": ["windows", "linux"], "filterTags": ["Security"], "logo": "https://logzbucket.s3.eu-west-1.amazonaws.com/logz-docs/shipper-logos/suricata-logo.png", "bundle": [], "dataLink": "https://raw.githubusercontent.com/logzio/documentation/master/docs/shipping/Security/suricata.md"}, {"id": "Falco", "title": "Falco", "description": "Falco is a CNCF-approved container security and Kubernetes threat detection engine that logs illegal container activity at runtime. Shipping your Falco logs to your Cloud SIEM can help you monitor your Kubernetes workloads for potentially malicious behavior. This can help you catch attempts to remove logging data from a container, to run recon tools inside a container, or add potentially malicious repositories to a container.", "productTags": ["LOG_ANALYTICS", "SIEM"], "osTags": ["windows", "linux"], "filterTags": ["Security"], "logo": "https://logzbucket.s3.eu-west-1.amazonaws.com/logz-docs/shipper-logos/falco-logo.png", "bundle": [], "dataLink": "https://raw.githubusercontent.com/logzio/documentation/master/docs/shipping/Security/falco.md"}, {"id": "x509", "title": "x509", "description": "Deploy this integration to collect X509 certificate metrics from URLs and send them to Logz.io.", "productTags": ["METRICS"], "osTags": ["windows", "linux"], "filterTags": ["Security"], "logo": "https://logzbucket.s3.eu-west-1.amazonaws.com/logz-docs/shipper-logos/ssl-certificate.png", "bundle": [{"type": "GRAFANA_DASHBOARD", "id": "19AIOkwkFLQCZWmUSINGXT"}], "dataLink": "https://raw.githubusercontent.com/logzio/documentation/master/docs/shipping/Security/x509.md"}, {"id": "OSSEC", "title": "OSSEC", "description": "OSSEC is a multiplatform, open source and free Host Intrusion Detection System (HIDS). This integration allows you to send OSSEC logs to your Logz.io SIEM account.", "productTags": ["SIEM", "LOG_ANALYTICS"], "osTags": ["windows", "linux"], "filterTags": ["Security"], "logo": "https://logzbucket.s3.eu-west-1.amazonaws.com/logz-docs/shipper-logos/ossec.png", "bundle": [], "dataLink": "https://raw.githubusercontent.com/logzio/documentation/master/docs/shipping/Security/ossec.md"}, {"id": "Fail2Ban", "title": "Fail2Ban", "description": "Fail2Ban is an intrusion prevention software framework that protects computer servers from brute-force attacks. This integration allows you to send Fail2ban logs to your Logz.io SIEM account.", "productTags": ["LOG_ANALYTICS", "SIEM"], "osTags": ["windows", "linux"], "filterTags": ["Security"], "logo": "https://logzbucket.s3.eu-west-1.amazonaws.com/logz-docs/shipper-logos/fail2ban.png", "bundle": [], "dataLink": "https://raw.githubusercontent.com/logzio/documentation/master/docs/shipping/Security/fail2ban.md"}, {"id": "Trivy", "title": "Trivy", "description": "TThis integration utilizes the logzio-trivy Helm Chart to deploy the trivy-Operator Helm Chart that scans the cluster and creates Trivy reports and a deployment that looks for the Trivy reports in the cluster, processes them, and sends them to Logz.io", "productTags": ["METRICS"], "osTags": ["windows", "linux"], "filterTags": ["Security"], "logo": "https://logzbucket.s3.eu-west-1.amazonaws.com/logz-docs/shipper-logos/trivy-logo.png", "bundle": [], "dataLink": "https://raw.githubusercontent.com/logzio/documentation/master/docs/shipping/Security/trivy.md"}, {"id": "OpenVAS", "title": "OpenVAS", "description": "These instructions show you how to configure Filebeat to send OpenVAS reports to Logz.io.", "productTags": ["LOG_ANALYTICS", "SIEM"], "osTags": ["windows", "linux"], "filterTags": ["Security"], "logo": "https://logzbucket.s3.eu-west-1.amazonaws.com/logz-docs/shipper-logos/greenbone_icon.png", "bundle": [], "dataLink": "https://raw.githubusercontent.com/logzio/documentation/master/docs/shipping/Security/openvas.md"}, {"id": "HashiCorp-Vault", "title": "HashiCorp Vault", "description": "HashiCorp Vault secures, stores, and tightly controls access to tokens, passwords, certificates, API keys, and other secrets in modern computing. This integration allows you to send HashiCorp Vault logs to your Logz.io SIEM account.", "productTags": ["LOG_ANALYTICS", "SIEM"], "osTags": ["windows", "linux"], "filterTags": ["Security"], "logo": "https://logzbucket.s3.eu-west-1.amazonaws.com/logz-docs/shipper-logos/hashicorp-vault.svg", "bundle": [], "dataLink": "https://raw.githubusercontent.com/logzio/documentation/master/docs/shipping/Security/hashicorp-vault.md"}, {"id": "Stormshield", "title": "Stormshield", "description": "Stormshield provides cyber-security solutions. This integration allows you to send logs from your Stormshield applications to your Logz.io SIEM account.", "productTags": ["LOG_ANALYTICS", "SIEM"], "osTags": ["windows", "linux"], "filterTags": ["Network", "Security"], "logo": "https://logzbucket.s3.eu-west-1.amazonaws.com/logz-docs/shipper-logos/stormshield.png", "bundle": [], "dataLink": "https://raw.githubusercontent.com/logzio/documentation/master/docs/shipping/Security/stormshield.md"}, {"id": "pfSense", "title": "pfSense", "description": "pfSense is an open source firewall solution. This topic describes how to configure pfSense to send system logs to Logz.io via Filebeat running on a dedicated server.", "productTags": ["LOG_ANALYTICS", "SIEM"], "osTags": ["windows", "linux"], "filterTags": ["Security", "Network"], "logo": "https://logzbucket.s3.eu-west-1.amazonaws.com/logz-docs/shipper-logos/pfsense-logo.png", "bundle": [], "dataLink": "https://raw.githubusercontent.com/logzio/documentation/master/docs/shipping/Security/pfsense.md"}, {"id": "Cisco-SecureX", "title": "Cisco SecureX", "description": "Cisco SecureX connects the breadth of Cisco's integrated security portfolio and your infrastructure. This integration allows you to collect data from Cisco SecureX API and send it to your Logz.io account.", "productTags": ["LOG_ANALYTICS"], "osTags": ["windows", "linux"], "filterTags": ["Security"], "logo": "https://logzbucket.s3.eu-west-1.amazonaws.com/logz-docs/shipper-logos/securex-logo.png", "bundle": [], "dataLink": "https://raw.githubusercontent.com/logzio/documentation/master/docs/shipping/Security/cisco-securex.md"}, {"id": "dotnet-traces-with-kafka-using-opentelemetry", "title": ".NET Kafka Tracing with OpenTelemetry", "description": "Deploy this integration to enable kafka instrumentation of your .NET application using OpenTelemetry.", "productTags": ["TRACING"], "osTags": ["windows", "linux"], "filterTags": ["Code", "Distributed Messaging"], "logo": "https://logzbucket.s3.eu-west-1.amazonaws.com/logz-docs/shipper-logos/kafka.svg", "bundle": [], "dataLink": "https://raw.githubusercontent.com/logzio/documentation/master/docs/shipping/Code/dotnet-traces-kafka.md"}, {"id": "GO", "title": "GO", "description": "Send logs, metrics and traces from you Go code", "productTags": ["LOG_ANALYTICS", "METRICS", "TRACING"], "osTags": ["windows", "linux"], "filterTags": ["Code"], "recommendedFor": ["Software Engineer"], "logo": "https://logzbucket.s3.eu-west-1.amazonaws.com/logz-docs/shipper-logos/go.svg", "bundle": [{"type": "GRAFANA_DASHBOARD", "id": "2cm0FZu4VK4vzH0We6SrJb"}, {"type": "GRAFANA_ALERT", "id": "1UqjU2gqNAKht1f62jBC9Q"}], "dataLink": "https://raw.githubusercontent.com/logzio/documentation/master/docs/shipping/Code/go.md"}, {"id": "Nestjs", "title": "NestJS OpenTelemetry", "description": "Deploy this integration to enable automatic instrumentation of your NestJS application using OpenTelemetry.", "productTags": ["TRACING"], "osTags": ["windows", "linux"], "filterTags": ["Code"], "logo": "https://logzbucket.s3.eu-west-1.amazonaws.com/logz-docs/shipper-logos/nest-logo.svg", "bundle": [], "dataLink": "https://raw.githubusercontent.com/logzio/documentation/master/docs/shipping/Code/nestjs.md"}, {"id": "JSON", "title": "JSON", "description": "Ship logs from your code directly to the Logz.io listener as a minified JavaScript Object Notation (JSON) file, a standard text-based format for representing structured data based on JavaScript object syntax.", "productTags": ["LOG_ANALYTICS"], "osTags": ["windows", "linux"], "filterTags": ["Code", "Most Popular"], "logo": "https://logzbucket.s3.eu-west-1.amazonaws.com/logz-docs/shipper-logos/json.svg", "bundle": [], "dataLink": "https://raw.githubusercontent.com/logzio/documentation/master/docs/shipping/Code/json.md"}, {"id": "java-traces-with-kafka-using-opentelemetry", "title": "Java Traces with Kafka using OpenTelemetry", "description": "Deploy this integration to enable automatic instrumentation of your Java application with Kafka using OpenTelemetry.", "productTags": ["TRACING"], "osTags": ["windows", "linux"], "filterTags": ["Code", "Distributed Messaging"], "logo": "https://logzbucket.s3.eu-west-1.amazonaws.com/logz-docs/shipper-logos/kafka.svg", "bundle": [], "dataLink": "https://raw.githubusercontent.com/logzio/documentation/master/docs/shipping/Code/java-traces-with-kafka-using-opentelemetry.md"}, {"id": "Python", "title": "Python", "description": "Logz.io's Python integration allows you to send custom logs, custom metrics, and auto-instrument traces into your account, allowing you to identify and resolve issues in your code.", "productTags": ["METRICS", "LOG_ANALYTICS", "TRACING"], "osTags": ["windows", "linux", "mac"], "filterTags": ["Code", "Most Popular"], "recommendedFor": ["Software Engineer"], "logo": "https://logzbucket.s3.eu-west-1.amazonaws.com/logz-docs/shipper-logos/python.svg", "bundle": [{"type": "GRAFANA_DASHBOARD", "id": "1B98fgq9MpqTviLUGFMe6Z"}], "dataLink": "https://raw.githubusercontent.com/logzio/documentation/master/docs/shipping/Code/python.md"}, {"id": "dotnet", "title": ".NET", "description": ".NET is an open-source, managed computer software framework for Windows, Linux, and macOS operating systems. Integrate .NET with Logz.io to monitor logs, metrics, and traces, identify when issues occur, easily troubleshoot them, and improve your applications and services.", "productTags": ["LOG_ANALYTICS", "METRICS", "TRACING"], "osTags": ["windows", "linux"], "filterTags": ["Code", "Most Popular"], "recommendedFor": ["Software Engineer"], "logo": "https://logzbucket.s3.eu-west-1.amazonaws.com/logz-docs/shipper-logos/dotnet.png", "bundle": [{"type": "GRAFANA_DASHBOARD", "id": "3lGo7AE5839jDfkAYU8r21"}, {"type": "GRAFANA_ALERT", "id": "1ALFpmGPygXKWi18TDoO5C"}], "dataLink": "https://raw.githubusercontent.com/logzio/documentation/master/docs/shipping/Code/dotnet.md"}, {"id": "Ruby", "title": "Ruby", "description": "Deploy this integration to enable automatic instrumentation of your Ruby application using OpenTelemetry.", "productTags": ["TRACING"], "osTags": ["windows", "linux"], "filterTags": ["Code"], "logo": "https://logzbucket.s3.eu-west-1.amazonaws.com/logz-docs/shipper-logos/ruby.svg", "bundle": [], "dataLink": "https://raw.githubusercontent.com/logzio/documentation/master/docs/shipping/Code/ruby.md"}, {"id": "Java", "title": "Java", "description": "Integrate your Java applications with Logz.io to gain observability needed to maintain and improve your applications and performance. With Logz.io, you can monitor your Java logs, metrics, and traces, know if and when incidents occur, and quickly resolve them.", "productTags": ["LOG_ANALYTICS", "METRICS", "TRACING"], "osTags": ["windows", "linux"], "filterTags": ["Code", "Most Popular"], "recommendedFor": ["Software Engineer"], "logo": "https://logzbucket.s3.eu-west-1.amazonaws.com/logz-docs/shipper-logos/java.svg", "bundle": [], "dataLink": "https://raw.githubusercontent.com/logzio/documentation/master/docs/shipping/Code/java.md"}, {"id": "Node-js", "title": "Node.js", "description": "Send Node.js logs, metrics, and traces to monitor and maintain your applications' stability, dependability, and performance. By sending your data to Logz.io, you can rapidly spot any issue that might harm your applications and quickly resolve them.", "productTags": ["LOG_ANALYTICS", "METRICS", "TRACING"], "osTags": ["windows", "linux"], "filterTags": ["Code", "Most Popular"], "recommendedFor": ["Software Engineer"], "logo": "https://logzbucket.s3.eu-west-1.amazonaws.com/logz-docs/shipper-logos/nodejs.svg", "bundle": [{"type": "GRAFANA_DASHBOARD", "id": "2zAdXztEedvoRJzWTR2dY0"}, {"type": "GRAFANA_ALERT", "id": "14UC8nC6PZmuJ0lqOeHnhv"}], "dataLink": "https://raw.githubusercontent.com/logzio/documentation/master/docs/shipping/Code/node-js.md"}, {"id": "Apache-ActiveMQ", "title": "Apache ActiveMQ", "description": "Apache ActiveMQ is an open source message broker with a Java Message Service client. Telegraf is a plug-in driven server agent for collecting and sending metrics and events from various sources.", "productTags": ["METRICS"], "osTags": ["windows", "linux"], "filterTags": ["Distributed Messaging"], "logo": "https://logzbucket.s3.eu-west-1.amazonaws.com/logz-docs/shipper-logos/activemq-logo.png", "bundle": [], "dataLink": "https://raw.githubusercontent.com/logzio/documentation/master/docs/shipping/Distributed-Messaging/apache-activemq.md"}, {"id": "NSQ", "title": "NSQ", "description": "NSQ is a realtime distributed messaging platform designed to operate at scale, handling billions of messages per day. Telegraf is a plug-in driven server agent for collecting and sending metrics and events from databases, systems and IoT sensors.", "productTags": ["METRICS"], "osTags": ["windows", "linux"], "filterTags": ["Distributed Messaging"], "logo": "https://logzbucket.s3.eu-west-1.amazonaws.com/logz-docs/shipper-logos/nsq.png", "bundle": [], "dataLink": "https://raw.githubusercontent.com/logzio/documentation/master/docs/shipping/Distributed-Messaging/nsq.md"}, {"id": "Apache-Storm", "title": "Apache Storm", "description": "This integration allows you to send logs from your Apache Storm server instances to your Logz.io account.", "productTags": ["LOG_ANALYTICS"], "osTags": ["linux"], "filterTags": ["Distributed Messaging"], "logo": "https://logzbucket.s3.eu-west-1.amazonaws.com/logz-docs/shipper-logos/apache-storm.png", "bundle": [], "dataLink": "https://raw.githubusercontent.com/logzio/documentation/master/docs/shipping/Distributed-Messaging/apache-storm.md"}, {"id": "RabbitMQ", "title": "RabbitMQ", "description": "RabbitMQ is an open-source message-broker software that originally implemented the Advanced Message Queuing Protocol and has since been extended with a plug-in architecture to support Streaming Text Oriented Messaging Protocol, MQ Telemetry Transport, and other protocols. Telegraf is a plug-in driven server agent for collecting and sending metrics and events from databases, systems and IoT sensors.", "productTags": ["METRICS"], "osTags": ["windows", "linux"], "filterTags": ["Distributed Messaging"], "recommendedFor": ["Software Engineer"], "logo": "https://logzbucket.s3.eu-west-1.amazonaws.com/logz-docs/shipper-logos/rabbitmq-logo.png", "bundle": [{"type": "GRAFANA_DASHBOARD", "id": "77P29wgQwu1pqCaZFMcwnC"}], "dataLink": "https://raw.githubusercontent.com/logzio/documentation/master/docs/shipping/Distributed-Messaging/rabbitmq.md"}, {"id": "Apache-Kafka", "title": "Apache Kafka", "description": "Apache Kafka is a distributed event store and stream-processing platform.", "productTags": ["METRICS"], "osTags": ["windows", "linux"], "filterTags": ["Distributed Messaging"], "recommendedFor": ["DevOps Engineer"], "logo": "https://logzbucket.s3.eu-west-1.amazonaws.com/logz-docs/shipper-logos/kafka.svg", "bundle": [], "dataLink": "https://raw.githubusercontent.com/logzio/documentation/master/docs/shipping/Distributed-Messaging/apache-kafka.md"}, {"id": "DC-OS-orchestration", "title": "DC/OS", "description": "DC/OS (the Distributed Cloud Operating System) is an open-source, distributed operating system based on the Apache Mesos distributed systems kernel. Telegraf is a plug-in driven server agent for collecting and sending metrics and events from databases, systems and IoT sensors.", "productTags": ["METRICS"], "osTags": ["windows", "linux"], "filterTags": ["Orchestration"], "logo": "https://logzbucket.s3.eu-west-1.amazonaws.com/logz-docs/shipper-logos/dcos.png", "bundle": [], "dataLink": "https://raw.githubusercontent.com/logzio/documentation/master/docs/shipping/Orchestration/ds-os.md"}, {"id": "Beanstalkd-orchestration", "title": "Beanstalkd", "description": "Beanstalkd is a simple, fast work queue. Telegraf is a plug-in driven server agent for collecting and sending metrics and events from databases, systems and IoT sensors.", "productTags": ["METRICS"], "osTags": ["windows", "linux"], "filterTags": ["Orchestration"], "logo": "https://logzbucket.s3.eu-west-1.amazonaws.com/logz-docs/shipper-logos/beanstalk-logo.png", "bundle": [], "dataLink": "https://raw.githubusercontent.com/logzio/documentation/master/docs/shipping/Orchestration/beanstalkd.md"}, {"id": "Apache-ZooKeeper-orchestration", "title": "Apache ZooKeeper", "description": "Apache ZooKeeper is an open-source server for highly reliable distributed coordination of cloud applications.", "productTags": ["METRICS"], "osTags": ["windows", "linux"], "filterTags": ["Orchestration"], "logo": "https://logzbucket.s3.eu-west-1.amazonaws.com/logz-docs/shipper-logos/zookeeper-logo.png", "bundle": [], "dataLink": "https://raw.githubusercontent.com/logzio/documentation/master/docs/shipping/Orchestration/apache-zookeeper.md"}, {"id": "Istio-orchestration", "title": "Istio", "description": "Deploy this integration to send traces from your Istio service mesh layers to Logz.io via the OpenTelemetry collector.", "productTags": ["TRACING"], "osTags": ["windows", "linux"], "filterTags": ["Orchestration"], "logo": "https://logzbucket.s3.eu-west-1.amazonaws.com/logz-docs/shipper-logos/istio.png", "bundle": [], "dataLink": "https://raw.githubusercontent.com/logzio/documentation/master/docs/shipping/Orchestration/istio-traces.md"}, {"id": "Apache-Mesos-orchestration", "title": "Apache Mesos", "description": "Apache Mesos is an open-source project to manage computer clusters.", "productTags": ["METRICS"], "osTags": ["windows", "linux"], "filterTags": ["Orchestration"], "logo": "https://logzbucket.s3.eu-west-1.amazonaws.com/logz-docs/shipper-logos/mesos-logo.png", "bundle": [], "dataLink": "https://raw.githubusercontent.com/logzio/documentation/master/docs/shipping/Orchestration/apache-mesos.md"}, {"id": "Aerospike", "title": "Aerospike", "description": "Aerospike is a flash-optimized and in-memory open source distributed key value NoSQL database. Telegraf is a plug-in driven server agent for collecting and sending metrics and events from databases, systems and IoT sensors.", "productTags": ["METRICS"], "osTags": ["windows", "linux"], "filterTags": ["Database"], "logo": "https://logzbucket.s3.eu-west-1.amazonaws.com/logz-docs/shipper-logos/aerospike-logo.png", "bundle": [], "dataLink": "https://raw.githubusercontent.com/logzio/documentation/master/docs/shipping/Database/aerospike.md"}, {"id": "ClickHouse", "title": "ClickHouse", "description": "ClickHouse is a fast open-source column-oriented database management system that allows generating analytical data reports in real-time using SQL queries. Telegraf is a plug-in driven server agent for collecting and sending metrics and events from databases, systems and IoT sensors.", "productTags": ["METRICS"], "osTags": ["windows", "linux"], "filterTags": ["Database"], "logo": "https://logzbucket.s3.eu-west-1.amazonaws.com/logz-docs/shipper-logos/clickhouse.png", "bundle": [], "dataLink": "https://raw.githubusercontent.com/logzio/documentation/master/docs/shipping/Database/clickhouse-telegraf.md"}, {"id": "MySQL", "title": "MySQL", "description": "MySQL is an open-source relational database management system. Filebeat is often the easiest way to get logs from your system to Logz.io. Logz.io has a dedicated configuration wizard to make it simple to configure Filebeat. If you already have Filebeat and you want to add new sources, check out our other shipping instructions to copy&paste just the relevant changes from our code examples.", "productTags": ["METRICS"], "osTags": ["windows", "linux"], "filterTags": ["Database"], "recommendedFor": ["Software Engineer"], "logo": "https://logzbucket.s3.eu-west-1.amazonaws.com/logz-docs/shipper-logos/mysql.svg", "bundle": [], "dataLink": "https://raw.githubusercontent.com/logzio/documentation/master/docs/shipping/Database/mysql.md"}, {"id": "MarkLogic", "title": "MarkLogic", "description": "MarkLogic is a NoSQL database platform that is used in publishing, government, finance and other sectors, with hundreds of large-scale systems in production. Telegraf is a plug-in driven server agent for collecting and sending metrics and events from databases, systems and IoT sensors.", "productTags": ["METRICS"], "osTags": ["windows", "linux"], "filterTags": ["Database"], "logo": "https://logzbucket.s3.eu-west-1.amazonaws.com/logz-docs/shipper-logos/marklogic.png", "bundle": [], "dataLink": "https://raw.githubusercontent.com/logzio/documentation/master/docs/shipping/Database/marklogic.md"}, {"id": "PostgreSQL", "title": "PostgreSQL", "description": "PostgreSQL is a free and open-source relational database management system emphasizing extensibility and SQL compliance. Telegraf is a plug-in driven server agent for collecting and sending metrics and events from databases, systems and IoT sensors.", "productTags": ["METRICS"], "osTags": ["windows", "linux"], "filterTags": ["Database"], "recommendedFor": ["Software Engineer"], "logo": "https://logzbucket.s3.eu-west-1.amazonaws.com/logz-docs/shipper-logos/postgresql-logo.png", "bundle": [{"type": "GRAFANA_DASHBOARD", "id": "3L7cjHptO2CFcrvpqGCNI0"}], "dataLink": "https://raw.githubusercontent.com/logzio/documentation/master/docs/shipping/Database/postgresql.md"}, {"id": "Redis", "title": "Redis", "description": "Redis is an in-memory data structure store, used as a distributed, in-memory key\u2013value database, cache and message broker, with optional durability. Telegraf is a plug-in driven server agent for collecting and sending metrics and events from databases, systems and IoT sensors.", "productTags": ["LOG_ANALYTICS", "METRICS"], "osTags": ["windows", "linux"], "filterTags": ["Database"], "logo": "https://logzbucket.s3.eu-west-1.amazonaws.com/logz-docs/shipper-logos/redis-logo.png", "bundle": [{"type": "GRAFANA_DASHBOARD", "id": "1sS7i6SyMz35RIay8NRYGp"}], "dataLink": "https://raw.githubusercontent.com/logzio/documentation/master/docs/shipping/Database/redis.md"}, {"id": "RavenDB", "title": "RavenDB", "description": "RavenDB is an open source document-oriented NoSQL designed especially for the .NET/Windows platform. Telegraf is a plug-in driven server agent for collecting and sending metrics and events from databases, systems and IoT sensors.", "productTags": ["METRICS"], "osTags": ["windows", "linux"], "filterTags": ["Database"], "logo": "https://logzbucket.s3.eu-west-1.amazonaws.com/logz-docs/shipper-logos/ravendb-logo.png", "bundle": [], "dataLink": "https://raw.githubusercontent.com/logzio/documentation/master/docs/shipping/Database/ravendb.md"}, {"id": "Apache-Cassandra", "title": "Apache Cassandra", "description": "Apache Cassandra is an open source NoSQL distributed database management system designed to process large amounts of data across commodity servers.", "productTags": ["METRICS"], "osTags": ["windows", "linux"], "filterTags": ["Database"], "logo": "https://logzbucket.s3.eu-west-1.amazonaws.com/logz-docs/shipper-logos/cassandra-logo.png", "bundle": [{"type": "GRAFANA_DASHBOARD", "id": "5oCUt52hGJu6LmVGHPOktr"}, {"type": "GRAFANA_DASHBOARD", "id": "6J2RujMalRK3oC4y0r88ax"}], "dataLink": "https://raw.githubusercontent.com/logzio/documentation/master/docs/shipping/Database/apache-cassandra.md"}, {"id": "Riak", "title": "Riak", "description": "Riak is a distributed NoSQL key-value data store that offers high availability, fault tolerance, operational simplicity, and scalability. Telegraf is a plug-in driven server agent for collecting and sending metrics and events from databases, systems and IoT sensors.", "productTags": ["METRICS"], "osTags": ["windows", "linux"], "filterTags": ["Database"], "logo": "https://logzbucket.s3.eu-west-1.amazonaws.com/logz-docs/shipper-logos/riak-logo.png", "bundle": [], "dataLink": "https://raw.githubusercontent.com/logzio/documentation/master/docs/shipping/Database/riak.md"}, {"id": "Microsoft-SQL-Server", "title": "Microsoft SQL Server", "description": "Microsoft SQL Server is a relational database management system developed by Microsoft. Telegraf is a plug-in driven server agent for collecting and sending metrics and events from databases, systems and IoT sensors.", "productTags": ["METRICS"], "osTags": ["windows"], "filterTags": ["Database"], "logo": "https://logzbucket.s3.eu-west-1.amazonaws.com/logz-docs/shipper-logos/mysql.svg", "bundle": [], "dataLink": "https://raw.githubusercontent.com/logzio/documentation/master/docs/shipping/Database/microsoft-sql-server.md"}, {"id": "PgBouncer", "title": "PgBouncer", "description": "PgBouncer is a lightweight connection pooler for PostgreSQL. Telegraf is a plug-in driven server agent for collecting and sending metrics and events from databases, systems and IoT sensors.", "productTags": ["METRICS"], "osTags": ["windows", "linux"], "filterTags": ["Database"], "logo": "https://logzbucket.s3.eu-west-1.amazonaws.com/logz-docs/shipper-logos/pgbouncer.png", "bundle": [], "dataLink": "https://raw.githubusercontent.com/logzio/documentation/master/docs/shipping/Database/pgbouncer.md"}, {"id": "Azure-Activity-logs", "title": "Azure Activity Logs", "description": "Ship your Azure activity logs using an automated deployment process.", "productTags": ["LOG_ANALYTICS", "SIEM"], "osTags": ["windows", "linux"], "filterTags": ["Azure", "Security"], "logo": "https://logzbucket.s3.eu-west-1.amazonaws.com/logz-docs/shipper-logos/azure-monitor.svg", "bundle": [], "dataLink": "https://raw.githubusercontent.com/logzio/documentation/master/docs/shipping/Azure/azure-activity-logs.md"}, {"id": "Azure-VM-Extension", "title": "Azure VM Extension", "description": "Extensions are small applications that provide post-deployment configuration and automation on Azure VMs. You can install Logz.io agents on Azure virtual machines as an extension. This will allow you to ship logs directly from your VM to your Logz.io account.", "productTags": ["LOG_ANALYTICS"], "osTags": ["windows", "linux"], "filterTags": ["Azure", "Compute"], "logo": "https://logzbucket.s3.eu-west-1.amazonaws.com/logz-docs/shipper-logos/azure-vm.png", "bundle": [], "dataLink": "https://raw.githubusercontent.com/logzio/documentation/master/docs/shipping/Azure/azure-vm-extension.md"}, {"id": "azure-active-Directory", "title": "Azure Active Directory", "description": "You can ship logs available from the Microsoft Graph APIs with Logzio-MSGraph.", "productTags": ["SIEM"], "osTags": ["windows", "linux"], "filterTags": ["Azure", "Access Management"], "logo": "https://logzbucket.s3.eu-west-1.amazonaws.com/logz-docs/shipper-logos/azure.svg", "bundle": [], "dataLink": "https://raw.githubusercontent.com/logzio/documentation/master/docs/shipping/Azure/azure-active-directory.md"}, {"id": "Azure-Diagnostic-Logs", "title": "Azure Diagnostic Logs", "description": "Ship your Azure diagnostic logs using an automated deployment process.", "productTags": ["LOG_ANALYTICS"], "osTags": ["windows", "linux"], "filterTags": ["Azure", "Other"], "logo": "https://logzbucket.s3.eu-west-1.amazonaws.com/logz-docs/shipper-logos/azure-monitor.svg", "bundle": [], "dataLink": "https://raw.githubusercontent.com/logzio/documentation/master/docs/shipping/Azure/azure-diagnostic-logs.md"}, {"id": "Azure-Native", "title": "Azure Native Logs", "description": "This integration uses Logz.io's Cloud-Native Observability Platform to monitor the health and performance of your Azure environment through the Azure portal.", "productTags": ["LOG_ANALYTICS"], "osTags": ["windows", "linux"], "filterTags": ["Azure", "Other"], "logo": "https://logzbucket.s3.eu-west-1.amazonaws.com/logz-docs/shipper-logos/Azure-native-integration2.png", "bundle": [], "dataLink": "https://raw.githubusercontent.com/logzio/documentation/master/docs/shipping/Azure/azure-native.md"}, {"id": "azure-graph", "title": "Microsoft Azure Graph API", "description": "You can ship logs available from the Microsoft Graph APIs with Logzio-api-fetcher.", "productTags": ["LOG_ANALYTICS"], "osTags": ["windows", "linux"], "filterTags": ["Azure", "Access Management"], "logo": "https://logzbucket.s3.eu-west-1.amazonaws.com/logz-docs/shipper-logos/azure.svg", "bundle": [], "dataLink": "https://raw.githubusercontent.com/logzio/documentation/master/docs/shipping/Azure/azure-graph.md"}, {"id": "azure-office365-message-trace-reports", "title": "Microsoft Azure Office365 Message Trace Reports (mail reports)", "description": "You can ship mail report logs available from the Microsoft Office365 Message Trace API with Logzio-api-fetcher.", "productTags": ["LOG_ANALYTICS"], "osTags": ["windows", "linux"], "filterTags": ["Azure", "Access Management"], "logo": "https://logzbucket.s3.eu-west-1.amazonaws.com/logz-docs/shipper-logos/azure.svg", "bundle": [], "dataLink": "https://raw.githubusercontent.com/logzio/documentation/master/docs/shipping/Azure/azure-mail-reports.md"}, {"id": "Azure-NSG", "title": "Azure NSG", "description": "Enable an Azure function to forward NSG logs from your Azure Blob Storage account to your Logz.io account.", "productTags": ["LOG_ANALYTICS"], "osTags": ["windows", "linux"], "filterTags": ["Azure", "Network"], "logo": "https://logzbucket.s3.eu-west-1.amazonaws.com/logz-docs/shipper-logos/nsg-logo.png", "bundle": [], "dataLink": "https://raw.githubusercontent.com/logzio/documentation/master/docs/shipping/Azure/azure-nsg.md"}, {"id": "Azure-blob-trigger", "title": "Azure Blob Trigger", "description": "Azure Blob Storage is Microsoft's object storage solution for the cloud. Deploy this integration to forward logs from your Azure Blob Storage account to Logz.io using an automated deployment process via the trigger function. Each new log in the container path inside the storage account (including sub directories), will trigger the Logz.io function that will ship the file content to Logz.io.", "productTags": ["LOG_ANALYTICS"], "osTags": ["windows", "linux"], "filterTags": ["Azure", "Other"], "logo": "https://logzbucket.s3.eu-west-1.amazonaws.com/logz-docs/shipper-logos/azure-blob.svg", "bundle": [], "dataLink": "https://raw.githubusercontent.com/logzio/documentation/master/docs/shipping/Azure/azure-blob-trigger.md"}, {"id": "Azure-Security-Center", "title": "Azure Security Center", "description": "You can ship security logs available from the Microsoft Graph APIs with Logzio api fetcher.", "productTags": ["SIEM"], "osTags": ["windows", "linux"], "filterTags": ["Azure", "Access Management"], "logo": "https://logzbucket.s3.eu-west-1.amazonaws.com/logz-docs/shipper-logos/azure.svg", "bundle": [], "dataLink": "https://raw.githubusercontent.com/logzio/documentation/master/docs/shipping/Azure/azure-security-center.md"}, {"id": "Neptune-apex-iot", "title": "Neptune Apex", "description": "Neptune Apex is an aquarium control system. Telegraf is a plug-in driven server agent for collecting and sending metrics and events from databases, systems and IoT sensors.", "productTags": ["METRICS"], "osTags": ["windows", "linux"], "filterTags": ["IoT"], "logo": "https://logzbucket.s3.eu-west-1.amazonaws.com/logz-docs/shipper-logos/neptune.png", "bundle": [], "dataLink": "https://raw.githubusercontent.com/logzio/documentation/master/docs/shipping/IoT/neptune-apex.md"}, {"id": "etcd", "title": "etcd", "description": "etcd is an open source, distributed, consistent key-value store for shared configuration, service discovery, and scheduler coordination of distributed systems or clusters of machines. Telegraf is a plug-in driven server agent for collecting and sending metrics and events from databases, systems and IoT sensors.", "productTags": ["METRICS"], "osTags": ["windows", "linux"], "filterTags": ["Data Store"], "logo": "https://logzbucket.s3.eu-west-1.amazonaws.com/logz-docs/shipper-logos/etcd-logo.png", "bundle": [{"type": "GRAFANA_DASHBOARD", "id": "3Vr8IYt2XR2LEKP6PeVV0r"}], "dataLink": "https://raw.githubusercontent.com/logzio/documentation/master/docs/shipping/Data-Store/etcd.md"}, {"id": "MongoDB", "title": "MongoDB", "description": "MongoDB is a source-available cross-platform document-oriented database program. This integration lets you send logs and metrics from your MongoDB instances to your Logz.io account.", "productTags": ["LOG_ANALYTICS", "METRICS"], "osTags": ["windows", "linux"], "filterTags": ["Data Store"], "logo": "https://logzbucket.s3.eu-west-1.amazonaws.com/logz-docs/shipper-logos/mongo-logo.png", "bundle": [], "dataLink": "https://raw.githubusercontent.com/logzio/documentation/master/docs/shipping/Data-Store/mongodb.md"}, {"id": "MongoDB-Atlas", "title": "MongoDB Atlas", "description": "MongoDB Atlas is a fully-managed cloud database that handles deploying, managing and healing deployments on its cloud service provider.", "productTags": ["METRICS"], "osTags": ["windows", "linux"], "filterTags": ["Data Store"], "logo": "https://logzbucket.s3.eu-west-1.amazonaws.com/logz-docs/shipper-logos/mongoatlas-logo.png", "bundle": [], "dataLink": "https://raw.githubusercontent.com/logzio/documentation/master/docs/shipping/Data-Store/mongodb-atlas.md"}, {"id": "apache-couchdb", "title": "Apache CouchDB", "description": "Apache CouchDB is an open-source document-oriented NoSQL database, implemented in Erlang.", "productTags": ["METRICS"], "osTags": ["windows", "linux"], "filterTags": ["Data Store"], "logo": "https://logzbucket.s3.eu-west-1.amazonaws.com/logz-docs/shipper-logos/couchdb.png", "bundle": [], "dataLink": "https://raw.githubusercontent.com/logzio/documentation/master/docs/shipping/Data-Store/apache-couchdb.md"}, {"id": "Solr", "title": "Solr", "description": "Solr is an open-source enterprise-search platform, written in Java. Telegraf is a plug-in driven server agent for collecting and sending metrics and events from databases, systems and IoT sensors.", "productTags": ["METRICS"], "osTags": ["Search Platform"], "filterTags": ["Data Store"], "logo": "https://logzbucket.s3.eu-west-1.amazonaws.com/logz-docs/shipper-logos/solr-logo.png", "bundle": [], "dataLink": "https://raw.githubusercontent.com/logzio/documentation/master/docs/shipping/Data-Store/solr.md"}, {"id": "Elasticsearch", "title": "Elasticsearch", "description": "Elasticsearch is a search engine based on the Lucene library. Telegraf is a plug-in driven server agent for collecting and sending metrics and events from databases, systems and IoT sensors.", "productTags": ["METRICS"], "osTags": ["windows", "linux"], "filterTags": ["Data Store"], "logo": "https://logzbucket.s3.eu-west-1.amazonaws.com/logz-docs/shipper-logos/elasticsearch.png", "bundle": [], "dataLink": "https://raw.githubusercontent.com/logzio/documentation/master/docs/shipping/Data-Store/elasticsearch.md"}, {"id": "ZFS", "title": "ZFS", "description": "ZFS combines a file system with a volume manager. Telegraf is a plug-in driven server agent for collecting and sending metrics and events from databases, systems and IoT sensors.", "productTags": ["METRICS"], "osTags": ["windows", "linux"], "filterTags": ["Data Store"], "logo": "https://logzbucket.s3.eu-west-1.amazonaws.com/logz-docs/shipper-logos/zfs-logo.png", "bundle": [], "dataLink": "https://raw.githubusercontent.com/logzio/documentation/master/docs/shipping/Data-Store/zfs.md"}, {"id": "Ceph", "title": "Ceph", "description": "Ceph is an open-source software (software-defined storage) storage platform, implements object storage on a single distributed computer cluster, and provides 3-in-1 interfaces for object-, block- and file-level storage. Telegraf is a plug-in driven server agent for collecting and sending metrics and events from databases, systems and IoT sensors.", "productTags": ["METRICS"], "osTags": ["windows", "linux"], "filterTags": ["Data Store"], "logo": "https://logzbucket.s3.eu-west-1.amazonaws.com/logz-docs/shipper-logos/ceph-logo.png", "bundle": [], "dataLink": "https://raw.githubusercontent.com/logzio/documentation/master/docs/shipping/Data-Store/ceph.md"}, {"id": "Ping-statistics-synthetic", "title": "Ping Statistics", "description": "Deploy this integration to collect metrics of ping statistics collected from your preferred web addresses and send them to Logz.io.", "productTags": ["METRICS"], "osTags": ["windows", "linux"], "filterTags": ["Synthetic Monitoring"], "logo": "https://logzbucket.s3.eu-west-1.amazonaws.com/logz-docs/shipper-logos/ping-logo.png", "bundle": [{"type": "GRAFANA_DASHBOARD", "id": "1rNO8llFw8Cm9N8U3M3vCQ"}], "dataLink": "https://raw.githubusercontent.com/logzio/documentation/master/docs/shipping/Synthetic-Monitoring/ping-statistics.md"}, {"id": "API-status-metrics-synthetic", "title": "API Status Metrics", "description": "Deploy this integration to collect API status metrics of user API and send them to Logz.io.", "productTags": ["METRICS"], "osTags": ["windows", "linux"], "filterTags": ["Synthetic Monitoring"], "logo": "https://logzbucket.s3.eu-west-1.amazonaws.com/logz-docs/shipper-logos/apii.svg", "bundle": [{"type": "GRAFANA_DASHBOARD", "id": "1RCzCjjByhyz0bJ4Hmau0y"}], "dataLink": "https://raw.githubusercontent.com/logzio/documentation/master/docs/shipping/Synthetic-Monitoring/api-status-metrics.md"}, {"id": "synthetic-link-detector-synthetic", "title": "Synthetic Link Detector", "description": "Deploy this integration to collect data on broken links in a web page, and to get additional data about the links.", "productTags": ["METRICS"], "osTags": ["windows", "linux"], "filterTags": ["Synthetic Monitoring"], "logo": "https://logzbucket.s3.eu-west-1.amazonaws.com/logz-docs/shipper-logos/link.png", "bundle": [{"type": "GRAFANA_DASHBOARD", "id": "4l4xVZhvqsrJWO7rZwOxgx"}, {"type": "GRAFANA_DASHBOARD", "id": "1NiBMzN5DvQZ8BjePpUtvQ"}], "dataLink": "https://raw.githubusercontent.com/logzio/documentation/master/docs/shipping/Synthetic-Monitoring/synthetic-link-detector.md"}, {"id": "Auth0", "title": "Auth0", "description": "Auth0 is an easy to implement, adaptable authentication and authorization platform. Deploy this integration to ship Auth0 events from your Auth0 account to Logz.io using custom log stream via webhooks.", "productTags": ["LOG_ANALYTICS", "SIEM"], "osTags": ["windows", "linux"], "filterTags": ["Access Management"], "logo": "https://logzbucket.s3.eu-west-1.amazonaws.com/logz-docs/shipper-logos/auth0.png", "bundle": [], "dataLink": "https://raw.githubusercontent.com/logzio/documentation/master/docs/shipping/Access-Management/auth0.md"}, {"id": "OneLogin", "title": "OneLogin", "description": "OneLogin is a cloud-based identity and access management (IAM) provider. This integration allows you to ship logs from your OneLogin account to your Logz.io account.", "productTags": ["LOG_ANALYTICS", "SIEM"], "osTags": ["windows", "linux"], "filterTags": ["Access Management"], "logo": "https://logzbucket.s3.eu-west-1.amazonaws.com/logz-docs/shipper-logos/onelogin.png", "bundle": [], "dataLink": "https://raw.githubusercontent.com/logzio/documentation/master/docs/shipping/Access-Management/onelogin.md"}, {"id": "Active-Directory", "title": "Active Directory via Winlogbeat", "description": "Active Directory is a directory service developed by Microsoft for Windows domain networks. This integration allows you to send Active Directory logs to your Logz.io SIEM account.", "productTags": ["LOG_ANALYTICS", "SIEM"], "osTags": ["windows"], "filterTags": ["Access Management"], "logo": "https://logzbucket.s3.eu-west-1.amazonaws.com/logz-docs/shipper-logos/windows.svg", "bundle": [], "dataLink": "https://raw.githubusercontent.com/logzio/documentation/master/docs/shipping/Access-Management/active-directory.md"}, {"id": "JumpCloud", "title": "JumpCloud", "description": "JumpCloud is a cloud-based platform for identity and access management. Deploy this integration to ship JumpCloud events to Logz.io.", "productTags": ["LOG_ANALYTICS", "SIEM"], "osTags": ["windows", "linux"], "filterTags": ["Access Management"], "logo": "https://logzbucket.s3.eu-west-1.amazonaws.com/logz-docs/shipper-logos/jumpcloud.png", "bundle": [], "dataLink": "https://raw.githubusercontent.com/logzio/documentation/master/docs/shipping/Access-Management/jumpcloud.md"}, {"id": "Okta", "title": "Okta", "description": "Okta is an enterprise-grade, identity management service, built for the cloud, but compatible with many on-premises applications.", "productTags": ["LOG_ANALYTICS", "SIEM"], "osTags": ["windows", "linux"], "filterTags": ["Access Management"], "logo": "https://logzbucket.s3.eu-west-1.amazonaws.com/logz-docs/shipper-logos/okta.png", "bundle": [], "dataLink": "https://raw.githubusercontent.com/logzio/documentation/master/docs/shipping/Access-Management/okta.md"}, {"id": "BigBlueButton-data", "title": "BigBlueButton", "description": "BigBlueButton is a free software web conferencing system for Linux servers. Telegraf is a plug-in driven server agent for collecting and sending metrics and events from databases, systems and IoT sensors.", "productTags": ["METRICS"], "osTags": ["windows", "linux"], "filterTags": ["Other"], "logo": "https://logzbucket.s3.eu-west-1.amazonaws.com/logz-docs/shipper-logos/bigbluebutton-logo.png", "bundle": [], "dataLink": "https://raw.githubusercontent.com/logzio/documentation/master/docs/shipping/Other/bigbluebutton.md"}, {"id": "Heroku-data", "title": "Heroku", "description": "Heroku is a platform as a service (PaaS) that enables developers to build, run, and operate applications entirely in the cloud. This integration allows you to send logs from your Heroku applications to your Logz.io account.", "productTags": ["LOG_ANALYTICS", "METRICS"], "osTags": [], "filterTags": ["Other"], "logo": "https://logzbucket.s3.eu-west-1.amazonaws.com/logz-docs/shipper-logos/heroku.svg", "bundle": [], "dataLink": "https://raw.githubusercontent.com/logzio/documentation/master/docs/shipping/Other/heroku.md"}, {"id": "Intercom-data", "title": "Intercom", "description": "Intercom is a messaging platform with bots, apps, product tours and oher features. Deploy this integration to ship Intercom events from your Intercom account to Logz.io using webhooks.", "productTags": ["METRICS"], "osTags": ["windows", "linux"], "filterTags": ["Other"], "logo": "https://logzbucket.s3.eu-west-1.amazonaws.com/logz-docs/shipper-logos/intercom.png", "bundle": [], "dataLink": "https://raw.githubusercontent.com/logzio/documentation/master/docs/shipping/Other/intercom.md"}, {"id": "cadvisor", "title": "cAdvisor", "description": "This integration lets you send cAdvisor metrics to Logz.io.", "productTags": ["METRICS"], "osTags": ["windows", "linux"], "filterTags": ["Other", "Most Popular"], "logo": "https://dytvr9ot2sszz.cloudfront.net/logz-docs/shipper-logos/cadvisor.png", "bundle": [], "dataLink": "https://raw.githubusercontent.com/logzio/documentation/master/docs/shipping/Other/cadvisor.md"}, {"id": "Microsoft-Graph-data", "title": "Microsoft Graph", "description": "Microsoft Graph is a RESTful web API that enables you to access Microsoft Cloud service resources. This integration allows you to collect data from Microsoft Graph API and send it to your Logz.io account.", "productTags": ["LOG_ANALYTICS", "SIEM"], "osTags": ["windows"], "filterTags": ["Other"], "logo": "https://logzbucket.s3.eu-west-1.amazonaws.com/logz-docs/shipper-logos/graph-api-logo.png", "bundle": [], "dataLink": "https://raw.githubusercontent.com/logzio/documentation/master/docs/shipping/Other/microsoft-graph.md"}, {"id": "confluent", "title": "Confluent Cloud", "description": "This integration allows you to ship Confluent logs to Logz.io using Cloud HTTP Sink.", "productTags": ["LOG_ANALYTICS"], "osTags": ["windows", "linux"], "filterTags": ["Other"], "logo": "https://logzbucket.s3.eu-west-1.amazonaws.com/logz-docs/shipper-logos/confluent.png", "bundle": [], "dataLink": "https://raw.githubusercontent.com/logzio/documentation/master/docs/shipping/Other/confluent.md"}, {"id": "Mailchimp-data", "title": "Mailchimp", "description": "Mailchimp is the All-In-One integrated marketing platform for small businesses. Telegraf is a plug-in driven server agent for collecting and sending metrics and events from databases, systems and IoT sensors.", "productTags": ["METRICS"], "osTags": ["windows", "linux"], "filterTags": ["Other"], "logo": "https://logzbucket.s3.eu-west-1.amazonaws.com/logz-docs/shipper-logos/mailchimp.png", "bundle": [], "dataLink": "https://raw.githubusercontent.com/logzio/documentation/master/docs/shipping/Other/mailchimp.md"}, {"id": "Jaeger-data", "title": "Jaeger", "description": "Jaeger is an open-source software that can help you monitor and troubleshoot problems on microservices. Integrate Jaeger with Logz.io to gain more observability into your data, identify if and when issues occur, and resolve them quickly and easily.", "productTags": ["TRACING"], "osTags": ["windows", "linux"], "filterTags": ["Other", "Most Popular"], "logo": "https://logzbucket.s3.eu-west-1.amazonaws.com/logz-docs/shipper-logos/jaeger.svg", "bundle": [], "dataLink": "https://raw.githubusercontent.com/logzio/documentation/master/docs/shipping/Other/jaeger.md"}, {"id": "Youtube-data", "title": "Youtube", "description": "Youtube is an online video sharing and social media platform. Telegraf is a plug-in driven server agent for collecting and sending metrics and events from databases, systems and IoT sensors.", "productTags": ["METRICS"], "osTags": ["windows", "linux"], "filterTags": ["Other"], "logo": "https://logzbucket.s3.eu-west-1.amazonaws.com/logz-docs/shipper-logos/youtube-logo.png", "bundle": [], "dataLink": "https://raw.githubusercontent.com/logzio/documentation/master/docs/shipping/Other/youtube.md"}, {"id": "cURL-data", "title": "cURL", "description": "cURL is a command line utility for transferring data. cURL is a quick and easy way to test your configuration or troubleshoot your connectivity to Logz.io.", "productTags": ["LOG_ANALYTICS"], "osTags": ["windows", "linux"], "filterTags": ["Other", "Most Popular"], "logo": "https://logzbucket.s3.eu-west-1.amazonaws.com/logz-docs/shipper-logos/curl.svg", "bundle": [], "dataLink": "https://raw.githubusercontent.com/logzio/documentation/master/docs/shipping/Other/curl.md"}, {"id": "Tengine-data", "title": "Tengine", "description": "Telegraf is a plug-in driven server agent for collecting and sending metrics and events from databases, systems and IoT sensors.", "productTags": ["METRICS"], "osTags": ["windows", "linux"], "filterTags": ["Other"], "logo": "https://logzbucket.s3.eu-west-1.amazonaws.com/logz-docs/shipper-logos/tengine-logo.png", "bundle": [], "dataLink": "https://raw.githubusercontent.com/logzio/documentation/master/docs/shipping/Other/tengine.md"}, {"id": "Bond-data", "title": "Bond", "description": "This integration allows you to collects metrics from all bond interfaces in your network. Telegraf is a plug-in driven server agent for collecting and sending metrics and events from databases, systems and IoT sensors.", "productTags": ["METRICS"], "osTags": ["windows", "linux"], "filterTags": ["Other"], "logo": "https://logzbucket.s3.eu-west-1.amazonaws.com/logz-docs/shipper-logos/bond-logo.png", "bundle": [], "dataLink": "https://raw.githubusercontent.com/logzio/documentation/master/docs/shipping/Other/bond.md"}, {"id": "Fluentd-data", "title": "Fluentd", "description": "Fluentd is a data collector, which unifies the data collection and consumption. This integration allows you to use Fluentd to send logs to your Logz.io account.", "productTags": ["LOG_ANALYTICS"], "osTags": ["windows", "linux"], "filterTags": ["Other", "Most Popular"], "logo": "https://logzbucket.s3.eu-west-1.amazonaws.com/logz-docs/shipper-logos/fluentd.svg", "bundle": [], "dataLink": "https://raw.githubusercontent.com/logzio/documentation/master/docs/shipping/Other/fluentd.md"}, {"id": "Beats-data", "title": "Beats", "description": "Beats is an open platform that allows you to send data from hundreds or thousands of machines and systems. You can send data from your Beats to Logz.io to add a layer of observability to identify and resolve issues quickly.", "productTags": ["LOG_ANALYTICS"], "osTags": ["windows", "linux"], "filterTags": ["Other"], "logo": "https://logzbucket.s3.eu-west-1.amazonaws.com/logz-docs/shipper-logos/beats.svg", "bundle": [], "dataLink": "https://raw.githubusercontent.com/logzio/documentation/master/docs/shipping/Other/beats.md"}, {"id": "uWSGI-data", "title": "uWSGI", "description": "uWSGI is a software application that aims at developing a full stack for building hosting services. Telegraf is a plug-in driven server agent for collecting and sending metrics and events from databases, systems and IoT sensors.", "productTags": ["METRICS"], "osTags": ["windows", "linux"], "filterTags": ["Other"], "logo": "https://logzbucket.s3.eu-west-1.amazonaws.com/logz-docs/shipper-logos/uwsgi-logo1.png", "bundle": [], "dataLink": "https://raw.githubusercontent.com/logzio/documentation/master/docs/shipping/Other/uWSGI-telegraf.md"}, {"id": "Fluent-Bit-data", "title": "Fluent Bit", "description": "Fluent Bit is an open source Log Processor and Forwarder which allows you to collect any data like metrics and logs from different sources. This integration allows you to send logs from Fluent Bit running as a standalone app and forward them to your Logz.io account.", "productTags": ["LOG_ANALYTICS"], "osTags": ["windows", "linux"], "filterTags": ["Other"], "logo": "https://logzbucket.s3.eu-west-1.amazonaws.com/logz-docs/shipper-logos/fluent-bit.svg", "bundle": [], "dataLink": "https://raw.githubusercontent.com/logzio/documentation/master/docs/shipping/Other/fluent-bit.md"}, {"id": "Dovecot-data", "title": "Dovecot", "description": "Dovecot is an open-source IMAP and POP3 server for Unix-like operating systems, written primarily with security in mind. Telegraf is a plug-in driven server agent for collecting and sending metrics and events from databases, systems and IoT sensors.", "productTags": ["METRICS"], "osTags": ["windows", "linux"], "filterTags": ["Other"], "logo": "https://logzbucket.s3.eu-west-1.amazonaws.com/logz-docs/shipper-logos/dovecot.png", "bundle": [], "dataLink": "https://raw.githubusercontent.com/logzio/documentation/master/docs/shipping/Other/dovecot.md"}, {"id": "invoke-restmethod-data", "title": "Invoke RestMethod", "description": "Invoke-RestMethod is a command to interact with REST APIs in PowerShell. Invoke-RestMethod is a quick and easy way to test your configuration or troubleshoot your connectivity to Logz.io.", "productTags": ["LOG_ANALYTICS"], "osTags": ["windows", "linux"], "filterTags": ["Other"], "logo": "https://logzbucket.s3.eu-west-1.amazonaws.com/logz-docs/shipper-logos/Invoke-RestMethod.png", "bundle": [], "dataLink": "https://raw.githubusercontent.com/logzio/documentation/master/docs/shipping/Other/invoke-restmethod.md"}, {"id": "Salesforce-data", "title": "Salesforce", "description": "Salesforce is a customer relationship management solution. The Account sObject is an abstraction of the account record and holds the account field information in memory as an object. This integration allows you to collect sObject data from Salesforce and send it to your Logz.io account.", "productTags": ["METRICS"], "osTags": ["windows", "linux"], "filterTags": ["Other"], "logo": "https://logzbucket.s3.eu-west-1.amazonaws.com/logz-docs/shipper-logos/salesforce-commerce-cloud-logo.png", "bundle": [], "dataLink": "https://raw.githubusercontent.com/logzio/documentation/master/docs/shipping/Other/salesforce.md"}, {"id": "Redfish-data", "title": "Redfish", "description": "DMTF's Redfish is a standard designed to deliver simple and secure management for converged, hybrid IT and the Software Defined Data Center (SDDC).Telegraf is a plug-in driven server agent for collecting and sending metrics and events from databases, systems and IoT sensors.", "productTags": ["METRICS"], "osTags": ["windows", "linux"], "filterTags": ["Other"], "logo": "https://logzbucket.s3.eu-west-1.amazonaws.com/logz-docs/shipper-logos/redfish-logo.png", "bundle": [], "dataLink": "https://raw.githubusercontent.com/logzio/documentation/master/docs/shipping/Other/redfish.md"}, {"id": "Logstash-data", "title": "Logstash", "description": "Logstash is an open-source server-side data processing pipeline. This integration can ingest data from multiple sources. With Logz.io, you can monitor Logstash instances and quickly identify if and when issues arise.", "productTags": ["METRICS"], "osTags": ["windows", "linux"], "filterTags": ["Other"], "logo": "https://logzbucket.s3.eu-west-1.amazonaws.com/logz-docs/shipper-logos/logstash_temp.png", "bundle": [], "dataLink": "https://raw.githubusercontent.com/logzio/documentation/master/docs/shipping/Other/logstash.md"}, {"id": "Filebeat-data", "title": "Filebeat", "description": "Filebeat is often the easiest way to get logs from your system to Logz.io. Logz.io has a dedicated configuration wizard to make it simple to configure Filebeat. If you already have Filebeat and you want to add new sources, check out our other shipping instructions to copy&paste just the relevant changes from our code examples.", "productTags": ["LOG_ANALYTICS"], "osTags": ["windows", "linux"], "filterTags": ["Other"], "logo": "https://logzbucket.s3.eu-west-1.amazonaws.com/logz-docs/shipper-logos/beats.svg", "bundle": [], "dataLink": "https://raw.githubusercontent.com/logzio/documentation/master/docs/shipping/Other/filebeat.md"}, {"id": "Rsyslog-data", "title": "Rsyslog", "description": "Rsyslog is an open-source software utility used on most UNIX and Unix-like computer systems. It offers a great lightweight service to consolidate logs. With Logz.io, you can monitor these logs, identify if and when issues arise, and solve them before they impact your customers.", "productTags": ["LOG_ANALYTICS"], "osTags": ["windows", "linux"], "filterTags": ["Other", "Most Popular"], "logo": "https://logzbucket.s3.eu-west-1.amazonaws.com/logz-docs/shipper-logos/linux.svg", "bundle": [], "dataLink": "https://raw.githubusercontent.com/logzio/documentation/master/docs/shipping/Other/rsyslog.md"}, {"id": "BUNNY-NET-data", "title": "BUNNY.NET", "description": "BUNNY.NET is a content delivery network offering features and performance with a fast global network. This document describes how to send system logs from your bunny.net pull zones to Logz.io.", "productTags": ["LOG_ANALYTICS"], "osTags": ["windows", "linux"], "filterTags": ["Other"], "logo": "https://logzbucket.s3.eu-west-1.amazonaws.com/logz-docs/shipper-logos/bunny.png", "bundle": [], "dataLink": "https://raw.githubusercontent.com/logzio/documentation/master/docs/shipping/Other/bunny-net.md"}, {"id": "IPMI-data", "title": "IPMI", "description": "IPMI is a standardized computer system interface used by system administrators to manage a computer system and monitor its operation. Telegraf is a plug-in driven server agent for collecting and sending metrics and events from databases, systems and IoT sensors.", "productTags": ["METRICS"], "osTags": ["windows", "linux"], "filterTags": ["Other"], "logo": "https://logzbucket.s3.eu-west-1.amazonaws.com/logz-docs/shipper-logos/ipmi.png", "bundle": [], "dataLink": "https://raw.githubusercontent.com/logzio/documentation/master/docs/shipping/Other/ipmi.md"}, {"id": "Vector-data", "title": "Vector", "description": "Vector by Datadog is a lightweight, ultra-fast tool for building observability pipelines. Deploy this integration to send logs from your Vector tools to your Logz.io account.", "productTags": ["LOG_ANALYTICS"], "osTags": ["windows", "linux"], "filterTags": ["Other"], "logo": "https://logzbucket.s3.eu-west-1.amazonaws.com/logz-docs/shipper-logos/vector.svg", "bundle": [], "dataLink": "https://raw.githubusercontent.com/logzio/documentation/master/docs/shipping/Other/vector.md"}, {"id": "Hashicorp-Consul-data", "title": "Hashicorp Consul", "description": "This project lets you configure the OpenTelemetry collector to send your Prometheus-format metrics from Hashicorp Consul to Logz.io.", "productTags": ["METRICS"], "osTags": ["windows", "linux"], "filterTags": ["Other"], "logo": "https://logzbucket.s3.eu-west-1.amazonaws.com/logz-docs/shipper-logos/consul-logo.png", "bundle": [], "dataLink": "https://raw.githubusercontent.com/logzio/documentation/master/docs/shipping/Other/consul.md"}, {"id": "NVIDIA-data", "title": "NVIDIA", "description": "NVIDIA System Management Interface (nvidia-smi) is a command line utility, based on top of the NVIDIA Management Library (NVML), intended to aid in the management and monitoring of NVIDIA GPU devices. Telegraf is a plug-in driven server agent for collecting and sending metrics and events from databases, systems and IoT sensors.", "productTags": ["METRICS"], "osTags": ["windows", "linux"], "filterTags": ["Other"], "logo": "https://logzbucket.s3.eu-west-1.amazonaws.com/logz-docs/shipper-logos/nvidia.png", "bundle": [], "dataLink": "https://raw.githubusercontent.com/logzio/documentation/master/docs/shipping/Other/nvidia.md"}, {"id": "Apache-Aurora-data", "title": "Apache Aurora", "description": "Collect Aurora metrics using Telegraf", "productTags": ["METRICS"], "osTags": ["windows", "linux"], "filterTags": ["Other"], "logo": "https://logzbucket.s3.eu-west-1.amazonaws.com/logz-docs/shipper-logos/aurora-logo.png", "bundle": [], "dataLink": "https://raw.githubusercontent.com/logzio/documentation/master/docs/shipping/Other/apache-aurora.md"}, {"id": "prometheus-alerts-migrator", "title": "Prometheus Alerts Migrator", "description": "This Helm chart deploys the Prometheus Alerts Migrator as a Kubernetes controller, which automates the migration of Prometheus alert rules to Logz.io's alert format, facilitating monitoring and alert management in a Logz.io integrated environment.", "productTags": ["METRICS"], "osTags": ["windows", "linux"], "filterTags": ["Other"], "logo": "https://dytvr9ot2sszz.cloudfront.net/logz-docs/shipper-logos/prometheusio-icon.svg", "bundle": [], "dataLink": "https://raw.githubusercontent.com/logzio/documentation/master/docs/shipping/Other/prometheus-alerts-migrator.md"}, {"id": "Axonius-data", "title": "Axonius", "description": "This integration sends system logs from your Axonius platform to Logz.io.", "productTags": ["LOG_ANALYTICS", "SIEM"], "osTags": ["windows", "linux"], "filterTags": ["Other"], "logo": "https://logzbucket.s3.eu-west-1.amazonaws.com/logz-docs/shipper-logos/axonius.png", "bundle": [], "dataLink": "https://raw.githubusercontent.com/logzio/documentation/master/docs/shipping/Other/axonius.md"}, {"id": "Prometheus-remote-write", "title": "Prometheus Remote Write", "description": "This integration lets you send Prometheus-format metrics to Logz.io.", "productTags": ["METRICS"], "osTags": ["windows", "linux"], "filterTags": ["Other", "Most Popular"], "logo": "https://dytvr9ot2sszz.cloudfront.net/logz-docs/shipper-logos/prometheusio-icon.svg", "bundle": [], "dataLink": "https://raw.githubusercontent.com/logzio/documentation/master/docs/shipping/Other/prometheus.md"}, {"id": "Salesforce-Commerce-Cloud-data", "title": "Salesforce Commerce Cloud", "description": "Salesforce Commerce Cloud is a scalable, cloud-based software-as-a-service (SaaS) ecommerce platform. This integration allows you to collect data from Salesforce Commerce Cloud and send it to your Logz.io account.", "productTags": ["METRICS"], "osTags": ["windows", "linux"], "filterTags": ["Other"], "logo": "https://logzbucket.s3.eu-west-1.amazonaws.com/logz-docs/shipper-logos/salesforce-commerce-cloud-logo.png", "bundle": [], "dataLink": "https://raw.githubusercontent.com/logzio/documentation/master/docs/shipping/Other/salesforce-commerce-cloud.md"}, {"id": "FPM-data", "title": "FPM", "description": "This integration sends Prometheus-format PHP-FPM metrics to Logz.io.", "productTags": ["METRICS"], "osTags": ["windows", "linux"], "filterTags": ["Other"], "logo": "https://logzbucket.s3.eu-west-1.amazonaws.com/logz-docs/shipper-logos/phpfpm-logo.png", "bundle": [{"type": "GRAFANA_DASHBOARD", "id": "55uVoiaFwAreNAf7DojQZN"}, {"type": "GRAFANA_ALERT", "id": "1A2NfkQQprZqbtzQOVrcO7"}], "dataLink": "https://raw.githubusercontent.com/logzio/documentation/master/docs/shipping/Other/fpm.md"}, {"id": "Sysmon-data", "title": "Sysmon (System Monitor) via Winlogbeat", "description": "Sysmon (System Monitor) is a Windows system service that monitors and logs system activity of the Windows event log. It tracks process creations, network connections, and changes to file creation time.", "productTags": ["LOG_ANALYTICS", "SIEM"], "osTags": ["windows"], "filterTags": ["Other"], "logo": "https://logzbucket.s3.eu-west-1.amazonaws.com/logz-docs/shipper-logos/windows.svg", "bundle": [], "dataLink": "https://raw.githubusercontent.com/logzio/documentation/master/docs/shipping/Other/sysmon.md"}, {"id": "Phusion-Passenger-data", "title": "Phusion Passenger", "description": "Phusion Passenger is a free web server and application server with support for Ruby, Python and Node.js. Telegraf is a plug-in driven server agent for collecting and sending metrics and events from databases, systems and IoT sensors.", "productTags": ["METRICS"], "osTags": ["windows", "linux"], "filterTags": ["Other"], "logo": "https://logzbucket.s3.eu-west-1.amazonaws.com/logz-docs/shipper-logos/phfusion-logo.png", "bundle": [], "dataLink": "https://raw.githubusercontent.com/logzio/documentation/master/docs/shipping/Other/phusion-passenger.md"}, {"id": "Telegraf", "title": "Telegraf", "description": "This integration lets you send Prometheus-format metrics to Logz.io.", "productTags": ["METRICS"], "osTags": ["windows", "linux"], "filterTags": ["Other", "Most Popular"], "logo": "https://logzbucket.s3.eu-west-1.amazonaws.com/logz-docs/shipper-logos/mascot-telegraf.png", "bundle": [{"type": "GRAFANA_DASHBOARD", "id": "32X5zm8qW7ByLlp1YPFkrJ"}], "dataLink": "https://raw.githubusercontent.com/logzio/documentation/master/docs/shipping/Other/telegraf.md"}, {"id": "Microsoft-365-data", "title": "Microsoft 365", "description": "Deploy this integration to send Unified Audit Logging logs from Microsoft 365 to Logz.io.", "productTags": ["LOG_ANALYTICS", "SIEM"], "osTags": ["windows"], "filterTags": ["Other"], "logo": "https://logzbucket.s3.eu-west-1.amazonaws.com/logz-docs/shipper-logos/office365.png", "bundle": [], "dataLink": "https://raw.githubusercontent.com/logzio/documentation/master/docs/shipping/Other/microsoft-365.md"}, {"id": "Disque-data", "title": "Disque", "description": "Disque is a distributed message broker. Telegraf is a plug-in driven server agent for collecting and sending metrics and events from databases, systems and IoT sensors.", "productTags": ["METRICS"], "osTags": ["windows", "linux"], "filterTags": ["Other"], "logo": "https://logzbucket.s3.eu-west-1.amazonaws.com/logz-docs/shipper-logos/disque-telegraf.png", "bundle": [], "dataLink": "https://raw.githubusercontent.com/logzio/documentation/master/docs/shipping/Other/disque.md"}, {"id": "Burrow-data", "title": "Burrow", "description": "Burrow is a monitoring application for Apache Kafka that monitors committed offsets for all consumers and calculates the status of those consumers on demand. It automatically monitors all consumers and their consumed partitions.", "productTags": ["METRICS"], "osTags": ["windows", "linux"], "filterTags": ["Other"], "logo": "https://logzbucket.s3.eu-west-1.amazonaws.com/logz-docs/shipper-logos/kafka.svg", "bundle": [], "dataLink": "https://raw.githubusercontent.com/logzio/documentation/master/docs/shipping/Other/burrow.md"}, {"id": "Aiven-data", "title": "Aiven", "description": "Aiven is a cloud service provider that specializes in managed open-source database, messaging, and event streaming solutions.", "productTags": ["LOG_ANALYTICS"], "osTags": [], "filterTags": ["Other"], "logo": "https://logzbucket.s3.eu-west-1.amazonaws.com/logz-docs/shipper-logos/aiven-logo.png", "bundle": [], "dataLink": "https://raw.githubusercontent.com/logzio/documentation/master/docs/shipping/Other/aiven.md"}, {"id": "OpenTelemetry-data", "title": "OpenTelemetry", "description": "OpenTelemetry is a collection of APIs, SDKs, and tools to instrument, generate, collect, and export telemetry data, including logs, metrics, and traces. Logz.io helps you identify anomalies and issues in the data so you can resolve them quickly and easily.", "productTags": ["LOG_ANALYTICS", "METRICS", "TRACING"], "osTags": ["windows", "linux"], "filterTags": ["Other", "Most Popular"], "logo": "https://logzbucket.s3.eu-west-1.amazonaws.com/logz-docs/shipper-logos/opentelemetry-icon-color.png", "bundle": [], "dataLink": "https://raw.githubusercontent.com/logzio/documentation/master/docs/shipping/Other/opentelemetry.md"}, {"id": "Nginx-load", "title": "Nginx", "description": "Nginx is a web server that can also be used as a reverse proxy, load balancer, mail proxy and HTTP cache. Deploy this integration to ship Nginx logs to your Logz.io SIEM account and metrics, including Plus API, Plus, Stream STS, VTS.", "productTags": ["LOG_ANALYTICS", "METRICS", "SIEM"], "osTags": ["windows", "linux"], "filterTags": ["Load Balancer"], "logo": "https://logzbucket.s3.eu-west-1.amazonaws.com/logz-docs/shipper-logos/nginx.svg", "bundle": [{"type": "LOG_ALERT", "id": "5tov4MgrnR6vXZhh1MyuHO"}, {"type": "LOG_ALERT", "id": "63MnOu9ZzkCXdX0KOhXghi"}, {"type": "LOG_ALERT", "id": "4V8BXcfr7noTdtU6EjXp7w"}, {"type": "LOG_ALERT", "id": "2EXnb71ucdTnVolN1PqbM6"}, {"type": "GRAFANA_DASHBOARD", "id": "3HKho6pQhCmEYmwMc4xCeY"}, {"type": "GRAFANA_ALERT", "id": "1Bz57jmzsN7uIiyZLdnNpx"}], "dataLink": "https://raw.githubusercontent.com/logzio/documentation/master/docs/shipping/Load-Balancer/nginx.md"}, {"id": "HAProxy-load", "title": "HAProxy", "description": "HAProxy is a network device, so it needs to transfer logs using the syslog protocol.", "productTags": ["LOG_ANALYTICS", "METRICS"], "osTags": ["windows", "linux"], "filterTags": ["Load Balancer"], "logo": "https://logzbucket.s3.eu-west-1.amazonaws.com/logz-docs/shipper-logos/haproxy-logo.png", "bundle": [], "dataLink": "https://raw.githubusercontent.com/logzio/documentation/master/docs/shipping/Load-Balancer/haproxy.md"}, {"id": "Mcrouter-network", "title": "Mcrouter", "description": "Mcrouter is a memcached protocol router for scaling memcached deployments. Telegraf is a plug-in driven server agent for collecting and sending metrics and events from databases, systems and IoT sensors.", "productTags": ["METRICS"], "osTags": ["windows", "linux"], "filterTags": ["Network"], "logo": "https://logzbucket.s3.eu-west-1.amazonaws.com/logz-docs/shipper-logos/mcrouter-logo.png", "bundle": [], "dataLink": "https://raw.githubusercontent.com/logzio/documentation/master/docs/shipping/Network/mcrouter.md"}, {"id": "Network-devices-network", "title": "Network Devices", "description": "This integration allows you to send logs from your network devices to your Logz.io account.", "productTags": ["LOG_ANALYTICS"], "osTags": ["windows", "linux"], "filterTags": ["Network"], "logo": "https://logzbucket.s3.eu-west-1.amazonaws.com/logz-docs/shipper-logos/network-device.svg", "bundle": [], "dataLink": "https://raw.githubusercontent.com/logzio/documentation/master/docs/shipping/Network/network-device.md"}, {"id": "Synproxy-network", "title": "Synproxy", "description": "Synproxy is a TCP SYN packets proxy. Telegraf is a plug-in driven server agent for collecting and sending metrics and events from databases, systems and IoT sensors.", "productTags": ["METRICS"], "osTags": ["windows", "linux"], "filterTags": ["Network"], "logo": "https://logzbucket.s3.eu-west-1.amazonaws.com/logz-docs/shipper-logos/linux.svg", "bundle": [], "dataLink": "https://raw.githubusercontent.com/logzio/documentation/master/docs/shipping/Network/synproxy.md"}, {"id": "Juniper-SRX-network", "title": "Juniper SRX", "description": "Juniper SRX is a networking firewall solution and services gateway. If you ship your Juniper firewall logs to your Logz.io Cloud SIEM, you can centralize your security ops and receive alerts about security events logged by Juniper SRX.", "productTags": ["LOG_ANALYTICS", "SIEM"], "osTags": ["windows", "linux"], "filterTags": ["Network"], "logo": "https://logzbucket.s3.eu-west-1.amazonaws.com/logz-docs/shipper-logos/juniper.png", "bundle": [], "dataLink": "https://raw.githubusercontent.com/logzio/documentation/master/docs/shipping/Network/juniper-srx.md"}, {"id": "Unbound-network", "title": "Unbound", "description": "Unbound is a crowdfunding publisher that gives people the tools, support and freedom to bring their ideas to life. Telegraf is a plug-in driven server agent for collecting and sending metrics and events from databases, systems and IoT sensors.", "productTags": ["METRICS"], "osTags": ["windows", "linux"], "filterTags": ["Network"], "logo": "https://logzbucket.s3.eu-west-1.amazonaws.com/logz-docs/shipper-logos/unbound-logo.png", "bundle": [], "dataLink": "https://raw.githubusercontent.com/logzio/documentation/master/docs/shipping/Network/unbound-telegraf.md"}, {"id": "nlnet-labs-name-server-daemon-network", "title": "NLnet Labs Name Server Daemon", "description": "NLnet Labs Name Server Daemon (NSD) is an authoritative DNS name server. Telegraf is a plug-in driven server agent for collecting and sending metrics and events from databases, systems and IoT sensors.", "productTags": ["METRICS"], "osTags": ["windows", "linux"], "filterTags": ["Network"], "logo": "https://logzbucket.s3.eu-west-1.amazonaws.com/logz-docs/shipper-logos/nsd.png", "bundle": [], "dataLink": "https://raw.githubusercontent.com/logzio/documentation/master/docs/shipping/Network/nlnet-labs-name-server-daemon.md"}, {"id": "OpenVPN-network", "title": "OpenVPN", "description": "OpenVPN is a virtual private network system for secure point-to-point or site-to-site connections.", "productTags": ["METRICS", "SIEM"], "osTags": ["windows", "linux"], "filterTags": ["Network"], "logo": "https://logzbucket.s3.eu-west-1.amazonaws.com/logz-docs/shipper-logos/openvpn.png", "bundle": [], "dataLink": "https://raw.githubusercontent.com/logzio/documentation/master/docs/shipping/Network/openvpn.md"}, {"id": "WireGuard-network", "title": "WireGuard", "description": "WireGuard is a communication protocol and free and open-source software that implements encrypted virtual private networks, and was designed with the goals of ease of use, high speed performance, and low attack surface. Telegraf is a plug-in driven server agent for collecting and sending metrics and events from databases, systems and IoT sensors.", "productTags": ["METRICS"], "osTags": ["windows", "linux"], "filterTags": ["Network"], "logo": "https://logzbucket.s3.eu-west-1.amazonaws.com/logz-docs/shipper-logos/wireguard-logo.png", "bundle": [], "dataLink": "https://raw.githubusercontent.com/logzio/documentation/master/docs/shipping/Network/wireguard.md"}, {"id": "junos-telemetry-interface-network", "title": "Junos Telemetry Interface", "description": "Junos Telemetry Interface (JTI) is a push mechanism to collect operational metrics for monitoring the health of a network that has no scaling limitations. Telegraf is a plug-in driven server agent for collecting and sending metrics and events from databases, systems and IoT sensors.", "productTags": ["LOG_ANALYTICS"], "osTags": ["windows", "linux"], "filterTags": ["Network"], "logo": "https://logzbucket.s3.eu-west-1.amazonaws.com/logz-docs/shipper-logos/juniper.png", "bundle": [], "dataLink": "https://raw.githubusercontent.com/logzio/documentation/master/docs/shipping/Network/junos-telemetry-interface.md"}, {"id": "Cloudflare-network", "title": "Cloudflare", "description": "The Cloudflare web application firewall (WAF) protects your internet property against malicious attacks that aim to exploit vulnerabilities such as SQL injection attacks, cross-site scripting, and cross-site forgery requests.", "productTags": ["LOG_ANALYTICS", "SIEM"], "osTags": ["windows", "linux"], "filterTags": ["Network"], "logo": "https://logzbucket.s3.eu-west-1.amazonaws.com/logz-docs/shipper-logos/cloudflare.svg", "bundle": [], "dataLink": "https://raw.githubusercontent.com/logzio/documentation/master/docs/shipping/Network/cloudflare.md"}, {"id": "VPC-network", "title": "VPC", "description": "VPC Flow Logs is a feature that enables you to capture information about the IP traffic going to and from network interfaces in your VPC. This integration allows you to send these logs to your Logz.io account.", "productTags": ["LOG_ANALYTICS"], "osTags": [], "filterTags": ["Network"], "logo": "https://logzbucket.s3.eu-west-1.amazonaws.com/logz-docs/shipper-logos/vpc.png", "bundle": [], "dataLink": "https://raw.githubusercontent.com/logzio/documentation/master/docs/shipping/Network/vpc.md"}, {"id": "bCache-memory", "title": "bCache", "description": "bCache is a cache in the Linux kernel's block layer, which is used for accessing secondary storage devices. Telegraf is a plug-in driven server agent for collecting and sending metrics and events from databases, systems and IoT sensors.", "productTags": ["METRICS"], "osTags": ["windows", "linux"], "filterTags": ["Memory Caching"], "logo": "https://logzbucket.s3.eu-west-1.amazonaws.com/logz-docs/shipper-logos/linux.svg", "bundle": [], "dataLink": "https://raw.githubusercontent.com/logzio/documentation/master/docs/shipping/Memory-Caching/bCache.md"}, {"id": "Memcached-memory", "title": "Memcached", "description": "Memcached is a general-purpose distributed memory-caching system. Telegraf is a plug-in driven server agent for collecting and sending metrics and events from databases, systems and IoT sensors.", "productTags": ["METRICS"], "osTags": ["windows", "linux"], "filterTags": ["Memory Caching"], "recommendedFor": ["Software Engineer"], "logo": "https://logzbucket.s3.eu-west-1.amazonaws.com/logz-docs/shipper-logos/memcached.png", "bundle": [], "dataLink": "https://raw.githubusercontent.com/logzio/documentation/master/docs/shipping/Memory-Caching/memcached.md"}, {"id": "aws-eks", "title": "AWS EKS", "description": "Send Kubernetes logs, metrics and traces to Logz.io.", "productTags": ["LOG_ANALYTICS", "METRICS", "TRACING"], "osTags": ["windows", "linux"], "filterTags": ["AWS", "Orchestration"], "logo": "https://logzbucket.s3.eu-west-1.amazonaws.com/logz-docs/shipper-logos/aws-eks.svg", "bundle": [], "dataLink": "https://raw.githubusercontent.com/logzio/documentation/master/docs/shipping/AWS/aws-eks.md"}, {"id": "Amazon-Classic-ELB", "title": "AWS Classic ELB", "description": "Send your AWS Classic ELB logs and metrics to Logz.io.", "productTags": ["LOG_ANALYTICS", "METRICS"], "osTags": ["windows", "linux"], "filterTags": ["AWS", "Load Balancer"], "logo": "https://logzbucket.s3.eu-west-1.amazonaws.com/logz-docs/shipper-logos/aws-classic-elb.svg", "bundle": [{"type": "GRAFANA_DASHBOARD", "id": "5oFBj0BIKo4M5XLZpwjSgl"}], "dataLink": "https://raw.githubusercontent.com/logzio/documentation/master/docs/shipping/AWS/aws-classic-elb.md"}, {"id": "AWS-S3-Bucket", "title": "AWS S3 Bucket", "description": "Amazon S3 stores data within buckets, allowing you to send your AWS logs and metrics to Logz.io. S3 buckets lets you store and access large amounts of data and is often used for big data analytics, root cause analysis, and more.", "productTags": ["LOG_ANALYTICS", "METRICS"], "osTags": ["windows", "linux"], "filterTags": ["AWS", "Data Store", "Other", "Most Popular"], "logo": "https://logzbucket.s3.eu-west-1.amazonaws.com/logz-docs/shipper-logos/aws-s3.svg", "bundle": [{"type": "GRAFANA_DASHBOARD", "id": "1Pm3OYbu1MRGoELc2qhxQ1"}], "dataLink": "https://raw.githubusercontent.com/logzio/documentation/master/docs/shipping/AWS/aws-s3-bucket.md"}, {"id": "AWS-DynamoDB", "title": "AWS DynamoDB", "description": "This integration sends your Amazon DynamoDB logs and metrics to Logz.io.", "productTags": ["METRICS", "LOG_ANALYTICS"], "osTags": ["windows", "linux"], "filterTags": ["AWS", "Database"], "logo": "https://logzbucket.s3.eu-west-1.amazonaws.com/logz-docs/shipper-logos/aws-dynamodb.svg", "bundle": [{"type": "GRAFANA_DASHBOARD", "id": "1SCWsYpcgBc9DmjM1vELkf"}], "dataLink": "https://raw.githubusercontent.com/logzio/documentation/master/docs/shipping/AWS/aws-dynamodb.md"}, {"id": "AWS-CloudFormation", "title": "AWS CloudFormation", "description": "Send your Amazon CloudFront metrics to Logz.io.", "productTags": ["LOG_ANALYTICS", "METRICS"], "osTags": [], "filterTags": ["AWS", "Network"], "logo": "https://logzbucket.s3.eu-west-1.amazonaws.com/logz-docs/shipper-logos/aws-cloudformation.svg", "bundle": [], "dataLink": "https://raw.githubusercontent.com/logzio/documentation/master/docs/shipping/AWS/aws-cloudformation.md"}, {"id": "AWS-EBS", "title": "AWS EBS", "description": "Send your Amazon EBS metrics to Logz.io.", "productTags": ["METRICS"], "osTags": ["windows", "linux"], "filterTags": ["AWS", "Data Store"], "logo": "https://logzbucket.s3.eu-west-1.amazonaws.com/logz-docs/shipper-logos/aws-ebs.svg", "bundle": [{"type": "GRAFANA_DASHBOARD", "id": "6WqwxluZ76GXXPut0GHGKH"}], "dataLink": "https://raw.githubusercontent.com/logzio/documentation/master/docs/shipping/AWS/aws-ebs.md"}, {"id": "AWS-Kinesis-Firehose", "title": "AWS Kinesis Data Firehose", "description": "This integration sends your Amazon Kinesis Data Firehose logs and metrics to Logz.io.", "productTags": ["METRICS", "LOG_ANALYTICS"], "osTags": ["windows", "linux"], "filterTags": ["AWS", "Distributed Messaging"], "logo": "https://logzbucket.s3.eu-west-1.amazonaws.com/logz-docs/shipper-logos/Amazon-Kinesis.svg", "bundle": [{"type": "GRAFANA_DASHBOARD", "id": "6c42S4dUE98HajLbiuaShI"}], "dataLink": "https://raw.githubusercontent.com/logzio/documentation/master/docs/shipping/AWS/aws-kinesis-firehose.md"}, {"id": "aws-SQS", "title": "AWS SQS", "description": "This integration sends your Amazon SQS logs and metrics to Logz.io.", "productTags": ["METRICS", "LOG_ANALYTICS"], "osTags": ["windows", "linux"], "filterTags": ["AWS", "Distributed Messaging"], "logo": "https://logzbucket.s3.eu-west-1.amazonaws.com/logz-docs/shipper-logos/aws-sqs.svg", "bundle": [{"type": "GRAFANA_DASHBOARD", "id": "1pEmJtP0bwd5WuuAfEe5cc"}], "dataLink": "https://raw.githubusercontent.com/logzio/documentation/master/docs/shipping/AWS/aws-sqs.md"}, {"id": "AWS-Amplify", "title": "AWS Amplify", "description": "This is an integration that collects Amplify access logs and sends them to Logz.io.", "productTags": ["LOG_ANALYTICS"], "osTags": [], "filterTags": ["AWS", "CI/CD"], "logo": "https://logzbucket.s3.eu-west-1.amazonaws.com/logz-docs/shipper-logos/amplify.png", "bundle": [], "dataLink": "https://raw.githubusercontent.com/logzio/documentation/master/docs/shipping/AWS/aws-amplify.md"}, {"id": "Lambda-extensions", "title": "Lambda Extensions", "description": "The Logz.io Lambda extension for logs, uses the AWS Extensions API and AWS Logs API and sends your Lambda Function Logs directly to your Logz.io account.", "productTags": ["LOG_ANALYTICS"], "osTags": ["windows", "linux"], "filterTags": ["AWS", "Compute"], "logo": "https://logzbucket.s3.eu-west-1.amazonaws.com/logz-docs/shipper-logos/AWS-Lambda.svg", "bundle": [], "dataLink": "https://raw.githubusercontent.com/logzio/documentation/master/docs/shipping/AWS/aws-lambda-extensions.md"}, {"id": "AWS-RDS", "title": "AWS RDS", "description": "This integration sends AWS RDS logs and metrics to your Logz.io account.", "productTags": ["LOG_ANALYTICS", "METRICS"], "osTags": ["windows", "linux"], "filterTags": ["AWS", "Database"], "logo": "https://logzbucket.s3.eu-west-1.amazonaws.com/logz-docs/shipper-logos/aws-rds.svg", "bundle": [{"type": "OSD_DASHBOARD", "id": "2IzSk7ZLwhRFwaqAQg4e2U"}, {"type": "GRAFANA_DASHBOARD", "id": "5azSSei1AhiJPCV7yptVI7"}], "dataLink": "https://raw.githubusercontent.com/logzio/documentation/master/docs/shipping/AWS/aws-rds.md"}, {"id": "AWS-Athena", "title": "AWS Athena", "description": "This integration sends your Amazon Athena logs and metrics to Logz.io.", "productTags": ["METRICS", "LOG_ANALYTICS"], "osTags": ["windows", "linux"], "filterTags": ["AWS", "Data Store"], "logo": "https://logzbucket.s3.eu-west-1.amazonaws.com/logz-docs/shipper-logos/aws-athena.svg", "bundle": [], "dataLink": "https://raw.githubusercontent.com/logzio/documentation/master/docs/shipping/AWS/aws-athena.md"}, {"id": "AWS-EC2", "title": "AWS EC2", "description": "Send your Amazon EC2 logs and metrics to Logz.io.", "productTags": ["LOG_ANALYTICS", "METRICS"], "osTags": ["windows", "linux"], "filterTags": ["AWS", "Compute"], "recommendedFor": ["DevOps Engineer"], "logo": "https://logzbucket.s3.eu-west-1.amazonaws.com/logz-docs/shipper-logos/aws-ec2.svg", "bundle": [{"type": "GRAFANA_DASHBOARD", "id": "2VNLppOm4XOFwVouv8dorr"}, {"type": "GRAFANA_ALERT", "id": "hWld33IEO6gZMpp2e4vs0"}], "dataLink": "https://raw.githubusercontent.com/logzio/documentation/master/docs/shipping/AWS/aws-ec2.md"}, {"id": "Amazon-EC2-Auto-Scaling", "title": "AWS EC2 Auto Scaling", "description": "This integration sends your Amazon EC2 Auto Scaling logs and metrics to Logz.io.", "productTags": ["METRICS"], "osTags": ["windows", "linux"], "filterTags": ["AWS", "Compute"], "logo": "https://logzbucket.s3.eu-west-1.amazonaws.com/logz-docs/shipper-logos/aws-ec2-auto-scaling.svg", "bundle": [{"type": "GRAFANA_DASHBOARD", "id": "2VNLppOm4XOFwVouv8dorr"}], "dataLink": "https://raw.githubusercontent.com/logzio/documentation/master/docs/shipping/AWS/aws-ec2-auto-scaling.md"}, {"id": "Amazon-ElastiCache", "title": "AWS ElastiCache", "description": "Send your Amazon ElastiCache metrics to Logz.io.", "productTags": ["METRICS"], "osTags": ["windows", "linux"], "filterTags": ["AWS", "Memory Caching"], "logo": "https://logzbucket.s3.eu-west-1.amazonaws.com/logz-docs/shipper-logos/Amazon-ElastiCache.svg", "bundle": [], "dataLink": "https://raw.githubusercontent.com/logzio/documentation/master/docs/shipping/AWS/aws-elasticache.md"}, {"id": "AWS-NAT", "title": "AWS NAT", "description": "This integration creates a Kinesis Data Firehose delivery stream that links to your Amazon NAT metrics stream and then sends the metrics to your Logz.io account. It also creates a Lambda function that adds AWS namespaces to the metric stream, and a Lambda function that collects and ships the resources' tags.", "productTags": ["METRICS"], "osTags": ["windows", "linux"], "filterTags": ["AWS", "Network"], "logo": "https://logzbucket.s3.eu-west-1.amazonaws.com/logz-docs/shipper-logos/aws-nat.png", "bundle": [{"type": "GRAFANA_DASHBOARD", "id": "1EhgOtbCtQxzsWh6FJjme8"}], "dataLink": "https://raw.githubusercontent.com/logzio/documentation/master/docs/shipping/AWS/aws-nat.md"}, {"id": "AWS-CloudFront", "title": "AWS CloudFront", "description": "Send your Amazon CloudFront metrics to Logz.io.", "productTags": ["LOG_ANALYTICS", "METRICS"], "osTags": [], "filterTags": ["AWS", "Network"], "logo": "https://logzbucket.s3.eu-west-1.amazonaws.com/logz-docs/shipper-logos/aws-cloudfront.svg", "bundle": [{"type": "GRAFANA_DASHBOARD", "id": "3MJWDTivgQCNz3DQIj3Kry"}], "dataLink": "https://raw.githubusercontent.com/logzio/documentation/master/docs/shipping/AWS/aws-cloudfront.md"}, {"id": "Lambda-extension-go", "title": "Traces from Go on AWS Lambda using OpenTelemetry", "description": "This integration to auto-instrument your Go application running on AWS Lambda and send the traces to your Logz.io account.", "productTags": ["TRACING"], "osTags": ["windows", "linux"], "filterTags": ["AWS", "Compute"], "logo": "https://logzbucket.s3.eu-west-1.amazonaws.com/logz-docs/shipper-logos/AWS-Lambda.svg", "bundle": [], "dataLink": "https://raw.githubusercontent.com/logzio/documentation/master/docs/shipping/AWS/aws-lambda-extension-go.md"}, {"id": "AWS-mq", "title": "AWS MQ", "description": "This integration sends your Amazon MQ logs and metrics to Logz.io.", "productTags": ["METRICS", "LOG_ANALYTICS"], "osTags": [], "filterTags": ["AWS", "Distributed Messaging"], "logo": "https://logzbucket.s3.eu-west-1.amazonaws.com/logz-docs/shipper-logos/aws-mq.svg", "bundle": [{"type": "GRAFANA_DASHBOARD", "id": "1xglfXxBurNsVZIla5zRnS"}], "dataLink": "https://raw.githubusercontent.com/logzio/documentation/master/docs/shipping/AWS/aws-mq.md"}, {"id": "AWS-Cost-and-Usage-Reports", "title": "AWS Cost and Usage Reports", "description": "AWS Cost and Usage Reports function tracks your AWS usage and provides estimated charges associated with your account.", "productTags": ["LOG_ANALYTICS"], "osTags": ["windows", "linux"], "filterTags": ["AWS", "Other"], "logo": "https://logzbucket.s3.eu-west-1.amazonaws.com/logz-docs/shipper-logos/aws.svg", "bundle": [], "dataLink": "https://raw.githubusercontent.com/logzio/documentation/master/docs/shipping/AWS/aws-cost-and-usage-report.md"}, {"id": "AWS-Security-Hub", "title": "AWS Security Hub", "description": "This integration ships events from AWS Security Hub to Logz.io. It will automatically deploy resources to your AWS Account.", "productTags": ["LOG_ANALYTICS", "SIEM"], "osTags": ["windows", "linux"], "filterTags": ["AWS", "Security"], "logo": "https://logzbucket.s3.eu-west-1.amazonaws.com/logz-docs/shipper-logos/aws.svg", "bundle": [], "dataLink": "https://raw.githubusercontent.com/logzio/documentation/master/docs/shipping/AWS/aws-security-hub.md"}, {"id": "AWS-Lambda", "title": "AWS Lambda", "description": "AWS Lambda serverless compute service runs code in response to events and automatically manages compute resources. Send these events to Logz.io to identify anomalies and issues and quickly solve them.", "productTags": ["METRICS"], "osTags": ["windows", "linux"], "filterTags": ["AWS", "Compute"], "recommendedFor": ["DevOps Engineer"], "logo": "https://logzbucket.s3.eu-west-1.amazonaws.com/logz-docs/shipper-logos/lambda-nodejs2.png", "bundle": [], "dataLink": "https://raw.githubusercontent.com/logzio/documentation/master/docs/shipping/AWS/aws-lambda.md"}, {"id": "AWS-WAF", "title": "AWS WAF", "description": "Ship your AWS WAF logs to Logz.io.", "productTags": ["LOG_ANALYTICS", "SIEM"], "osTags": ["windows", "linux"], "filterTags": ["AWS", "Security"], "logo": "https://logzbucket.s3.eu-west-1.amazonaws.com/logz-docs/shipper-logos/AWS-WAF.svg", "bundle": [], "dataLink": "https://raw.githubusercontent.com/logzio/documentation/master/docs/shipping/AWS/aws-waf.md"}, {"id": "AWS-Kafka", "title": "Amazon Managed Streaming for Apache Kafka (MSK)", "description": "Send your Amazon Managed Streaming for Apache Kafka (MSK) metrics to Logz.io.", "productTags": ["METRICS"], "osTags": ["windows", "linux"], "filterTags": ["AWS", "Distributed Messaging"], "logo": "https://dytvr9ot2sszz.cloudfront.net/logz-docs/shipper-logos/aws-msk.svg", "bundle": [{"type": "GRAFANA_DASHBOARD", "id": "7bHNddlAK5q8Iya7xIhbbU"}], "dataLink": "https://raw.githubusercontent.com/logzio/documentation/master/docs/shipping/AWS/aws-kafka.md"}, {"id": "AWS-Route-53", "title": "AWS Route 53", "description": "This integration sends your Amazon Route 53 logs and metrics to Logz.io.", "productTags": ["METRICS", "LOG_ANALYTICS"], "osTags": ["windows", "linux"], "filterTags": ["AWS", "Network"], "logo": "https://logzbucket.s3.eu-west-1.amazonaws.com/logz-docs/shipper-logos/Amazon-Route-53.svg", "bundle": [{"type": "GRAFANA_DASHBOARD", "id": "Tnb9WjjHnI3COgp08Wsin"}], "dataLink": "https://raw.githubusercontent.com/logzio/documentation/master/docs/shipping/AWS/aws-route53.md"}, {"id": "Lambda-extension-node", "title": "Traces from Node.js on AWS Lambda using OpenTelemetry", "description": "This integration to auto-instrument your Node.js application running on AWS Lambda and send the traces to your Logz.io account.", "productTags": ["TRACING"], "osTags": ["windows", "linux"], "filterTags": ["AWS", "Compute"], "logo": "https://logzbucket.s3.eu-west-1.amazonaws.com/logz-docs/shipper-logos/AWS-Lambda.svg", "bundle": [], "dataLink": "https://raw.githubusercontent.com/logzio/documentation/master/docs/shipping/AWS/aws-lambda-extension-node.md"}, {"id": "AWS-ElastiCache-Redis", "title": "AWS ElastiCache for Redis", "description": "Send your Amazon ElastiCache for Redis metrics to Logz.io.", "productTags": ["METRICS"], "osTags": ["windows", "linux"], "filterTags": ["AWS", "Memory Caching"], "logo": "https://logzbucket.s3.eu-west-1.amazonaws.com/logz-docs/shipper-logos/aws-redis-logo.png", "bundle": [{"type": "GRAFANA_DASHBOARD", "id": "2iTJV7AkvtHDJauaEzYobs"}], "dataLink": "https://raw.githubusercontent.com/logzio/documentation/master/docs/shipping/AWS/aws-elasticache-redis.md"}, {"id": "AWS-Redshift", "title": "AWS Redshift", "description": "This integration creates a Kinesis Data Firehose delivery stream that links to your Amazon Redshift metrics stream and then sends the metrics to your Logz.io account. It also creates a Lambda function that adds AWS namespaces to the metric stream, and a Lambda function that collects and ships the resources' tags.", "productTags": ["METRICS"], "osTags": ["windows", "linux"], "filterTags": ["AWS", "Data Store"], "logo": "https://logzbucket.s3.eu-west-1.amazonaws.com/logz-docs/shipper-logos/Amazon-Redshift.svg", "bundle": [], "dataLink": "https://raw.githubusercontent.com/logzio/documentation/master/docs/shipping/AWS/aws-redshift.md"}, {"id": "AWS-FSx", "title": "AWS FSx", "description": "This integration sends your Amazon FSx logs and metrics to Logz.io.", "productTags": ["METRICS", "LOG_ANALYTICS"], "osTags": ["windows", "linux"], "filterTags": ["AWS", "Data Store"], "logo": "https://dytvr9ot2sszz.cloudfront.net/logz-docs/shipper-logos/aws-fsx.svg", "bundle": [{"type": "GRAFANA_DASHBOARD", "id": "6rVrCJsVXljHWg7wZo51HT"}], "dataLink": "https://raw.githubusercontent.com/logzio/documentation/master/docs/shipping/AWS/aws-fsx.md"}, {"id": "AWS-AppRunner", "title": "AWS AppRunner", "description": "Send your Amazon AppRunner metrics to Logz.io", "productTags": ["METRICS"], "osTags": [], "filterTags": ["AWS", "Compute"], "logo": "https://logzbucket.s3.eu-west-1.amazonaws.com/logz-docs/shipper-logos/aws-fusion.svg", "bundle": [], "dataLink": "https://raw.githubusercontent.com/logzio/documentation/master/docs/shipping/AWS/aws-apprunner.md"}, {"id": "aws-vpn", "title": "AWS VPN", "description": "This integration creates a Kinesis Data Firehose delivery stream that links to your Amazon VPN metrics stream and then sends the metrics to your Logz.io account. It also creates a Lambda function that adds AWS namespaces to the metric stream, and a Lambda function that collects and ships the resources' tags.", "productTags": ["METRICS"], "osTags": ["windows", "linux"], "filterTags": ["AWS", "Network"], "logo": "https://logzbucket.s3.eu-west-1.amazonaws.com/logz-docs/shipper-logos/aws-vpn.png", "bundle": [{"type": "GRAFANA_DASHBOARD", "id": "4nSubW6qKSqV8Pq367JQca"}], "dataLink": "https://raw.githubusercontent.com/logzio/documentation/master/docs/shipping/AWS/aws-vpn.md"}, {"id": "AWS-CloudTrail", "title": "AWS CloudTrail", "description": "AWS Cloudtrail enables governance, compliance, operational auditing, and risk auditing of your Amazon Web Services account. Integrate it with Logz.io to monitor your Cloudtrail logs and metrics and know if and when issues arise.", "productTags": ["LOG_ANALYTICS", "METRICS", "SIEM"], "osTags": ["windows", "linux"], "filterTags": ["AWS", "Security", "Most Popular"], "logo": "https://logzbucket.s3.eu-west-1.amazonaws.com/logz-docs/shipper-logos/aws-cloudtrail.svg", "bundle": [], "dataLink": "https://raw.githubusercontent.com/logzio/documentation/master/docs/shipping/AWS/aws-cloudtrail.md"}, {"id": "AWS-EFS", "title": "AWS EFS", "description": "Send your Amazon EFS metrics to Logz.io.", "productTags": ["METRICS"], "osTags": ["windows", "linux"], "filterTags": ["AWS", "Data Store"], "logo": "https://logzbucket.s3.eu-west-1.amazonaws.com/logz-docs/shipper-logos/aws-efs.svg", "bundle": [{"type": "GRAFANA_DASHBOARD", "id": "7IUpQgVmcbkHV8zAGuLHIL"}], "dataLink": "https://raw.githubusercontent.com/logzio/documentation/master/docs/shipping/AWS/aws-efs.md"}, {"id": "AWS-Control-Tower", "title": "AWS Control Tower", "description": "AWS Control Tower is a tool to control a top-level summary of policies applied to the AWS environment.", "productTags": ["METRICS"], "osTags": ["windows", "linux"], "filterTags": ["AWS", "Access Management"], "logo": "https://logzbucket.s3.eu-west-1.amazonaws.com/logz-docs/shipper-logos/aws-control-tower.png", "bundle": [{"type": "GRAFANA_DASHBOARD", "id": "7bHNddlAK5q8Iya7xIhbbU"}], "dataLink": "https://raw.githubusercontent.com/logzio/documentation/master/docs/shipping/AWS/aws-control-tower.md"}, {"id": "AWS-cross-account", "title": "AWS Cross Account", "description": "Deploy this integration to simultaneously ship logs from multiple AWS accounts to Logz.io.", "productTags": ["LOG_ANALYTICS"], "osTags": ["windows", "linux"], "filterTags": ["AWS", "Access Management"], "logo": "https://logzbucket.s3.eu-west-1.amazonaws.com/logz-docs/shipper-logos/aws-cloudwatch.svg", "bundle": [], "dataLink": "https://raw.githubusercontent.com/logzio/documentation/master/docs/shipping/AWS/aws-cross-account.md"}, {"id": "AWS-SNS", "title": "AWS SNS", "description": "This integration creates a Kinesis Data Firehose delivery stream that links to your Amazon SNS metrics stream and then sends the metrics to your Logz.io account. It also creates a Lambda function that adds AWS namespaces to the metric stream, and a Lambda function that collects and ships the resources' tags.", "productTags": ["METRICS"], "osTags": ["windows", "linux"], "filterTags": ["AWS", "Distributed Messaging"], "logo": "https://logzbucket.s3.eu-west-1.amazonaws.com/logz-docs/shipper-logos/aws-sns.svg", "bundle": [{"type": "GRAFANA_DASHBOARD", "id": "3G7HxOI10AvzpqGXQNfawA"}], "dataLink": "https://raw.githubusercontent.com/logzio/documentation/master/docs/shipping/AWS/aws-sns.md"}, {"id": "AWS-S3-Access", "title": "AWS S3 Access", "description": "Amazon S3 Access Logs provide detailed records about requests that are made to your S3 bucket. This integration allows you to send these logs to your Logz.io account.", "productTags": ["LOG_ANALYTICS"], "osTags": ["windows", "linux"], "filterTags": ["AWS", "Data Store"], "logo": "https://logzbucket.s3.eu-west-1.amazonaws.com/logz-docs/shipper-logos/aws-s3.svg", "bundle": [], "dataLink": "https://raw.githubusercontent.com/logzio/documentation/master/docs/shipping/AWS/aws-s3-access.md"}, {"id": "AWS-ECS-Fargate", "title": "AWS ECS Fargate", "description": "AWS Fargate is a serverless compute engine for building applications without managing servers.", "productTags": ["LOG_ANALYTICS", "METRICS", "TRACING"], "osTags": [], "filterTags": ["AWS", "Compute", "Containers"], "logo": "https://logzbucket.s3.eu-west-1.amazonaws.com/logz-docs/shipper-logos/aws-fargate.svg", "bundle": [], "dataLink": "https://raw.githubusercontent.com/logzio/documentation/master/docs/shipping/AWS/aws-ecs-fargate.md"}, {"id": "AWS-ECS", "title": "AWS ECS", "description": "Send your Amazon ECS logs and metrics to Logz.io.", "productTags": ["LOG_ANALYTICS", "METRICS"], "osTags": ["windows", "linux"], "filterTags": ["AWS", "Compute", "Containers"], "logo": "https://logzbucket.s3.eu-west-1.amazonaws.com/logz-docs/shipper-logos/aws-ecs.svg", "bundle": [{"type": "GRAFANA_DASHBOARD", "id": "4pY46CjyNMoHWGB3gjgQWd"}], "dataLink": "https://raw.githubusercontent.com/logzio/documentation/master/docs/shipping/AWS/aws-ecs.md"}, {"id": "AWS-Network-ELB", "title": "AWS Network ELB", "description": "Send your AWS Network ELB logs and metrics to Logz.io.", "productTags": ["LOG_ANALYTICS", "METRICS"], "osTags": ["windows", "linux"], "filterTags": ["AWS", "Load Balancer"], "logo": "https://logzbucket.s3.eu-west-1.amazonaws.com/logz-docs/shipper-logos/elb-network.svg", "bundle": [{"type": "GRAFANA_DASHBOARD", "id": "5pihdWdmBYQ1i7AbU9po2R"}], "dataLink": "https://raw.githubusercontent.com/logzio/documentation/master/docs/shipping/AWS/aws-network-elb.md"}, {"id": "AWS-MSK", "title": "AWS MSK", "description": "This integration sends your Amazon MSK logs and metrics to Logz.io.", "productTags": ["METRICS", "LOG_ANALYTICS"], "osTags": ["windows", "linux"], "filterTags": ["AWS", "Distributed Messaging"], "logo": "https://logzbucket.s3.eu-west-1.amazonaws.com/logz-docs/shipper-logos/aws-msk.png", "bundle": [{"type": "GRAFANA_DASHBOARD", "id": "2EGM4H9wch68bVy1vm4oxb"}], "dataLink": "https://raw.githubusercontent.com/logzio/documentation/master/docs/shipping/AWS/aws-msk.md"}, {"id": "GuardDuty", "title": "GuardDuty", "description": "This integration sends GuardDuty logs.", "productTags": ["LOG_ANALYTICS", "SIEM"], "osTags": ["windows", "linux"], "filterTags": ["AWS", "Security"], "logo": "https://logzbucket.s3.eu-west-1.amazonaws.com/logz-docs/shipper-logos/aws-guardduty.png", "bundle": [], "dataLink": "https://raw.githubusercontent.com/logzio/documentation/master/docs/shipping/AWS/aws-guardduty.md"}, {"id": "AWS-SES", "title": "AWS SES", "description": "This integration creates a Kinesis Data Firehose delivery stream that links to your Amazon SES metrics stream and then sends the metrics to your Logz.io account. It also creates a Lambda function that adds AWS namespaces to the metric stream, and a Lambda function that collects and ships the resources' tags.", "productTags": ["METRICS"], "osTags": ["windows", "linux"], "filterTags": ["AWS", "Other"], "logo": "https://logzbucket.s3.eu-west-1.amazonaws.com/logz-docs/shipper-logos/aws-ses.png", "bundle": [{"type": "GRAFANA_DASHBOARD", "id": "6YXSlRl6RxMuGPiTTO9NHg"}], "dataLink": "https://raw.githubusercontent.com/logzio/documentation/master/docs/shipping/AWS/aws-ses.md"}, {"id": "AWS-API-Gateway", "title": "AWS API Gateway", "description": "This integration creates a Kinesis Data Firehose delivery stream that links to your Amazon API Gateway metrics stream and then sends the metrics to your Logz.io account. It also creates a Lambda function that adds AWS namespaces to the metric stream, and a Lambda function that collects and ships the resources' tags.", "productTags": ["METRICS", "LOG_ANALYTICS"], "osTags": [], "filterTags": ["AWS", "Access Management", "Most Popular"], "logo": "https://logzbucket.s3.eu-west-1.amazonaws.com/logz-docs/shipper-logos/aws-api-gateway.svg", "bundle": [{"type": "GRAFANA_DASHBOARD", "id": "7234Vgs9rITAlaHJH5iqOw"}], "dataLink": "https://raw.githubusercontent.com/logzio/documentation/master/docs/shipping/AWS/aws-api-gateway.md"}, {"id": "AWS-App-ELB", "title": "AWS App ELB", "description": "Send your AWS Application ELB logs and metrics to Logz.io.", "productTags": ["LOG_ANALYTICS", "METRICS"], "osTags": [], "filterTags": ["AWS", "Load Balancer"], "logo": "https://logzbucket.s3.eu-west-1.amazonaws.com/logz-docs/shipper-logos/aws-app-elb.svg", "bundle": [{"type": "GRAFANA_DASHBOARD", "id": "5BZ6El3juQkCKCIuGm1oyC"}], "dataLink": "https://raw.githubusercontent.com/logzio/documentation/master/docs/shipping/AWS/aws-app-elb.md"}, {"id": "Argo-CD", "title": "Argo CD", "description": "Argo CD is a declarative, GitOps continuous delivery tool for Kubernetes.", "productTags": ["METRICS"], "osTags": ["windows", "linux"], "filterTags": ["CI/CD"], "recommendedFor": ["DevOps Engineer"], "logo": "https://logzbucket.s3.eu-west-1.amazonaws.com/logz-docs/shipper-logos/argo.png", "bundle": [{"type": "GRAFANA_DASHBOARD", "id": "6Gx8npV306IL2WZ4SJRIN4"}], "dataLink": "https://raw.githubusercontent.com/logzio/documentation/master/docs/shipping/CI-CD/argo-cd.md"}, {"id": "Bitbucket", "title": "Bitbucket", "description": "Bitbucket is a Git-based source code repository hosting service. This integration allows you to ship logs from your Bitbucket repository to your Logz.io account.", "productTags": ["LOG_ANALYTICS"], "osTags": ["windows", "linux"], "filterTags": ["CI/CD"], "logo": "https://logzbucket.s3.eu-west-1.amazonaws.com/logz-docs/shipper-logos/bitbucket.png", "bundle": [], "dataLink": "https://raw.githubusercontent.com/logzio/documentation/master/docs/shipping/CI-CD/bitbucket.md"}, {"id": "GitHub", "title": "GitHub", "description": "This integration enable you to collect logs and metrics from github", "productTags": ["LOG_ANALYTICS", "METRICS"], "osTags": ["windows", "linux"], "filterTags": ["CI/CD"], "logo": "https://logzbucket.s3.eu-west-1.amazonaws.com/logz-docs/shipper-logos/github.png", "bundle": [], "dataLink": "https://raw.githubusercontent.com/logzio/documentation/master/docs/shipping/CI-CD/github.md"}, {"id": "TeamCity", "title": "TeamCity", "description": "TeamCity is a general-purpose CI/CD solution that allows the most flexibility for all sorts of workflows and development practices. Telegraf is a plug-in driven server agent for collecting and sending metrics and events from databases, systems and IoT sensors.", "productTags": ["METRICS"], "osTags": ["windows", "linux"], "filterTags": ["CI/CD"], "logo": "https://logzbucket.s3.eu-west-1.amazonaws.com/logz-docs/shipper-logos/TeamCity-logo.png", "bundle": [{"type": "GRAFANA_DASHBOARD", "id": "1mdHqslZMi4gXaNCLZo9G1"}], "dataLink": "https://raw.githubusercontent.com/logzio/documentation/master/docs/shipping/CI-CD/teamcity.md"}, {"id": "Puppet", "title": "Puppet", "description": "Puppet is a software configuration management tool which includes its own declarative language to describe system configuration. Deploy this integration to send logs from your Puppet applications to your Logz,io account.", "productTags": ["METRICS"], "osTags": ["windows", "linux"], "filterTags": ["CI/CD"], "logo": "https://logzbucket.s3.eu-west-1.amazonaws.com/logz-docs/shipper-logos/puppet.png", "bundle": [], "dataLink": "https://raw.githubusercontent.com/logzio/documentation/master/docs/shipping/CI-CD/puppet.md"}, {"id": "GitLab", "title": "GitLab", "description": "GitLab is a DevOps platform that combines the ability to develop, secure, and operate software in a single application. This integration allows you to send logs from your GitLan platform to your Logz.io account.", "productTags": ["METRICS"], "osTags": ["windows", "linux"], "filterTags": ["CI/CD"], "logo": "https://logzbucket.s3.eu-west-1.amazonaws.com/logz-docs/shipper-logos/gitlab.svg", "bundle": [], "dataLink": "https://raw.githubusercontent.com/logzio/documentation/master/docs/shipping/CI-CD/gitlab.md"}, {"id": "Jenkins", "title": "Jenkins", "description": "Jenkins is an automation server for building, testing, and deploying software. This integration allows you to send logs and metrics from your Jenkins servers to your Logz.io account.", "productTags": ["METRICS", "LOG_ANALYTICS"], "osTags": ["windows", "linux"], "filterTags": ["CI/CD"], "logo": "https://logzbucket.s3.eu-west-1.amazonaws.com/logz-docs/shipper-logos/jenkins.png", "bundle": [{"type": "GRAFANA_DASHBOARD", "id": "7bmikAb2xNPTy7PESlBqXY"}], "dataLink": "https://raw.githubusercontent.com/logzio/documentation/master/docs/shipping/CI-CD/jenkins.md"}], "tags": ["GCP", "Other", "Compute", "Monitoring", "IoT", "Data Store", "Network", "Load Balancer", "Orchestration", "Access Management", "Security", "Memory Caching", "Distributed Messaging", "Database", "Containers", "Most Popular", "Operating Systems", "Code", "Azure", "Synthetic Monitoring", "AWS", "CI/CD"]} \ No newline at end of file +{"collectors": [{"id": "HAProxy-load", "title": "HAProxy", "description": "HAProxy is a network device, so it needs to transfer logs using the syslog protocol.", "productTags": ["LOG_ANALYTICS", "METRICS"], "osTags": ["windows", "linux"], "filterTags": ["Load Balancer"], "logo": "https://logzbucket.s3.eu-west-1.amazonaws.com/logz-docs/shipper-logos/haproxy-logo.png", "bundle": [], "dataLink": "https://raw.githubusercontent.com/logzio/documentation/master/docs/shipping/Load-Balancer/haproxy.md"}, {"id": "Nginx-load", "title": "Nginx", "description": "Nginx is a web server that can also be used as a reverse proxy, load balancer, mail proxy and HTTP cache. Deploy this integration to ship Nginx logs to your Logz.io SIEM account and metrics, including Plus API, Plus, Stream STS, VTS.", "productTags": ["LOG_ANALYTICS", "METRICS", "SIEM"], "osTags": ["windows", "linux"], "filterTags": ["Load Balancer"], "logo": "https://logzbucket.s3.eu-west-1.amazonaws.com/logz-docs/shipper-logos/nginx.svg", "bundle": [{"type": "LOG_ALERT", "id": "5tov4MgrnR6vXZhh1MyuHO"}, {"type": "LOG_ALERT", "id": "63MnOu9ZzkCXdX0KOhXghi"}, {"type": "LOG_ALERT", "id": "4V8BXcfr7noTdtU6EjXp7w"}, {"type": "LOG_ALERT", "id": "2EXnb71ucdTnVolN1PqbM6"}, {"type": "GRAFANA_DASHBOARD", "id": "3HKho6pQhCmEYmwMc4xCeY"}, {"type": "GRAFANA_ALERT", "id": "1Bz57jmzsN7uIiyZLdnNpx"}], "dataLink": "https://raw.githubusercontent.com/logzio/documentation/master/docs/shipping/Load-Balancer/nginx.md"}, {"id": "Memcached-memory", "title": "Memcached", "description": "Memcached is a general-purpose distributed memory-caching system. Telegraf is a plug-in driven server agent for collecting and sending metrics and events from databases, systems and IoT sensors.", "productTags": ["METRICS"], "osTags": ["windows", "linux"], "filterTags": ["Memory Caching"], "recommendedFor": ["Software Engineer"], "logo": "https://logzbucket.s3.eu-west-1.amazonaws.com/logz-docs/shipper-logos/memcached.png", "bundle": [], "dataLink": "https://raw.githubusercontent.com/logzio/documentation/master/docs/shipping/Memory-Caching/memcached.md"}, {"id": "bCache-memory", "title": "bCache", "description": "bCache is a cache in the Linux kernel's block layer, which is used for accessing secondary storage devices. Telegraf is a plug-in driven server agent for collecting and sending metrics and events from databases, systems and IoT sensors.", "productTags": ["METRICS"], "osTags": ["windows", "linux"], "filterTags": ["Memory Caching"], "logo": "https://logzbucket.s3.eu-west-1.amazonaws.com/logz-docs/shipper-logos/linux.svg", "bundle": [], "dataLink": "https://raw.githubusercontent.com/logzio/documentation/master/docs/shipping/Memory-Caching/bCache.md"}, {"id": "Riak", "title": "Riak", "description": "Riak is a distributed NoSQL key-value data store that offers high availability, fault tolerance, operational simplicity, and scalability. Telegraf is a plug-in driven server agent for collecting and sending metrics and events from databases, systems and IoT sensors.", "productTags": ["METRICS"], "osTags": ["windows", "linux"], "filterTags": ["Database"], "logo": "https://logzbucket.s3.eu-west-1.amazonaws.com/logz-docs/shipper-logos/riak-logo.png", "bundle": [], "dataLink": "https://raw.githubusercontent.com/logzio/documentation/master/docs/shipping/Database/riak.md"}, {"id": "MySQL", "title": "MySQL", "description": "MySQL is an open-source relational database management system. Filebeat is often the easiest way to get logs from your system to Logz.io. Logz.io has a dedicated configuration wizard to make it simple to configure Filebeat. If you already have Filebeat and you want to add new sources, check out our other shipping instructions to copy&paste just the relevant changes from our code examples.", "productTags": ["METRICS"], "osTags": ["windows", "linux"], "filterTags": ["Database"], "recommendedFor": ["Software Engineer"], "logo": "https://logzbucket.s3.eu-west-1.amazonaws.com/logz-docs/shipper-logos/mysql.svg", "bundle": [], "dataLink": "https://raw.githubusercontent.com/logzio/documentation/master/docs/shipping/Database/mysql.md"}, {"id": "PostgreSQL", "title": "PostgreSQL", "description": "PostgreSQL is a free and open-source relational database management system emphasizing extensibility and SQL compliance. Telegraf is a plug-in driven server agent for collecting and sending metrics and events from databases, systems and IoT sensors.", "productTags": ["METRICS"], "osTags": ["windows", "linux"], "filterTags": ["Database"], "recommendedFor": ["Software Engineer"], "logo": "https://logzbucket.s3.eu-west-1.amazonaws.com/logz-docs/shipper-logos/postgresql-logo.png", "bundle": [{"type": "GRAFANA_DASHBOARD", "id": "3L7cjHptO2CFcrvpqGCNI0"}], "dataLink": "https://raw.githubusercontent.com/logzio/documentation/master/docs/shipping/Database/postgresql.md"}, {"id": "ClickHouse", "title": "ClickHouse", "description": "ClickHouse is a fast open-source column-oriented database management system that allows generating analytical data reports in real-time using SQL queries. Telegraf is a plug-in driven server agent for collecting and sending metrics and events from databases, systems and IoT sensors.", "productTags": ["METRICS"], "osTags": ["windows", "linux"], "filterTags": ["Database"], "logo": "https://logzbucket.s3.eu-west-1.amazonaws.com/logz-docs/shipper-logos/clickhouse.png", "bundle": [], "dataLink": "https://raw.githubusercontent.com/logzio/documentation/master/docs/shipping/Database/clickhouse-telegraf.md"}, {"id": "Redis", "title": "Redis", "description": "Redis is an in-memory data structure store, used as a distributed, in-memory key\u2013value database, cache and message broker, with optional durability. Telegraf is a plug-in driven server agent for collecting and sending metrics and events from databases, systems and IoT sensors.", "productTags": ["LOG_ANALYTICS", "METRICS"], "osTags": ["windows", "linux"], "filterTags": ["Database"], "logo": "https://logzbucket.s3.eu-west-1.amazonaws.com/logz-docs/shipper-logos/redis-logo.png", "bundle": [{"type": "GRAFANA_DASHBOARD", "id": "1sS7i6SyMz35RIay8NRYGp"}], "dataLink": "https://raw.githubusercontent.com/logzio/documentation/master/docs/shipping/Database/redis.md"}, {"id": "MarkLogic", "title": "MarkLogic", "description": "MarkLogic is a NoSQL database platform that is used in publishing, government, finance and other sectors, with hundreds of large-scale systems in production. Telegraf is a plug-in driven server agent for collecting and sending metrics and events from databases, systems and IoT sensors.", "productTags": ["METRICS"], "osTags": ["windows", "linux"], "filterTags": ["Database"], "logo": "https://logzbucket.s3.eu-west-1.amazonaws.com/logz-docs/shipper-logos/marklogic.png", "bundle": [], "dataLink": "https://raw.githubusercontent.com/logzio/documentation/master/docs/shipping/Database/marklogic.md"}, {"id": "Aerospike", "title": "Aerospike", "description": "Aerospike is a flash-optimized and in-memory open source distributed key value NoSQL database. Telegraf is a plug-in driven server agent for collecting and sending metrics and events from databases, systems and IoT sensors.", "productTags": ["METRICS"], "osTags": ["windows", "linux"], "filterTags": ["Database"], "logo": "https://logzbucket.s3.eu-west-1.amazonaws.com/logz-docs/shipper-logos/aerospike-logo.png", "bundle": [], "dataLink": "https://raw.githubusercontent.com/logzio/documentation/master/docs/shipping/Database/aerospike.md"}, {"id": "Microsoft-SQL-Server", "title": "Microsoft SQL Server", "description": "Microsoft SQL Server is a relational database management system developed by Microsoft. Telegraf is a plug-in driven server agent for collecting and sending metrics and events from databases, systems and IoT sensors.", "productTags": ["METRICS"], "osTags": ["windows"], "filterTags": ["Database"], "logo": "https://logzbucket.s3.eu-west-1.amazonaws.com/logz-docs/shipper-logos/mysql.svg", "bundle": [], "dataLink": "https://raw.githubusercontent.com/logzio/documentation/master/docs/shipping/Database/microsoft-sql-server.md"}, {"id": "RavenDB", "title": "RavenDB", "description": "RavenDB is an open source document-oriented NoSQL designed especially for the .NET/Windows platform. Telegraf is a plug-in driven server agent for collecting and sending metrics and events from databases, systems and IoT sensors.", "productTags": ["METRICS"], "osTags": ["windows", "linux"], "filterTags": ["Database"], "logo": "https://logzbucket.s3.eu-west-1.amazonaws.com/logz-docs/shipper-logos/ravendb-logo.png", "bundle": [], "dataLink": "https://raw.githubusercontent.com/logzio/documentation/master/docs/shipping/Database/ravendb.md"}, {"id": "PgBouncer", "title": "PgBouncer", "description": "PgBouncer is a lightweight connection pooler for PostgreSQL. Telegraf is a plug-in driven server agent for collecting and sending metrics and events from databases, systems and IoT sensors.", "productTags": ["METRICS"], "osTags": ["windows", "linux"], "filterTags": ["Database"], "logo": "https://logzbucket.s3.eu-west-1.amazonaws.com/logz-docs/shipper-logos/pgbouncer.png", "bundle": [], "dataLink": "https://raw.githubusercontent.com/logzio/documentation/master/docs/shipping/Database/pgbouncer.md"}, {"id": "Apache-Cassandra", "title": "Apache Cassandra", "description": "Apache Cassandra is an open source NoSQL distributed database management system designed to process large amounts of data across commodity servers.", "productTags": ["METRICS"], "osTags": ["windows", "linux"], "filterTags": ["Database"], "logo": "https://logzbucket.s3.eu-west-1.amazonaws.com/logz-docs/shipper-logos/cassandra-logo.png", "bundle": [{"type": "GRAFANA_DASHBOARD", "id": "5oCUt52hGJu6LmVGHPOktr"}, {"type": "GRAFANA_DASHBOARD", "id": "6J2RujMalRK3oC4y0r88ax"}], "dataLink": "https://raw.githubusercontent.com/logzio/documentation/master/docs/shipping/Database/apache-cassandra.md"}, {"id": "Apache-ZooKeeper-orchestration", "title": "Apache ZooKeeper", "description": "Apache ZooKeeper is an open-source server for highly reliable distributed coordination of cloud applications.", "productTags": ["METRICS"], "osTags": ["windows", "linux"], "filterTags": ["Orchestration"], "logo": "https://logzbucket.s3.eu-west-1.amazonaws.com/logz-docs/shipper-logos/zookeeper-logo.png", "bundle": [], "dataLink": "https://raw.githubusercontent.com/logzio/documentation/master/docs/shipping/Orchestration/apache-zookeeper.md"}, {"id": "Beanstalkd-orchestration", "title": "Beanstalkd", "description": "Beanstalkd is a simple, fast work queue. Telegraf is a plug-in driven server agent for collecting and sending metrics and events from databases, systems and IoT sensors.", "productTags": ["METRICS"], "osTags": ["windows", "linux"], "filterTags": ["Orchestration"], "logo": "https://logzbucket.s3.eu-west-1.amazonaws.com/logz-docs/shipper-logos/beanstalk-logo.png", "bundle": [], "dataLink": "https://raw.githubusercontent.com/logzio/documentation/master/docs/shipping/Orchestration/beanstalkd.md"}, {"id": "Apache-Mesos-orchestration", "title": "Apache Mesos", "description": "Apache Mesos is an open-source project to manage computer clusters.", "productTags": ["METRICS"], "osTags": ["windows", "linux"], "filterTags": ["Orchestration"], "logo": "https://logzbucket.s3.eu-west-1.amazonaws.com/logz-docs/shipper-logos/mesos-logo.png", "bundle": [], "dataLink": "https://raw.githubusercontent.com/logzio/documentation/master/docs/shipping/Orchestration/apache-mesos.md"}, {"id": "Istio-orchestration", "title": "Istio", "description": "Deploy this integration to send traces from your Istio service mesh layers to Logz.io via the OpenTelemetry collector.", "productTags": ["TRACING"], "osTags": ["windows", "linux"], "filterTags": ["Orchestration"], "logo": "https://logzbucket.s3.eu-west-1.amazonaws.com/logz-docs/shipper-logos/istio.png", "bundle": [], "dataLink": "https://raw.githubusercontent.com/logzio/documentation/master/docs/shipping/Orchestration/istio-traces.md"}, {"id": "DC-OS-orchestration", "title": "DC/OS", "description": "DC/OS (the Distributed Cloud Operating System) is an open-source, distributed operating system based on the Apache Mesos distributed systems kernel. Telegraf is a plug-in driven server agent for collecting and sending metrics and events from databases, systems and IoT sensors.", "productTags": ["METRICS"], "osTags": ["windows", "linux"], "filterTags": ["Orchestration"], "logo": "https://logzbucket.s3.eu-west-1.amazonaws.com/logz-docs/shipper-logos/dcos.png", "bundle": [], "dataLink": "https://raw.githubusercontent.com/logzio/documentation/master/docs/shipping/Orchestration/ds-os.md"}, {"id": "Apache-Storm", "title": "Apache Storm", "description": "This integration allows you to send logs from your Apache Storm server instances to your Logz.io account.", "productTags": ["LOG_ANALYTICS"], "osTags": ["linux"], "filterTags": ["Distributed Messaging"], "logo": "https://logzbucket.s3.eu-west-1.amazonaws.com/logz-docs/shipper-logos/apache-storm.png", "bundle": [], "dataLink": "https://raw.githubusercontent.com/logzio/documentation/master/docs/shipping/Distributed-Messaging/apache-storm.md"}, {"id": "RabbitMQ", "title": "RabbitMQ", "description": "RabbitMQ is an open-source message-broker software that originally implemented the Advanced Message Queuing Protocol and has since been extended with a plug-in architecture to support Streaming Text Oriented Messaging Protocol, MQ Telemetry Transport, and other protocols. Telegraf is a plug-in driven server agent for collecting and sending metrics and events from databases, systems and IoT sensors.", "productTags": ["METRICS"], "osTags": ["windows", "linux"], "filterTags": ["Distributed Messaging"], "recommendedFor": ["Software Engineer"], "logo": "https://logzbucket.s3.eu-west-1.amazonaws.com/logz-docs/shipper-logos/rabbitmq-logo.png", "bundle": [{"type": "GRAFANA_DASHBOARD", "id": "77P29wgQwu1pqCaZFMcwnC"}], "dataLink": "https://raw.githubusercontent.com/logzio/documentation/master/docs/shipping/Distributed-Messaging/rabbitmq.md"}, {"id": "NSQ", "title": "NSQ", "description": "NSQ is a realtime distributed messaging platform designed to operate at scale, handling billions of messages per day. Telegraf is a plug-in driven server agent for collecting and sending metrics and events from databases, systems and IoT sensors.", "productTags": ["METRICS"], "osTags": ["windows", "linux"], "filterTags": ["Distributed Messaging"], "logo": "https://logzbucket.s3.eu-west-1.amazonaws.com/logz-docs/shipper-logos/nsq.png", "bundle": [], "dataLink": "https://raw.githubusercontent.com/logzio/documentation/master/docs/shipping/Distributed-Messaging/nsq.md"}, {"id": "Apache-ActiveMQ", "title": "Apache ActiveMQ", "description": "Apache ActiveMQ is an open source message broker with a Java Message Service client. Telegraf is a plug-in driven server agent for collecting and sending metrics and events from various sources.", "productTags": ["METRICS"], "osTags": ["windows", "linux"], "filterTags": ["Distributed Messaging"], "logo": "https://logzbucket.s3.eu-west-1.amazonaws.com/logz-docs/shipper-logos/activemq-logo.png", "bundle": [], "dataLink": "https://raw.githubusercontent.com/logzio/documentation/master/docs/shipping/Distributed-Messaging/apache-activemq.md"}, {"id": "Apache-Kafka", "title": "Apache Kafka", "description": "Apache Kafka is a distributed event store and stream-processing platform.", "productTags": ["METRICS"], "osTags": ["windows", "linux"], "filterTags": ["Distributed Messaging"], "recommendedFor": ["DevOps Engineer"], "logo": "https://logzbucket.s3.eu-west-1.amazonaws.com/logz-docs/shipper-logos/kafka.svg", "bundle": [], "dataLink": "https://raw.githubusercontent.com/logzio/documentation/master/docs/shipping/Distributed-Messaging/apache-kafka.md"}, {"id": "Ruby", "title": "Ruby", "description": "Deploy this integration to enable automatic instrumentation of your Ruby application using OpenTelemetry.", "productTags": ["TRACING"], "osTags": ["windows", "linux"], "filterTags": ["Code"], "logo": "https://logzbucket.s3.eu-west-1.amazonaws.com/logz-docs/shipper-logos/ruby.svg", "bundle": [], "dataLink": "https://raw.githubusercontent.com/logzio/documentation/master/docs/shipping/Code/ruby.md"}, {"id": "Nestjs", "title": "NestJS OpenTelemetry", "description": "Deploy this integration to enable automatic instrumentation of your NestJS application using OpenTelemetry.", "productTags": ["TRACING"], "osTags": ["windows", "linux"], "filterTags": ["Code"], "logo": "https://logzbucket.s3.eu-west-1.amazonaws.com/logz-docs/shipper-logos/nest-logo.svg", "bundle": [], "dataLink": "https://raw.githubusercontent.com/logzio/documentation/master/docs/shipping/Code/nestjs.md"}, {"id": "Java", "title": "Java", "description": "Integrate your Java applications with Logz.io to gain observability needed to maintain and improve your applications and performance. With Logz.io, you can monitor your Java logs, metrics, and traces, know if and when incidents occur, and quickly resolve them.", "productTags": ["LOG_ANALYTICS", "METRICS", "TRACING"], "osTags": ["windows", "linux"], "filterTags": ["Code", "Most Popular"], "recommendedFor": ["Software Engineer"], "logo": "https://logzbucket.s3.eu-west-1.amazonaws.com/logz-docs/shipper-logos/java.svg", "bundle": [], "dataLink": "https://raw.githubusercontent.com/logzio/documentation/master/docs/shipping/Code/java.md"}, {"id": "dotnet", "title": ".NET", "description": ".NET is an open-source, managed computer software framework for Windows, Linux, and macOS operating systems. Integrate .NET with Logz.io to monitor logs, metrics, and traces, identify when issues occur, easily troubleshoot them, and improve your applications and services.", "productTags": ["LOG_ANALYTICS", "METRICS", "TRACING"], "osTags": ["windows", "linux"], "filterTags": ["Code", "Most Popular"], "recommendedFor": ["Software Engineer"], "logo": "https://logzbucket.s3.eu-west-1.amazonaws.com/logz-docs/shipper-logos/dotnet.png", "bundle": [{"type": "GRAFANA_DASHBOARD", "id": "3lGo7AE5839jDfkAYU8r21"}, {"type": "GRAFANA_ALERT", "id": "1ALFpmGPygXKWi18TDoO5C"}], "dataLink": "https://raw.githubusercontent.com/logzio/documentation/master/docs/shipping/Code/dotnet.md"}, {"id": "JSON", "title": "JSON", "description": "Ship logs from your code directly to the Logz.io listener as a minified JavaScript Object Notation (JSON) file, a standard text-based format for representing structured data based on JavaScript object syntax.", "productTags": ["LOG_ANALYTICS"], "osTags": ["windows", "linux"], "filterTags": ["Code", "Most Popular"], "logo": "https://logzbucket.s3.eu-west-1.amazonaws.com/logz-docs/shipper-logos/json.svg", "bundle": [], "dataLink": "https://raw.githubusercontent.com/logzio/documentation/master/docs/shipping/Code/json.md"}, {"id": "Python", "title": "Python", "description": "Logz.io's Python integration allows you to send custom logs, custom metrics, and auto-instrument traces into your account, allowing you to identify and resolve issues in your code.", "productTags": ["METRICS", "LOG_ANALYTICS", "TRACING"], "osTags": ["windows", "linux", "mac"], "filterTags": ["Code", "Most Popular"], "recommendedFor": ["Software Engineer"], "logo": "https://logzbucket.s3.eu-west-1.amazonaws.com/logz-docs/shipper-logos/python.svg", "bundle": [{"type": "GRAFANA_DASHBOARD", "id": "1B98fgq9MpqTviLUGFMe6Z"}], "dataLink": "https://raw.githubusercontent.com/logzio/documentation/master/docs/shipping/Code/python.md"}, {"id": "dotnet-traces-with-kafka-using-opentelemetry", "title": ".NET Kafka Tracing with OpenTelemetry", "description": "Deploy this integration to enable kafka instrumentation of your .NET application using OpenTelemetry.", "productTags": ["TRACING"], "osTags": ["windows", "linux"], "filterTags": ["Code", "Distributed Messaging"], "logo": "https://logzbucket.s3.eu-west-1.amazonaws.com/logz-docs/shipper-logos/kafka.svg", "bundle": [], "dataLink": "https://raw.githubusercontent.com/logzio/documentation/master/docs/shipping/Code/dotnet-traces-kafka.md"}, {"id": "java-traces-with-kafka-using-opentelemetry", "title": "Java Traces with Kafka using OpenTelemetry", "description": "Deploy this integration to enable automatic instrumentation of your Java application with Kafka using OpenTelemetry.", "productTags": ["TRACING"], "osTags": ["windows", "linux"], "filterTags": ["Code", "Distributed Messaging"], "logo": "https://logzbucket.s3.eu-west-1.amazonaws.com/logz-docs/shipper-logos/kafka.svg", "bundle": [], "dataLink": "https://raw.githubusercontent.com/logzio/documentation/master/docs/shipping/Code/java-traces-with-kafka-using-opentelemetry.md"}, {"id": "GO", "title": "GO", "description": "Send logs, metrics and traces from you Go code", "productTags": ["LOG_ANALYTICS", "METRICS", "TRACING"], "osTags": ["windows", "linux"], "filterTags": ["Code"], "recommendedFor": ["Software Engineer"], "logo": "https://logzbucket.s3.eu-west-1.amazonaws.com/logz-docs/shipper-logos/go.svg", "bundle": [{"type": "GRAFANA_DASHBOARD", "id": "2cm0FZu4VK4vzH0We6SrJb"}, {"type": "GRAFANA_ALERT", "id": "1UqjU2gqNAKht1f62jBC9Q"}], "dataLink": "https://raw.githubusercontent.com/logzio/documentation/master/docs/shipping/Code/go.md"}, {"id": "Node-js", "title": "Node.js", "description": "Send Node.js logs, metrics, and traces to monitor and maintain your applications' stability, dependability, and performance. By sending your data to Logz.io, you can rapidly spot any issue that might harm your applications and quickly resolve them.", "productTags": ["LOG_ANALYTICS", "METRICS", "TRACING"], "osTags": ["windows", "linux"], "filterTags": ["Code", "Most Popular"], "recommendedFor": ["Software Engineer"], "logo": "https://logzbucket.s3.eu-west-1.amazonaws.com/logz-docs/shipper-logos/nodejs.svg", "bundle": [{"type": "GRAFANA_DASHBOARD", "id": "2zAdXztEedvoRJzWTR2dY0"}, {"type": "GRAFANA_ALERT", "id": "14UC8nC6PZmuJ0lqOeHnhv"}], "dataLink": "https://raw.githubusercontent.com/logzio/documentation/master/docs/shipping/Code/node-js.md"}, {"id": "SentinelOne", "title": "SentinelOne", "description": "SentinelOne platform delivers the defenses to prevent, detect, and undo\u2014known and unknown\u2014threats. This integration allows you to send logs from your SentinelOne applications to your Logz.io SIEM account.", "productTags": ["LOG_ANALYTICS", "SIEM"], "osTags": ["windows", "linux"], "filterTags": ["Security"], "logo": "https://logzbucket.s3.eu-west-1.amazonaws.com/logz-docs/shipper-logos/sentintelone-icon.png", "bundle": [], "dataLink": "https://raw.githubusercontent.com/logzio/documentation/master/docs/shipping/Security/sentinelone.md"}, {"id": "Sophos", "title": "Sophos", "description": "Sophos Endpoint is an endpoint protection product that combines antimalware, web and application control, device control and much more. This integration allows you to send logs from your Linux-based Sophos applications to your Logz.io SIEM account.", "productTags": ["LOG_ANALYTICS", "SIEM"], "osTags": ["windows", "linux"], "filterTags": ["Security"], "logo": "https://logzbucket.s3.eu-west-1.amazonaws.com/logz-docs/shipper-logos/sophos-shield.png", "bundle": [], "dataLink": "https://raw.githubusercontent.com/logzio/documentation/master/docs/shipping/Security/sophos.md"}, {"id": "Cynet", "title": "Cynet", "description": "Cynet is a cybersecurity asset management platform. This topic describes how to send system logs from your Cynet platform to Logz.io.", "productTags": ["SIEM"], "osTags": ["windows", "linux"], "filterTags": ["Security"], "logo": "https://logzbucket.s3.eu-west-1.amazonaws.com/logz-docs/shipper-logos/cynet.png", "bundle": [], "dataLink": "https://raw.githubusercontent.com/logzio/documentation/master/docs/shipping/Security/cynet.md"}, {"id": "OpenVAS", "title": "OpenVAS", "description": "These instructions show you how to configure Filebeat to send OpenVAS reports to Logz.io.", "productTags": ["LOG_ANALYTICS", "SIEM"], "osTags": ["windows", "linux"], "filterTags": ["Security"], "logo": "https://logzbucket.s3.eu-west-1.amazonaws.com/logz-docs/shipper-logos/greenbone_icon.png", "bundle": [], "dataLink": "https://raw.githubusercontent.com/logzio/documentation/master/docs/shipping/Security/openvas.md"}, {"id": "Stormshield", "title": "Stormshield", "description": "Stormshield provides cyber-security solutions. This integration allows you to send logs from your Stormshield applications to your Logz.io SIEM account.", "productTags": ["LOG_ANALYTICS", "SIEM"], "osTags": ["windows", "linux"], "filterTags": ["Network", "Security"], "logo": "https://logzbucket.s3.eu-west-1.amazonaws.com/logz-docs/shipper-logos/stormshield.png", "bundle": [], "dataLink": "https://raw.githubusercontent.com/logzio/documentation/master/docs/shipping/Security/stormshield.md"}, {"id": "ESET", "title": "ESET", "description": "ESET provides anti-virus and firewall solutions. This integration allows you to send ESET logs to your Logz.io SIEM account.", "productTags": ["SIEM"], "osTags": ["windows", "linux"], "filterTags": ["Security"], "logo": "https://logzbucket.s3.eu-west-1.amazonaws.com/logz-docs/shipper-logos/eset.png", "bundle": [], "dataLink": "https://raw.githubusercontent.com/logzio/documentation/master/docs/shipping/Security/eset.md"}, {"id": "OSSEC", "title": "OSSEC", "description": "OSSEC is a multiplatform, open source and free Host Intrusion Detection System (HIDS). This integration allows you to send OSSEC logs to your Logz.io SIEM account.", "productTags": ["SIEM", "LOG_ANALYTICS"], "osTags": ["windows", "linux"], "filterTags": ["Security"], "logo": "https://logzbucket.s3.eu-west-1.amazonaws.com/logz-docs/shipper-logos/ossec.png", "bundle": [], "dataLink": "https://raw.githubusercontent.com/logzio/documentation/master/docs/shipping/Security/ossec.md"}, {"id": "Palo-Alto-Networks", "title": "Palo Alto Networks", "description": "Palo Alto Networks provides advanced protection, security and consistency across locations and clouds. This integration allows you to send logs from your Palo Alto Networks applications to your Logz.io SIEM account.", "productTags": ["LOG_ANALYTICS", "SIEM"], "osTags": ["windows", "linux"], "filterTags": ["Security", "Network"], "logo": "https://logzbucket.s3.eu-west-1.amazonaws.com/logz-docs/shipper-logos/palo-alto-networks.svg", "bundle": [], "dataLink": "https://raw.githubusercontent.com/logzio/documentation/master/docs/shipping/Security/palo-alto-networks.md"}, {"id": "Wazuh", "title": "Wazuh", "description": "Wazuh is a free, open source and enterprise-ready security monitoring solution for threat detection, integrity monitoring, incident response and compliance. This integration allows you to send Wazuh logs to your Logz.io SIEM account.", "productTags": ["LOG_ANALYTICS", "SIEM"], "osTags": ["windows", "linux"], "filterTags": ["Security"], "logo": "https://logzbucket.s3.eu-west-1.amazonaws.com/logz-docs/shipper-logos/wazuh.svg", "bundle": [], "dataLink": "https://raw.githubusercontent.com/logzio/documentation/master/docs/shipping/Security/wazuh.md"}, {"id": "x509", "title": "x509", "description": "Deploy this integration to collect X509 certificate metrics from URLs and send them to Logz.io.", "productTags": ["METRICS"], "osTags": ["windows", "linux"], "filterTags": ["Security"], "logo": "https://logzbucket.s3.eu-west-1.amazonaws.com/logz-docs/shipper-logos/ssl-certificate.png", "bundle": [{"type": "GRAFANA_DASHBOARD", "id": "19AIOkwkFLQCZWmUSINGXT"}], "dataLink": "https://raw.githubusercontent.com/logzio/documentation/master/docs/shipping/Security/x509.md"}, {"id": "SonicWall", "title": "SonicWall", "description": "SonicWall firewalls allow you to identify and control all of the applications in use on your network. This integration allows you to send logs from your SonicWall applications to your Logz.io SIEM account.", "productTags": ["LOG_ANALYTICS", "SIEM"], "osTags": ["windows", "linux"], "filterTags": ["Network", "Security"], "logo": "https://logzbucket.s3.eu-west-1.amazonaws.com/logz-docs/shipper-logos/SonicWall-Logo.svg", "bundle": [], "dataLink": "https://raw.githubusercontent.com/logzio/documentation/master/docs/shipping/Security/sonicwall.md"}, {"id": "Zeek", "title": "Zeek", "description": "Zeek is a free and open-source software network analysis framework. This integration allows you to send Zeek logs to your Logz.io SIEM account.", "productTags": ["LOG_ANALYTICS", "SIEM"], "osTags": ["windows", "linux"], "filterTags": ["Security"], "logo": "https://logzbucket.s3.eu-west-1.amazonaws.com/logz-docs/shipper-logos/zeek.png", "bundle": [], "dataLink": "https://raw.githubusercontent.com/logzio/documentation/master/docs/shipping/Security/zeek.md"}, {"id": "ModSecurity", "title": "ModSecurity", "description": "ModSecurity, sometimes called Modsec, is an open-source web application firewall. This integration allows you to send ModSecurity logs to your Logz.io SIEM account.", "productTags": ["LOG_ANALYTICS", "SIEM"], "osTags": ["windows", "linux"], "filterTags": ["Security"], "logo": "https://logzbucket.s3.eu-west-1.amazonaws.com/logz-docs/shipper-logos/modsec.png", "bundle": [], "dataLink": "https://raw.githubusercontent.com/logzio/documentation/master/docs/shipping/Security/modsecurity.md"}, {"id": "Cisco-ASA", "title": "Cisco ASA", "description": "Cisco ASA is a security device that combines firewall, antivirus, intrusion prevention, and virtual private network (VPN) capabilities.", "productTags": ["LOG_ANALYTICS", "SIEM"], "osTags": ["windows", "linux"], "filterTags": ["Network", "Security"], "logo": "https://logzbucket.s3.eu-west-1.amazonaws.com/logz-docs/shipper-logos/cisco.svg", "bundle": [], "dataLink": "https://raw.githubusercontent.com/logzio/documentation/master/docs/shipping/Security/cisco-asa.md"}, {"id": "McAfee-ePolicy-Orchestrator", "title": "McAfee ePolicy Orchestrator", "description": "McAfee ePolicy Orchestrator (McAfee ePO) software centralizes and streamlines management of endpoint, network, data security, and compliance solutions. This integration allows you to send McAfee ePolicy Orchestrator logs to your Logz.io SIEM account.", "productTags": ["LOG_ANALYTICS", "SIEM"], "osTags": ["windows", "linux"], "filterTags": ["Security"], "logo": "https://logzbucket.s3.eu-west-1.amazonaws.com/logz-docs/shipper-logos/mcafee.svg", "bundle": [], "dataLink": "https://raw.githubusercontent.com/logzio/documentation/master/docs/shipping/Security/mcafee-epolicy-orchestrator.md"}, {"id": "auditbeat", "title": "Auditbeat", "description": "As its name suggests, auditd is a service that audits activities in a Linux environment. It's available for most major Linux distributions.", "productTags": ["LOG_ANALYTICS", "SIEM"], "osTags": ["linux"], "filterTags": ["Security"], "logo": "https://logzbucket.s3.eu-west-1.amazonaws.com/logz-docs/shipper-logos/linux.svg", "bundle": [], "dataLink": "https://raw.githubusercontent.com/logzio/documentation/master/docs/shipping/Security/auditbeat.md"}, {"id": "Falco", "title": "Falco", "description": "Falco is a CNCF-approved container security and Kubernetes threat detection engine that logs illegal container activity at runtime. Shipping your Falco logs to your Cloud SIEM can help you monitor your Kubernetes workloads for potentially malicious behavior. This can help you catch attempts to remove logging data from a container, to run recon tools inside a container, or add potentially malicious repositories to a container.", "productTags": ["LOG_ANALYTICS", "SIEM"], "osTags": ["windows", "linux"], "filterTags": ["Security"], "logo": "https://logzbucket.s3.eu-west-1.amazonaws.com/logz-docs/shipper-logos/falco-logo.png", "bundle": [], "dataLink": "https://raw.githubusercontent.com/logzio/documentation/master/docs/shipping/Security/falco.md"}, {"id": "pfSense", "title": "pfSense", "description": "pfSense is an open source firewall solution. This topic describes how to configure pfSense to send system logs to Logz.io via Filebeat running on a dedicated server.", "productTags": ["LOG_ANALYTICS", "SIEM"], "osTags": ["windows", "linux"], "filterTags": ["Security", "Network"], "logo": "https://logzbucket.s3.eu-west-1.amazonaws.com/logz-docs/shipper-logos/pfsense-logo.png", "bundle": [], "dataLink": "https://raw.githubusercontent.com/logzio/documentation/master/docs/shipping/Security/pfsense.md"}, {"id": "Cisco-Meraki", "title": "Cisco Meraki", "description": "This integration creates a Kinesis Data Firehose delivery stream that links to your Amazon S3 metrics stream and then sends the metrics to your Logz.io account. It also creates a Lambda function that adds AWS namespaces to the metric stream, and a Lambda function that collects and ships the resources' tags.", "productTags": ["LOG_ANALYTICS", "SIEM"], "osTags": ["windows", "linux"], "filterTags": ["Network", "Security"], "logo": "https://logzbucket.s3.eu-west-1.amazonaws.com/logz-docs/shipper-logos/cisco-meraki-logo.png", "bundle": [], "dataLink": "https://raw.githubusercontent.com/logzio/documentation/master/docs/shipping/Security/cisco-meraki.md"}, {"id": "Crowdstrike", "title": "Crowdstrike", "description": "Crowdstrike is a SaaS (software as a service) system security solution. Deploy this integration to ship Crowdstrike events from your Crowdstrike account to Logz.io using FluentD.", "productTags": ["SIEM"], "osTags": ["windows", "linux"], "filterTags": ["Security"], "logo": "https://logzbucket.s3.eu-west-1.amazonaws.com/logz-docs/shipper-logos/crowdstrike-logo.svg", "bundle": [], "dataLink": "https://raw.githubusercontent.com/logzio/documentation/master/docs/shipping/Security/crowdstrike.md"}, {"id": "Carbon-Black", "title": "Carbon Black", "description": "Carbon Black enables multi-cloud workload and endpoint threat protection. Connect your Carbon Black to Logz.io to monitor and analyze endpoint security, threat detection, user behavior, software inventory, compliance, and incident response to enhance overall cybersecurity.", "productTags": ["LOG_ANALYTICS", "SIEM"], "osTags": ["windows", "linux"], "filterTags": ["Security"], "logo": "https://logzbucket.s3.eu-west-1.amazonaws.com/logz-docs/shipper-logos/carbon-black.png", "bundle": [], "dataLink": "https://raw.githubusercontent.com/logzio/documentation/master/docs/shipping/Security/carbon-black.md"}, {"id": "Trend-micro", "title": "Trend Micro", "description": "This integration enables users to monitor and analyze cybersecurity threats and events in real-time, enhancing their overall security visibility and incident response capabilities.", "productTags": ["METRICS", "SIEM"], "osTags": ["windows", "linux"], "filterTags": ["Security"], "logo": "https://logzbucket.s3.eu-west-1.amazonaws.com/logz-docs/shipper-logos/trendmicro-small-logo.png", "bundle": [], "dataLink": "https://raw.githubusercontent.com/logzio/documentation/master/docs/shipping/Security/trend-micro.md"}, {"id": "Trivy", "title": "Trivy", "description": "TThis integration utilizes the logzio-trivy Helm Chart to deploy the trivy-Operator Helm Chart that scans the cluster and creates Trivy reports and a deployment that looks for the Trivy reports in the cluster, processes them, and sends them to Logz.io", "productTags": ["METRICS"], "osTags": ["windows", "linux"], "filterTags": ["Security"], "logo": "https://logzbucket.s3.eu-west-1.amazonaws.com/logz-docs/shipper-logos/trivy-logo.png", "bundle": [], "dataLink": "https://raw.githubusercontent.com/logzio/documentation/master/docs/shipping/Security/trivy.md"}, {"id": "Windows-Defender", "title": "Windows Defender via Winlogbeat", "description": "This integration enable you to send Windows Defender events to Logz.io using winlogbeat", "productTags": ["LOG_ANALYTICS", "SIEM"], "osTags": ["windows"], "filterTags": ["Security"], "logo": "https://logzbucket.s3.eu-west-1.amazonaws.com/logz-docs/shipper-logos/windows-defender.svg", "bundle": [], "dataLink": "https://raw.githubusercontent.com/logzio/documentation/master/docs/shipping/Security/windows-defender.md"}, {"id": "Check-Point", "title": "Check Point", "description": "Check Point provides hardware and software products for IT security, including network security, endpoint security, cloud security, mobile security, data security and security management. This integration allows you to send Check Point logs to your Logz.io SIEM account.", "productTags": ["LOG_ANALYTICS", "SIEM"], "osTags": ["windows", "linux"], "filterTags": ["Security"], "logo": "https://logzbucket.s3.eu-west-1.amazonaws.com/logz-docs/shipper-logos/check-point.png", "bundle": [], "dataLink": "https://raw.githubusercontent.com/logzio/documentation/master/docs/shipping/Security/check-point.md"}, {"id": "Avast", "title": "Avast", "description": "Avast is a family of cross-platform internet security applications. This topic describes how to send system logs from your Avast Antivirus platform to Logz.io.", "productTags": ["LOG_ANALYTICS", "SIEM"], "osTags": ["windows", "linux"], "filterTags": ["Security"], "logo": "https://logzbucket.s3.eu-west-1.amazonaws.com/logz-docs/shipper-logos/avast.png", "bundle": [], "dataLink": "https://raw.githubusercontent.com/logzio/documentation/master/docs/shipping/Security/avast.md"}, {"id": "Alcide-kAudit", "title": "Alcide kAudit", "description": "Alcide kAudit is a security service for monitoring Kubernetes audit logs, and easily identifying abnormal administrative activity and compromised Kubernetes resources.", "productTags": ["LOG_ANALYTICS", "SIEM"], "osTags": ["windows", "linux"], "filterTags": ["Security"], "logo": "https://logzbucket.s3.eu-west-1.amazonaws.com/logz-docs/shipper-logos/alcide.png", "bundle": [], "dataLink": "https://raw.githubusercontent.com/logzio/documentation/master/docs/shipping/Security/alcide-kaudit.md"}, {"id": "FortiGate", "title": "FortiGate", "description": "FortiGate units are installed as a gateway or router between two networks. This integration allows you to send FortiGate logs to your Logz.io SIEM account.", "productTags": ["LOG_ANALYTICS"], "osTags": ["windows", "linux"], "filterTags": ["Network", "Security"], "logo": "https://logzbucket.s3.eu-west-1.amazonaws.com/logz-docs/shipper-logos/fortinet.svg", "bundle": [], "dataLink": "https://raw.githubusercontent.com/logzio/documentation/master/docs/shipping/Security/fortigate.md"}, {"id": "Suricata", "title": "Suricata", "description": "Suricata is an open source-based intrusion detection system and intrusion prevention system. Telegraf is a plug-in driven server agent for collecting and sending metrics and events from databases, systems and IoT sensors.", "productTags": ["METRICS"], "osTags": ["windows", "linux"], "filterTags": ["Security"], "logo": "https://logzbucket.s3.eu-west-1.amazonaws.com/logz-docs/shipper-logos/suricata-logo.png", "bundle": [], "dataLink": "https://raw.githubusercontent.com/logzio/documentation/master/docs/shipping/Security/suricata.md"}, {"id": "Bitdefender", "title": "Bitdefender", "description": "Bitdefender is an antivirus software. This integration allows you to send Bitdefender logs to your Logz.io SIEM account.", "productTags": ["LOG_ANALYTICS", "SIEM"], "osTags": ["windows", "linux"], "filterTags": ["Security"], "logo": "https://logzbucket.s3.eu-west-1.amazonaws.com/logz-docs/shipper-logos/bitdefender.svg", "bundle": [], "dataLink": "https://raw.githubusercontent.com/logzio/documentation/master/docs/shipping/Security/bitdefender.md"}, {"id": "HashiCorp-Vault", "title": "HashiCorp Vault", "description": "HashiCorp Vault secures, stores, and tightly controls access to tokens, passwords, certificates, API keys, and other secrets in modern computing. This integration allows you to send HashiCorp Vault logs to your Logz.io SIEM account.", "productTags": ["LOG_ANALYTICS", "SIEM"], "osTags": ["windows", "linux"], "filterTags": ["Security"], "logo": "https://logzbucket.s3.eu-west-1.amazonaws.com/logz-docs/shipper-logos/hashicorp-vault.svg", "bundle": [], "dataLink": "https://raw.githubusercontent.com/logzio/documentation/master/docs/shipping/Security/hashicorp-vault.md"}, {"id": "Cisco-SecureX", "title": "Cisco SecureX", "description": "Cisco SecureX connects the breadth of Cisco's integrated security portfolio and your infrastructure. This integration allows you to collect data from Cisco SecureX API and send it to your Logz.io account.", "productTags": ["LOG_ANALYTICS"], "osTags": ["windows", "linux"], "filterTags": ["Security"], "logo": "https://logzbucket.s3.eu-west-1.amazonaws.com/logz-docs/shipper-logos/securex-logo.png", "bundle": [], "dataLink": "https://raw.githubusercontent.com/logzio/documentation/master/docs/shipping/Security/cisco-securex.md"}, {"id": "Fail2Ban", "title": "Fail2Ban", "description": "Fail2Ban is an intrusion prevention software framework that protects computer servers from brute-force attacks. This integration allows you to send Fail2ban logs to your Logz.io SIEM account.", "productTags": ["LOG_ANALYTICS", "SIEM"], "osTags": ["windows", "linux"], "filterTags": ["Security"], "logo": "https://logzbucket.s3.eu-west-1.amazonaws.com/logz-docs/shipper-logos/fail2ban.png", "bundle": [], "dataLink": "https://raw.githubusercontent.com/logzio/documentation/master/docs/shipping/Security/fail2ban.md"}, {"id": "OpenShift", "title": "OpenShift", "description": "OpenShift is a family of containerization software products developed by Red Hat. Deploy this integration to ship logs from your OpenShift cluster to Logz.io. Deploy this integration to ship logs from your OpenShift cluster to Logz.io. This integration will deploy the default daemonset, which sends only container logs while ignoring all containers with \"openshift\" namespace.", "productTags": ["LOG_ANALYTICS"], "osTags": ["windows", "linux"], "filterTags": ["Containers", "Orchestration"], "logo": "https://logzbucket.s3.eu-west-1.amazonaws.com/logz-docs/shipper-logos/openshift.png", "bundle": [], "dataLink": "https://raw.githubusercontent.com/logzio/documentation/master/docs/shipping/Containers/openshift.md"}, {"id": "Docker", "title": "Docker", "description": "Docker lets you work in standardized environments using local containers, promoting continuous integration and continuous delivery (CI/CD) workflows. With Logz.io you can collect logs and metrics from your Docker environment to gain observability and know if and when issues occur.", "productTags": ["LOG_ANALYTICS", "METRICS"], "recommendedFor": ["DevOps Engineer"], "osTags": ["windows", "linux"], "filterTags": ["Containers", "Most Popular"], "logo": "https://logzbucket.s3.eu-west-1.amazonaws.com/logz-docs/shipper-logos/docker.png", "bundle": [], "dataLink": "https://raw.githubusercontent.com/logzio/documentation/master/docs/shipping/Containers/docker.md"}, {"id": "Kubernetes", "title": "Kubernetes", "description": "Kubernetes, also known as K8s, is an open-source system for automating deployments, scaling, and managing containerized applications. Integrate your Kubernetes system with Logz.io to monitor your logs, metrics, and traces, gain observability into your environment, and be able to identify and resolve issues with just a few clicks.", "productTags": ["LOG_ANALYTICS", "METRICS", "TRACING"], "recommendedFor": ["DevOps Engineer"], "osTags": ["windows", "linux"], "filterTags": ["Containers", "Most Popular"], "logo": "https://logzbucket.s3.eu-west-1.amazonaws.com/logz-docs/shipper-logos/kubernetes.svg", "bundle": [{"type": "OSD_DASHBOARD", "id": "3D1grGcEYB5Oe2feUPImak"}, {"type": "OSD_DASHBOARD", "id": "qryn7oYYoeaBBGMFRvm67"}, {"type": "LOG_ALERT", "id": "1AZRkKc64I12yxAMf2Wyny"}, {"type": "LOG_ALERT", "id": "6H7dfFOPUaHVMIjxdOMASx"}, {"type": "LOG_ALERT", "id": "1F6zSL5me5XJt9Lrjw3vxU"}, {"type": "LOG_ALERT", "id": "2dQHLx0WxmKmLk1kc67Ags"}, {"type": "LOG_ALERT", "id": "3dyFejyivMaZFdudbwKGRG"}, {"type": "GRAFANA_DASHBOARD", "id": "7nILXHYFZbThgTSMObUxkw"}, {"type": "GRAFANA_DASHBOARD", "id": "5TGD77ZKuTiZUXtiM51m6V"}, {"type": "GRAFANA_DASHBOARD", "id": "6pY6DKD0oQJL4sO7bW728"}, {"type": "GRAFANA_DASHBOARD", "id": "5kkUAuEwA0Ygvlgm9iXTHY"}, {"type": "GRAFANA_DASHBOARD", "id": "53g5kSILqoj1T10U1jnvKV"}, {"type": "GRAFANA_DASHBOARD", "id": "5e1xRaDdQnOvs5LCuwKCh5"}, {"type": "GRAFANA_DASHBOARD", "id": "7Cy6DUN78jlKUtMCsbt6GC"}, {"type": "GRAFANA_DASHBOARD", "id": "29HGYsE3kgFEdgJbalTqeY"}, {"type": "GRAFANA_DASHBOARD", "id": "1Hij49FKdnAKVJTjOmpDbH"}, {"type": "GRAFANA_DASHBOARD", "id": "6ThbRK67ZxBGeYwp8n74D0"}, {"type": "GRAFANA_ALERT", "id": "5Ng398K19vXP9197bRV1If"}], "dataLink": "https://raw.githubusercontent.com/logzio/documentation/master/docs/shipping/Containers/kubernetes.md"}, {"id": "Control-plane", "title": "Control Plane", "description": "Control Plane is a hybrid platform that integrates multiple cloud services, such as AWS, GCP, and Azure, providing a unified and flexible environment for developers to build and manage backend applications and services across various public and private clouds.", "productTags": ["LOG_ANALYTICS"], "osTags": ["windows", "linux"], "filterTags": ["Containers"], "logo": "https://logzbucket.s3.eu-west-1.amazonaws.com/logz-docs/shipper-logos/control-plane.png", "bundle": [], "dataLink": "https://raw.githubusercontent.com/logzio/documentation/master/docs/shipping/Containers/control-plane.md"}, {"id": "oracle-cloud-infrastructure-container-engine-for-kubernetes", "title": "Oracle Cloud Infrastructure Container Engine for Kubernetes (OKE)", "description": "Oracle Cloud Infrastructure Container Engine for Kubernetes (OKE) is a fully-managed, scalable, and highly available service that you can use to deploy your containerized applications to the cloud.", "productTags": ["LOG_ANALYTICS"], "osTags": ["windows", "linux"], "filterTags": ["Containers", "Orchestration"], "logo": "https://logzbucket.s3.eu-west-1.amazonaws.com/logz-docs/shipper-logos/oke.png", "bundle": [], "dataLink": "https://raw.githubusercontent.com/logzio/documentation/master/docs/shipping/Containers/oracle-cloud-infrastructure-container-engine-for-kubernetes.md"}, {"id": "internet-information-services", "title": "Internet Information Services (IIS)", "description": "Internet Information Services (IIS) for Windows\u00ae Server is a flexible, secure and manageable Web server for hosting on the Web. This integration allows you to send logs from your IIS services to your Logz.io account.", "productTags": ["LOG_ANALYTICS"], "osTags": ["windows", "linux"], "filterTags": ["Compute"], "logo": "https://logzbucket.s3.eu-west-1.amazonaws.com/logz-docs/shipper-logos/iis.png", "bundle": [], "dataLink": "https://raw.githubusercontent.com/logzio/documentation/master/docs/shipping/Compute/internet-information-services.md"}, {"id": "Telegraf-sysmetrics", "title": "Telegraf System Metrics", "description": "Telegraf is a plug-in driven server agent for collecting and sending metrics and events from databases, systems and IoT sensors.", "productTags": ["METRICS"], "osTags": ["windows", "linux"], "filterTags": ["Other"], "logo": "https://logzbucket.s3.eu-west-1.amazonaws.com/logz-docs/shipper-logos/telegraf-logo.png", "bundle": [{"type": "GRAFANA_DASHBOARD", "id": "32X5zm8qW7ByLlp1YPFkrJ"}], "dataLink": "https://raw.githubusercontent.com/logzio/documentation/master/docs/shipping/Compute/telegraf-sysmetrics.md"}, {"id": "Apache-HTTP-Server", "title": "Apache HTTP Server", "description": "The Apache HTTP Server, colloquially called Apache, is a free and open-source cross-platform web server. This integration sends Apache HTTP server logs and metrics to Logz.io.", "productTags": ["METRICS"], "osTags": ["windows", "linux"], "filterTags": ["Compute"], "logo": "https://logzbucket.s3.eu-west-1.amazonaws.com/logz-docs/shipper-logos/apache-http-logo.png", "bundle": [], "dataLink": "https://raw.githubusercontent.com/logzio/documentation/master/docs/shipping/Compute/apache-http-server.md"}, {"id": "Apache-Tomcat", "title": "Apache Tomcat", "description": "Apache Tomcat is a web server and servlet container that allows the execution of Java Servlets and JavaServer Pages (JSP) for web applications.", "productTags": ["METRICS"], "osTags": ["windows", "linux"], "filterTags": ["Compute"], "logo": "https://logzbucket.s3.eu-west-1.amazonaws.com/logz-docs/shipper-logos/tomcat-logo.png", "bundle": [{"type": "GRAFANA_DASHBOARD", "id": "1QIverGwIdtlC5ZbKohyvj"}, {"type": "GRAFANA_DASHBOARD", "id": "6J2RujMalRK3oC4y0r88ax"}], "dataLink": "https://raw.githubusercontent.com/logzio/documentation/master/docs/shipping/Compute/apache-tomcat.md"}, {"id": "VMware-vSphere", "title": "VMware vSphere", "description": "VMware vSphere is VMware's cloud computing virtualization platform. Telegraf is a plug-in driven server agent for collecting and sending metrics and events from databases, systems and IoT sensors.", "productTags": ["METRICS"], "osTags": ["windows", "linux"], "filterTags": ["Compute"], "logo": "https://logzbucket.s3.eu-west-1.amazonaws.com/logz-docs/shipper-logos/vsphere-logo.png", "bundle": [{"type": "GRAFANA_DASHBOARD", "id": "VpeHVDlhfo1mF22Lc0UKf"}, {"type": "GRAFANA_DASHBOARD", "id": "6CpW1YzdonmTQ8uIXAN5OL"}, {"type": "GRAFANA_DASHBOARD", "id": "3AvORCMPVJd8948i9oKaBO"}], "dataLink": "https://raw.githubusercontent.com/logzio/documentation/master/docs/shipping/Compute/vmware-vsphere.md"}, {"id": "Telegraf-windows-performance", "title": "Telegraf Windows Performance", "description": "Telegraf is a plug-in driven server agent for collecting and sending metrics and events from databases, systems and IoT sensors.", "productTags": ["METRICS"], "osTags": ["windows"], "filterTags": ["Other"], "logo": "https://logzbucket.s3.eu-west-1.amazonaws.com/logz-docs/shipper-logos/windows.svg", "bundle": [{"type": "GRAFANA_DASHBOARD", "id": "3AND5wMrjcMC9ngDTghmHx"}], "dataLink": "https://raw.githubusercontent.com/logzio/documentation/master/docs/shipping/Operating-Systems/telegraf-windows-performance.md"}, {"id": "Telegraf-Windows-services", "title": "Telegraf Windows Services", "description": "Telegraf is a plug-in driven server agent for collecting and sending metrics and events from databases, systems and IoT sensors.", "productTags": ["METRICS"], "osTags": ["windows"], "filterTags": ["Other"], "logo": "https://logzbucket.s3.eu-west-1.amazonaws.com/logz-docs/shipper-logos/windows.svg", "bundle": [], "dataLink": "https://raw.githubusercontent.com/logzio/documentation/master/docs/shipping/Operating-Systems/telegraf-windows-services.md"}, {"id": "Windows", "title": "Windows Operating System", "description": "Send your Windows machine logs and metrics to Logz.io to monitor and manage your Windows data, allowing you to identify anomalies, investigate incidents, get to the root cause of any issue, and quickly resolve it.", "productTags": ["LOG_ANALYTICS"], "osTags": ["windows"], "filterTags": ["Operating Systems", "Most Popular"], "logo": "https://logzbucket.s3.eu-west-1.amazonaws.com/logz-docs/shipper-logos/windows.svg", "bundle": [{"type": "LOG_ALERT", "id": "72Yry8pK5OfiGdPOV2y9RZ"}, {"type": "LOG_ALERT", "id": "4Mkw0OICZz7xnZZjlGWX9x"}, {"type": "GRAFANA_DASHBOARD", "id": "7vydxtpnlKLILHIGK4puX5"}, {"type": "GRAFANA_ALERT", "id": "4GVNTAqeH4lSRQBfN7dCXQ"}], "dataLink": "https://raw.githubusercontent.com/logzio/documentation/master/docs/shipping/Operating-Systems/windows.md"}, {"id": "localhost-mac", "title": "Mac Operating System", "description": "Send your Mac machine logs and metrics to Logz.io to monitor and manage your Mac data, allowing you to identify anomalies, investigate incidents, get to the root cause of any issue, and quickly resolve it.", "productTags": ["LOG_ANALYTICS", "METRICS"], "osTags": ["mac"], "filterTags": ["Operating Systems", "Most Popular"], "logo": "https://logzbucket.s3.eu-west-1.amazonaws.com/logz-docs/shipper-logos/mac-os.svg", "bundle": [{"type": "GRAFANA_DASHBOARD", "id": "2gsQP2xRef7dkwt8pxWieo"}, {"type": "GRAFANA_ALERT", "id": "hWld33IEO6gZMpp2e4vs0"}], "dataLink": "https://raw.githubusercontent.com/logzio/documentation/master/docs/shipping/Operating-Systems/localhost-mac.md"}, {"id": "Linux-data", "title": "Linux Operating System", "description": "Send your Linux machine logs and metrics to Logz.io to monitor and manage your Linux data, allowing you to identify anomalies, investigate incidents, get to the root cause of any issue, and quickly resolve it.", "productTags": ["LOG_ANALYTICS", "METRICS"], "osTags": ["linux"], "filterTags": ["Operating Systems", "Most Popular"], "logo": "https://logzbucket.s3.eu-west-1.amazonaws.com/logz-docs/shipper-logos/linux.svg", "bundle": [{"type": "GRAFANA_DASHBOARD", "id": "6hb5Nww0ar4SXoF92QxMx"}, {"type": "GRAFANA_ALERT", "id": "6y7xNsm1RXlXAFUAXLyOpZ"}], "dataLink": "https://raw.githubusercontent.com/logzio/documentation/master/docs/shipping/Operating-Systems/linux.md"}, {"id": "GCP-reCAPTCHA-Enterprise", "title": "GCP reCAPTCHA Enterprise", "description": "Send Google Cloud reCAPTCHA Enterprise metrics to your Logz.io account.", "productTags": ["LOG_ANALYTICS", "METRICS"], "osTags": ["windows", "linux"], "filterTags": ["GCP", "Security"], "logo": "https://logzbucket.s3.eu-west-1.amazonaws.com/logz-docs/shipper-logos/recap.png", "bundle": [], "dataLink": "https://raw.githubusercontent.com/logzio/documentation/master/docs/shipping/GCP/gcp-recaptcha-enterprise.md"}, {"id": "GCP-Cloud-Healthcare", "title": "GCP Healthcare", "description": "Send Google Cloud Healthcare metrics to your Logz.io account.", "productTags": ["LOG_ANALYTICS", "METRICS"], "osTags": ["windows", "linux"], "filterTags": ["GCP", "Other"], "logo": "https://logzbucket.s3.eu-west-1.amazonaws.com/logz-docs/shipper-logos/gcphealthcare.png", "bundle": [], "dataLink": "https://raw.githubusercontent.com/logzio/documentation/master/docs/shipping/GCP/gcp-cloud-healthcare.md"}, {"id": "GCP-Cloud-API", "title": "GCP API", "description": "Send Google Cloud API metrics to your Logz.io account.", "productTags": ["LOG_ANALYTICS", "METRICS"], "osTags": ["windows", "linux"], "filterTags": ["GCP", "Other"], "logo": "https://logzbucket.s3.eu-west-1.amazonaws.com/logz-docs/shipper-logos/gcpapis.png", "bundle": [], "dataLink": "https://raw.githubusercontent.com/logzio/documentation/master/docs/shipping/GCP/gcp-cloud-api.md"}, {"id": "GCP-Recommendations", "title": "GCP Recommendations", "description": "Send Google Cloud Recommendations metrics to your Logz.io account.", "productTags": ["LOG_ANALYTICS", "METRICS"], "osTags": ["windows", "linux"], "filterTags": ["GCP", "Other"], "logo": "https://logzbucket.s3.eu-west-1.amazonaws.com/logz-docs/shipper-logos/gcpai.png", "bundle": [], "dataLink": "https://raw.githubusercontent.com/logzio/documentation/master/docs/shipping/GCP/gcp-recommendations.md"}, {"id": "Google-Cloud-Run", "title": "GCP Cloud Run", "description": "Send Google Cloud Run metrics to your Logz.io account.", "productTags": ["LOG_ANALYTICS", "METRICS"], "osTags": ["windows", "linux"], "filterTags": ["GCP", "Compute"], "logo": "https://logzbucket.s3.eu-west-1.amazonaws.com/logz-docs/shipper-logos/cloudrun.png", "bundle": [], "dataLink": "https://raw.githubusercontent.com/logzio/documentation/master/docs/shipping/GCP/gcp-cloud-run.md"}, {"id": "gcp-managed-service-for-microsoft-active-directory", "title": "GCP Managed Service for Microsoft Active Directory", "description": "Send Google Cloud Managed Service for Microsoft Active Directory metrics to your Logz.io account.", "productTags": ["LOG_ANALYTICS", "METRICS"], "osTags": ["windows", "linux"], "filterTags": ["GCP", "Access Management"], "logo": "https://logzbucket.s3.eu-west-1.amazonaws.com/logz-docs/shipper-logos/gcpiam.png", "bundle": [], "dataLink": "https://raw.githubusercontent.com/logzio/documentation/master/docs/shipping/GCP/gcp-managed-service-for-microsoft-active-directory.md"}, {"id": "GCP-Vertex-AI", "title": "GCP Vertex AI", "description": "Send Google Cloud Vertex AI metrics to your Logz.io account.", "productTags": ["LOG_ANALYTICS", "METRICS"], "osTags": ["windows", "linux"], "filterTags": ["GCP", "Other"], "logo": "https://logzbucket.s3.eu-west-1.amazonaws.com/logz-docs/shipper-logos/vertexai.png", "bundle": [], "dataLink": "https://raw.githubusercontent.com/logzio/documentation/master/docs/shipping/GCP/gcp-vertex-ai.md"}, {"id": "GCP-Cloud-Tasks", "title": "GCP Tasks", "description": "Send Google Cloud Tasks metrics to your Logz.io account.", "productTags": ["LOG_ANALYTICS", "METRICS"], "osTags": ["windows", "linux"], "filterTags": ["GCP", "Other"], "logo": "https://logzbucket.s3.eu-west-1.amazonaws.com/logz-docs/shipper-logos/gcptasks.png", "bundle": [], "dataLink": "https://raw.githubusercontent.com/logzio/documentation/master/docs/shipping/GCP/gcp-cloudtasks.md"}, {"id": "GCP-Cloud-DNS", "title": "GCP DNS", "description": "Send Google Cloud DNS metrics to your Logz.io account.", "productTags": ["LOG_ANALYTICS", "METRICS"], "osTags": ["windows", "linux"], "filterTags": ["GCP", "Network"], "logo": "https://logzbucket.s3.eu-west-1.amazonaws.com/logz-docs/shipper-logos/dns.png", "bundle": [], "dataLink": "https://raw.githubusercontent.com/logzio/documentation/master/docs/shipping/GCP/gcp-cloud-dns.md"}, {"id": "gcp-memorystore-for-memcached", "title": "GCP Memorystore for Memcached", "description": "Send Google Cloud Memorystore for Memcached metrics to your Logz.io account.", "productTags": ["LOG_ANALYTICS", "METRICS"], "osTags": ["windows", "linux"], "filterTags": ["GCP", "Memory Caching"], "logo": "https://logzbucket.s3.eu-west-1.amazonaws.com/logz-docs/shipper-logos/memorystore.png", "bundle": [{"type": "GRAFANA_DASHBOARD", "id": "6V6DBzsX8cRZXCSvuSkHiA"}], "dataLink": "https://raw.githubusercontent.com/logzio/documentation/master/docs/shipping/GCP/gcp-memorystore-for-memcached.md"}, {"id": "GCP-Cloud-Router", "title": "GCP Router", "description": "Send Google Cloud Router metrics to your Logz.io account.", "productTags": ["LOG_ANALYTICS", "METRICS"], "osTags": ["windows", "linux"], "filterTags": ["GCP", "Network"], "logo": "https://logzbucket.s3.eu-west-1.amazonaws.com/logz-docs/shipper-logos/gcprouter.png", "bundle": [], "dataLink": "https://raw.githubusercontent.com/logzio/documentation/master/docs/shipping/GCP/gcp-cloud-router.md"}, {"id": "GCP-Dataflow", "title": "GCP Dataflow", "description": "Send Google Cloud Dataflow metrics to your Logz.io account.", "productTags": ["LOG_ANALYTICS", "METRICS"], "osTags": ["windows", "linux"], "filterTags": ["GCP", "Data Store"], "logo": "https://logzbucket.s3.eu-west-1.amazonaws.com/logz-docs/shipper-logos/gcpdataflow.png", "bundle": [], "dataLink": "https://raw.githubusercontent.com/logzio/documentation/master/docs/shipping/GCP/gcp-dataflow.md"}, {"id": "gcp-firewall-insights", "title": "GCP Firewall Insights", "description": "Send Google Cloud Firewall metrics to your Logz.io account.", "productTags": ["LOG_ANALYTICS", "METRICS"], "osTags": ["windows", "linux"], "filterTags": ["GCP", "Network", "Security"], "logo": "https://logzbucket.s3.eu-west-1.amazonaws.com/logz-docs/shipper-logos/gcpfirewall.png", "bundle": [], "dataLink": "https://raw.githubusercontent.com/logzio/documentation/master/docs/shipping/GCP/gcp-firewall-insights.md"}, {"id": "GPC-Apigee", "title": "GCP Apigee", "description": "Apigee, part of Google Cloud, helps design, secure, and scale application programming interfaces (APIs). Telegraf is a plug-in driven server agent for collecting and sending metrics and events from databases, systems and IoT sensors.", "productTags": ["LOG_ANALYTICS", "METRICS"], "osTags": ["windows", "linux"], "filterTags": ["GCP", "Other"], "logo": "https://logzbucket.s3.eu-west-1.amazonaws.com/logz-docs/shipper-logos/apigee.png", "bundle": [], "dataLink": "https://raw.githubusercontent.com/logzio/documentation/master/docs/shipping/GCP/gcp-apigee.md"}, {"id": "GCP-Stackdriver", "title": "GCP Operation Suite (Stackdriver)", "description": "Send Google Cloud Operation Suite (Stackdriver) metrics to your Logz.io account.", "productTags": ["LOG_ANALYTICS", "METRICS"], "osTags": ["windows", "linux"], "filterTags": ["GCP", "Monitoring"], "logo": "https://logzbucket.s3.eu-west-1.amazonaws.com/logz-docs/shipper-logos/gcp-stackdriver.svg", "bundle": [], "dataLink": "https://raw.githubusercontent.com/logzio/documentation/master/docs/shipping/GCP/gcp-stackdriver.md"}, {"id": "GCP-BigQuery-BI-Engine", "title": "GCP BigQuery BI Engine", "description": "Send Google Cloud BigQuery BI Engine metrics to your Logz.io account.", "productTags": ["LOG_ANALYTICS", "METRICS"], "osTags": ["windows", "linux"], "filterTags": ["GCP", "Data Store"], "logo": "https://logzbucket.s3.eu-west-1.amazonaws.com/logz-docs/shipper-logos/bigquery.png", "bundle": [], "dataLink": "https://raw.githubusercontent.com/logzio/documentation/master/docs/shipping/GCP/gcp-bigquerybiengine.md"}, {"id": "GCP-Identity-and-Access-Management", "title": "GCP Identity and Access Management", "description": "Send Google Cloud Identity and Access Management metrics to your Logz.io account.", "productTags": ["LOG_ANALYTICS", "METRICS"], "osTags": ["windows", "linux"], "filterTags": ["GCP", "Access Management"], "logo": "https://logzbucket.s3.eu-west-1.amazonaws.com/logz-docs/shipper-logos/gcpiam.png", "bundle": [], "dataLink": "https://raw.githubusercontent.com/logzio/documentation/master/docs/shipping/GCP/gcp-identity-and-access-management.md"}, {"id": "GCP-Memorystore-for-Redis", "title": "GCP Memorystore for Redis", "description": "Send Google Cloud Memorystore for Redis metrics to your Logz.io account.", "productTags": ["LOG_ANALYTICS", "METRICS"], "osTags": ["windows", "linux"], "filterTags": ["GCP", "Memory Caching"], "logo": "https://logzbucket.s3.eu-west-1.amazonaws.com/logz-docs/shipper-logos/memorystore.png", "bundle": [{"type": "GRAFANA_DASHBOARD", "id": "771vgmjMzFBHHma1Jov3bG"}], "dataLink": "https://raw.githubusercontent.com/logzio/documentation/master/docs/shipping/GCP/gcp-memorystore-for-redis.md"}, {"id": "GCP-Data-Loss-Prevention", "title": "GCP Data Loss Prevention", "description": "Send Google Cloud Data Loss Prevention metrics to your Logz.io account.", "productTags": ["LOG_ANALYTICS", "METRICS"], "osTags": ["windows", "linux"], "filterTags": ["GCP", "Security"], "logo": "https://logzbucket.s3.eu-west-1.amazonaws.com/logz-docs/shipper-logos/lossprevention.png", "bundle": [], "dataLink": "https://raw.githubusercontent.com/logzio/documentation/master/docs/shipping/GCP/gcp-data-loss-prevention.md"}, {"id": "GCP-Firestore", "title": "GCP Firestore", "description": "Send Google Cloud Firestore metrics to your Logz.io account.", "productTags": ["LOG_ANALYTICS", "METRICS"], "osTags": ["windows", "linux"], "filterTags": ["GCP", "Database"], "logo": "https://logzbucket.s3.eu-west-1.amazonaws.com/logz-docs/shipper-logos/firestore.png", "bundle": [], "dataLink": "https://raw.githubusercontent.com/logzio/documentation/master/docs/shipping/GCP/gcp-firestore.md"}, {"id": "GCP-Cloud-IDS", "title": "GCP IDS", "description": "Send Google Cloud IDS metrics to your Logz.io account.", "productTags": ["LOG_ANALYTICS", "METRICS"], "osTags": ["windows", "linux"], "filterTags": ["GCP", "Security"], "logo": "https://logzbucket.s3.eu-west-1.amazonaws.com/logz-docs/shipper-logos/ids.png", "bundle": [], "dataLink": "https://raw.githubusercontent.com/logzio/documentation/master/docs/shipping/GCP/gcp-cloud-ids.md"}, {"id": "gcp-contact-center-ai-insights", "title": "GCP Contact Center AI Insights", "description": "Send Google Cloud Contact Center AI Insights metrics to your Logz.io account.", "productTags": ["METRICS"], "osTags": ["windows", "linux"], "filterTags": ["GCP", "Other"], "logo": "https://logzbucket.s3.eu-west-1.amazonaws.com/logz-docs/shipper-logos/gcpai.png", "bundle": [], "dataLink": "https://raw.githubusercontent.com/logzio/documentation/master/docs/shipping/GCP/gcp-contact-center-ai-insights.md"}, {"id": "GCP-Workspace", "title": "GCP Workspace", "description": "Send Google Cloud Workspace metrics to your Logz.io account.", "productTags": ["LOG_ANALYTICS", "METRICS", "SIEM"], "osTags": ["windows", "linux"], "filterTags": ["GCP", "Other"], "logo": "https://logzbucket.s3.eu-west-1.amazonaws.com/logz-docs/shipper-logos/google-workspace.svg", "bundle": [], "dataLink": "https://raw.githubusercontent.com/logzio/documentation/master/docs/shipping/GCP/gcp-workspace.md"}, {"id": "GCP-Storage", "title": "GCP Storage", "description": "Send Google Cloud Storage metrics to your Logz.io account.", "productTags": ["LOG_ANALYTICS", "METRICS"], "osTags": ["windows", "linux"], "filterTags": ["GCP", "Data Store"], "logo": "https://logzbucket.s3.eu-west-1.amazonaws.com/logz-docs/shipper-logos/gcpstorage.png", "bundle": [{"type": "GRAFANA_DASHBOARD", "id": "4LAZ8Zep644MzbT1x089GG"}], "dataLink": "https://raw.githubusercontent.com/logzio/documentation/master/docs/shipping/GCP/gcp-cloud-storage.md"}, {"id": "GCP-Datastream", "title": "GCP Datastream", "description": "Send Google Cloud Datastream metrics to your Logz.io account.", "productTags": ["LOG_ANALYTICS", "METRICS"], "osTags": ["windows", "linux"], "filterTags": ["GCP", "Data Store"], "logo": "https://logzbucket.s3.eu-west-1.amazonaws.com/logz-docs/shipper-logos/gcpdatastream.png", "bundle": [], "dataLink": "https://raw.githubusercontent.com/logzio/documentation/master/docs/shipping/GCP/gcp-datastream.md"}, {"id": "gcp-load-balancing", "title": "GCP Load Balancing", "description": "Send Google Cloud Load Balancing metrics to your Logz.io account.", "productTags": ["LOG_ANALYTICS", "METRICS"], "osTags": ["windows", "linux"], "filterTags": ["GCP", "Load Balancer"], "logo": "https://logzbucket.s3.eu-west-1.amazonaws.com/logz-docs/shipper-logos/gcplb.png", "bundle": [{"type": "GRAFANA_DASHBOARD", "id": "2qF8pBXlwH0Pw6noOMfzRk"}, {"type": "GRAFANA_DASHBOARD", "id": "48vnzAEl0x6hh3DWKIWkpx"}, {"type": "GRAFANA_DASHBOARD", "id": "7s5HblMf4IVimoRSwnCRJ6"}], "dataLink": "https://raw.githubusercontent.com/logzio/documentation/master/docs/shipping/GCP/gcp-load-balancing.md"}, {"id": "GCP-Bigtable", "title": "GCP Bigtable", "description": "Send Google Cloud Bigtable metrics to your Logz.io account.", "productTags": ["LOG_ANALYTICS", "METRICS"], "osTags": ["windows", "linux"], "filterTags": ["GCP", "Data Store"], "logo": "https://logzbucket.s3.eu-west-1.amazonaws.com/logz-docs/shipper-logos/bigtable.png", "bundle": [{"type": "GRAFANA_DASHBOARD", "id": "z2VVwfx5bq2xD5zhQUzk6"}], "dataLink": "https://raw.githubusercontent.com/logzio/documentation/master/docs/shipping/GCP/gcp-bigtable.md"}, {"id": "GCP-VM-Manager", "title": "GCP VM Manager", "description": "Send Google Cloud VM Manager metrics to your Logz.io account.", "productTags": ["LOG_ANALYTICS", "METRICS"], "osTags": ["windows", "linux"], "filterTags": ["GCP", "Compute"], "logo": "https://logzbucket.s3.eu-west-1.amazonaws.com/logz-docs/shipper-logos/computeengine.png", "bundle": [], "dataLink": "https://raw.githubusercontent.com/logzio/documentation/master/docs/shipping/GCP/gcp-vm-manager.md"}, {"id": "GCP-VPN", "title": "GCP VPN", "description": "Send Google Cloud VPN metrics to your Logz.io account.", "productTags": ["LOG_ANALYTICS", "METRICS"], "osTags": ["windows", "linux"], "filterTags": ["GCP", "Network"], "logo": "https://logzbucket.s3.eu-west-1.amazonaws.com/logz-docs/shipper-logos/aws-vpn.png", "bundle": [{"type": "GRAFANA_DASHBOARD", "id": "4gdYz2iIWFeIL3WDDcYRm"}], "dataLink": "https://raw.githubusercontent.com/logzio/documentation/master/docs/shipping/GCP/gcp-vpn.md"}, {"id": "gcp-app-engine", "title": "GCP App Engine", "description": "Send Google Cloud App Engine metrics to your Logz.io account.", "productTags": ["LOG_ANALYTICS", "METRICS"], "osTags": ["windows", "linux"], "filterTags": ["GCP", "Compute"], "logo": "https://logzbucket.s3.eu-west-1.amazonaws.com/logz-docs/shipper-logos/appengine.png", "bundle": [], "dataLink": "https://raw.githubusercontent.com/logzio/documentation/master/docs/shipping/GCP/gcp-app-engine.md"}, {"id": "GCP-AI-Platform", "title": "GCP AI Platform", "description": "Send Google AI Platform metrics to your Logz.io account.", "productTags": ["LOG_ANALYTICS", "METRICS"], "osTags": ["windows", "linux"], "filterTags": ["GCP", "Other"], "logo": "https://logzbucket.s3.eu-west-1.amazonaws.com/logz-docs/shipper-logos/gcpai.png", "bundle": [], "dataLink": "https://raw.githubusercontent.com/logzio/documentation/master/docs/shipping/GCP/gcp-ai-platform.md"}, {"id": "GCP-Cloud-SQL", "title": "GCP SQL", "description": "Send Google Cloud SQL metrics to your Logz.io account.", "productTags": ["LOG_ANALYTICS", "METRICS"], "osTags": ["windows", "linux"], "filterTags": ["GCP", "Database"], "logo": "https://logzbucket.s3.eu-west-1.amazonaws.com/logz-docs/shipper-logos/gcpsql.png", "bundle": [{"type": "GRAFANA_DASHBOARD", "id": "4KUp9D8EhuMuCuLLhIZBEP"}], "dataLink": "https://raw.githubusercontent.com/logzio/documentation/master/docs/shipping/GCP/gcp-cloudsql.md"}, {"id": "GCP-Cloud-Composer", "title": "GCP Cloud Composer", "description": "Send Google Cloud Composer metrics to your Logz.io account.", "productTags": ["LOG_ANALYTICS", "METRICS"], "osTags": ["windows", "linux"], "filterTags": ["GCP", "Orchestration"], "logo": "https://logzbucket.s3.eu-west-1.amazonaws.com/logz-docs/shipper-logos/gcpcomposer.png", "bundle": [], "dataLink": "https://raw.githubusercontent.com/logzio/documentation/master/docs/shipping/GCP/gcp-cloud-composer.md"}, {"id": "GCP-Dataproc-Metastore", "title": "GCP Dataproc Metastore", "description": "Send Google Cloud Dataproc Metastore metrics to your Logz.io account.", "productTags": ["LOG_ANALYTICS", "METRICS"], "osTags": ["windows", "linux"], "filterTags": ["GCP", "Data Store"], "logo": "https://logzbucket.s3.eu-west-1.amazonaws.com/logz-docs/shipper-logos/gcpdataproc.png", "bundle": [], "dataLink": "https://raw.githubusercontent.com/logzio/documentation/master/docs/shipping/GCP/gcp-dataproc-metastore.md"}, {"id": "GCP-BigQuery-Data-Transfer-Service", "title": "GCP BigQuery Data Transfer Service", "description": "Send Google Cloud BigQuery Data Transfer Service metrics to your Logz.io account.", "productTags": ["LOG_ANALYTICS", "METRICS"], "osTags": ["windows", "linux"], "filterTags": ["GCP", "Data Store"], "logo": "https://logzbucket.s3.eu-west-1.amazonaws.com/logz-docs/shipper-logos/bigquery.png", "bundle": [], "dataLink": "https://raw.githubusercontent.com/logzio/documentation/master/docs/shipping/GCP/gcp-bigquery-data-transfer-service.md"}, {"id": "GCP-PubSub", "title": "GCP PubSub", "description": "Send Google Cloud PubSub metrics to your Logz.io account.", "productTags": ["LOG_ANALYTICS", "METRICS"], "osTags": ["windows", "linux"], "filterTags": ["GCP", "Distributed Messaging"], "logo": "https://logzbucket.s3.eu-west-1.amazonaws.com/logz-docs/shipper-logos/pubsub.png", "bundle": [], "dataLink": "https://raw.githubusercontent.com/logzio/documentation/master/docs/shipping/GCP/gcp-pubsub.md"}, {"id": "GCP-Firebase", "title": "GCP Firebase", "description": "Send Google Cloud Firebase metrics to your Logz.io account.", "productTags": ["LOG_ANALYTICS", "METRICS"], "osTags": ["windows", "linux"], "filterTags": ["GCP", "Other"], "logo": "https://logzbucket.s3.eu-west-1.amazonaws.com/logz-docs/shipper-logos/firebase.png", "bundle": [], "dataLink": "https://raw.githubusercontent.com/logzio/documentation/master/docs/shipping/GCP/gcp-firebase.md"}, {"id": "GCP-Cloud-Interconnect", "title": "GCP Interconnect", "description": "Send Google Cloud Interconnect metrics to your Logz.io account.", "productTags": ["LOG_ANALYTICS", "METRICS"], "osTags": ["windows", "linux"], "filterTags": ["GCP", "Network"], "logo": "https://logzbucket.s3.eu-west-1.amazonaws.com/logz-docs/shipper-logos/interconnect.png", "bundle": [], "dataLink": "https://raw.githubusercontent.com/logzio/documentation/master/docs/shipping/GCP/gcp-cloud-interconnect.md"}, {"id": "GCP-Cloud-TPU", "title": "GCP TPU", "description": "Send Google Cloud TPU metrics to your Logz.io account.", "productTags": ["LOG_ANALYTICS", "METRICS"], "osTags": ["windows", "linux"], "filterTags": ["GCP", "Compute"], "logo": "https://logzbucket.s3.eu-west-1.amazonaws.com/logz-docs/shipper-logos/tpu.png", "bundle": [], "dataLink": "https://raw.githubusercontent.com/logzio/documentation/master/docs/shipping/GCP/gcp-cloud-tpu.md"}, {"id": "gcp-internet-of-things", "title": "GCP Cloud Internet of Things (IoT) Core", "description": "Send Google Cloud Internet of Things (IoT) Core metrics to your Logz.io account.", "productTags": ["LOG_ANALYTICS", "METRICS"], "osTags": ["windows", "linux"], "filterTags": ["GCP", "IoT"], "logo": "https://logzbucket.s3.eu-west-1.amazonaws.com/logz-docs/shipper-logos/googleiot.png", "bundle": [], "dataLink": "https://raw.githubusercontent.com/logzio/documentation/master/docs/shipping/GCP/gcp-internet-of-things.md"}, {"id": "GCP-Filestore", "title": "GCP Filestore", "description": "Send Google Cloud Filestore metrics to your Logz.io account.", "productTags": ["LOG_ANALYTICS", "METRICS"], "osTags": ["windows", "linux"], "filterTags": ["GCP", "Data Store"], "logo": "https://logzbucket.s3.eu-west-1.amazonaws.com/logz-docs/shipper-logos/gcpfilestore.png", "bundle": [{"type": "GRAFANA_DASHBOARD", "id": "4LAZ8Zep644MzbT1x089GG"}], "dataLink": "https://raw.githubusercontent.com/logzio/documentation/master/docs/shipping/GCP/gcp-filestorage.md"}, {"id": "GCP-Cloud-Trace", "title": "GCP Trace", "description": "Send Google Cloud Trace metrics to your Logz.io account.", "productTags": ["LOG_ANALYTICS", "METRICS"], "osTags": ["windows", "linux"], "filterTags": ["GCP", "Other"], "logo": "https://logzbucket.s3.eu-west-1.amazonaws.com/logz-docs/shipper-logos/gcptrace.png", "bundle": [], "dataLink": "https://raw.githubusercontent.com/logzio/documentation/master/docs/shipping/GCP/gcp-cloud-trace.md"}, {"id": "GCP-Datastore", "title": "GCP Datastore", "description": "Send Google Cloud Datastore metrics to your Logz.io account.", "productTags": ["LOG_ANALYTICS", "METRICS"], "osTags": ["windows", "linux"], "filterTags": ["GCP", "Data Store"], "logo": "https://logzbucket.s3.eu-west-1.amazonaws.com/logz-docs/shipper-logos/gcpdatastore.png", "bundle": [], "dataLink": "https://raw.githubusercontent.com/logzio/documentation/master/docs/shipping/GCP/gcp-cloud-datastore.md"}, {"id": "GCP-Cloud-Armor", "title": "GCP Cloud Armor", "description": "Send Google Cloud Armor metrics to your Logz.io account.", "productTags": ["LOG_ANALYTICS", "METRICS"], "osTags": ["windows", "linux"], "filterTags": ["GCP", "Security"], "logo": "https://logzbucket.s3.eu-west-1.amazonaws.com/logz-docs/shipper-logos/cloudarmor.png", "bundle": [], "dataLink": "https://raw.githubusercontent.com/logzio/documentation/master/docs/shipping/GCP/gcp-cloud-armor.md"}, {"id": "GCP-Dataproc", "title": "GCP Dataproc", "description": "Send Google Cloud Dataproc metrics to your Logz.io account.", "productTags": ["LOG_ANALYTICS", "METRICS"], "osTags": ["windows", "linux"], "filterTags": ["GCP", "Compute"], "logo": "https://logzbucket.s3.eu-west-1.amazonaws.com/logz-docs/shipper-logos/gcpdataproc.png", "bundle": [], "dataLink": "https://raw.githubusercontent.com/logzio/documentation/master/docs/shipping/GCP/gcp-dataproc.md"}, {"id": "gcp-network-topology", "title": "GCP Network Topology", "description": "Send Google Cloud Network Topology metrics to your Logz.io account.", "productTags": ["LOG_ANALYTICS", "METRICS"], "osTags": ["windows", "linux"], "filterTags": ["GCP", "Network"], "logo": "https://logzbucket.s3.eu-west-1.amazonaws.com/logz-docs/shipper-logos/gcpnetwork.png", "bundle": [], "dataLink": "https://raw.githubusercontent.com/logzio/documentation/master/docs/shipping/GCP/gcp-network-topology.md"}, {"id": "GCP-Storage-Transfer", "title": "GCP Storage Transfer Service", "description": "Send Google Cloud Storage Transfer Service metrics to your Logz.io account.", "productTags": ["LOG_ANALYTICS", "METRICS"], "osTags": ["windows", "linux"], "filterTags": ["GCP", "Data Store"], "logo": "https://logzbucket.s3.eu-west-1.amazonaws.com/logz-docs/shipper-logos/gcpstorage.png", "bundle": [], "dataLink": "https://raw.githubusercontent.com/logzio/documentation/master/docs/shipping/GCP/gcp-storage-transfer.md"}, {"id": "GCP-Cloud-Logging", "title": "GCP Cloud Logging", "description": "Send Google Cloud Logging metrics to your Logz.io account.", "productTags": ["LOG_ANALYTICS", "METRICS"], "osTags": ["windows", "linux"], "filterTags": ["GCP", "Other"], "logo": "https://logzbucket.s3.eu-west-1.amazonaws.com/logz-docs/shipper-logos/cloudlogging.png", "bundle": [], "dataLink": "https://raw.githubusercontent.com/logzio/documentation/master/docs/shipping/GCP/gcp-cloud-logging.md"}, {"id": "google-certificate-authority-service", "title": "Google Certificate Authority Service", "description": "Send Google Cloud Certificate Authority Service metrics to your Logz.io account.", "productTags": ["LOG_ANALYTICS", "METRICS"], "osTags": ["windows", "linux"], "filterTags": ["GCP", "Security"], "logo": "https://logzbucket.s3.eu-west-1.amazonaws.com/logz-docs/shipper-logos/certmanager.png", "bundle": [], "dataLink": "https://raw.githubusercontent.com/logzio/documentation/master/docs/shipping/GCP/google-certificate-authority-service.md"}, {"id": "GCP-BigQuery", "title": "GCP BigQuery", "description": "Send Google Cloud BigQuery metrics to your Logz.io account.", "productTags": ["LOG_ANALYTICS", "METRICS"], "osTags": ["windows", "linux"], "filterTags": ["GCP", "Data Store"], "logo": "https://logzbucket.s3.eu-west-1.amazonaws.com/logz-docs/shipper-logos/bigquery.png", "bundle": [], "dataLink": "https://raw.githubusercontent.com/logzio/documentation/master/docs/shipping/GCP/gcp-bigquery.md"}, {"id": "GCP-Cloud-Functions", "title": "GCP Cloud Functions", "description": "Send Google Cloud Functions metrics to your Logz.io account.", "productTags": ["LOG_ANALYTICS", "METRICS"], "osTags": ["windows", "linux"], "filterTags": ["GCP", "Compute"], "logo": "https://logzbucket.s3.eu-west-1.amazonaws.com/logz-docs/shipper-logos/cloudfunctions.png", "bundle": [{"type": "GRAFANA_DASHBOARD", "id": "78mU6GZUeRLhMtExlMvshT"}], "dataLink": "https://raw.githubusercontent.com/logzio/documentation/master/docs/shipping/GCP/gcp-cloudfunctions.md"}, {"id": "GCP-API-Gateway", "title": "GCP API Gateway", "description": "Send Google Cloud API Gateway metrics to your Logz.io account.", "productTags": ["LOG_ANALYTICS", "METRICS"], "osTags": ["windows", "linux"], "filterTags": ["GCP", "Access Management"], "logo": "https://logzbucket.s3.eu-west-1.amazonaws.com/logz-docs/shipper-logos/apigateway.png", "bundle": [], "dataLink": "https://raw.githubusercontent.com/logzio/documentation/master/docs/shipping/GCP/gcp-api-gateway.md"}, {"id": "GCP-Compute-Engine", "title": "GCP Compute Engine", "description": "Send Google Cloud Compute Engine metrics to your Logz.io account.", "productTags": ["LOG_ANALYTICS", "METRICS"], "osTags": ["windows", "linux"], "filterTags": ["GCP", "Compute"], "logo": "https://logzbucket.s3.eu-west-1.amazonaws.com/logz-docs/shipper-logos/computeengine.png", "bundle": [{"type": "GRAFANA_DASHBOARD", "id": "2UHWhKZvymlkGU7yy4jKIK"}], "dataLink": "https://raw.githubusercontent.com/logzio/documentation/master/docs/shipping/GCP/gcp-compute-engine.md"}, {"id": "GCP-Workflows", "title": "GCP Workflows", "description": "Send Google Cloud Workflows metrics to your Logz.io account.", "productTags": ["LOG_ANALYTICS", "METRICS"], "osTags": ["windows", "linux"], "filterTags": ["GCP", "Orchestration"], "logo": "https://logzbucket.s3.eu-west-1.amazonaws.com/logz-docs/shipper-logos/workflows.png", "bundle": [], "dataLink": "https://raw.githubusercontent.com/logzio/documentation/master/docs/shipping/GCP/gcp-workflows.md"}, {"id": "GCP-Cloud-Monitoring", "title": "GCP Monitoring", "description": "Send Google Cloud Monitoring metrics to your Logz.io account.", "productTags": ["LOG_ANALYTICS", "METRICS"], "osTags": ["windows", "linux"], "filterTags": ["GCP", "Monitoring"], "logo": "https://logzbucket.s3.eu-west-1.amazonaws.com/logz-docs/shipper-logos/cloudmonitoring.png", "bundle": [], "dataLink": "https://raw.githubusercontent.com/logzio/documentation/master/docs/shipping/GCP/gcp-cloud-monitoring.md"}, {"id": "GCP-Compute-Engine-Autoscaler", "title": "GCP Compute Engine Autoscaler", "description": "Send Google Cloud Compute Engine Autoscaler metrics to your Logz.io account.", "productTags": ["LOG_ANALYTICS", "METRICS"], "osTags": ["windows", "linux"], "filterTags": ["GCP", "Compute"], "logo": "https://logzbucket.s3.eu-west-1.amazonaws.com/logz-docs/shipper-logos/computeengine.png", "bundle": [], "dataLink": "https://raw.githubusercontent.com/logzio/documentation/master/docs/shipping/GCP/gcp-compute-engine-autoscaler.md"}, {"id": "GitLab", "title": "GitLab", "description": "GitLab is a DevOps platform that combines the ability to develop, secure, and operate software in a single application. This integration allows you to send logs from your GitLan platform to your Logz.io account.", "productTags": ["METRICS"], "osTags": ["windows", "linux"], "filterTags": ["CI/CD"], "logo": "https://logzbucket.s3.eu-west-1.amazonaws.com/logz-docs/shipper-logos/gitlab.svg", "bundle": [], "dataLink": "https://raw.githubusercontent.com/logzio/documentation/master/docs/shipping/CI-CD/gitlab.md"}, {"id": "TeamCity", "title": "TeamCity", "description": "TeamCity is a general-purpose CI/CD solution that allows the most flexibility for all sorts of workflows and development practices. Telegraf is a plug-in driven server agent for collecting and sending metrics and events from databases, systems and IoT sensors.", "productTags": ["METRICS"], "osTags": ["windows", "linux"], "filterTags": ["CI/CD"], "logo": "https://logzbucket.s3.eu-west-1.amazonaws.com/logz-docs/shipper-logos/TeamCity-logo.png", "bundle": [{"type": "GRAFANA_DASHBOARD", "id": "1mdHqslZMi4gXaNCLZo9G1"}], "dataLink": "https://raw.githubusercontent.com/logzio/documentation/master/docs/shipping/CI-CD/teamcity.md"}, {"id": "Puppet", "title": "Puppet", "description": "Puppet is a software configuration management tool which includes its own declarative language to describe system configuration. Deploy this integration to send logs from your Puppet applications to your Logz,io account.", "productTags": ["METRICS"], "osTags": ["windows", "linux"], "filterTags": ["CI/CD"], "logo": "https://logzbucket.s3.eu-west-1.amazonaws.com/logz-docs/shipper-logos/puppet.png", "bundle": [], "dataLink": "https://raw.githubusercontent.com/logzio/documentation/master/docs/shipping/CI-CD/puppet.md"}, {"id": "Bitbucket", "title": "Bitbucket", "description": "Bitbucket is a Git-based source code repository hosting service. This integration allows you to ship logs from your Bitbucket repository to your Logz.io account.", "productTags": ["LOG_ANALYTICS"], "osTags": ["windows", "linux"], "filterTags": ["CI/CD"], "logo": "https://logzbucket.s3.eu-west-1.amazonaws.com/logz-docs/shipper-logos/bitbucket.png", "bundle": [], "dataLink": "https://raw.githubusercontent.com/logzio/documentation/master/docs/shipping/CI-CD/bitbucket.md"}, {"id": "Argo-CD", "title": "Argo CD", "description": "Argo CD is a declarative, GitOps continuous delivery tool for Kubernetes.", "productTags": ["METRICS"], "osTags": ["windows", "linux"], "filterTags": ["CI/CD"], "recommendedFor": ["DevOps Engineer"], "logo": "https://logzbucket.s3.eu-west-1.amazonaws.com/logz-docs/shipper-logos/argo.png", "bundle": [{"type": "GRAFANA_DASHBOARD", "id": "6Gx8npV306IL2WZ4SJRIN4"}], "dataLink": "https://raw.githubusercontent.com/logzio/documentation/master/docs/shipping/CI-CD/argo-cd.md"}, {"id": "Jenkins", "title": "Jenkins", "description": "Jenkins is an automation server for building, testing, and deploying software. This integration allows you to send logs and metrics from your Jenkins servers to your Logz.io account.", "productTags": ["METRICS", "LOG_ANALYTICS"], "osTags": ["windows", "linux"], "filterTags": ["CI/CD"], "logo": "https://logzbucket.s3.eu-west-1.amazonaws.com/logz-docs/shipper-logos/jenkins.png", "bundle": [{"type": "GRAFANA_DASHBOARD", "id": "7bmikAb2xNPTy7PESlBqXY"}], "dataLink": "https://raw.githubusercontent.com/logzio/documentation/master/docs/shipping/CI-CD/jenkins.md"}, {"id": "GitHub", "title": "GitHub", "description": "This integration enable you to collect logs and metrics from github", "productTags": ["LOG_ANALYTICS", "METRICS"], "osTags": ["windows", "linux"], "filterTags": ["CI/CD"], "logo": "https://logzbucket.s3.eu-west-1.amazonaws.com/logz-docs/shipper-logos/github.png", "bundle": [], "dataLink": "https://raw.githubusercontent.com/logzio/documentation/master/docs/shipping/CI-CD/github.md"}, {"id": "OpenVPN-network", "title": "OpenVPN", "description": "OpenVPN is a virtual private network system for secure point-to-point or site-to-site connections.", "productTags": ["METRICS", "SIEM"], "osTags": ["windows", "linux"], "filterTags": ["Network"], "logo": "https://logzbucket.s3.eu-west-1.amazonaws.com/logz-docs/shipper-logos/openvpn.png", "bundle": [], "dataLink": "https://raw.githubusercontent.com/logzio/documentation/master/docs/shipping/Network/openvpn.md"}, {"id": "Synproxy-network", "title": "Synproxy", "description": "Synproxy is a TCP SYN packets proxy. Telegraf is a plug-in driven server agent for collecting and sending metrics and events from databases, systems and IoT sensors.", "productTags": ["METRICS"], "osTags": ["windows", "linux"], "filterTags": ["Network"], "logo": "https://logzbucket.s3.eu-west-1.amazonaws.com/logz-docs/shipper-logos/linux.svg", "bundle": [], "dataLink": "https://raw.githubusercontent.com/logzio/documentation/master/docs/shipping/Network/synproxy.md"}, {"id": "junos-telemetry-interface-network", "title": "Junos Telemetry Interface", "description": "Junos Telemetry Interface (JTI) is a push mechanism to collect operational metrics for monitoring the health of a network that has no scaling limitations. Telegraf is a plug-in driven server agent for collecting and sending metrics and events from databases, systems and IoT sensors.", "productTags": ["LOG_ANALYTICS"], "osTags": ["windows", "linux"], "filterTags": ["Network"], "logo": "https://logzbucket.s3.eu-west-1.amazonaws.com/logz-docs/shipper-logos/juniper.png", "bundle": [], "dataLink": "https://raw.githubusercontent.com/logzio/documentation/master/docs/shipping/Network/junos-telemetry-interface.md"}, {"id": "nlnet-labs-name-server-daemon-network", "title": "NLnet Labs Name Server Daemon", "description": "NLnet Labs Name Server Daemon (NSD) is an authoritative DNS name server. Telegraf is a plug-in driven server agent for collecting and sending metrics and events from databases, systems and IoT sensors.", "productTags": ["METRICS"], "osTags": ["windows", "linux"], "filterTags": ["Network"], "logo": "https://logzbucket.s3.eu-west-1.amazonaws.com/logz-docs/shipper-logos/nsd.png", "bundle": [], "dataLink": "https://raw.githubusercontent.com/logzio/documentation/master/docs/shipping/Network/nlnet-labs-name-server-daemon.md"}, {"id": "Mcrouter-network", "title": "Mcrouter", "description": "Mcrouter is a memcached protocol router for scaling memcached deployments. Telegraf is a plug-in driven server agent for collecting and sending metrics and events from databases, systems and IoT sensors.", "productTags": ["METRICS"], "osTags": ["windows", "linux"], "filterTags": ["Network"], "logo": "https://logzbucket.s3.eu-west-1.amazonaws.com/logz-docs/shipper-logos/mcrouter-logo.png", "bundle": [], "dataLink": "https://raw.githubusercontent.com/logzio/documentation/master/docs/shipping/Network/mcrouter.md"}, {"id": "Juniper-SRX-network", "title": "Juniper SRX", "description": "Juniper SRX is a networking firewall solution and services gateway. If you ship your Juniper firewall logs to your Logz.io Cloud SIEM, you can centralize your security ops and receive alerts about security events logged by Juniper SRX.", "productTags": ["LOG_ANALYTICS", "SIEM"], "osTags": ["windows", "linux"], "filterTags": ["Network"], "logo": "https://logzbucket.s3.eu-west-1.amazonaws.com/logz-docs/shipper-logos/juniper.png", "bundle": [], "dataLink": "https://raw.githubusercontent.com/logzio/documentation/master/docs/shipping/Network/juniper-srx.md"}, {"id": "WireGuard-network", "title": "WireGuard", "description": "WireGuard is a communication protocol and free and open-source software that implements encrypted virtual private networks, and was designed with the goals of ease of use, high speed performance, and low attack surface. Telegraf is a plug-in driven server agent for collecting and sending metrics and events from databases, systems and IoT sensors.", "productTags": ["METRICS"], "osTags": ["windows", "linux"], "filterTags": ["Network"], "logo": "https://logzbucket.s3.eu-west-1.amazonaws.com/logz-docs/shipper-logos/wireguard-logo.png", "bundle": [], "dataLink": "https://raw.githubusercontent.com/logzio/documentation/master/docs/shipping/Network/wireguard.md"}, {"id": "Cloudflare-network", "title": "Cloudflare", "description": "The Cloudflare web application firewall (WAF) protects your internet property against malicious attacks that aim to exploit vulnerabilities such as SQL injection attacks, cross-site scripting, and cross-site forgery requests.", "productTags": ["LOG_ANALYTICS", "SIEM"], "osTags": ["windows", "linux"], "filterTags": ["Network"], "logo": "https://logzbucket.s3.eu-west-1.amazonaws.com/logz-docs/shipper-logos/cloudflare.svg", "bundle": [], "dataLink": "https://raw.githubusercontent.com/logzio/documentation/master/docs/shipping/Network/cloudflare.md"}, {"id": "Unbound-network", "title": "Unbound", "description": "Unbound is a crowdfunding publisher that gives people the tools, support and freedom to bring their ideas to life. Telegraf is a plug-in driven server agent for collecting and sending metrics and events from databases, systems and IoT sensors.", "productTags": ["METRICS"], "osTags": ["windows", "linux"], "filterTags": ["Network"], "logo": "https://logzbucket.s3.eu-west-1.amazonaws.com/logz-docs/shipper-logos/unbound-logo.png", "bundle": [], "dataLink": "https://raw.githubusercontent.com/logzio/documentation/master/docs/shipping/Network/unbound-telegraf.md"}, {"id": "Network-devices-network", "title": "Network Devices", "description": "This integration allows you to send logs from your network devices to your Logz.io account.", "productTags": ["LOG_ANALYTICS"], "osTags": ["windows", "linux"], "filterTags": ["Network"], "logo": "https://logzbucket.s3.eu-west-1.amazonaws.com/logz-docs/shipper-logos/network-device.svg", "bundle": [], "dataLink": "https://raw.githubusercontent.com/logzio/documentation/master/docs/shipping/Network/network-device.md"}, {"id": "VPC-network", "title": "VPC", "description": "VPC Flow Logs is a feature that enables you to capture information about the IP traffic going to and from network interfaces in your VPC. This integration allows you to send these logs to your Logz.io account.", "productTags": ["LOG_ANALYTICS"], "osTags": [], "filterTags": ["Network"], "logo": "https://logzbucket.s3.eu-west-1.amazonaws.com/logz-docs/shipper-logos/vpc.png", "bundle": [], "dataLink": "https://raw.githubusercontent.com/logzio/documentation/master/docs/shipping/Network/vpc.md"}, {"id": "Fluentd-data", "title": "Fluentd", "description": "Fluentd is a data collector, which unifies the data collection and consumption. This integration allows you to use Fluentd to send logs to your Logz.io account.", "productTags": ["LOG_ANALYTICS"], "osTags": ["windows", "linux"], "filterTags": ["Other", "Most Popular"], "logo": "https://logzbucket.s3.eu-west-1.amazonaws.com/logz-docs/shipper-logos/fluentd.svg", "bundle": [], "dataLink": "https://raw.githubusercontent.com/logzio/documentation/master/docs/shipping/Other/fluentd.md"}, {"id": "Phusion-Passenger-data", "title": "Phusion Passenger", "description": "Phusion Passenger is a free web server and application server with support for Ruby, Python and Node.js. Telegraf is a plug-in driven server agent for collecting and sending metrics and events from databases, systems and IoT sensors.", "productTags": ["METRICS"], "osTags": ["windows", "linux"], "filterTags": ["Other"], "logo": "https://logzbucket.s3.eu-west-1.amazonaws.com/logz-docs/shipper-logos/phfusion-logo.png", "bundle": [], "dataLink": "https://raw.githubusercontent.com/logzio/documentation/master/docs/shipping/Other/phusion-passenger.md"}, {"id": "Disque-data", "title": "Disque", "description": "Disque is a distributed message broker. Telegraf is a plug-in driven server agent for collecting and sending metrics and events from databases, systems and IoT sensors.", "productTags": ["METRICS"], "osTags": ["windows", "linux"], "filterTags": ["Other"], "logo": "https://logzbucket.s3.eu-west-1.amazonaws.com/logz-docs/shipper-logos/disque-telegraf.png", "bundle": [], "dataLink": "https://raw.githubusercontent.com/logzio/documentation/master/docs/shipping/Other/disque.md"}, {"id": "Salesforce-Commerce-Cloud-data", "title": "Salesforce Commerce Cloud", "description": "Salesforce Commerce Cloud is a scalable, cloud-based software-as-a-service (SaaS) ecommerce platform. This integration allows you to collect data from Salesforce Commerce Cloud and send it to your Logz.io account.", "productTags": ["METRICS"], "osTags": ["windows", "linux"], "filterTags": ["Other"], "logo": "https://logzbucket.s3.eu-west-1.amazonaws.com/logz-docs/shipper-logos/salesforce-commerce-cloud-logo.png", "bundle": [], "dataLink": "https://raw.githubusercontent.com/logzio/documentation/master/docs/shipping/Other/salesforce-commerce-cloud.md"}, {"id": "Jaeger-data", "title": "Jaeger", "description": "Jaeger is an open-source software that can help you monitor and troubleshoot problems on microservices. Integrate Jaeger with Logz.io to gain more observability into your data, identify if and when issues occur, and resolve them quickly and easily.", "productTags": ["TRACING"], "osTags": ["windows", "linux"], "filterTags": ["Other", "Most Popular"], "logo": "https://logzbucket.s3.eu-west-1.amazonaws.com/logz-docs/shipper-logos/jaeger.svg", "bundle": [], "dataLink": "https://raw.githubusercontent.com/logzio/documentation/master/docs/shipping/Other/jaeger.md"}, {"id": "Prometheus-remote-write", "title": "Prometheus Remote Write", "description": "This integration lets you send Prometheus-format metrics to Logz.io.", "productTags": ["METRICS"], "osTags": ["windows", "linux"], "filterTags": ["Other", "Most Popular"], "logo": "https://dytvr9ot2sszz.cloudfront.net/logz-docs/shipper-logos/prometheusio-icon.svg", "bundle": [], "dataLink": "https://raw.githubusercontent.com/logzio/documentation/master/docs/shipping/Other/prometheus.md"}, {"id": "FPM-data", "title": "FPM", "description": "This integration sends Prometheus-format PHP-FPM metrics to Logz.io.", "productTags": ["METRICS"], "osTags": ["windows", "linux"], "filterTags": ["Other"], "logo": "https://logzbucket.s3.eu-west-1.amazonaws.com/logz-docs/shipper-logos/phpfpm-logo.png", "bundle": [{"type": "GRAFANA_DASHBOARD", "id": "55uVoiaFwAreNAf7DojQZN"}, {"type": "GRAFANA_ALERT", "id": "1A2NfkQQprZqbtzQOVrcO7"}], "dataLink": "https://raw.githubusercontent.com/logzio/documentation/master/docs/shipping/Other/fpm.md"}, {"id": "Apache-Aurora-data", "title": "Apache Aurora", "description": "Collect Aurora metrics using Telegraf", "productTags": ["METRICS"], "osTags": ["windows", "linux"], "filterTags": ["Other"], "logo": "https://logzbucket.s3.eu-west-1.amazonaws.com/logz-docs/shipper-logos/aurora-logo.png", "bundle": [], "dataLink": "https://raw.githubusercontent.com/logzio/documentation/master/docs/shipping/Other/apache-aurora.md"}, {"id": "cURL-data", "title": "cURL", "description": "cURL is a command line utility for transferring data. cURL is a quick and easy way to test your configuration or troubleshoot your connectivity to Logz.io.", "productTags": ["LOG_ANALYTICS"], "osTags": ["windows", "linux"], "filterTags": ["Other", "Most Popular"], "logo": "https://logzbucket.s3.eu-west-1.amazonaws.com/logz-docs/shipper-logos/curl.svg", "bundle": [], "dataLink": "https://raw.githubusercontent.com/logzio/documentation/master/docs/shipping/Other/curl.md"}, {"id": "Aiven-data", "title": "Aiven", "description": "Aiven is a cloud service provider that specializes in managed open-source database, messaging, and event streaming solutions.", "productTags": ["LOG_ANALYTICS"], "osTags": [], "filterTags": ["Other"], "logo": "https://logzbucket.s3.eu-west-1.amazonaws.com/logz-docs/shipper-logos/aiven-logo.png", "bundle": [], "dataLink": "https://raw.githubusercontent.com/logzio/documentation/master/docs/shipping/Other/aiven.md"}, {"id": "invoke-restmethod-data", "title": "Invoke RestMethod", "description": "Invoke-RestMethod is a command to interact with REST APIs in PowerShell. Invoke-RestMethod is a quick and easy way to test your configuration or troubleshoot your connectivity to Logz.io.", "productTags": ["LOG_ANALYTICS"], "osTags": ["windows", "linux"], "filterTags": ["Other"], "logo": "https://logzbucket.s3.eu-west-1.amazonaws.com/logz-docs/shipper-logos/Invoke-RestMethod.png", "bundle": [], "dataLink": "https://raw.githubusercontent.com/logzio/documentation/master/docs/shipping/Other/invoke-restmethod.md"}, {"id": "BUNNY-NET-data", "title": "BUNNY.NET", "description": "BUNNY.NET is a content delivery network offering features and performance with a fast global network. This document describes how to send system logs from your bunny.net pull zones to Logz.io.", "productTags": ["LOG_ANALYTICS"], "osTags": ["windows", "linux"], "filterTags": ["Other"], "logo": "https://logzbucket.s3.eu-west-1.amazonaws.com/logz-docs/shipper-logos/bunny.png", "bundle": [], "dataLink": "https://raw.githubusercontent.com/logzio/documentation/master/docs/shipping/Other/bunny-net.md"}, {"id": "Burrow-data", "title": "Burrow", "description": "Burrow is a monitoring application for Apache Kafka that monitors committed offsets for all consumers and calculates the status of those consumers on demand. It automatically monitors all consumers and their consumed partitions.", "productTags": ["METRICS"], "osTags": ["windows", "linux"], "filterTags": ["Other"], "logo": "https://logzbucket.s3.eu-west-1.amazonaws.com/logz-docs/shipper-logos/kafka.svg", "bundle": [], "dataLink": "https://raw.githubusercontent.com/logzio/documentation/master/docs/shipping/Other/burrow.md"}, {"id": "Intercom-data", "title": "Intercom", "description": "Intercom is a messaging platform with bots, apps, product tours and oher features. Deploy this integration to ship Intercom events from your Intercom account to Logz.io using webhooks.", "productTags": ["METRICS"], "osTags": ["windows", "linux"], "filterTags": ["Other"], "logo": "https://logzbucket.s3.eu-west-1.amazonaws.com/logz-docs/shipper-logos/intercom.png", "bundle": [], "dataLink": "https://raw.githubusercontent.com/logzio/documentation/master/docs/shipping/Other/intercom.md"}, {"id": "confluent", "title": "Confluent Cloud", "description": "This integration allows you to ship Confluent logs to Logz.io using Cloud HTTP Sink.", "productTags": ["LOG_ANALYTICS"], "osTags": ["windows", "linux"], "filterTags": ["Other"], "logo": "https://logzbucket.s3.eu-west-1.amazonaws.com/logz-docs/shipper-logos/confluent.png", "bundle": [], "dataLink": "https://raw.githubusercontent.com/logzio/documentation/master/docs/shipping/Other/confluent.md"}, {"id": "Beats-data", "title": "Beats", "description": "Beats is an open platform that allows you to send data from hundreds or thousands of machines and systems. You can send data from your Beats to Logz.io to add a layer of observability to identify and resolve issues quickly.", "productTags": ["LOG_ANALYTICS"], "osTags": ["windows", "linux"], "filterTags": ["Other"], "logo": "https://logzbucket.s3.eu-west-1.amazonaws.com/logz-docs/shipper-logos/beats.svg", "bundle": [], "dataLink": "https://raw.githubusercontent.com/logzio/documentation/master/docs/shipping/Other/beats.md"}, {"id": "cadvisor", "title": "cAdvisor", "description": "This integration lets you send cAdvisor metrics to Logz.io.", "productTags": ["METRICS"], "osTags": ["windows", "linux"], "filterTags": ["Other", "Most Popular"], "logo": "https://dytvr9ot2sszz.cloudfront.net/logz-docs/shipper-logos/cadvisor.png", "bundle": [], "dataLink": "https://raw.githubusercontent.com/logzio/documentation/master/docs/shipping/Other/cadvisor.md"}, {"id": "Rsyslog-data", "title": "Rsyslog", "description": "Rsyslog is an open-source software utility used on most UNIX and Unix-like computer systems. It offers a great lightweight service to consolidate logs. With Logz.io, you can monitor these logs, identify if and when issues arise, and solve them before they impact your customers.", "productTags": ["LOG_ANALYTICS"], "osTags": ["windows", "linux"], "filterTags": ["Other", "Most Popular"], "logo": "https://logzbucket.s3.eu-west-1.amazonaws.com/logz-docs/shipper-logos/linux.svg", "bundle": [], "dataLink": "https://raw.githubusercontent.com/logzio/documentation/master/docs/shipping/Other/rsyslog.md"}, {"id": "Dovecot-data", "title": "Dovecot", "description": "Dovecot is an open-source IMAP and POP3 server for Unix-like operating systems, written primarily with security in mind. Telegraf is a plug-in driven server agent for collecting and sending metrics and events from databases, systems and IoT sensors.", "productTags": ["METRICS"], "osTags": ["windows", "linux"], "filterTags": ["Other"], "logo": "https://logzbucket.s3.eu-west-1.amazonaws.com/logz-docs/shipper-logos/dovecot.png", "bundle": [], "dataLink": "https://raw.githubusercontent.com/logzio/documentation/master/docs/shipping/Other/dovecot.md"}, {"id": "IPMI-data", "title": "IPMI", "description": "IPMI is a standardized computer system interface used by system administrators to manage a computer system and monitor its operation. Telegraf is a plug-in driven server agent for collecting and sending metrics and events from databases, systems and IoT sensors.", "productTags": ["METRICS"], "osTags": ["windows", "linux"], "filterTags": ["Other"], "logo": "https://logzbucket.s3.eu-west-1.amazonaws.com/logz-docs/shipper-logos/ipmi.png", "bundle": [], "dataLink": "https://raw.githubusercontent.com/logzio/documentation/master/docs/shipping/Other/ipmi.md"}, {"id": "Salesforce-data", "title": "Salesforce", "description": "Salesforce is a customer relationship management solution. The Account sObject is an abstraction of the account record and holds the account field information in memory as an object. This integration allows you to collect sObject data from Salesforce and send it to your Logz.io account.", "productTags": ["METRICS"], "osTags": ["windows", "linux"], "filterTags": ["Other"], "logo": "https://logzbucket.s3.eu-west-1.amazonaws.com/logz-docs/shipper-logos/salesforce-commerce-cloud-logo.png", "bundle": [], "dataLink": "https://raw.githubusercontent.com/logzio/documentation/master/docs/shipping/Other/salesforce.md"}, {"id": "Tengine-data", "title": "Tengine", "description": "Telegraf is a plug-in driven server agent for collecting and sending metrics and events from databases, systems and IoT sensors.", "productTags": ["METRICS"], "osTags": ["windows", "linux"], "filterTags": ["Other"], "logo": "https://logzbucket.s3.eu-west-1.amazonaws.com/logz-docs/shipper-logos/tengine-logo.png", "bundle": [], "dataLink": "https://raw.githubusercontent.com/logzio/documentation/master/docs/shipping/Other/tengine.md"}, {"id": "Youtube-data", "title": "Youtube", "description": "Youtube is an online video sharing and social media platform. Telegraf is a plug-in driven server agent for collecting and sending metrics and events from databases, systems and IoT sensors.", "productTags": ["METRICS"], "osTags": ["windows", "linux"], "filterTags": ["Other"], "logo": "https://logzbucket.s3.eu-west-1.amazonaws.com/logz-docs/shipper-logos/youtube-logo.png", "bundle": [], "dataLink": "https://raw.githubusercontent.com/logzio/documentation/master/docs/shipping/Other/youtube.md"}, {"id": "Microsoft-365-data", "title": "Microsoft 365", "description": "Deploy this integration to send Unified Audit Logging logs from Microsoft 365 to Logz.io.", "productTags": ["LOG_ANALYTICS", "SIEM"], "osTags": ["windows"], "filterTags": ["Other"], "logo": "https://logzbucket.s3.eu-west-1.amazonaws.com/logz-docs/shipper-logos/office365.png", "bundle": [], "dataLink": "https://raw.githubusercontent.com/logzio/documentation/master/docs/shipping/Other/microsoft-365.md"}, {"id": "OpenTelemetry-data", "title": "OpenTelemetry", "description": "OpenTelemetry is a collection of APIs, SDKs, and tools to instrument, generate, collect, and export telemetry data, including logs, metrics, and traces. Logz.io helps you identify anomalies and issues in the data so you can resolve them quickly and easily.", "productTags": ["LOG_ANALYTICS", "METRICS", "TRACING"], "osTags": ["windows", "linux"], "filterTags": ["Other", "Most Popular"], "logo": "https://logzbucket.s3.eu-west-1.amazonaws.com/logz-docs/shipper-logos/opentelemetry-icon-color.png", "bundle": [], "dataLink": "https://raw.githubusercontent.com/logzio/documentation/master/docs/shipping/Other/opentelemetry.md"}, {"id": "Mailchimp-data", "title": "Mailchimp", "description": "Mailchimp is the All-In-One integrated marketing platform for small businesses. Telegraf is a plug-in driven server agent for collecting and sending metrics and events from databases, systems and IoT sensors.", "productTags": ["METRICS"], "osTags": ["windows", "linux"], "filterTags": ["Other"], "logo": "https://logzbucket.s3.eu-west-1.amazonaws.com/logz-docs/shipper-logos/mailchimp.png", "bundle": [], "dataLink": "https://raw.githubusercontent.com/logzio/documentation/master/docs/shipping/Other/mailchimp.md"}, {"id": "Vector-data", "title": "Vector", "description": "Vector by Datadog is a lightweight, ultra-fast tool for building observability pipelines. Deploy this integration to send logs from your Vector tools to your Logz.io account.", "productTags": ["LOG_ANALYTICS"], "osTags": ["windows", "linux"], "filterTags": ["Other"], "logo": "https://logzbucket.s3.eu-west-1.amazonaws.com/logz-docs/shipper-logos/vector.svg", "bundle": [], "dataLink": "https://raw.githubusercontent.com/logzio/documentation/master/docs/shipping/Other/vector.md"}, {"id": "Filebeat-data", "title": "Filebeat", "description": "Filebeat is often the easiest way to get logs from your system to Logz.io. Logz.io has a dedicated configuration wizard to make it simple to configure Filebeat. If you already have Filebeat and you want to add new sources, check out our other shipping instructions to copy&paste just the relevant changes from our code examples.", "productTags": ["LOG_ANALYTICS"], "osTags": ["windows", "linux"], "filterTags": ["Other"], "logo": "https://logzbucket.s3.eu-west-1.amazonaws.com/logz-docs/shipper-logos/beats.svg", "bundle": [], "dataLink": "https://raw.githubusercontent.com/logzio/documentation/master/docs/shipping/Other/filebeat.md"}, {"id": "Logstash-data", "title": "Logstash", "description": "Logstash is an open-source server-side data processing pipeline. This integration can ingest data from multiple sources. With Logz.io, you can monitor Logstash instances and quickly identify if and when issues arise.", "productTags": ["METRICS"], "osTags": ["windows", "linux"], "filterTags": ["Other"], "logo": "https://logzbucket.s3.eu-west-1.amazonaws.com/logz-docs/shipper-logos/logstash_temp.png", "bundle": [], "dataLink": "https://raw.githubusercontent.com/logzio/documentation/master/docs/shipping/Other/logstash.md"}, {"id": "Axonius-data", "title": "Axonius", "description": "This integration sends system logs from your Axonius platform to Logz.io.", "productTags": ["LOG_ANALYTICS", "SIEM"], "osTags": ["windows", "linux"], "filterTags": ["Other"], "logo": "https://logzbucket.s3.eu-west-1.amazonaws.com/logz-docs/shipper-logos/axonius.png", "bundle": [], "dataLink": "https://raw.githubusercontent.com/logzio/documentation/master/docs/shipping/Other/axonius.md"}, {"id": "Fluent-Bit-data", "title": "Fluent Bit", "description": "Fluent Bit is an open source Log Processor and Forwarder which allows you to collect any data like metrics and logs from different sources. This integration allows you to send logs from Fluent Bit running as a standalone app and forward them to your Logz.io account.", "productTags": ["LOG_ANALYTICS"], "osTags": ["windows", "linux"], "filterTags": ["Other"], "logo": "https://logzbucket.s3.eu-west-1.amazonaws.com/logz-docs/shipper-logos/fluent-bit.svg", "bundle": [], "dataLink": "https://raw.githubusercontent.com/logzio/documentation/master/docs/shipping/Other/fluent-bit.md"}, {"id": "uWSGI-data", "title": "uWSGI", "description": "uWSGI is a software application that aims at developing a full stack for building hosting services. Telegraf is a plug-in driven server agent for collecting and sending metrics and events from databases, systems and IoT sensors.", "productTags": ["METRICS"], "osTags": ["windows", "linux"], "filterTags": ["Other"], "logo": "https://logzbucket.s3.eu-west-1.amazonaws.com/logz-docs/shipper-logos/uwsgi-logo1.png", "bundle": [], "dataLink": "https://raw.githubusercontent.com/logzio/documentation/master/docs/shipping/Other/uWSGI-telegraf.md"}, {"id": "Telegraf", "title": "Telegraf", "description": "This integration lets you send Prometheus-format metrics to Logz.io.", "productTags": ["METRICS"], "osTags": ["windows", "linux"], "filterTags": ["Other", "Most Popular"], "logo": "https://logzbucket.s3.eu-west-1.amazonaws.com/logz-docs/shipper-logos/mascot-telegraf.png", "bundle": [{"type": "GRAFANA_DASHBOARD", "id": "32X5zm8qW7ByLlp1YPFkrJ"}], "dataLink": "https://raw.githubusercontent.com/logzio/documentation/master/docs/shipping/Other/telegraf.md"}, {"id": "NVIDIA-data", "title": "NVIDIA", "description": "NVIDIA System Management Interface (nvidia-smi) is a command line utility, based on top of the NVIDIA Management Library (NVML), intended to aid in the management and monitoring of NVIDIA GPU devices. Telegraf is a plug-in driven server agent for collecting and sending metrics and events from databases, systems and IoT sensors.", "productTags": ["METRICS"], "osTags": ["windows", "linux"], "filterTags": ["Other"], "logo": "https://logzbucket.s3.eu-west-1.amazonaws.com/logz-docs/shipper-logos/nvidia.png", "bundle": [], "dataLink": "https://raw.githubusercontent.com/logzio/documentation/master/docs/shipping/Other/nvidia.md"}, {"id": "BigBlueButton-data", "title": "BigBlueButton", "description": "BigBlueButton is a free software web conferencing system for Linux servers. Telegraf is a plug-in driven server agent for collecting and sending metrics and events from databases, systems and IoT sensors.", "productTags": ["METRICS"], "osTags": ["windows", "linux"], "filterTags": ["Other"], "logo": "https://logzbucket.s3.eu-west-1.amazonaws.com/logz-docs/shipper-logos/bigbluebutton-logo.png", "bundle": [], "dataLink": "https://raw.githubusercontent.com/logzio/documentation/master/docs/shipping/Other/bigbluebutton.md"}, {"id": "Microsoft-Graph-data", "title": "Microsoft Graph", "description": "Microsoft Graph is a RESTful web API that enables you to access Microsoft Cloud service resources. This integration allows you to collect data from Microsoft Graph API and send it to your Logz.io account.", "productTags": ["LOG_ANALYTICS", "SIEM"], "osTags": ["windows"], "filterTags": ["Other"], "logo": "https://logzbucket.s3.eu-west-1.amazonaws.com/logz-docs/shipper-logos/graph-api-logo.png", "bundle": [], "dataLink": "https://raw.githubusercontent.com/logzio/documentation/master/docs/shipping/Other/microsoft-graph.md"}, {"id": "Hashicorp-Consul-data", "title": "Hashicorp Consul", "description": "This project lets you configure the OpenTelemetry collector to send your Prometheus-format metrics from Hashicorp Consul to Logz.io.", "productTags": ["METRICS"], "osTags": ["windows", "linux"], "filterTags": ["Other"], "logo": "https://logzbucket.s3.eu-west-1.amazonaws.com/logz-docs/shipper-logos/consul-logo.png", "bundle": [], "dataLink": "https://raw.githubusercontent.com/logzio/documentation/master/docs/shipping/Other/consul.md"}, {"id": "Heroku-data", "title": "Heroku", "description": "Heroku is a platform as a service (PaaS) that enables developers to build, run, and operate applications entirely in the cloud. This integration allows you to send logs from your Heroku applications to your Logz.io account.", "productTags": ["LOG_ANALYTICS", "METRICS"], "osTags": [], "filterTags": ["Other"], "logo": "https://logzbucket.s3.eu-west-1.amazonaws.com/logz-docs/shipper-logos/heroku.svg", "bundle": [], "dataLink": "https://raw.githubusercontent.com/logzio/documentation/master/docs/shipping/Other/heroku.md"}, {"id": "prometheus-alerts-migrator", "title": "Prometheus Alerts Migrator", "description": "This Helm chart deploys the Prometheus Alerts Migrator as a Kubernetes controller, which automates the migration of Prometheus alert rules to Logz.io's alert format, facilitating monitoring and alert management in a Logz.io integrated environment.", "productTags": ["METRICS"], "osTags": ["windows", "linux"], "filterTags": ["Other"], "logo": "https://dytvr9ot2sszz.cloudfront.net/logz-docs/shipper-logos/prometheusio-icon.svg", "bundle": [], "dataLink": "https://raw.githubusercontent.com/logzio/documentation/master/docs/shipping/Other/prometheus-alerts-migrator.md"}, {"id": "Sysmon-data", "title": "Sysmon (System Monitor) via Winlogbeat", "description": "Sysmon (System Monitor) is a Windows system service that monitors and logs system activity of the Windows event log. It tracks process creations, network connections, and changes to file creation time.", "productTags": ["LOG_ANALYTICS", "SIEM"], "osTags": ["windows"], "filterTags": ["Other"], "logo": "https://logzbucket.s3.eu-west-1.amazonaws.com/logz-docs/shipper-logos/windows.svg", "bundle": [], "dataLink": "https://raw.githubusercontent.com/logzio/documentation/master/docs/shipping/Other/sysmon.md"}, {"id": "Redfish-data", "title": "Redfish", "description": "DMTF's Redfish is a standard designed to deliver simple and secure management for converged, hybrid IT and the Software Defined Data Center (SDDC).Telegraf is a plug-in driven server agent for collecting and sending metrics and events from databases, systems and IoT sensors.", "productTags": ["METRICS"], "osTags": ["windows", "linux"], "filterTags": ["Other"], "logo": "https://logzbucket.s3.eu-west-1.amazonaws.com/logz-docs/shipper-logos/redfish-logo.png", "bundle": [], "dataLink": "https://raw.githubusercontent.com/logzio/documentation/master/docs/shipping/Other/redfish.md"}, {"id": "Bond-data", "title": "Bond", "description": "This integration allows you to collects metrics from all bond interfaces in your network. Telegraf is a plug-in driven server agent for collecting and sending metrics and events from databases, systems and IoT sensors.", "productTags": ["METRICS"], "osTags": ["windows", "linux"], "filterTags": ["Other"], "logo": "https://logzbucket.s3.eu-west-1.amazonaws.com/logz-docs/shipper-logos/bond-logo.png", "bundle": [], "dataLink": "https://raw.githubusercontent.com/logzio/documentation/master/docs/shipping/Other/bond.md"}, {"id": "Neptune-apex-iot", "title": "Neptune Apex", "description": "Neptune Apex is an aquarium control system. Telegraf is a plug-in driven server agent for collecting and sending metrics and events from databases, systems and IoT sensors.", "productTags": ["METRICS"], "osTags": ["windows", "linux"], "filterTags": ["IoT"], "logo": "https://logzbucket.s3.eu-west-1.amazonaws.com/logz-docs/shipper-logos/neptune.png", "bundle": [], "dataLink": "https://raw.githubusercontent.com/logzio/documentation/master/docs/shipping/IoT/neptune-apex.md"}, {"id": "Auth0", "title": "Auth0", "description": "Auth0 is an easy to implement, adaptable authentication and authorization platform. Deploy this integration to ship Auth0 events from your Auth0 account to Logz.io using custom log stream via webhooks.", "productTags": ["LOG_ANALYTICS", "SIEM"], "osTags": ["windows", "linux"], "filterTags": ["Access Management"], "logo": "https://logzbucket.s3.eu-west-1.amazonaws.com/logz-docs/shipper-logos/auth0.png", "bundle": [], "dataLink": "https://raw.githubusercontent.com/logzio/documentation/master/docs/shipping/Access-Management/auth0.md"}, {"id": "Okta", "title": "Okta", "description": "Okta is an enterprise-grade, identity management service, built for the cloud, but compatible with many on-premises applications.", "productTags": ["LOG_ANALYTICS", "SIEM"], "osTags": ["windows", "linux"], "filterTags": ["Access Management"], "logo": "https://logzbucket.s3.eu-west-1.amazonaws.com/logz-docs/shipper-logos/okta.png", "bundle": [], "dataLink": "https://raw.githubusercontent.com/logzio/documentation/master/docs/shipping/Access-Management/okta.md"}, {"id": "OneLogin", "title": "OneLogin", "description": "OneLogin is a cloud-based identity and access management (IAM) provider. This integration allows you to ship logs from your OneLogin account to your Logz.io account.", "productTags": ["LOG_ANALYTICS", "SIEM"], "osTags": ["windows", "linux"], "filterTags": ["Access Management"], "logo": "https://logzbucket.s3.eu-west-1.amazonaws.com/logz-docs/shipper-logos/onelogin.png", "bundle": [], "dataLink": "https://raw.githubusercontent.com/logzio/documentation/master/docs/shipping/Access-Management/onelogin.md"}, {"id": "JumpCloud", "title": "JumpCloud", "description": "JumpCloud is a cloud-based platform for identity and access management. Deploy this integration to ship JumpCloud events to Logz.io.", "productTags": ["LOG_ANALYTICS", "SIEM"], "osTags": ["windows", "linux"], "filterTags": ["Access Management"], "logo": "https://logzbucket.s3.eu-west-1.amazonaws.com/logz-docs/shipper-logos/jumpcloud.png", "bundle": [], "dataLink": "https://raw.githubusercontent.com/logzio/documentation/master/docs/shipping/Access-Management/jumpcloud.md"}, {"id": "Active-Directory", "title": "Active Directory via Winlogbeat", "description": "Active Directory is a directory service developed by Microsoft for Windows domain networks. This integration allows you to send Active Directory logs to your Logz.io SIEM account.", "productTags": ["LOG_ANALYTICS", "SIEM"], "osTags": ["windows"], "filterTags": ["Access Management"], "logo": "https://logzbucket.s3.eu-west-1.amazonaws.com/logz-docs/shipper-logos/windows.svg", "bundle": [], "dataLink": "https://raw.githubusercontent.com/logzio/documentation/master/docs/shipping/Access-Management/active-directory.md"}, {"id": "Ceph", "title": "Ceph", "description": "Ceph is an open-source software (software-defined storage) storage platform, implements object storage on a single distributed computer cluster, and provides 3-in-1 interfaces for object-, block- and file-level storage. Telegraf is a plug-in driven server agent for collecting and sending metrics and events from databases, systems and IoT sensors.", "productTags": ["METRICS"], "osTags": ["windows", "linux"], "filterTags": ["Data Store"], "logo": "https://logzbucket.s3.eu-west-1.amazonaws.com/logz-docs/shipper-logos/ceph-logo.png", "bundle": [], "dataLink": "https://raw.githubusercontent.com/logzio/documentation/master/docs/shipping/Data-Store/ceph.md"}, {"id": "Elasticsearch", "title": "Elasticsearch", "description": "Elasticsearch is a search engine based on the Lucene library. Telegraf is a plug-in driven server agent for collecting and sending metrics and events from databases, systems and IoT sensors.", "productTags": ["METRICS"], "osTags": ["windows", "linux"], "filterTags": ["Data Store"], "logo": "https://logzbucket.s3.eu-west-1.amazonaws.com/logz-docs/shipper-logos/elasticsearch.png", "bundle": [], "dataLink": "https://raw.githubusercontent.com/logzio/documentation/master/docs/shipping/Data-Store/elasticsearch.md"}, {"id": "apache-couchdb", "title": "Apache CouchDB", "description": "Apache CouchDB is an open-source document-oriented NoSQL database, implemented in Erlang.", "productTags": ["METRICS"], "osTags": ["windows", "linux"], "filterTags": ["Data Store"], "logo": "https://logzbucket.s3.eu-west-1.amazonaws.com/logz-docs/shipper-logos/couchdb.png", "bundle": [], "dataLink": "https://raw.githubusercontent.com/logzio/documentation/master/docs/shipping/Data-Store/apache-couchdb.md"}, {"id": "MongoDB-Atlas", "title": "MongoDB Atlas", "description": "MongoDB Atlas is a fully-managed cloud database that handles deploying, managing and healing deployments on its cloud service provider.", "productTags": ["METRICS"], "osTags": ["windows", "linux"], "filterTags": ["Data Store"], "logo": "https://logzbucket.s3.eu-west-1.amazonaws.com/logz-docs/shipper-logos/mongoatlas-logo.png", "bundle": [], "dataLink": "https://raw.githubusercontent.com/logzio/documentation/master/docs/shipping/Data-Store/mongodb-atlas.md"}, {"id": "ZFS", "title": "ZFS", "description": "ZFS combines a file system with a volume manager. Telegraf is a plug-in driven server agent for collecting and sending metrics and events from databases, systems and IoT sensors.", "productTags": ["METRICS"], "osTags": ["windows", "linux"], "filterTags": ["Data Store"], "logo": "https://logzbucket.s3.eu-west-1.amazonaws.com/logz-docs/shipper-logos/zfs-logo.png", "bundle": [], "dataLink": "https://raw.githubusercontent.com/logzio/documentation/master/docs/shipping/Data-Store/zfs.md"}, {"id": "MongoDB", "title": "MongoDB", "description": "MongoDB is a source-available cross-platform document-oriented database program. This integration lets you send logs and metrics from your MongoDB instances to your Logz.io account.", "productTags": ["LOG_ANALYTICS", "METRICS"], "osTags": ["windows", "linux"], "filterTags": ["Data Store"], "logo": "https://logzbucket.s3.eu-west-1.amazonaws.com/logz-docs/shipper-logos/mongo-logo.png", "bundle": [], "dataLink": "https://raw.githubusercontent.com/logzio/documentation/master/docs/shipping/Data-Store/mongodb.md"}, {"id": "Solr", "title": "Solr", "description": "Solr is an open-source enterprise-search platform, written in Java. Telegraf is a plug-in driven server agent for collecting and sending metrics and events from databases, systems and IoT sensors.", "productTags": ["METRICS"], "osTags": ["Search Platform"], "filterTags": ["Data Store"], "logo": "https://logzbucket.s3.eu-west-1.amazonaws.com/logz-docs/shipper-logos/solr-logo.png", "bundle": [], "dataLink": "https://raw.githubusercontent.com/logzio/documentation/master/docs/shipping/Data-Store/solr.md"}, {"id": "etcd", "title": "etcd", "description": "etcd is an open source, distributed, consistent key-value store for shared configuration, service discovery, and scheduler coordination of distributed systems or clusters of machines. Telegraf is a plug-in driven server agent for collecting and sending metrics and events from databases, systems and IoT sensors.", "productTags": ["METRICS"], "osTags": ["windows", "linux"], "filterTags": ["Data Store"], "logo": "https://logzbucket.s3.eu-west-1.amazonaws.com/logz-docs/shipper-logos/etcd-logo.png", "bundle": [{"type": "GRAFANA_DASHBOARD", "id": "3Vr8IYt2XR2LEKP6PeVV0r"}], "dataLink": "https://raw.githubusercontent.com/logzio/documentation/master/docs/shipping/Data-Store/etcd.md"}, {"id": "Service-Performance-Monitoring-App360", "title": "App360", "description": "This integration allows you to configure App360 with OpenTelemetry collector and send data from your OpenTelemetry installation to Logz.io.", "productTags": ["TRACING"], "osTags": ["windows", "linux"], "filterTags": ["Other"], "logo": "https://logzbucket.s3.eu-west-1.amazonaws.com/logz-docs/shipper-logos/span-metrics.png", "bundle": [{"type": "GRAFANA_DASHBOARD", "id": "40ZpsSfzfGhbguMYoxwOqm"}, {"type": "GRAFANA_DASHBOARD", "id": "5PFq9YHx2iQkwVMLCMOmjJ"}], "dataLink": "https://raw.githubusercontent.com/logzio/documentation/master/docs/shipping/App360/App360.md"}, {"id": "AWS-WAF", "title": "AWS WAF", "description": "Ship your AWS WAF logs to Logz.io.", "productTags": ["LOG_ANALYTICS", "SIEM"], "osTags": ["windows", "linux"], "filterTags": ["AWS", "Security"], "logo": "https://logzbucket.s3.eu-west-1.amazonaws.com/logz-docs/shipper-logos/AWS-WAF.svg", "bundle": [], "dataLink": "https://raw.githubusercontent.com/logzio/documentation/master/docs/shipping/AWS/aws-waf.md"}, {"id": "AWS-CloudFront", "title": "AWS CloudFront", "description": "Send your Amazon CloudFront metrics to Logz.io.", "productTags": ["LOG_ANALYTICS", "METRICS"], "osTags": [], "filterTags": ["AWS", "Network"], "logo": "https://logzbucket.s3.eu-west-1.amazonaws.com/logz-docs/shipper-logos/aws-cloudfront.svg", "bundle": [{"type": "GRAFANA_DASHBOARD", "id": "3MJWDTivgQCNz3DQIj3Kry"}], "dataLink": "https://raw.githubusercontent.com/logzio/documentation/master/docs/shipping/AWS/aws-cloudfront.md"}, {"id": "AWS-EC2", "title": "AWS EC2", "description": "Send your Amazon EC2 logs and metrics to Logz.io.", "productTags": ["LOG_ANALYTICS", "METRICS"], "osTags": ["windows", "linux"], "filterTags": ["AWS", "Compute"], "recommendedFor": ["DevOps Engineer"], "logo": "https://logzbucket.s3.eu-west-1.amazonaws.com/logz-docs/shipper-logos/aws-ec2.svg", "bundle": [{"type": "GRAFANA_DASHBOARD", "id": "2VNLppOm4XOFwVouv8dorr"}, {"type": "GRAFANA_ALERT", "id": "hWld33IEO6gZMpp2e4vs0"}], "dataLink": "https://raw.githubusercontent.com/logzio/documentation/master/docs/shipping/AWS/aws-ec2.md"}, {"id": "AWS-mq", "title": "AWS MQ", "description": "This integration sends your Amazon MQ logs and metrics to Logz.io.", "productTags": ["METRICS", "LOG_ANALYTICS"], "osTags": [], "filterTags": ["AWS", "Distributed Messaging"], "logo": "https://logzbucket.s3.eu-west-1.amazonaws.com/logz-docs/shipper-logos/aws-mq.svg", "bundle": [{"type": "GRAFANA_DASHBOARD", "id": "1xglfXxBurNsVZIla5zRnS"}], "dataLink": "https://raw.githubusercontent.com/logzio/documentation/master/docs/shipping/AWS/aws-mq.md"}, {"id": "GuardDuty", "title": "GuardDuty", "description": "This integration sends GuardDuty logs.", "productTags": ["LOG_ANALYTICS", "SIEM"], "osTags": ["windows", "linux"], "filterTags": ["AWS", "Security"], "logo": "https://logzbucket.s3.eu-west-1.amazonaws.com/logz-docs/shipper-logos/aws-guardduty.png", "bundle": [], "dataLink": "https://raw.githubusercontent.com/logzio/documentation/master/docs/shipping/AWS/aws-guardduty.md"}, {"id": "AWS-API-Gateway", "title": "AWS API Gateway", "description": "This integration creates a Kinesis Data Firehose delivery stream that links to your Amazon API Gateway metrics stream and then sends the metrics to your Logz.io account. It also creates a Lambda function that adds AWS namespaces to the metric stream, and a Lambda function that collects and ships the resources' tags.", "productTags": ["METRICS", "LOG_ANALYTICS"], "osTags": [], "filterTags": ["AWS", "Access Management", "Most Popular"], "logo": "https://logzbucket.s3.eu-west-1.amazonaws.com/logz-docs/shipper-logos/aws-api-gateway.svg", "bundle": [{"type": "GRAFANA_DASHBOARD", "id": "7234Vgs9rITAlaHJH5iqOw"}], "dataLink": "https://raw.githubusercontent.com/logzio/documentation/master/docs/shipping/AWS/aws-api-gateway.md"}, {"id": "AWS-CloudFormation", "title": "AWS CloudFormation", "description": "Send your Amazon CloudFront metrics to Logz.io.", "productTags": ["LOG_ANALYTICS", "METRICS"], "osTags": [], "filterTags": ["AWS", "Network"], "logo": "https://logzbucket.s3.eu-west-1.amazonaws.com/logz-docs/shipper-logos/aws-cloudformation.svg", "bundle": [], "dataLink": "https://raw.githubusercontent.com/logzio/documentation/master/docs/shipping/AWS/aws-cloudformation.md"}, {"id": "Lambda-extension-go", "title": "Traces from Go on AWS Lambda using OpenTelemetry", "description": "This integration to auto-instrument your Go application running on AWS Lambda and send the traces to your Logz.io account.", "productTags": ["TRACING"], "osTags": ["windows", "linux"], "filterTags": ["AWS", "Compute"], "logo": "https://logzbucket.s3.eu-west-1.amazonaws.com/logz-docs/shipper-logos/AWS-Lambda.svg", "bundle": [], "dataLink": "https://raw.githubusercontent.com/logzio/documentation/master/docs/shipping/AWS/aws-lambda-extension-go.md"}, {"id": "Amazon-ElastiCache", "title": "AWS ElastiCache", "description": "Send your Amazon ElastiCache metrics to Logz.io.", "productTags": ["METRICS"], "osTags": ["windows", "linux"], "filterTags": ["AWS", "Memory Caching"], "logo": "https://logzbucket.s3.eu-west-1.amazonaws.com/logz-docs/shipper-logos/Amazon-ElastiCache.svg", "bundle": [], "dataLink": "https://raw.githubusercontent.com/logzio/documentation/master/docs/shipping/AWS/aws-elasticache.md"}, {"id": "AWS-MSK", "title": "AWS MSK", "description": "This integration sends your Amazon MSK logs and metrics to Logz.io.", "productTags": ["METRICS", "LOG_ANALYTICS"], "osTags": ["windows", "linux"], "filterTags": ["AWS", "Distributed Messaging"], "logo": "https://logzbucket.s3.eu-west-1.amazonaws.com/logz-docs/shipper-logos/aws-msk.png", "bundle": [{"type": "GRAFANA_DASHBOARD", "id": "2EGM4H9wch68bVy1vm4oxb"}], "dataLink": "https://raw.githubusercontent.com/logzio/documentation/master/docs/shipping/AWS/aws-msk.md"}, {"id": "AWS-ECS", "title": "AWS ECS", "description": "Send your Amazon ECS logs and metrics to Logz.io.", "productTags": ["LOG_ANALYTICS", "METRICS"], "osTags": ["windows", "linux"], "filterTags": ["AWS", "Compute", "Containers"], "logo": "https://logzbucket.s3.eu-west-1.amazonaws.com/logz-docs/shipper-logos/aws-ecs.svg", "bundle": [{"type": "GRAFANA_DASHBOARD", "id": "4pY46CjyNMoHWGB3gjgQWd"}], "dataLink": "https://raw.githubusercontent.com/logzio/documentation/master/docs/shipping/AWS/aws-ecs.md"}, {"id": "aws-vpn", "title": "AWS VPN", "description": "This integration creates a Kinesis Data Firehose delivery stream that links to your Amazon VPN metrics stream and then sends the metrics to your Logz.io account. It also creates a Lambda function that adds AWS namespaces to the metric stream, and a Lambda function that collects and ships the resources' tags.", "productTags": ["METRICS"], "osTags": ["windows", "linux"], "filterTags": ["AWS", "Network"], "logo": "https://logzbucket.s3.eu-west-1.amazonaws.com/logz-docs/shipper-logos/aws-vpn.png", "bundle": [{"type": "GRAFANA_DASHBOARD", "id": "4nSubW6qKSqV8Pq367JQca"}], "dataLink": "https://raw.githubusercontent.com/logzio/documentation/master/docs/shipping/AWS/aws-vpn.md"}, {"id": "AWS-FSx", "title": "AWS FSx", "description": "This integration sends your Amazon FSx logs and metrics to Logz.io.", "productTags": ["METRICS", "LOG_ANALYTICS"], "osTags": ["windows", "linux"], "filterTags": ["AWS", "Data Store"], "logo": "https://dytvr9ot2sszz.cloudfront.net/logz-docs/shipper-logos/aws-fsx.svg", "bundle": [{"type": "GRAFANA_DASHBOARD", "id": "6rVrCJsVXljHWg7wZo51HT"}], "dataLink": "https://raw.githubusercontent.com/logzio/documentation/master/docs/shipping/AWS/aws-fsx.md"}, {"id": "AWS-RDS", "title": "AWS RDS", "description": "This integration sends AWS RDS logs and metrics to your Logz.io account.", "productTags": ["LOG_ANALYTICS", "METRICS"], "osTags": ["windows", "linux"], "filterTags": ["AWS", "Database"], "logo": "https://logzbucket.s3.eu-west-1.amazonaws.com/logz-docs/shipper-logos/aws-rds.svg", "bundle": [{"type": "OSD_DASHBOARD", "id": "2IzSk7ZLwhRFwaqAQg4e2U"}, {"type": "GRAFANA_DASHBOARD", "id": "5azSSei1AhiJPCV7yptVI7"}], "dataLink": "https://raw.githubusercontent.com/logzio/documentation/master/docs/shipping/AWS/aws-rds.md"}, {"id": "AWS-CloudTrail", "title": "AWS CloudTrail", "description": "AWS Cloudtrail enables governance, compliance, operational auditing, and risk auditing of your Amazon Web Services account. Integrate it with Logz.io to monitor your Cloudtrail logs and metrics and know if and when issues arise.", "productTags": ["LOG_ANALYTICS", "METRICS", "SIEM"], "osTags": ["windows", "linux"], "filterTags": ["AWS", "Security", "Most Popular"], "logo": "https://logzbucket.s3.eu-west-1.amazonaws.com/logz-docs/shipper-logos/aws-cloudtrail.svg", "bundle": [], "dataLink": "https://raw.githubusercontent.com/logzio/documentation/master/docs/shipping/AWS/aws-cloudtrail.md"}, {"id": "AWS-EBS", "title": "AWS EBS", "description": "Send your Amazon EBS metrics to Logz.io.", "productTags": ["METRICS"], "osTags": ["windows", "linux"], "filterTags": ["AWS", "Data Store"], "logo": "https://logzbucket.s3.eu-west-1.amazonaws.com/logz-docs/shipper-logos/aws-ebs.svg", "bundle": [{"type": "GRAFANA_DASHBOARD", "id": "6WqwxluZ76GXXPut0GHGKH"}], "dataLink": "https://raw.githubusercontent.com/logzio/documentation/master/docs/shipping/AWS/aws-ebs.md"}, {"id": "AWS-Control-Tower", "title": "AWS Control Tower", "description": "AWS Control Tower is a tool to control a top-level summary of policies applied to the AWS environment.", "productTags": ["METRICS"], "osTags": ["windows", "linux"], "filterTags": ["AWS", "Access Management"], "logo": "https://logzbucket.s3.eu-west-1.amazonaws.com/logz-docs/shipper-logos/aws-control-tower.png", "bundle": [{"type": "GRAFANA_DASHBOARD", "id": "7bHNddlAK5q8Iya7xIhbbU"}], "dataLink": "https://raw.githubusercontent.com/logzio/documentation/master/docs/shipping/AWS/aws-control-tower.md"}, {"id": "Lambda-extensions", "title": "Lambda Extensions", "description": "The Logz.io Lambda extension for logs, uses the AWS Extensions API and AWS Logs API and sends your Lambda Function Logs directly to your Logz.io account.", "productTags": ["LOG_ANALYTICS"], "osTags": ["windows", "linux"], "filterTags": ["AWS", "Compute"], "logo": "https://logzbucket.s3.eu-west-1.amazonaws.com/logz-docs/shipper-logos/AWS-Lambda.svg", "bundle": [], "dataLink": "https://raw.githubusercontent.com/logzio/documentation/master/docs/shipping/AWS/aws-lambda-extensions.md"}, {"id": "AWS-Security-Hub", "title": "AWS Security Hub", "description": "This integration ships events from AWS Security Hub to Logz.io. It will automatically deploy resources to your AWS Account.", "productTags": ["LOG_ANALYTICS", "SIEM"], "osTags": ["windows", "linux"], "filterTags": ["AWS", "Security"], "logo": "https://logzbucket.s3.eu-west-1.amazonaws.com/logz-docs/shipper-logos/aws.svg", "bundle": [], "dataLink": "https://raw.githubusercontent.com/logzio/documentation/master/docs/shipping/AWS/aws-security-hub.md"}, {"id": "AWS-S3-Access", "title": "AWS S3 Access", "description": "Amazon S3 Access Logs provide detailed records about requests that are made to your S3 bucket. This integration allows you to send these logs to your Logz.io account.", "productTags": ["LOG_ANALYTICS"], "osTags": ["windows", "linux"], "filterTags": ["AWS", "Data Store"], "logo": "https://logzbucket.s3.eu-west-1.amazonaws.com/logz-docs/shipper-logos/aws-s3.svg", "bundle": [], "dataLink": "https://raw.githubusercontent.com/logzio/documentation/master/docs/shipping/AWS/aws-s3-access.md"}, {"id": "AWS-cross-account", "title": "AWS Cross Account", "description": "Deploy this integration to simultaneously ship logs from multiple AWS accounts to Logz.io.", "productTags": ["LOG_ANALYTICS"], "osTags": ["windows", "linux"], "filterTags": ["AWS", "Access Management"], "logo": "https://logzbucket.s3.eu-west-1.amazonaws.com/logz-docs/shipper-logos/aws-cloudwatch.svg", "bundle": [], "dataLink": "https://raw.githubusercontent.com/logzio/documentation/master/docs/shipping/AWS/aws-cross-account.md"}, {"id": "Amazon-Classic-ELB", "title": "AWS Classic ELB", "description": "Send your AWS Classic ELB logs and metrics to Logz.io.", "productTags": ["LOG_ANALYTICS", "METRICS"], "osTags": ["windows", "linux"], "filterTags": ["AWS", "Load Balancer"], "logo": "https://logzbucket.s3.eu-west-1.amazonaws.com/logz-docs/shipper-logos/aws-classic-elb.svg", "bundle": [{"type": "GRAFANA_DASHBOARD", "id": "5oFBj0BIKo4M5XLZpwjSgl"}], "dataLink": "https://raw.githubusercontent.com/logzio/documentation/master/docs/shipping/AWS/aws-classic-elb.md"}, {"id": "aws-eks", "title": "AWS EKS", "description": "Send Kubernetes logs, metrics and traces to Logz.io.", "productTags": ["LOG_ANALYTICS", "METRICS", "TRACING"], "osTags": ["windows", "linux"], "filterTags": ["AWS", "Orchestration"], "logo": "https://logzbucket.s3.eu-west-1.amazonaws.com/logz-docs/shipper-logos/aws-eks.svg", "bundle": [], "dataLink": "https://raw.githubusercontent.com/logzio/documentation/master/docs/shipping/AWS/aws-eks.md"}, {"id": "AWS-Network-ELB", "title": "AWS Network ELB", "description": "Send your AWS Network ELB logs and metrics to Logz.io.", "productTags": ["LOG_ANALYTICS", "METRICS"], "osTags": ["windows", "linux"], "filterTags": ["AWS", "Load Balancer"], "logo": "https://logzbucket.s3.eu-west-1.amazonaws.com/logz-docs/shipper-logos/elb-network.svg", "bundle": [{"type": "GRAFANA_DASHBOARD", "id": "5pihdWdmBYQ1i7AbU9po2R"}], "dataLink": "https://raw.githubusercontent.com/logzio/documentation/master/docs/shipping/AWS/aws-network-elb.md"}, {"id": "Amazon-EC2-Auto-Scaling", "title": "AWS EC2 Auto Scaling", "description": "This integration sends your Amazon EC2 Auto Scaling logs and metrics to Logz.io.", "productTags": ["METRICS"], "osTags": ["windows", "linux"], "filterTags": ["AWS", "Compute"], "logo": "https://logzbucket.s3.eu-west-1.amazonaws.com/logz-docs/shipper-logos/aws-ec2-auto-scaling.svg", "bundle": [{"type": "GRAFANA_DASHBOARD", "id": "2VNLppOm4XOFwVouv8dorr"}], "dataLink": "https://raw.githubusercontent.com/logzio/documentation/master/docs/shipping/AWS/aws-ec2-auto-scaling.md"}, {"id": "AWS-Route-53", "title": "AWS Route 53", "description": "This integration sends your Amazon Route 53 logs and metrics to Logz.io.", "productTags": ["METRICS", "LOG_ANALYTICS"], "osTags": ["windows", "linux"], "filterTags": ["AWS", "Network"], "logo": "https://logzbucket.s3.eu-west-1.amazonaws.com/logz-docs/shipper-logos/Amazon-Route-53.svg", "bundle": [{"type": "GRAFANA_DASHBOARD", "id": "Tnb9WjjHnI3COgp08Wsin"}], "dataLink": "https://raw.githubusercontent.com/logzio/documentation/master/docs/shipping/AWS/aws-route53.md"}, {"id": "AWS-Redshift", "title": "AWS Redshift", "description": "This integration creates a Kinesis Data Firehose delivery stream that links to your Amazon Redshift metrics stream and then sends the metrics to your Logz.io account. It also creates a Lambda function that adds AWS namespaces to the metric stream, and a Lambda function that collects and ships the resources' tags.", "productTags": ["METRICS"], "osTags": ["windows", "linux"], "filterTags": ["AWS", "Data Store"], "logo": "https://logzbucket.s3.eu-west-1.amazonaws.com/logz-docs/shipper-logos/Amazon-Redshift.svg", "bundle": [], "dataLink": "https://raw.githubusercontent.com/logzio/documentation/master/docs/shipping/AWS/aws-redshift.md"}, {"id": "AWS-ElastiCache-Redis", "title": "AWS ElastiCache for Redis", "description": "Send your Amazon ElastiCache for Redis metrics to Logz.io.", "productTags": ["METRICS"], "osTags": ["windows", "linux"], "filterTags": ["AWS", "Memory Caching"], "logo": "https://logzbucket.s3.eu-west-1.amazonaws.com/logz-docs/shipper-logos/aws-redis-logo.png", "bundle": [{"type": "GRAFANA_DASHBOARD", "id": "2iTJV7AkvtHDJauaEzYobs"}], "dataLink": "https://raw.githubusercontent.com/logzio/documentation/master/docs/shipping/AWS/aws-elasticache-redis.md"}, {"id": "AWS-S3-Bucket", "title": "AWS S3 Bucket", "description": "Amazon S3 stores data within buckets, allowing you to send your AWS logs and metrics to Logz.io. S3 buckets lets you store and access large amounts of data and is often used for big data analytics, root cause analysis, and more.", "productTags": ["LOG_ANALYTICS", "METRICS"], "osTags": ["windows", "linux"], "filterTags": ["AWS", "Data Store", "Other", "Most Popular"], "logo": "https://logzbucket.s3.eu-west-1.amazonaws.com/logz-docs/shipper-logos/aws-s3.svg", "bundle": [{"type": "GRAFANA_DASHBOARD", "id": "1Pm3OYbu1MRGoELc2qhxQ1"}], "dataLink": "https://raw.githubusercontent.com/logzio/documentation/master/docs/shipping/AWS/aws-s3-bucket.md"}, {"id": "AWS-SNS", "title": "AWS SNS", "description": "This integration creates a Kinesis Data Firehose delivery stream that links to your Amazon SNS metrics stream and then sends the metrics to your Logz.io account. It also creates a Lambda function that adds AWS namespaces to the metric stream, and a Lambda function that collects and ships the resources' tags.", "productTags": ["METRICS"], "osTags": ["windows", "linux"], "filterTags": ["AWS", "Distributed Messaging"], "logo": "https://logzbucket.s3.eu-west-1.amazonaws.com/logz-docs/shipper-logos/aws-sns.svg", "bundle": [{"type": "GRAFANA_DASHBOARD", "id": "3G7HxOI10AvzpqGXQNfawA"}], "dataLink": "https://raw.githubusercontent.com/logzio/documentation/master/docs/shipping/AWS/aws-sns.md"}, {"id": "AWS-AppRunner", "title": "AWS AppRunner", "description": "Send your Amazon AppRunner metrics to Logz.io", "productTags": ["METRICS"], "osTags": [], "filterTags": ["AWS", "Compute"], "logo": "https://logzbucket.s3.eu-west-1.amazonaws.com/logz-docs/shipper-logos/aws-fusion.svg", "bundle": [], "dataLink": "https://raw.githubusercontent.com/logzio/documentation/master/docs/shipping/AWS/aws-apprunner.md"}, {"id": "Lambda-extension-node", "title": "Traces from Node.js on AWS Lambda using OpenTelemetry", "description": "This integration to auto-instrument your Node.js application running on AWS Lambda and send the traces to your Logz.io account.", "productTags": ["TRACING"], "osTags": ["windows", "linux"], "filterTags": ["AWS", "Compute"], "logo": "https://logzbucket.s3.eu-west-1.amazonaws.com/logz-docs/shipper-logos/AWS-Lambda.svg", "bundle": [], "dataLink": "https://raw.githubusercontent.com/logzio/documentation/master/docs/shipping/AWS/aws-lambda-extension-node.md"}, {"id": "AWS-Kafka", "title": "Amazon Managed Streaming for Apache Kafka (MSK)", "description": "Send your Amazon Managed Streaming for Apache Kafka (MSK) metrics to Logz.io.", "productTags": ["METRICS"], "osTags": ["windows", "linux"], "filterTags": ["AWS", "Distributed Messaging"], "logo": "https://dytvr9ot2sszz.cloudfront.net/logz-docs/shipper-logos/aws-msk.svg", "bundle": [{"type": "GRAFANA_DASHBOARD", "id": "7bHNddlAK5q8Iya7xIhbbU"}], "dataLink": "https://raw.githubusercontent.com/logzio/documentation/master/docs/shipping/AWS/aws-kafka.md"}, {"id": "AWS-Kinesis-Firehose", "title": "AWS Kinesis Data Firehose", "description": "This integration sends your Amazon Kinesis Data Firehose logs and metrics to Logz.io.", "productTags": ["METRICS", "LOG_ANALYTICS"], "osTags": ["windows", "linux"], "filterTags": ["AWS", "Distributed Messaging"], "logo": "https://logzbucket.s3.eu-west-1.amazonaws.com/logz-docs/shipper-logos/Amazon-Kinesis.svg", "bundle": [{"type": "GRAFANA_DASHBOARD", "id": "6c42S4dUE98HajLbiuaShI"}], "dataLink": "https://raw.githubusercontent.com/logzio/documentation/master/docs/shipping/AWS/aws-kinesis-firehose.md"}, {"id": "AWS-Amplify", "title": "AWS Amplify", "description": "This is an integration that collects Amplify access logs and sends them to Logz.io.", "productTags": ["LOG_ANALYTICS"], "osTags": [], "filterTags": ["AWS", "CI/CD"], "logo": "https://logzbucket.s3.eu-west-1.amazonaws.com/logz-docs/shipper-logos/amplify.png", "bundle": [], "dataLink": "https://raw.githubusercontent.com/logzio/documentation/master/docs/shipping/AWS/aws-amplify.md"}, {"id": "AWS-Lambda", "title": "AWS Lambda", "description": "AWS Lambda serverless compute service runs code in response to events and automatically manages compute resources. Send these events to Logz.io to identify anomalies and issues and quickly solve them.", "productTags": ["METRICS"], "osTags": ["windows", "linux"], "filterTags": ["AWS", "Compute"], "recommendedFor": ["DevOps Engineer"], "logo": "https://logzbucket.s3.eu-west-1.amazonaws.com/logz-docs/shipper-logos/lambda-nodejs2.png", "bundle": [], "dataLink": "https://raw.githubusercontent.com/logzio/documentation/master/docs/shipping/AWS/aws-lambda.md"}, {"id": "AWS-Cost-and-Usage-Reports", "title": "AWS Cost and Usage Reports", "description": "AWS Cost and Usage Reports function tracks your AWS usage and provides estimated charges associated with your account.", "productTags": ["LOG_ANALYTICS"], "osTags": ["windows", "linux"], "filterTags": ["AWS", "Other"], "logo": "https://logzbucket.s3.eu-west-1.amazonaws.com/logz-docs/shipper-logos/aws.svg", "bundle": [], "dataLink": "https://raw.githubusercontent.com/logzio/documentation/master/docs/shipping/AWS/aws-cost-and-usage-report.md"}, {"id": "aws-SQS", "title": "AWS SQS", "description": "This integration sends your Amazon SQS logs and metrics to Logz.io.", "productTags": ["METRICS", "LOG_ANALYTICS"], "osTags": ["windows", "linux"], "filterTags": ["AWS", "Distributed Messaging"], "logo": "https://logzbucket.s3.eu-west-1.amazonaws.com/logz-docs/shipper-logos/aws-sqs.svg", "bundle": [{"type": "GRAFANA_DASHBOARD", "id": "1pEmJtP0bwd5WuuAfEe5cc"}], "dataLink": "https://raw.githubusercontent.com/logzio/documentation/master/docs/shipping/AWS/aws-sqs.md"}, {"id": "AWS-EFS", "title": "AWS EFS", "description": "Send your Amazon EFS metrics to Logz.io.", "productTags": ["METRICS"], "osTags": ["windows", "linux"], "filterTags": ["AWS", "Data Store"], "logo": "https://logzbucket.s3.eu-west-1.amazonaws.com/logz-docs/shipper-logos/aws-efs.svg", "bundle": [{"type": "GRAFANA_DASHBOARD", "id": "7IUpQgVmcbkHV8zAGuLHIL"}], "dataLink": "https://raw.githubusercontent.com/logzio/documentation/master/docs/shipping/AWS/aws-efs.md"}, {"id": "AWS-App-ELB", "title": "AWS App ELB", "description": "Send your AWS Application ELB logs and metrics to Logz.io.", "productTags": ["LOG_ANALYTICS", "METRICS"], "osTags": [], "filterTags": ["AWS", "Load Balancer"], "logo": "https://logzbucket.s3.eu-west-1.amazonaws.com/logz-docs/shipper-logos/aws-app-elb.svg", "bundle": [{"type": "GRAFANA_DASHBOARD", "id": "5BZ6El3juQkCKCIuGm1oyC"}], "dataLink": "https://raw.githubusercontent.com/logzio/documentation/master/docs/shipping/AWS/aws-app-elb.md"}, {"id": "AWS-NAT", "title": "AWS NAT", "description": "This integration creates a Kinesis Data Firehose delivery stream that links to your Amazon NAT metrics stream and then sends the metrics to your Logz.io account. It also creates a Lambda function that adds AWS namespaces to the metric stream, and a Lambda function that collects and ships the resources' tags.", "productTags": ["METRICS"], "osTags": ["windows", "linux"], "filterTags": ["AWS", "Network"], "logo": "https://logzbucket.s3.eu-west-1.amazonaws.com/logz-docs/shipper-logos/aws-nat.png", "bundle": [{"type": "GRAFANA_DASHBOARD", "id": "1EhgOtbCtQxzsWh6FJjme8"}], "dataLink": "https://raw.githubusercontent.com/logzio/documentation/master/docs/shipping/AWS/aws-nat.md"}, {"id": "AWS-SES", "title": "AWS SES", "description": "This integration creates a Kinesis Data Firehose delivery stream that links to your Amazon SES metrics stream and then sends the metrics to your Logz.io account. It also creates a Lambda function that adds AWS namespaces to the metric stream, and a Lambda function that collects and ships the resources' tags.", "productTags": ["METRICS"], "osTags": ["windows", "linux"], "filterTags": ["AWS", "Other"], "logo": "https://logzbucket.s3.eu-west-1.amazonaws.com/logz-docs/shipper-logos/aws-ses.png", "bundle": [{"type": "GRAFANA_DASHBOARD", "id": "6YXSlRl6RxMuGPiTTO9NHg"}], "dataLink": "https://raw.githubusercontent.com/logzio/documentation/master/docs/shipping/AWS/aws-ses.md"}, {"id": "AWS-ECS-Fargate", "title": "AWS ECS Fargate", "description": "AWS Fargate is a serverless compute engine for building applications without managing servers.", "productTags": ["LOG_ANALYTICS", "METRICS", "TRACING"], "osTags": [], "filterTags": ["AWS", "Compute", "Containers"], "logo": "https://logzbucket.s3.eu-west-1.amazonaws.com/logz-docs/shipper-logos/aws-fargate.svg", "bundle": [], "dataLink": "https://raw.githubusercontent.com/logzio/documentation/master/docs/shipping/AWS/aws-ecs-fargate.md"}, {"id": "AWS-Athena", "title": "AWS Athena", "description": "This integration sends your Amazon Athena logs and metrics to Logz.io.", "productTags": ["METRICS", "LOG_ANALYTICS"], "osTags": ["windows", "linux"], "filterTags": ["AWS", "Data Store"], "logo": "https://logzbucket.s3.eu-west-1.amazonaws.com/logz-docs/shipper-logos/aws-athena.svg", "bundle": [], "dataLink": "https://raw.githubusercontent.com/logzio/documentation/master/docs/shipping/AWS/aws-athena.md"}, {"id": "AWS-DynamoDB", "title": "AWS DynamoDB", "description": "This integration sends your Amazon DynamoDB logs and metrics to Logz.io.", "productTags": ["METRICS", "LOG_ANALYTICS"], "osTags": ["windows", "linux"], "filterTags": ["AWS", "Database"], "logo": "https://logzbucket.s3.eu-west-1.amazonaws.com/logz-docs/shipper-logos/aws-dynamodb.svg", "bundle": [{"type": "GRAFANA_DASHBOARD", "id": "1SCWsYpcgBc9DmjM1vELkf"}], "dataLink": "https://raw.githubusercontent.com/logzio/documentation/master/docs/shipping/AWS/aws-dynamodb.md"}, {"id": "azure-active-Directory", "title": "Azure Active Directory", "description": "You can ship logs available from the Microsoft Graph APIs with Logzio-MSGraph.", "productTags": ["SIEM"], "osTags": ["windows", "linux"], "filterTags": ["Azure", "Access Management"], "logo": "https://logzbucket.s3.eu-west-1.amazonaws.com/logz-docs/shipper-logos/azure.svg", "bundle": [], "dataLink": "https://raw.githubusercontent.com/logzio/documentation/master/docs/shipping/Azure/azure-active-directory.md"}, {"id": "Azure-Activity-logs", "title": "Azure Activity Logs", "description": "Ship your Azure activity logs using an automated deployment process.", "productTags": ["LOG_ANALYTICS", "SIEM"], "osTags": ["windows", "linux"], "filterTags": ["Azure", "Security"], "logo": "https://logzbucket.s3.eu-west-1.amazonaws.com/logz-docs/shipper-logos/azure-monitor.svg", "bundle": [], "dataLink": "https://raw.githubusercontent.com/logzio/documentation/master/docs/shipping/Azure/azure-activity-logs.md"}, {"id": "Azure-Native", "title": "Azure Native Logs", "description": "This integration uses Logz.io's Cloud-Native Observability Platform to monitor the health and performance of your Azure environment through the Azure portal.", "productTags": ["LOG_ANALYTICS"], "osTags": ["windows", "linux"], "filterTags": ["Azure", "Other"], "logo": "https://logzbucket.s3.eu-west-1.amazonaws.com/logz-docs/shipper-logos/Azure-native-integration2.png", "bundle": [], "dataLink": "https://raw.githubusercontent.com/logzio/documentation/master/docs/shipping/Azure/azure-native.md"}, {"id": "Azure-blob-trigger", "title": "Azure Blob Trigger", "description": "Azure Blob Storage is Microsoft's object storage solution for the cloud. Deploy this integration to forward logs from your Azure Blob Storage account to Logz.io using an automated deployment process via the trigger function. Each new log in the container path inside the storage account (including sub directories), will trigger the Logz.io function that will ship the file content to Logz.io.", "productTags": ["LOG_ANALYTICS"], "osTags": ["windows", "linux"], "filterTags": ["Azure", "Other"], "logo": "https://logzbucket.s3.eu-west-1.amazonaws.com/logz-docs/shipper-logos/azure-blob.svg", "bundle": [], "dataLink": "https://raw.githubusercontent.com/logzio/documentation/master/docs/shipping/Azure/azure-blob-trigger.md"}, {"id": "azure-office365-message-trace-reports", "title": "Microsoft Azure Office365 Message Trace Reports (mail reports)", "description": "You can ship mail report logs available from the Microsoft Office365 Message Trace API with Logzio-api-fetcher.", "productTags": ["LOG_ANALYTICS"], "osTags": ["windows", "linux"], "filterTags": ["Azure", "Access Management"], "logo": "https://logzbucket.s3.eu-west-1.amazonaws.com/logz-docs/shipper-logos/azure.svg", "bundle": [], "dataLink": "https://raw.githubusercontent.com/logzio/documentation/master/docs/shipping/Azure/azure-mail-reports.md"}, {"id": "Azure-VM-Extension", "title": "Azure VM Extension", "description": "Extensions are small applications that provide post-deployment configuration and automation on Azure VMs. You can install Logz.io agents on Azure virtual machines as an extension. This will allow you to ship logs directly from your VM to your Logz.io account.", "productTags": ["LOG_ANALYTICS"], "osTags": ["windows", "linux"], "filterTags": ["Azure", "Compute"], "logo": "https://logzbucket.s3.eu-west-1.amazonaws.com/logz-docs/shipper-logos/azure-vm.png", "bundle": [], "dataLink": "https://raw.githubusercontent.com/logzio/documentation/master/docs/shipping/Azure/azure-vm-extension.md"}, {"id": "Azure-Security-Center", "title": "Azure Security Center", "description": "You can ship security logs available from the Microsoft Graph APIs with Logzio api fetcher.", "productTags": ["SIEM"], "osTags": ["windows", "linux"], "filterTags": ["Azure", "Access Management"], "logo": "https://logzbucket.s3.eu-west-1.amazonaws.com/logz-docs/shipper-logos/azure.svg", "bundle": [], "dataLink": "https://raw.githubusercontent.com/logzio/documentation/master/docs/shipping/Azure/azure-security-center.md"}, {"id": "azure-graph", "title": "Microsoft Azure Graph API", "description": "You can ship logs available from the Microsoft Graph APIs with Logzio-api-fetcher.", "productTags": ["LOG_ANALYTICS"], "osTags": ["windows", "linux"], "filterTags": ["Azure", "Access Management"], "logo": "https://logzbucket.s3.eu-west-1.amazonaws.com/logz-docs/shipper-logos/azure.svg", "bundle": [], "dataLink": "https://raw.githubusercontent.com/logzio/documentation/master/docs/shipping/Azure/azure-graph.md"}, {"id": "Azure-NSG", "title": "Azure NSG", "description": "Enable an Azure function to forward NSG logs from your Azure Blob Storage account to your Logz.io account.", "productTags": ["LOG_ANALYTICS"], "osTags": ["windows", "linux"], "filterTags": ["Azure", "Network"], "logo": "https://logzbucket.s3.eu-west-1.amazonaws.com/logz-docs/shipper-logos/nsg-logo.png", "bundle": [], "dataLink": "https://raw.githubusercontent.com/logzio/documentation/master/docs/shipping/Azure/azure-nsg.md"}, {"id": "Azure-Diagnostic-Logs", "title": "Azure Diagnostic Logs", "description": "Ship your Azure diagnostic logs using an automated deployment process.", "productTags": ["LOG_ANALYTICS"], "osTags": ["windows", "linux"], "filterTags": ["Azure", "Other"], "logo": "https://logzbucket.s3.eu-west-1.amazonaws.com/logz-docs/shipper-logos/azure-monitor.svg", "bundle": [], "dataLink": "https://raw.githubusercontent.com/logzio/documentation/master/docs/shipping/Azure/azure-diagnostic-logs.md"}, {"id": "API-status-metrics-synthetic", "title": "API Status Metrics", "description": "Deploy this integration to collect API status metrics of user API and send them to Logz.io.", "productTags": ["METRICS"], "osTags": ["windows", "linux"], "filterTags": ["Synthetic Monitoring"], "logo": "https://logzbucket.s3.eu-west-1.amazonaws.com/logz-docs/shipper-logos/apii.svg", "bundle": [{"type": "GRAFANA_DASHBOARD", "id": "1RCzCjjByhyz0bJ4Hmau0y"}], "dataLink": "https://raw.githubusercontent.com/logzio/documentation/master/docs/shipping/Synthetic-Monitoring/api-status-metrics.md"}, {"id": "synthetic-link-detector-synthetic", "title": "Synthetic Link Detector", "description": "Deploy this integration to collect data on broken links in a web page, and to get additional data about the links.", "productTags": ["METRICS"], "osTags": ["windows", "linux"], "filterTags": ["Synthetic Monitoring"], "logo": "https://logzbucket.s3.eu-west-1.amazonaws.com/logz-docs/shipper-logos/link.png", "bundle": [{"type": "GRAFANA_DASHBOARD", "id": "4l4xVZhvqsrJWO7rZwOxgx"}, {"type": "GRAFANA_DASHBOARD", "id": "1NiBMzN5DvQZ8BjePpUtvQ"}], "dataLink": "https://raw.githubusercontent.com/logzio/documentation/master/docs/shipping/Synthetic-Monitoring/synthetic-link-detector.md"}, {"id": "Ping-statistics-synthetic", "title": "Ping Statistics", "description": "Deploy this integration to collect metrics of ping statistics collected from your preferred web addresses and send them to Logz.io.", "productTags": ["METRICS"], "osTags": ["windows", "linux"], "filterTags": ["Synthetic Monitoring"], "logo": "https://logzbucket.s3.eu-west-1.amazonaws.com/logz-docs/shipper-logos/ping-logo.png", "bundle": [{"type": "GRAFANA_DASHBOARD", "id": "1rNO8llFw8Cm9N8U3M3vCQ"}], "dataLink": "https://raw.githubusercontent.com/logzio/documentation/master/docs/shipping/Synthetic-Monitoring/ping-statistics.md"}], "tags": ["Load Balancer", "Memory Caching", "Database", "Orchestration", "Distributed Messaging", "Code", "Most Popular", "Security", "Network", "Containers", "Compute", "Other", "Operating Systems", "GCP", "Access Management", "Data Store", "Monitoring", "IoT", "CI/CD", "AWS", "Azure", "Synthetic Monitoring"]} \ No newline at end of file From 7d2ec43204dd3fe229c0b5bf16ea598a307104f4 Mon Sep 17 00:00:00 2001 From: 8naama Date: Sun, 21 Jul 2024 13:25:32 +0300 Subject: [PATCH 3/6] merge api-fetcher-0.2.0 with master --- docs/shipping/AWS/aws-api-gateway.md | 34 ++++++------- docs/shipping/AWS/aws-athena.md | 34 ++++++------- docs/shipping/AWS/aws-ecs-fargate.md | 36 +++++++------- docs/shipping/AWS/aws-fsx.md | 34 ++++++------- docs/shipping/AWS/aws-guardduty.md | 34 ++++++------- docs/shipping/AWS/aws-kinesis-firehose.md | 58 +++++++++++------------ docs/shipping/AWS/aws-mq.md | 34 ++++++------- docs/shipping/AWS/aws-msk.md | 34 ++++++------- docs/shipping/AWS/aws-sqs.md | 34 ++++++------- 9 files changed, 166 insertions(+), 166 deletions(-) diff --git a/docs/shipping/AWS/aws-api-gateway.md b/docs/shipping/AWS/aws-api-gateway.md index c46bb1ad..7ce62906 100644 --- a/docs/shipping/AWS/aws-api-gateway.md +++ b/docs/shipping/AWS/aws-api-gateway.md @@ -30,23 +30,23 @@ To deploy this project, click the button that matches the region you wish to dep | Region | Deployment | |------------------|--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| -| `us-east-1` | [![Deploy to AWS](https://dytvr9ot2sszz.cloudfront.net/logz-docs/lights/LightS-button.png)](https://console.aws.amazon.com/cloudformation/home?region=us-east-1#/stacks/create/review?templateURL=https://logzio-aws-integrations-us-east-1.s3.amazonaws.com/firehose-logs/0.1.0/sam-template.yaml&stackName=logzio-firehose¶m_logzioToken=<>¶m_logzioListener=https://aws-firehose-logs-<>) | -| `us-east-2` | [![Deploy to AWS](https://dytvr9ot2sszz.cloudfront.net/logz-docs/lights/LightS-button.png)](https://console.aws.amazon.com/cloudformation/home?region=us-east-2#/stacks/create/review?templateURL=https://logzio-aws-integrations-us-east-2.s3.amazonaws.com/firehose-logs/0.1.0/sam-template.yaml&stackName=logzio-firehose¶m_logzioToken=<>¶m_logzioListener=https://aws-firehose-logs-<>) | -| `us-west-1` | [![Deploy to AWS](https://dytvr9ot2sszz.cloudfront.net/logz-docs/lights/LightS-button.png)](https://console.aws.amazon.com/cloudformation/home?region=us-west-1#/stacks/create/review?templateURL=https://logzio-aws-integrations-us-west-1.s3.amazonaws.com/firehose-logs/0.1.0/sam-template.yaml&stackName=logzio-firehose¶m_logzioToken=<>¶m_logzioListener=https://aws-firehose-logs-<>) | -| `us-west-2` | [![Deploy to AWS](https://dytvr9ot2sszz.cloudfront.net/logz-docs/lights/LightS-button.png)](https://console.aws.amazon.com/cloudformation/home?region=us-west-2#/stacks/create/review?templateURL=https://logzio-aws-integrations-us-west-2.s3.amazonaws.com/firehose-logs/0.1.0/sam-template.yaml&stackName=logzio-firehose¶m_logzioToken=<>¶m_logzioListener=https://aws-firehose-logs-<>) | -| `eu-central-1` | [![Deploy to AWS](https://dytvr9ot2sszz.cloudfront.net/logz-docs/lights/LightS-button.png)](https://console.aws.amazon.com/cloudformation/home?region=eu-central-1#/stacks/create/review?templateURL=https://logzio-aws-integrations-eu-central-1.s3.amazonaws.com/firehose-logs/0.1.0/sam-template.yaml&stackName=logzio-firehose¶m_logzioToken=<>¶m_logzioListener=https://aws-firehose-logs-<>) | -| `eu-north-1` | [![Deploy to AWS](https://dytvr9ot2sszz.cloudfront.net/logz-docs/lights/LightS-button.png)](https://console.aws.amazon.com/cloudformation/home?region=eu-north-1#/stacks/create/review?templateURL=https://logzio-aws-integrations-eu-north-1.s3.amazonaws.com/firehose-logs/0.1.0/sam-template.yaml&stackName=logzio-firehose¶m_logzioToken=<>¶m_logzioListener=https://aws-firehose-logs-<>) | -| `eu-west-1` | [![Deploy to AWS](https://dytvr9ot2sszz.cloudfront.net/logz-docs/lights/LightS-button.png)](https://console.aws.amazon.com/cloudformation/home?region=eu-west-1#/stacks/create/review?templateURL=https://logzio-aws-integrations-eu-west-1.s3.amazonaws.com/firehose-logs/0.1.0/sam-template.yaml&stackName=logzio-firehose¶m_logzioToken=<>¶m_logzioListener=https://aws-firehose-logs-<>) | -| `eu-west-2` | [![Deploy to AWS](https://dytvr9ot2sszz.cloudfront.net/logz-docs/lights/LightS-button.png)](https://console.aws.amazon.com/cloudformation/home?region=eu-west-2#/stacks/create/review?templateURL=https://logzio-aws-integrations-eu-west-2.s3.amazonaws.com/firehose-logs/0.1.0/sam-template.yaml&stackName=logzio-firehose¶m_logzioToken=<>¶m_logzioListener=https://aws-firehose-logs-<>) | -| `eu-west-3` | [![Deploy to AWS](https://dytvr9ot2sszz.cloudfront.net/logz-docs/lights/LightS-button.png)](https://console.aws.amazon.com/cloudformation/home?region=eu-west-3#/stacks/create/review?templateURL=https://logzio-aws-integrations-eu-west-3.s3.amazonaws.com/firehose-logs/0.1.0/sam-template.yaml&stackName=logzio-firehose¶m_logzioToken=<>¶m_logzioListener=https://aws-firehose-logs-<>) | -| `sa-east-1` | [![Deploy to AWS](https://dytvr9ot2sszz.cloudfront.net/logz-docs/lights/LightS-button.png)](https://console.aws.amazon.com/cloudformation/home?region=sa-east-1#/stacks/create/review?templateURL=https://logzio-aws-integrations-sa-east-1.s3.amazonaws.com/firehose-logs/0.1.0/sam-template.yaml&stackName=logzio-firehose¶m_logzioToken=<>¶m_logzioListener=https://aws-firehose-logs-<>) | -| `ap-northeast-1` | [![Deploy to AWS](https://dytvr9ot2sszz.cloudfront.net/logz-docs/lights/LightS-button.png)](https://console.aws.amazon.com/cloudformation/home?region=ap-northeast-1#/stacks/create/review?templateURL=https://logzio-aws-integrations-ap-northeast-1.s3.amazonaws.com/firehose-logs/0.1.0/sam-template.yaml&stackName=logzio-firehose¶m_logzioToken=<>¶m_logzioListener=https://aws-firehose-logs-<>) | -| `ap-northeast-2` | [![Deploy to AWS](https://dytvr9ot2sszz.cloudfront.net/logz-docs/lights/LightS-button.png)](https://console.aws.amazon.com/cloudformation/home?region=ap-northeast-2#/stacks/create/review?templateURL=https://logzio-aws-integrations-ap-northeast-2.s3.amazonaws.com/firehose-logs/0.1.0/sam-template.yaml&stackName=logzio-firehose¶m_logzioToken=<>¶m_logzioListener=https://aws-firehose-logs-<>) | -| `ap-northeast-3` | [![Deploy to AWS](https://dytvr9ot2sszz.cloudfront.net/logz-docs/lights/LightS-button.png)](https://console.aws.amazon.com/cloudformation/home?region=ap-northeast-3#/stacks/create/review?templateURL=https://logzio-aws-integrations-ap-northeast-3.s3.amazonaws.com/firehose-logs/0.1.0/sam-template.yaml&stackName=logzio-firehose¶m_logzioToken=<>¶m_logzioListener=https://aws-firehose-logs-<>) | -| `ap-south-1` | [![Deploy to AWS](https://dytvr9ot2sszz.cloudfront.net/logz-docs/lights/LightS-button.png)](https://console.aws.amazon.com/cloudformation/home?region=ap-south-1#/stacks/create/review?templateURL=https://logzio-aws-integrations-ap-south-1.s3.amazonaws.com/firehose-logs/0.1.0/sam-template.yaml&stackName=logzio-firehose¶m_logzioToken=<>¶m_logzioListener=https://aws-firehose-logs-<>) | -| `ap-southeast-1` | [![Deploy to AWS](https://dytvr9ot2sszz.cloudfront.net/logz-docs/lights/LightS-button.png)](https://console.aws.amazon.com/cloudformation/home?region=ap-southeast-1#/stacks/create/review?templateURL=https://logzio-aws-integrations-ap-southeast-1.s3.amazonaws.com/firehose-logs/0.1.0/sam-template.yaml&stackName=logzio-firehose¶m_logzioToken=<>¶m_logzioListener=https://aws-firehose-logs-<>) | -| `ap-southeast-2` | [![Deploy to AWS](https://dytvr9ot2sszz.cloudfront.net/logz-docs/lights/LightS-button.png)](https://console.aws.amazon.com/cloudformation/home?region=ap-southeast-2#/stacks/create/review?templateURL=https://logzio-aws-integrations-ap-southeast-2.s3.amazonaws.com/firehose-logs/0.1.0/sam-template.yaml&stackName=logzio-firehose¶m_logzioToken=<>¶m_logzioListener=https://aws-firehose-logs-<>) | -| `ca-central-1` | [![Deploy to AWS](https://dytvr9ot2sszz.cloudfront.net/logz-docs/lights/LightS-button.png)](https://console.aws.amazon.com/cloudformation/home?region=ca-central-1#/stacks/create/review?templateURL=https://logzio-aws-integrations-ca-central-1.s3.amazonaws.com/firehose-logs/0.1.0/sam-template.yaml&stackName=logzio-firehose¶m_logzioToken=<>¶m_logzioListener=https://aws-firehose-logs-<>) | +| `us-east-1` | [![Deploy to AWS](https://dytvr9ot2sszz.cloudfront.net/logz-docs/lights/LightS-button.png)](https://console.aws.amazon.com/cloudformation/home?region=us-east-1#/stacks/create/review?templateURL=https://logzio-aws-integrations-us-east-1.s3.amazonaws.com/firehose-logs/0.2.0/sam-template.yaml&stackName=logzio-firehose¶m_logzioToken=<>¶m_logzioListener=https://aws-firehose-logs-<>) | +| `us-east-2` | [![Deploy to AWS](https://dytvr9ot2sszz.cloudfront.net/logz-docs/lights/LightS-button.png)](https://console.aws.amazon.com/cloudformation/home?region=us-east-2#/stacks/create/review?templateURL=https://logzio-aws-integrations-us-east-2.s3.amazonaws.com/firehose-logs/0.2.0/sam-template.yaml&stackName=logzio-firehose¶m_logzioToken=<>¶m_logzioListener=https://aws-firehose-logs-<>) | +| `us-west-1` | [![Deploy to AWS](https://dytvr9ot2sszz.cloudfront.net/logz-docs/lights/LightS-button.png)](https://console.aws.amazon.com/cloudformation/home?region=us-west-1#/stacks/create/review?templateURL=https://logzio-aws-integrations-us-west-1.s3.amazonaws.com/firehose-logs/0.2.0/sam-template.yaml&stackName=logzio-firehose¶m_logzioToken=<>¶m_logzioListener=https://aws-firehose-logs-<>) | +| `us-west-2` | [![Deploy to AWS](https://dytvr9ot2sszz.cloudfront.net/logz-docs/lights/LightS-button.png)](https://console.aws.amazon.com/cloudformation/home?region=us-west-2#/stacks/create/review?templateURL=https://logzio-aws-integrations-us-west-2.s3.amazonaws.com/firehose-logs/0.2.0/sam-template.yaml&stackName=logzio-firehose¶m_logzioToken=<>¶m_logzioListener=https://aws-firehose-logs-<>) | +| `eu-central-1` | [![Deploy to AWS](https://dytvr9ot2sszz.cloudfront.net/logz-docs/lights/LightS-button.png)](https://console.aws.amazon.com/cloudformation/home?region=eu-central-1#/stacks/create/review?templateURL=https://logzio-aws-integrations-eu-central-1.s3.amazonaws.com/firehose-logs/0.2.0/sam-template.yaml&stackName=logzio-firehose¶m_logzioToken=<>¶m_logzioListener=https://aws-firehose-logs-<>) | +| `eu-north-1` | [![Deploy to AWS](https://dytvr9ot2sszz.cloudfront.net/logz-docs/lights/LightS-button.png)](https://console.aws.amazon.com/cloudformation/home?region=eu-north-1#/stacks/create/review?templateURL=https://logzio-aws-integrations-eu-north-1.s3.amazonaws.com/firehose-logs/0.2.0/sam-template.yaml&stackName=logzio-firehose¶m_logzioToken=<>¶m_logzioListener=https://aws-firehose-logs-<>) | +| `eu-west-1` | [![Deploy to AWS](https://dytvr9ot2sszz.cloudfront.net/logz-docs/lights/LightS-button.png)](https://console.aws.amazon.com/cloudformation/home?region=eu-west-1#/stacks/create/review?templateURL=https://logzio-aws-integrations-eu-west-1.s3.amazonaws.com/firehose-logs/0.2.0/sam-template.yaml&stackName=logzio-firehose¶m_logzioToken=<>¶m_logzioListener=https://aws-firehose-logs-<>) | +| `eu-west-2` | [![Deploy to AWS](https://dytvr9ot2sszz.cloudfront.net/logz-docs/lights/LightS-button.png)](https://console.aws.amazon.com/cloudformation/home?region=eu-west-2#/stacks/create/review?templateURL=https://logzio-aws-integrations-eu-west-2.s3.amazonaws.com/firehose-logs/0.2.0/sam-template.yaml&stackName=logzio-firehose¶m_logzioToken=<>¶m_logzioListener=https://aws-firehose-logs-<>) | +| `eu-west-3` | [![Deploy to AWS](https://dytvr9ot2sszz.cloudfront.net/logz-docs/lights/LightS-button.png)](https://console.aws.amazon.com/cloudformation/home?region=eu-west-3#/stacks/create/review?templateURL=https://logzio-aws-integrations-eu-west-3.s3.amazonaws.com/firehose-logs/0.2.0/sam-template.yaml&stackName=logzio-firehose¶m_logzioToken=<>¶m_logzioListener=https://aws-firehose-logs-<>) | +| `sa-east-1` | [![Deploy to AWS](https://dytvr9ot2sszz.cloudfront.net/logz-docs/lights/LightS-button.png)](https://console.aws.amazon.com/cloudformation/home?region=sa-east-1#/stacks/create/review?templateURL=https://logzio-aws-integrations-sa-east-1.s3.amazonaws.com/firehose-logs/0.2.0/sam-template.yaml&stackName=logzio-firehose¶m_logzioToken=<>¶m_logzioListener=https://aws-firehose-logs-<>) | +| `ap-northeast-1` | [![Deploy to AWS](https://dytvr9ot2sszz.cloudfront.net/logz-docs/lights/LightS-button.png)](https://console.aws.amazon.com/cloudformation/home?region=ap-northeast-1#/stacks/create/review?templateURL=https://logzio-aws-integrations-ap-northeast-1.s3.amazonaws.com/firehose-logs/0.2.0/sam-template.yaml&stackName=logzio-firehose¶m_logzioToken=<>¶m_logzioListener=https://aws-firehose-logs-<>) | +| `ap-northeast-2` | [![Deploy to AWS](https://dytvr9ot2sszz.cloudfront.net/logz-docs/lights/LightS-button.png)](https://console.aws.amazon.com/cloudformation/home?region=ap-northeast-2#/stacks/create/review?templateURL=https://logzio-aws-integrations-ap-northeast-2.s3.amazonaws.com/firehose-logs/0.2.0/sam-template.yaml&stackName=logzio-firehose¶m_logzioToken=<>¶m_logzioListener=https://aws-firehose-logs-<>) | +| `ap-northeast-3` | [![Deploy to AWS](https://dytvr9ot2sszz.cloudfront.net/logz-docs/lights/LightS-button.png)](https://console.aws.amazon.com/cloudformation/home?region=ap-northeast-3#/stacks/create/review?templateURL=https://logzio-aws-integrations-ap-northeast-3.s3.amazonaws.com/firehose-logs/0.2.0/sam-template.yaml&stackName=logzio-firehose¶m_logzioToken=<>¶m_logzioListener=https://aws-firehose-logs-<>) | +| `ap-south-1` | [![Deploy to AWS](https://dytvr9ot2sszz.cloudfront.net/logz-docs/lights/LightS-button.png)](https://console.aws.amazon.com/cloudformation/home?region=ap-south-1#/stacks/create/review?templateURL=https://logzio-aws-integrations-ap-south-1.s3.amazonaws.com/firehose-logs/0.2.0/sam-template.yaml&stackName=logzio-firehose¶m_logzioToken=<>¶m_logzioListener=https://aws-firehose-logs-<>) | +| `ap-southeast-1` | [![Deploy to AWS](https://dytvr9ot2sszz.cloudfront.net/logz-docs/lights/LightS-button.png)](https://console.aws.amazon.com/cloudformation/home?region=ap-southeast-1#/stacks/create/review?templateURL=https://logzio-aws-integrations-ap-southeast-1.s3.amazonaws.com/firehose-logs/0.2.0/sam-template.yaml&stackName=logzio-firehose¶m_logzioToken=<>¶m_logzioListener=https://aws-firehose-logs-<>) | +| `ap-southeast-2` | [![Deploy to AWS](https://dytvr9ot2sszz.cloudfront.net/logz-docs/lights/LightS-button.png)](https://console.aws.amazon.com/cloudformation/home?region=ap-southeast-2#/stacks/create/review?templateURL=https://logzio-aws-integrations-ap-southeast-2.s3.amazonaws.com/firehose-logs/0.2.0/sam-template.yaml&stackName=logzio-firehose¶m_logzioToken=<>¶m_logzioListener=https://aws-firehose-logs-<>) | +| `ca-central-1` | [![Deploy to AWS](https://dytvr9ot2sszz.cloudfront.net/logz-docs/lights/LightS-button.png)](https://console.aws.amazon.com/cloudformation/home?region=ca-central-1#/stacks/create/review?templateURL=https://logzio-aws-integrations-ca-central-1.s3.amazonaws.com/firehose-logs/0.2.0/sam-template.yaml&stackName=logzio-firehose¶m_logzioToken=<>¶m_logzioListener=https://aws-firehose-logs-<>) | #### Specify stack details diff --git a/docs/shipping/AWS/aws-athena.md b/docs/shipping/AWS/aws-athena.md index 6732a5ba..6f7182b0 100644 --- a/docs/shipping/AWS/aws-athena.md +++ b/docs/shipping/AWS/aws-athena.md @@ -25,23 +25,23 @@ To deploy this project, click the button that matches the region you wish to dep | Region | Deployment | |------------------|--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| -| `us-east-1` | [![Deploy to AWS](https://dytvr9ot2sszz.cloudfront.net/logz-docs/lights/LightS-button.png)](https://console.aws.amazon.com/cloudformation/home?region=us-east-1#/stacks/create/review?templateURL=https://logzio-aws-integrations-us-east-1.s3.amazonaws.com/firehose-logs/0.1.0/sam-template.yaml&stackName=logzio-firehose¶m_logzioToken=<>¶m_logzioListener=https://aws-firehose-logs-<>) | -| `us-east-2` | [![Deploy to AWS](https://dytvr9ot2sszz.cloudfront.net/logz-docs/lights/LightS-button.png)](https://console.aws.amazon.com/cloudformation/home?region=us-east-2#/stacks/create/review?templateURL=https://logzio-aws-integrations-us-east-2.s3.amazonaws.com/firehose-logs/0.1.0/sam-template.yaml&stackName=logzio-firehose¶m_logzioToken=<>¶m_logzioListener=https://aws-firehose-logs-<>) | -| `us-west-1` | [![Deploy to AWS](https://dytvr9ot2sszz.cloudfront.net/logz-docs/lights/LightS-button.png)](https://console.aws.amazon.com/cloudformation/home?region=us-west-1#/stacks/create/review?templateURL=https://logzio-aws-integrations-us-west-1.s3.amazonaws.com/firehose-logs/0.1.0/sam-template.yaml&stackName=logzio-firehose¶m_logzioToken=<>¶m_logzioListener=https://aws-firehose-logs-<>) | -| `us-west-2` | [![Deploy to AWS](https://dytvr9ot2sszz.cloudfront.net/logz-docs/lights/LightS-button.png)](https://console.aws.amazon.com/cloudformation/home?region=us-west-2#/stacks/create/review?templateURL=https://logzio-aws-integrations-us-west-2.s3.amazonaws.com/firehose-logs/0.1.0/sam-template.yaml&stackName=logzio-firehose¶m_logzioToken=<>¶m_logzioListener=https://aws-firehose-logs-<>) | -| `eu-central-1` | [![Deploy to AWS](https://dytvr9ot2sszz.cloudfront.net/logz-docs/lights/LightS-button.png)](https://console.aws.amazon.com/cloudformation/home?region=eu-central-1#/stacks/create/review?templateURL=https://logzio-aws-integrations-eu-central-1.s3.amazonaws.com/firehose-logs/0.1.0/sam-template.yaml&stackName=logzio-firehose¶m_logzioToken=<>¶m_logzioListener=https://aws-firehose-logs-<>) | -| `eu-north-1` | [![Deploy to AWS](https://dytvr9ot2sszz.cloudfront.net/logz-docs/lights/LightS-button.png)](https://console.aws.amazon.com/cloudformation/home?region=eu-north-1#/stacks/create/review?templateURL=https://logzio-aws-integrations-eu-north-1.s3.amazonaws.com/firehose-logs/0.1.0/sam-template.yaml&stackName=logzio-firehose¶m_logzioToken=<>¶m_logzioListener=https://aws-firehose-logs-<>) | -| `eu-west-1` | [![Deploy to AWS](https://dytvr9ot2sszz.cloudfront.net/logz-docs/lights/LightS-button.png)](https://console.aws.amazon.com/cloudformation/home?region=eu-west-1#/stacks/create/review?templateURL=https://logzio-aws-integrations-eu-west-1.s3.amazonaws.com/firehose-logs/0.1.0/sam-template.yaml&stackName=logzio-firehose¶m_logzioToken=<>¶m_logzioListener=https://aws-firehose-logs-<>) | -| `eu-west-2` | [![Deploy to AWS](https://dytvr9ot2sszz.cloudfront.net/logz-docs/lights/LightS-button.png)](https://console.aws.amazon.com/cloudformation/home?region=eu-west-2#/stacks/create/review?templateURL=https://logzio-aws-integrations-eu-west-2.s3.amazonaws.com/firehose-logs/0.1.0/sam-template.yaml&stackName=logzio-firehose¶m_logzioToken=<>¶m_logzioListener=https://aws-firehose-logs-<>) | -| `eu-west-3` | [![Deploy to AWS](https://dytvr9ot2sszz.cloudfront.net/logz-docs/lights/LightS-button.png)](https://console.aws.amazon.com/cloudformation/home?region=eu-west-3#/stacks/create/review?templateURL=https://logzio-aws-integrations-eu-west-3.s3.amazonaws.com/firehose-logs/0.1.0/sam-template.yaml&stackName=logzio-firehose¶m_logzioToken=<>¶m_logzioListener=https://aws-firehose-logs-<>) | -| `sa-east-1` | [![Deploy to AWS](https://dytvr9ot2sszz.cloudfront.net/logz-docs/lights/LightS-button.png)](https://console.aws.amazon.com/cloudformation/home?region=sa-east-1#/stacks/create/review?templateURL=https://logzio-aws-integrations-sa-east-1.s3.amazonaws.com/firehose-logs/0.1.0/sam-template.yaml&stackName=logzio-firehose¶m_logzioToken=<>¶m_logzioListener=https://aws-firehose-logs-<>) | -| `ap-northeast-1` | [![Deploy to AWS](https://dytvr9ot2sszz.cloudfront.net/logz-docs/lights/LightS-button.png)](https://console.aws.amazon.com/cloudformation/home?region=ap-northeast-1#/stacks/create/review?templateURL=https://logzio-aws-integrations-ap-northeast-1.s3.amazonaws.com/firehose-logs/0.1.0/sam-template.yaml&stackName=logzio-firehose¶m_logzioToken=<>¶m_logzioListener=https://aws-firehose-logs-<>) | -| `ap-northeast-2` | [![Deploy to AWS](https://dytvr9ot2sszz.cloudfront.net/logz-docs/lights/LightS-button.png)](https://console.aws.amazon.com/cloudformation/home?region=ap-northeast-2#/stacks/create/review?templateURL=https://logzio-aws-integrations-ap-northeast-2.s3.amazonaws.com/firehose-logs/0.1.0/sam-template.yaml&stackName=logzio-firehose¶m_logzioToken=<>¶m_logzioListener=https://aws-firehose-logs-<>) | -| `ap-northeast-3` | [![Deploy to AWS](https://dytvr9ot2sszz.cloudfront.net/logz-docs/lights/LightS-button.png)](https://console.aws.amazon.com/cloudformation/home?region=ap-northeast-3#/stacks/create/review?templateURL=https://logzio-aws-integrations-ap-northeast-3.s3.amazonaws.com/firehose-logs/0.1.0/sam-template.yaml&stackName=logzio-firehose¶m_logzioToken=<>¶m_logzioListener=https://aws-firehose-logs-<>) | -| `ap-south-1` | [![Deploy to AWS](https://dytvr9ot2sszz.cloudfront.net/logz-docs/lights/LightS-button.png)](https://console.aws.amazon.com/cloudformation/home?region=ap-south-1#/stacks/create/review?templateURL=https://logzio-aws-integrations-ap-south-1.s3.amazonaws.com/firehose-logs/0.1.0/sam-template.yaml&stackName=logzio-firehose¶m_logzioToken=<>¶m_logzioListener=https://aws-firehose-logs-<>) | -| `ap-southeast-1` | [![Deploy to AWS](https://dytvr9ot2sszz.cloudfront.net/logz-docs/lights/LightS-button.png)](https://console.aws.amazon.com/cloudformation/home?region=ap-southeast-1#/stacks/create/review?templateURL=https://logzio-aws-integrations-ap-southeast-1.s3.amazonaws.com/firehose-logs/0.1.0/sam-template.yaml&stackName=logzio-firehose¶m_logzioToken=<>¶m_logzioListener=https://aws-firehose-logs-<>) | -| `ap-southeast-2` | [![Deploy to AWS](https://dytvr9ot2sszz.cloudfront.net/logz-docs/lights/LightS-button.png)](https://console.aws.amazon.com/cloudformation/home?region=ap-southeast-2#/stacks/create/review?templateURL=https://logzio-aws-integrations-ap-southeast-2.s3.amazonaws.com/firehose-logs/0.1.0/sam-template.yaml&stackName=logzio-firehose¶m_logzioToken=<>¶m_logzioListener=https://aws-firehose-logs-<>) | -| `ca-central-1` | [![Deploy to AWS](https://dytvr9ot2sszz.cloudfront.net/logz-docs/lights/LightS-button.png)](https://console.aws.amazon.com/cloudformation/home?region=ca-central-1#/stacks/create/review?templateURL=https://logzio-aws-integrations-ca-central-1.s3.amazonaws.com/firehose-logs/0.1.0/sam-template.yaml&stackName=logzio-firehose¶m_logzioToken=<>¶m_logzioListener=https://aws-firehose-logs-<>) | +| `us-east-1` | [![Deploy to AWS](https://dytvr9ot2sszz.cloudfront.net/logz-docs/lights/LightS-button.png)](https://console.aws.amazon.com/cloudformation/home?region=us-east-1#/stacks/create/review?templateURL=https://logzio-aws-integrations-us-east-1.s3.amazonaws.com/firehose-logs/0.2.0/sam-template.yaml&stackName=logzio-firehose¶m_logzioToken=<>¶m_logzioListener=https://aws-firehose-logs-<>) | +| `us-east-2` | [![Deploy to AWS](https://dytvr9ot2sszz.cloudfront.net/logz-docs/lights/LightS-button.png)](https://console.aws.amazon.com/cloudformation/home?region=us-east-2#/stacks/create/review?templateURL=https://logzio-aws-integrations-us-east-2.s3.amazonaws.com/firehose-logs/0.2.0/sam-template.yaml&stackName=logzio-firehose¶m_logzioToken=<>¶m_logzioListener=https://aws-firehose-logs-<>) | +| `us-west-1` | [![Deploy to AWS](https://dytvr9ot2sszz.cloudfront.net/logz-docs/lights/LightS-button.png)](https://console.aws.amazon.com/cloudformation/home?region=us-west-1#/stacks/create/review?templateURL=https://logzio-aws-integrations-us-west-1.s3.amazonaws.com/firehose-logs/0.2.0/sam-template.yaml&stackName=logzio-firehose¶m_logzioToken=<>¶m_logzioListener=https://aws-firehose-logs-<>) | +| `us-west-2` | [![Deploy to AWS](https://dytvr9ot2sszz.cloudfront.net/logz-docs/lights/LightS-button.png)](https://console.aws.amazon.com/cloudformation/home?region=us-west-2#/stacks/create/review?templateURL=https://logzio-aws-integrations-us-west-2.s3.amazonaws.com/firehose-logs/0.2.0/sam-template.yaml&stackName=logzio-firehose¶m_logzioToken=<>¶m_logzioListener=https://aws-firehose-logs-<>) | +| `eu-central-1` | [![Deploy to AWS](https://dytvr9ot2sszz.cloudfront.net/logz-docs/lights/LightS-button.png)](https://console.aws.amazon.com/cloudformation/home?region=eu-central-1#/stacks/create/review?templateURL=https://logzio-aws-integrations-eu-central-1.s3.amazonaws.com/firehose-logs/0.2.0/sam-template.yaml&stackName=logzio-firehose¶m_logzioToken=<>¶m_logzioListener=https://aws-firehose-logs-<>) | +| `eu-north-1` | [![Deploy to AWS](https://dytvr9ot2sszz.cloudfront.net/logz-docs/lights/LightS-button.png)](https://console.aws.amazon.com/cloudformation/home?region=eu-north-1#/stacks/create/review?templateURL=https://logzio-aws-integrations-eu-north-1.s3.amazonaws.com/firehose-logs/0.2.0/sam-template.yaml&stackName=logzio-firehose¶m_logzioToken=<>¶m_logzioListener=https://aws-firehose-logs-<>) | +| `eu-west-1` | [![Deploy to AWS](https://dytvr9ot2sszz.cloudfront.net/logz-docs/lights/LightS-button.png)](https://console.aws.amazon.com/cloudformation/home?region=eu-west-1#/stacks/create/review?templateURL=https://logzio-aws-integrations-eu-west-1.s3.amazonaws.com/firehose-logs/0.2.0/sam-template.yaml&stackName=logzio-firehose¶m_logzioToken=<>¶m_logzioListener=https://aws-firehose-logs-<>) | +| `eu-west-2` | [![Deploy to AWS](https://dytvr9ot2sszz.cloudfront.net/logz-docs/lights/LightS-button.png)](https://console.aws.amazon.com/cloudformation/home?region=eu-west-2#/stacks/create/review?templateURL=https://logzio-aws-integrations-eu-west-2.s3.amazonaws.com/firehose-logs/0.2.0/sam-template.yaml&stackName=logzio-firehose¶m_logzioToken=<>¶m_logzioListener=https://aws-firehose-logs-<>) | +| `eu-west-3` | [![Deploy to AWS](https://dytvr9ot2sszz.cloudfront.net/logz-docs/lights/LightS-button.png)](https://console.aws.amazon.com/cloudformation/home?region=eu-west-3#/stacks/create/review?templateURL=https://logzio-aws-integrations-eu-west-3.s3.amazonaws.com/firehose-logs/0.2.0/sam-template.yaml&stackName=logzio-firehose¶m_logzioToken=<>¶m_logzioListener=https://aws-firehose-logs-<>) | +| `sa-east-1` | [![Deploy to AWS](https://dytvr9ot2sszz.cloudfront.net/logz-docs/lights/LightS-button.png)](https://console.aws.amazon.com/cloudformation/home?region=sa-east-1#/stacks/create/review?templateURL=https://logzio-aws-integrations-sa-east-1.s3.amazonaws.com/firehose-logs/0.2.0/sam-template.yaml&stackName=logzio-firehose¶m_logzioToken=<>¶m_logzioListener=https://aws-firehose-logs-<>) | +| `ap-northeast-1` | [![Deploy to AWS](https://dytvr9ot2sszz.cloudfront.net/logz-docs/lights/LightS-button.png)](https://console.aws.amazon.com/cloudformation/home?region=ap-northeast-1#/stacks/create/review?templateURL=https://logzio-aws-integrations-ap-northeast-1.s3.amazonaws.com/firehose-logs/0.2.0/sam-template.yaml&stackName=logzio-firehose¶m_logzioToken=<>¶m_logzioListener=https://aws-firehose-logs-<>) | +| `ap-northeast-2` | [![Deploy to AWS](https://dytvr9ot2sszz.cloudfront.net/logz-docs/lights/LightS-button.png)](https://console.aws.amazon.com/cloudformation/home?region=ap-northeast-2#/stacks/create/review?templateURL=https://logzio-aws-integrations-ap-northeast-2.s3.amazonaws.com/firehose-logs/0.2.0/sam-template.yaml&stackName=logzio-firehose¶m_logzioToken=<>¶m_logzioListener=https://aws-firehose-logs-<>) | +| `ap-northeast-3` | [![Deploy to AWS](https://dytvr9ot2sszz.cloudfront.net/logz-docs/lights/LightS-button.png)](https://console.aws.amazon.com/cloudformation/home?region=ap-northeast-3#/stacks/create/review?templateURL=https://logzio-aws-integrations-ap-northeast-3.s3.amazonaws.com/firehose-logs/0.2.0/sam-template.yaml&stackName=logzio-firehose¶m_logzioToken=<>¶m_logzioListener=https://aws-firehose-logs-<>) | +| `ap-south-1` | [![Deploy to AWS](https://dytvr9ot2sszz.cloudfront.net/logz-docs/lights/LightS-button.png)](https://console.aws.amazon.com/cloudformation/home?region=ap-south-1#/stacks/create/review?templateURL=https://logzio-aws-integrations-ap-south-1.s3.amazonaws.com/firehose-logs/0.2.0/sam-template.yaml&stackName=logzio-firehose¶m_logzioToken=<>¶m_logzioListener=https://aws-firehose-logs-<>) | +| `ap-southeast-1` | [![Deploy to AWS](https://dytvr9ot2sszz.cloudfront.net/logz-docs/lights/LightS-button.png)](https://console.aws.amazon.com/cloudformation/home?region=ap-southeast-1#/stacks/create/review?templateURL=https://logzio-aws-integrations-ap-southeast-1.s3.amazonaws.com/firehose-logs/0.2.0/sam-template.yaml&stackName=logzio-firehose¶m_logzioToken=<>¶m_logzioListener=https://aws-firehose-logs-<>) | +| `ap-southeast-2` | [![Deploy to AWS](https://dytvr9ot2sszz.cloudfront.net/logz-docs/lights/LightS-button.png)](https://console.aws.amazon.com/cloudformation/home?region=ap-southeast-2#/stacks/create/review?templateURL=https://logzio-aws-integrations-ap-southeast-2.s3.amazonaws.com/firehose-logs/0.2.0/sam-template.yaml&stackName=logzio-firehose¶m_logzioToken=<>¶m_logzioListener=https://aws-firehose-logs-<>) | +| `ca-central-1` | [![Deploy to AWS](https://dytvr9ot2sszz.cloudfront.net/logz-docs/lights/LightS-button.png)](https://console.aws.amazon.com/cloudformation/home?region=ca-central-1#/stacks/create/review?templateURL=https://logzio-aws-integrations-ca-central-1.s3.amazonaws.com/firehose-logs/0.2.0/sam-template.yaml&stackName=logzio-firehose¶m_logzioToken=<>¶m_logzioListener=https://aws-firehose-logs-<>) | #### Specify stack details diff --git a/docs/shipping/AWS/aws-ecs-fargate.md b/docs/shipping/AWS/aws-ecs-fargate.md index da8bb4c1..e334de6f 100644 --- a/docs/shipping/AWS/aws-ecs-fargate.md +++ b/docs/shipping/AWS/aws-ecs-fargate.md @@ -41,23 +41,23 @@ Click on the **Launch Stack** button below to deploy the CloudFormation template | Region | Deployment | |------------------|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| -| `us-east-1` | [![Deploy to AWS](https://dytvr9ot2sszz.cloudfront.net/logz-docs/lights/LightS-button.png)](https://console.aws.amazon.com/cloudformation/home?region=us-east-1#/stacks/create/review?templateURL=https://logzio-aws-integrations-us-east-1.s3.amazonaws.com/ecs-fargate/ecs-fargate-0.1.0/sam-template.yaml&stackName=logzio-ecs-fargate¶m_logzioLogsToken=<>¶m_LogzioTracingToken=<>¶m_LogzioMetricsToken=<>¶m_logzioListener=https://aws-firehose-logs-<>¶m_LogzioRegion=<>¶m_LogzioListenerUrl=https://<>:8053) | -| `us-east-2` | [![Deploy to AWS](https://dytvr9ot2sszz.cloudfront.net/logz-docs/lights/LightS-button.png)](https://console.aws.amazon.com/cloudformation/home?region=us-east-2#/stacks/create/review?templateURL=https://logzio-aws-integrations-us-east-2.s3.amazonaws.com/ecs-fargate/ecs-fargate-0.1.0/sam-template.yaml&stackName=logzio-ecs-fargate¶m_logzioLogsToken=<>¶m_LogzioTracingToken=<>¶m_LogzioMetricsToken=<>¶m_logzioListener=https://aws-firehose-logs-<>¶m_LogzioRegion=<>¶m_LogzioListenerUrl=https://<>:8053) | -| `us-west-1` | [![Deploy to AWS](https://dytvr9ot2sszz.cloudfront.net/logz-docs/lights/LightS-button.png)](https://console.aws.amazon.com/cloudformation/home?region=us-west-1#/stacks/create/review?templateURL=https://logzio-aws-integrations-us-west-1.s3.amazonaws.com/ecs-fargate/ecs-fargate-0.1.0/sam-template.yaml&stackName=logzio-ecs-fargate¶m_logzioLogsToken=<>¶m_LogzioTracingToken=<>¶m_LogzioMetricsToken=<>¶m_logzioListener=https://aws-firehose-logs-<>¶m_LogzioRegion=<>¶m_LogzioListenerUrl=https://<>:8053) | -| `us-west-2` | [![Deploy to AWS](https://dytvr9ot2sszz.cloudfront.net/logz-docs/lights/LightS-button.png)](https://console.aws.amazon.com/cloudformation/home?region=us-west-2#/stacks/create/review?templateURL=https://logzio-aws-integrations-us-west-2.s3.amazonaws.com/ecs-fargate/ecs-fargate-0.1.0/sam-template.yaml&stackName=logzio-ecs-fargate¶m_logzioLogsToken=<>¶m_LogzioTracingToken=<>¶m_LogzioMetricsToken=<>¶m_logzioListener=https://aws-firehose-logs-<>¶m_LogzioRegion=<>¶m_LogzioListenerUrl=https://<>:8053) | -| `eu-central-1` | [![Deploy to AWS](https://dytvr9ot2sszz.cloudfront.net/logz-docs/lights/LightS-button.png)](https://console.aws.amazon.com/cloudformation/home?region=eu-central-1#/stacks/create/review?templateURL=https://logzio-aws-integrations-eu-central-1.s3.amazonaws.com/ecs-fargate/ecs-fargate-0.1.0/sam-template.yaml&stackName=logzio-ecs-fargate¶m_logzioLogsToken=<>¶m_LogzioTracingToken=<>¶m_LogzioMetricsToken=<>¶m_logzioListener=https://aws-firehose-logs-<>¶m_LogzioRegion=<>¶m_LogzioListenerUrl=https://<>:8053) | -| `eu-north-1` | [![Deploy to AWS](https://dytvr9ot2sszz.cloudfront.net/logz-docs/lights/LightS-button.png)](https://console.aws.amazon.com/cloudformation/home?region=eu-north-1#/stacks/create/review?templateURL=https://logzio-aws-integrations-eu-north-1.s3.amazonaws.com/ecs-fargate/ecs-fargate-0.1.0/sam-template.yaml&stackName=logzio-ecs-fargate¶m_logzioLogsToken=<>¶m_LogzioTracingToken=<>¶m_LogzioMetricsToken=<>¶m_logzioListener=https://aws-firehose-logs-<>¶m_LogzioRegion=<>¶m_LogzioListenerUrl=https://<>:8053) | -| `eu-west-1` | [![Deploy to AWS](https://dytvr9ot2sszz.cloudfront.net/logz-docs/lights/LightS-button.png)](https://console.aws.amazon.com/cloudformation/home?region=eu-west-1#/stacks/create/review?templateURL=https://logzio-aws-integrations-eu-west-1.s3.amazonaws.com/ecs-fargate/ecs-fargate-0.1.0/sam-template.yaml&stackName=logzio-ecs-fargate¶m_logzioLogsToken=<>¶m_LogzioTracingToken=<>¶m_LogzioMetricsToken=<>¶m_logzioListener=https://aws-firehose-logs-<>¶m_LogzioRegion=<>¶m_LogzioListenerUrl=https://<>:8053) | -| `eu-west-2` | [![Deploy to AWS](https://dytvr9ot2sszz.cloudfront.net/logz-docs/lights/LightS-button.png)](https://console.aws.amazon.com/cloudformation/home?region=eu-west-2#/stacks/create/review?templateURL=https://logzio-aws-integrations-eu-west-2.s3.amazonaws.com/ecs-fargate/ecs-fargate-0.1.0/sam-template.yaml&stackName=logzio-ecs-fargate¶m_logzioLogsToken=<>¶m_LogzioTracingToken=<>¶m_LogzioMetricsToken=<>¶m_logzioListener=https://aws-firehose-logs-<>¶m_LogzioRegion=<>¶m_LogzioListenerUrl=https://<>:8053) | -| `eu-west-3` | [![Deploy to AWS](https://dytvr9ot2sszz.cloudfront.net/logz-docs/lights/LightS-button.png)](https://console.aws.amazon.com/cloudformation/home?region=eu-west-3#/stacks/create/review?templateURL=https://logzio-aws-integrations-eu-west-3.s3.amazonaws.com/ecs-fargate/ecs-fargate-0.1.0/sam-template.yaml&stackName=logzio-ecs-fargate¶m_logzioLogsToken=<>¶m_LogzioTracingToken=<>¶m_LogzioMetricsToken=<>¶m_logzioListener=https://aws-firehose-logs-<>¶m_LogzioRegion=<>¶m_LogzioListenerUrl=https://<>:8053) | -| `sa-east-1` | [![Deploy to AWS](https://dytvr9ot2sszz.cloudfront.net/logz-docs/lights/LightS-button.png)](https://console.aws.amazon.com/cloudformation/home?region=sa-east-1#/stacks/create/review?templateURL=https://logzio-aws-integrations-sa-east-1.s3.amazonaws.com/ecs-fargate/ecs-fargate-0.1.0/sam-template.yaml&stackName=logzio-ecs-fargate¶m_logzioLogsToken=<>¶m_LogzioTracingToken=<>¶m_LogzioMetricsToken=<>¶m_logzioListener=https://aws-firehose-logs-<>¶m_LogzioRegion=<>¶m_LogzioListenerUrl=https://<>:8053) | -| `ap-northeast-1` | [![Deploy to AWS](https://dytvr9ot2sszz.cloudfront.net/logz-docs/lights/LightS-button.png)](https://console.aws.amazon.com/cloudformation/home?region=ap-northeast-1#/stacks/create/review?templateURL=https://logzio-aws-integrations-ap-northeast-1.s3.amazonaws.com/ecs-fargate/ecs-fargate-0.1.0/sam-template.yaml&stackName=logzio-ecs-fargate¶m_logzioLogsToken=<>¶m_LogzioTracingToken=<>¶m_LogzioMetricsToken=<>¶m_logzioListener=https://aws-firehose-logs-<>¶m_LogzioRegion=<>¶m_LogzioListenerUrl=https://<>:8053) | -| `ap-northeast-2` | [![Deploy to AWS](https://dytvr9ot2sszz.cloudfront.net/logz-docs/lights/LightS-button.png)](https://console.aws.amazon.com/cloudformation/home?region=ap-northeast-2#/stacks/create/review?templateURL=https://logzio-aws-integrations-ap-northeast-2.s3.amazonaws.com/ecs-fargate/ecs-fargate-0.1.0/sam-template.yaml&stackName=logzio-ecs-fargate¶m_logzioLogsToken=<>¶m_LogzioTracingToken=<>¶m_LogzioMetricsToken=<>¶m_logzioListener=https://aws-firehose-logs-<>¶m_LogzioRegion=<>¶m_LogzioListenerUrl=https://<>:8053) | -| `ap-northeast-3` | [![Deploy to AWS](https://dytvr9ot2sszz.cloudfront.net/logz-docs/lights/LightS-button.png)](https://console.aws.amazon.com/cloudformation/home?region=ap-northeast-3#/stacks/create/review?templateURL=https://logzio-aws-integrations-ap-northeast-3.s3.amazonaws.com/ecs-fargate/ecs-fargate-0.1.0/sam-template.yaml&stackName=logzio-ecs-fargate¶m_logzioLogsToken=<>¶m_LogzioTracingToken=<>¶m_LogzioMetricsToken=<>¶m_logzioListener=https://aws-firehose-logs-<>¶m_LogzioRegion=<>¶m_LogzioListenerUrl=https://<>:8053) | -| `ap-south-1` | [![Deploy to AWS](https://dytvr9ot2sszz.cloudfront.net/logz-docs/lights/LightS-button.png)](https://console.aws.amazon.com/cloudformation/home?region=ap-south-1#/stacks/create/review?templateURL=https://logzio-aws-integrations-ap-south-1.s3.amazonaws.com/ecs-fargate/ecs-fargate-0.1.0/sam-template.yaml&stackName=logzio-ecs-fargate¶m_logzioLogsToken=<>¶m_LogzioTracingToken=<>¶m_LogzioMetricsToken=<>¶m_logzioListener=https://aws-firehose-logs-<>¶m_LogzioRegion=<>¶m_LogzioListenerUrl=https://<>:8053) | -| `ap-southeast-1` | [![Deploy to AWS](https://dytvr9ot2sszz.cloudfront.net/logz-docs/lights/LightS-button.png)](https://console.aws.amazon.com/cloudformation/home?region=ap-southeast-1#/stacks/create/review?templateURL=https://logzio-aws-integrations-ap-southeast-1.s3.amazonaws.com/ecs-fargate/ecs-fargate-0.1.0/sam-template.yaml&stackName=logzio-ecs-fargate¶m_logzioLogsToken=<>¶m_LogzioTracingToken=<>¶m_LogzioMetricsToken=<>¶m_logzioListener=https://aws-firehose-logs-<>¶m_LogzioRegion=<>¶m_LogzioListenerUrl=https://<>:8053) | -| `ap-southeast-2` | [![Deploy to AWS](https://dytvr9ot2sszz.cloudfront.net/logz-docs/lights/LightS-button.png)](https://console.aws.amazon.com/cloudformation/home?region=ap-southeast-2#/stacks/create/review?templateURL=https://logzio-aws-integrations-ap-southeast-2.s3.amazonaws.com/ecs-fargate/ecs-fargate-0.1.0/sam-template.yaml&stackName=logzio-ecs-fargate¶m_logzioLogsToken=<>¶m_LogzioTracingToken=<>¶m_LogzioMetricsToken=<>¶m_logzioListener=https://aws-firehose-logs-<>¶m_LogzioRegion=<>¶m_LogzioListenerUrl=https://<>:8053) | -| `ca-central-1` | [![Deploy to AWS](https://dytvr9ot2sszz.cloudfront.net/logz-docs/lights/LightS-button.png)](https://console.aws.amazon.com/cloudformation/home?region=ca-central-1#/stacks/create/review?templateURL=https://logzio-aws-integrations-ca-central-1.s3.amazonaws.com/ecs-fargate/ecs-fargate-0.1.0/sam-template.yaml&stackName=logzio-ecs-fargate¶m_logzioLogsToken=<>¶m_LogzioTracingToken=<>¶m_LogzioMetricsToken=<>¶m_logzioListener=https://aws-firehose-logs-<>¶m_LogzioRegion=<>¶m_LogzioListenerUrl=https://<>:8053) | +| `us-east-1` | [![Deploy to AWS](https://dytvr9ot2sszz.cloudfront.net/logz-docs/lights/LightS-button.png)](https://console.aws.amazon.com/cloudformation/home?region=us-east-1#/stacks/create/review?templateURL=https://logzio-aws-integrations-us-east-1.s3.amazonaws.com/ecs-fargate/ecs-fargate-0.2.0/sam-template.yaml&stackName=logzio-ecs-fargate¶m_logzioLogsToken=<>¶m_LogzioTracingToken=<>¶m_LogzioMetricsToken=<>¶m_logzioListener=https://aws-firehose-logs-<>¶m_LogzioRegion=<>¶m_LogzioListenerUrl=https://<>:8053) | +| `us-east-2` | [![Deploy to AWS](https://dytvr9ot2sszz.cloudfront.net/logz-docs/lights/LightS-button.png)](https://console.aws.amazon.com/cloudformation/home?region=us-east-2#/stacks/create/review?templateURL=https://logzio-aws-integrations-us-east-2.s3.amazonaws.com/ecs-fargate/ecs-fargate-0.2.0/sam-template.yaml&stackName=logzio-ecs-fargate¶m_logzioLogsToken=<>¶m_LogzioTracingToken=<>¶m_LogzioMetricsToken=<>¶m_logzioListener=https://aws-firehose-logs-<>¶m_LogzioRegion=<>¶m_LogzioListenerUrl=https://<>:8053) | +| `us-west-1` | [![Deploy to AWS](https://dytvr9ot2sszz.cloudfront.net/logz-docs/lights/LightS-button.png)](https://console.aws.amazon.com/cloudformation/home?region=us-west-1#/stacks/create/review?templateURL=https://logzio-aws-integrations-us-west-1.s3.amazonaws.com/ecs-fargate/ecs-fargate-0.2.0/sam-template.yaml&stackName=logzio-ecs-fargate¶m_logzioLogsToken=<>¶m_LogzioTracingToken=<>¶m_LogzioMetricsToken=<>¶m_logzioListener=https://aws-firehose-logs-<>¶m_LogzioRegion=<>¶m_LogzioListenerUrl=https://<>:8053) | +| `us-west-2` | [![Deploy to AWS](https://dytvr9ot2sszz.cloudfront.net/logz-docs/lights/LightS-button.png)](https://console.aws.amazon.com/cloudformation/home?region=us-west-2#/stacks/create/review?templateURL=https://logzio-aws-integrations-us-west-2.s3.amazonaws.com/ecs-fargate/ecs-fargate-0.2.0/sam-template.yaml&stackName=logzio-ecs-fargate¶m_logzioLogsToken=<>¶m_LogzioTracingToken=<>¶m_LogzioMetricsToken=<>¶m_logzioListener=https://aws-firehose-logs-<>¶m_LogzioRegion=<>¶m_LogzioListenerUrl=https://<>:8053) | +| `eu-central-1` | [![Deploy to AWS](https://dytvr9ot2sszz.cloudfront.net/logz-docs/lights/LightS-button.png)](https://console.aws.amazon.com/cloudformation/home?region=eu-central-1#/stacks/create/review?templateURL=https://logzio-aws-integrations-eu-central-1.s3.amazonaws.com/ecs-fargate/ecs-fargate-0.2.0/sam-template.yaml&stackName=logzio-ecs-fargate¶m_logzioLogsToken=<>¶m_LogzioTracingToken=<>¶m_LogzioMetricsToken=<>¶m_logzioListener=https://aws-firehose-logs-<>¶m_LogzioRegion=<>¶m_LogzioListenerUrl=https://<>:8053) | +| `eu-north-1` | [![Deploy to AWS](https://dytvr9ot2sszz.cloudfront.net/logz-docs/lights/LightS-button.png)](https://console.aws.amazon.com/cloudformation/home?region=eu-north-1#/stacks/create/review?templateURL=https://logzio-aws-integrations-eu-north-1.s3.amazonaws.com/ecs-fargate/ecs-fargate-0.2.0/sam-template.yaml&stackName=logzio-ecs-fargate¶m_logzioLogsToken=<>¶m_LogzioTracingToken=<>¶m_LogzioMetricsToken=<>¶m_logzioListener=https://aws-firehose-logs-<>¶m_LogzioRegion=<>¶m_LogzioListenerUrl=https://<>:8053) | +| `eu-west-1` | [![Deploy to AWS](https://dytvr9ot2sszz.cloudfront.net/logz-docs/lights/LightS-button.png)](https://console.aws.amazon.com/cloudformation/home?region=eu-west-1#/stacks/create/review?templateURL=https://logzio-aws-integrations-eu-west-1.s3.amazonaws.com/ecs-fargate/ecs-fargate-0.2.0/sam-template.yaml&stackName=logzio-ecs-fargate¶m_logzioLogsToken=<>¶m_LogzioTracingToken=<>¶m_LogzioMetricsToken=<>¶m_logzioListener=https://aws-firehose-logs-<>¶m_LogzioRegion=<>¶m_LogzioListenerUrl=https://<>:8053) | +| `eu-west-2` | [![Deploy to AWS](https://dytvr9ot2sszz.cloudfront.net/logz-docs/lights/LightS-button.png)](https://console.aws.amazon.com/cloudformation/home?region=eu-west-2#/stacks/create/review?templateURL=https://logzio-aws-integrations-eu-west-2.s3.amazonaws.com/ecs-fargate/ecs-fargate-0.2.0/sam-template.yaml&stackName=logzio-ecs-fargate¶m_logzioLogsToken=<>¶m_LogzioTracingToken=<>¶m_LogzioMetricsToken=<>¶m_logzioListener=https://aws-firehose-logs-<>¶m_LogzioRegion=<>¶m_LogzioListenerUrl=https://<>:8053) | +| `eu-west-3` | [![Deploy to AWS](https://dytvr9ot2sszz.cloudfront.net/logz-docs/lights/LightS-button.png)](https://console.aws.amazon.com/cloudformation/home?region=eu-west-3#/stacks/create/review?templateURL=https://logzio-aws-integrations-eu-west-3.s3.amazonaws.com/ecs-fargate/ecs-fargate-0.2.0/sam-template.yaml&stackName=logzio-ecs-fargate¶m_logzioLogsToken=<>¶m_LogzioTracingToken=<>¶m_LogzioMetricsToken=<>¶m_logzioListener=https://aws-firehose-logs-<>¶m_LogzioRegion=<>¶m_LogzioListenerUrl=https://<>:8053) | +| `sa-east-1` | [![Deploy to AWS](https://dytvr9ot2sszz.cloudfront.net/logz-docs/lights/LightS-button.png)](https://console.aws.amazon.com/cloudformation/home?region=sa-east-1#/stacks/create/review?templateURL=https://logzio-aws-integrations-sa-east-1.s3.amazonaws.com/ecs-fargate/ecs-fargate-0.2.0/sam-template.yaml&stackName=logzio-ecs-fargate¶m_logzioLogsToken=<>¶m_LogzioTracingToken=<>¶m_LogzioMetricsToken=<>¶m_logzioListener=https://aws-firehose-logs-<>¶m_LogzioRegion=<>¶m_LogzioListenerUrl=https://<>:8053) | +| `ap-northeast-1` | [![Deploy to AWS](https://dytvr9ot2sszz.cloudfront.net/logz-docs/lights/LightS-button.png)](https://console.aws.amazon.com/cloudformation/home?region=ap-northeast-1#/stacks/create/review?templateURL=https://logzio-aws-integrations-ap-northeast-1.s3.amazonaws.com/ecs-fargate/ecs-fargate-0.2.0/sam-template.yaml&stackName=logzio-ecs-fargate¶m_logzioLogsToken=<>¶m_LogzioTracingToken=<>¶m_LogzioMetricsToken=<>¶m_logzioListener=https://aws-firehose-logs-<>¶m_LogzioRegion=<>¶m_LogzioListenerUrl=https://<>:8053) | +| `ap-northeast-2` | [![Deploy to AWS](https://dytvr9ot2sszz.cloudfront.net/logz-docs/lights/LightS-button.png)](https://console.aws.amazon.com/cloudformation/home?region=ap-northeast-2#/stacks/create/review?templateURL=https://logzio-aws-integrations-ap-northeast-2.s3.amazonaws.com/ecs-fargate/ecs-fargate-0.2.0/sam-template.yaml&stackName=logzio-ecs-fargate¶m_logzioLogsToken=<>¶m_LogzioTracingToken=<>¶m_LogzioMetricsToken=<>¶m_logzioListener=https://aws-firehose-logs-<>¶m_LogzioRegion=<>¶m_LogzioListenerUrl=https://<>:8053) | +| `ap-northeast-3` | [![Deploy to AWS](https://dytvr9ot2sszz.cloudfront.net/logz-docs/lights/LightS-button.png)](https://console.aws.amazon.com/cloudformation/home?region=ap-northeast-3#/stacks/create/review?templateURL=https://logzio-aws-integrations-ap-northeast-3.s3.amazonaws.com/ecs-fargate/ecs-fargate-0.2.0/sam-template.yaml&stackName=logzio-ecs-fargate¶m_logzioLogsToken=<>¶m_LogzioTracingToken=<>¶m_LogzioMetricsToken=<>¶m_logzioListener=https://aws-firehose-logs-<>¶m_LogzioRegion=<>¶m_LogzioListenerUrl=https://<>:8053) | +| `ap-south-1` | [![Deploy to AWS](https://dytvr9ot2sszz.cloudfront.net/logz-docs/lights/LightS-button.png)](https://console.aws.amazon.com/cloudformation/home?region=ap-south-1#/stacks/create/review?templateURL=https://logzio-aws-integrations-ap-south-1.s3.amazonaws.com/ecs-fargate/ecs-fargate-0.2.0/sam-template.yaml&stackName=logzio-ecs-fargate¶m_logzioLogsToken=<>¶m_LogzioTracingToken=<>¶m_LogzioMetricsToken=<>¶m_logzioListener=https://aws-firehose-logs-<>¶m_LogzioRegion=<>¶m_LogzioListenerUrl=https://<>:8053) | +| `ap-southeast-1` | [![Deploy to AWS](https://dytvr9ot2sszz.cloudfront.net/logz-docs/lights/LightS-button.png)](https://console.aws.amazon.com/cloudformation/home?region=ap-southeast-1#/stacks/create/review?templateURL=https://logzio-aws-integrations-ap-southeast-1.s3.amazonaws.com/ecs-fargate/ecs-fargate-0.2.0/sam-template.yaml&stackName=logzio-ecs-fargate¶m_logzioLogsToken=<>¶m_LogzioTracingToken=<>¶m_LogzioMetricsToken=<>¶m_logzioListener=https://aws-firehose-logs-<>¶m_LogzioRegion=<>¶m_LogzioListenerUrl=https://<>:8053) | +| `ap-southeast-2` | [![Deploy to AWS](https://dytvr9ot2sszz.cloudfront.net/logz-docs/lights/LightS-button.png)](https://console.aws.amazon.com/cloudformation/home?region=ap-southeast-2#/stacks/create/review?templateURL=https://logzio-aws-integrations-ap-southeast-2.s3.amazonaws.com/ecs-fargate/ecs-fargate-0.2.0/sam-template.yaml&stackName=logzio-ecs-fargate¶m_logzioLogsToken=<>¶m_LogzioTracingToken=<>¶m_LogzioMetricsToken=<>¶m_logzioListener=https://aws-firehose-logs-<>¶m_LogzioRegion=<>¶m_LogzioListenerUrl=https://<>:8053) | +| `ca-central-1` | [![Deploy to AWS](https://dytvr9ot2sszz.cloudfront.net/logz-docs/lights/LightS-button.png)](https://console.aws.amazon.com/cloudformation/home?region=ca-central-1#/stacks/create/review?templateURL=https://logzio-aws-integrations-ca-central-1.s3.amazonaws.com/ecs-fargate/ecs-fargate-0.2.0/sam-template.yaml&stackName=logzio-ecs-fargate¶m_logzioLogsToken=<>¶m_LogzioTracingToken=<>¶m_LogzioMetricsToken=<>¶m_logzioListener=https://aws-firehose-logs-<>¶m_LogzioRegion=<>¶m_LogzioListenerUrl=https://<>:8053) | ##### (Option 2) Cloudformation template for metrics and traces only: @@ -137,7 +137,7 @@ The `CollectorConfigParameter` resource creates an AWS Systems Manager (SSM) par ```yaml receivers: awsxray: - endpoint: 0.0.0.1.0000 + endpoint: 0.0.0.0:2000 transport: udp otlp: protocols: diff --git a/docs/shipping/AWS/aws-fsx.md b/docs/shipping/AWS/aws-fsx.md index 6e4898b5..cea2fea4 100644 --- a/docs/shipping/AWS/aws-fsx.md +++ b/docs/shipping/AWS/aws-fsx.md @@ -25,23 +25,23 @@ To deploy this project, click the button that matches the region you wish to dep | Region | Deployment | |------------------|--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| -| `us-east-1` | [![Deploy to AWS](https://dytvr9ot2sszz.cloudfront.net/logz-docs/lights/LightS-button.png)](https://console.aws.amazon.com/cloudformation/home?region=us-east-1#/stacks/create/review?templateURL=https://logzio-aws-integrations-us-east-1.s3.amazonaws.com/firehose-logs/0.1.0/sam-template.yaml&stackName=logzio-firehose¶m_logzioToken=<>¶m_logzioListener=https://aws-firehose-logs-<>) | -| `us-east-2` | [![Deploy to AWS](https://dytvr9ot2sszz.cloudfront.net/logz-docs/lights/LightS-button.png)](https://console.aws.amazon.com/cloudformation/home?region=us-east-2#/stacks/create/review?templateURL=https://logzio-aws-integrations-us-east-2.s3.amazonaws.com/firehose-logs/0.1.0/sam-template.yaml&stackName=logzio-firehose¶m_logzioToken=<>¶m_logzioListener=https://aws-firehose-logs-<>) | -| `us-west-1` | [![Deploy to AWS](https://dytvr9ot2sszz.cloudfront.net/logz-docs/lights/LightS-button.png)](https://console.aws.amazon.com/cloudformation/home?region=us-west-1#/stacks/create/review?templateURL=https://logzio-aws-integrations-us-west-1.s3.amazonaws.com/firehose-logs/0.1.0/sam-template.yaml&stackName=logzio-firehose¶m_logzioToken=<>¶m_logzioListener=https://aws-firehose-logs-<>) | -| `us-west-2` | [![Deploy to AWS](https://dytvr9ot2sszz.cloudfront.net/logz-docs/lights/LightS-button.png)](https://console.aws.amazon.com/cloudformation/home?region=us-west-2#/stacks/create/review?templateURL=https://logzio-aws-integrations-us-west-2.s3.amazonaws.com/firehose-logs/0.1.0/sam-template.yaml&stackName=logzio-firehose¶m_logzioToken=<>¶m_logzioListener=https://aws-firehose-logs-<>) | -| `eu-central-1` | [![Deploy to AWS](https://dytvr9ot2sszz.cloudfront.net/logz-docs/lights/LightS-button.png)](https://console.aws.amazon.com/cloudformation/home?region=eu-central-1#/stacks/create/review?templateURL=https://logzio-aws-integrations-eu-central-1.s3.amazonaws.com/firehose-logs/0.1.0/sam-template.yaml&stackName=logzio-firehose¶m_logzioToken=<>¶m_logzioListener=https://aws-firehose-logs-<>) | -| `eu-north-1` | [![Deploy to AWS](https://dytvr9ot2sszz.cloudfront.net/logz-docs/lights/LightS-button.png)](https://console.aws.amazon.com/cloudformation/home?region=eu-north-1#/stacks/create/review?templateURL=https://logzio-aws-integrations-eu-north-1.s3.amazonaws.com/firehose-logs/0.1.0/sam-template.yaml&stackName=logzio-firehose¶m_logzioToken=<>¶m_logzioListener=https://aws-firehose-logs-<>) | -| `eu-west-1` | [![Deploy to AWS](https://dytvr9ot2sszz.cloudfront.net/logz-docs/lights/LightS-button.png)](https://console.aws.amazon.com/cloudformation/home?region=eu-west-1#/stacks/create/review?templateURL=https://logzio-aws-integrations-eu-west-1.s3.amazonaws.com/firehose-logs/0.1.0/sam-template.yaml&stackName=logzio-firehose¶m_logzioToken=<>¶m_logzioListener=https://aws-firehose-logs-<>) | -| `eu-west-2` | [![Deploy to AWS](https://dytvr9ot2sszz.cloudfront.net/logz-docs/lights/LightS-button.png)](https://console.aws.amazon.com/cloudformation/home?region=eu-west-2#/stacks/create/review?templateURL=https://logzio-aws-integrations-eu-west-2.s3.amazonaws.com/firehose-logs/0.1.0/sam-template.yaml&stackName=logzio-firehose¶m_logzioToken=<>¶m_logzioListener=https://aws-firehose-logs-<>) | -| `eu-west-3` | [![Deploy to AWS](https://dytvr9ot2sszz.cloudfront.net/logz-docs/lights/LightS-button.png)](https://console.aws.amazon.com/cloudformation/home?region=eu-west-3#/stacks/create/review?templateURL=https://logzio-aws-integrations-eu-west-3.s3.amazonaws.com/firehose-logs/0.1.0/sam-template.yaml&stackName=logzio-firehose¶m_logzioToken=<>¶m_logzioListener=https://aws-firehose-logs-<>) | -| `sa-east-1` | [![Deploy to AWS](https://dytvr9ot2sszz.cloudfront.net/logz-docs/lights/LightS-button.png)](https://console.aws.amazon.com/cloudformation/home?region=sa-east-1#/stacks/create/review?templateURL=https://logzio-aws-integrations-sa-east-1.s3.amazonaws.com/firehose-logs/0.1.0/sam-template.yaml&stackName=logzio-firehose¶m_logzioToken=<>¶m_logzioListener=https://aws-firehose-logs-<>) | -| `ap-northeast-1` | [![Deploy to AWS](https://dytvr9ot2sszz.cloudfront.net/logz-docs/lights/LightS-button.png)](https://console.aws.amazon.com/cloudformation/home?region=ap-northeast-1#/stacks/create/review?templateURL=https://logzio-aws-integrations-ap-northeast-1.s3.amazonaws.com/firehose-logs/0.1.0/sam-template.yaml&stackName=logzio-firehose¶m_logzioToken=<>¶m_logzioListener=https://aws-firehose-logs-<>) | -| `ap-northeast-2` | [![Deploy to AWS](https://dytvr9ot2sszz.cloudfront.net/logz-docs/lights/LightS-button.png)](https://console.aws.amazon.com/cloudformation/home?region=ap-northeast-2#/stacks/create/review?templateURL=https://logzio-aws-integrations-ap-northeast-2.s3.amazonaws.com/firehose-logs/0.1.0/sam-template.yaml&stackName=logzio-firehose¶m_logzioToken=<>¶m_logzioListener=https://aws-firehose-logs-<>) | -| `ap-northeast-3` | [![Deploy to AWS](https://dytvr9ot2sszz.cloudfront.net/logz-docs/lights/LightS-button.png)](https://console.aws.amazon.com/cloudformation/home?region=ap-northeast-3#/stacks/create/review?templateURL=https://logzio-aws-integrations-ap-northeast-3.s3.amazonaws.com/firehose-logs/0.1.0/sam-template.yaml&stackName=logzio-firehose¶m_logzioToken=<>¶m_logzioListener=https://aws-firehose-logs-<>) | -| `ap-south-1` | [![Deploy to AWS](https://dytvr9ot2sszz.cloudfront.net/logz-docs/lights/LightS-button.png)](https://console.aws.amazon.com/cloudformation/home?region=ap-south-1#/stacks/create/review?templateURL=https://logzio-aws-integrations-ap-south-1.s3.amazonaws.com/firehose-logs/0.1.0/sam-template.yaml&stackName=logzio-firehose¶m_logzioToken=<>¶m_logzioListener=https://aws-firehose-logs-<>) | -| `ap-southeast-1` | [![Deploy to AWS](https://dytvr9ot2sszz.cloudfront.net/logz-docs/lights/LightS-button.png)](https://console.aws.amazon.com/cloudformation/home?region=ap-southeast-1#/stacks/create/review?templateURL=https://logzio-aws-integrations-ap-southeast-1.s3.amazonaws.com/firehose-logs/0.1.0/sam-template.yaml&stackName=logzio-firehose¶m_logzioToken=<>¶m_logzioListener=https://aws-firehose-logs-<>) | -| `ap-southeast-2` | [![Deploy to AWS](https://dytvr9ot2sszz.cloudfront.net/logz-docs/lights/LightS-button.png)](https://console.aws.amazon.com/cloudformation/home?region=ap-southeast-2#/stacks/create/review?templateURL=https://logzio-aws-integrations-ap-southeast-2.s3.amazonaws.com/firehose-logs/0.1.0/sam-template.yaml&stackName=logzio-firehose¶m_logzioToken=<>¶m_logzioListener=https://aws-firehose-logs-<>) | -| `ca-central-1` | [![Deploy to AWS](https://dytvr9ot2sszz.cloudfront.net/logz-docs/lights/LightS-button.png)](https://console.aws.amazon.com/cloudformation/home?region=ca-central-1#/stacks/create/review?templateURL=https://logzio-aws-integrations-ca-central-1.s3.amazonaws.com/firehose-logs/0.1.0/sam-template.yaml&stackName=logzio-firehose¶m_logzioToken=<>¶m_logzioListener=https://aws-firehose-logs-<>) | +| `us-east-1` | [![Deploy to AWS](https://dytvr9ot2sszz.cloudfront.net/logz-docs/lights/LightS-button.png)](https://console.aws.amazon.com/cloudformation/home?region=us-east-1#/stacks/create/review?templateURL=https://logzio-aws-integrations-us-east-1.s3.amazonaws.com/firehose-logs/0.2.0/sam-template.yaml&stackName=logzio-firehose¶m_logzioToken=<>¶m_logzioListener=https://aws-firehose-logs-<>) | +| `us-east-2` | [![Deploy to AWS](https://dytvr9ot2sszz.cloudfront.net/logz-docs/lights/LightS-button.png)](https://console.aws.amazon.com/cloudformation/home?region=us-east-2#/stacks/create/review?templateURL=https://logzio-aws-integrations-us-east-2.s3.amazonaws.com/firehose-logs/0.2.0/sam-template.yaml&stackName=logzio-firehose¶m_logzioToken=<>¶m_logzioListener=https://aws-firehose-logs-<>) | +| `us-west-1` | [![Deploy to AWS](https://dytvr9ot2sszz.cloudfront.net/logz-docs/lights/LightS-button.png)](https://console.aws.amazon.com/cloudformation/home?region=us-west-1#/stacks/create/review?templateURL=https://logzio-aws-integrations-us-west-1.s3.amazonaws.com/firehose-logs/0.2.0/sam-template.yaml&stackName=logzio-firehose¶m_logzioToken=<>¶m_logzioListener=https://aws-firehose-logs-<>) | +| `us-west-2` | [![Deploy to AWS](https://dytvr9ot2sszz.cloudfront.net/logz-docs/lights/LightS-button.png)](https://console.aws.amazon.com/cloudformation/home?region=us-west-2#/stacks/create/review?templateURL=https://logzio-aws-integrations-us-west-2.s3.amazonaws.com/firehose-logs/0.2.0/sam-template.yaml&stackName=logzio-firehose¶m_logzioToken=<>¶m_logzioListener=https://aws-firehose-logs-<>) | +| `eu-central-1` | [![Deploy to AWS](https://dytvr9ot2sszz.cloudfront.net/logz-docs/lights/LightS-button.png)](https://console.aws.amazon.com/cloudformation/home?region=eu-central-1#/stacks/create/review?templateURL=https://logzio-aws-integrations-eu-central-1.s3.amazonaws.com/firehose-logs/0.2.0/sam-template.yaml&stackName=logzio-firehose¶m_logzioToken=<>¶m_logzioListener=https://aws-firehose-logs-<>) | +| `eu-north-1` | [![Deploy to AWS](https://dytvr9ot2sszz.cloudfront.net/logz-docs/lights/LightS-button.png)](https://console.aws.amazon.com/cloudformation/home?region=eu-north-1#/stacks/create/review?templateURL=https://logzio-aws-integrations-eu-north-1.s3.amazonaws.com/firehose-logs/0.2.0/sam-template.yaml&stackName=logzio-firehose¶m_logzioToken=<>¶m_logzioListener=https://aws-firehose-logs-<>) | +| `eu-west-1` | [![Deploy to AWS](https://dytvr9ot2sszz.cloudfront.net/logz-docs/lights/LightS-button.png)](https://console.aws.amazon.com/cloudformation/home?region=eu-west-1#/stacks/create/review?templateURL=https://logzio-aws-integrations-eu-west-1.s3.amazonaws.com/firehose-logs/0.2.0/sam-template.yaml&stackName=logzio-firehose¶m_logzioToken=<>¶m_logzioListener=https://aws-firehose-logs-<>) | +| `eu-west-2` | [![Deploy to AWS](https://dytvr9ot2sszz.cloudfront.net/logz-docs/lights/LightS-button.png)](https://console.aws.amazon.com/cloudformation/home?region=eu-west-2#/stacks/create/review?templateURL=https://logzio-aws-integrations-eu-west-2.s3.amazonaws.com/firehose-logs/0.2.0/sam-template.yaml&stackName=logzio-firehose¶m_logzioToken=<>¶m_logzioListener=https://aws-firehose-logs-<>) | +| `eu-west-3` | [![Deploy to AWS](https://dytvr9ot2sszz.cloudfront.net/logz-docs/lights/LightS-button.png)](https://console.aws.amazon.com/cloudformation/home?region=eu-west-3#/stacks/create/review?templateURL=https://logzio-aws-integrations-eu-west-3.s3.amazonaws.com/firehose-logs/0.2.0/sam-template.yaml&stackName=logzio-firehose¶m_logzioToken=<>¶m_logzioListener=https://aws-firehose-logs-<>) | +| `sa-east-1` | [![Deploy to AWS](https://dytvr9ot2sszz.cloudfront.net/logz-docs/lights/LightS-button.png)](https://console.aws.amazon.com/cloudformation/home?region=sa-east-1#/stacks/create/review?templateURL=https://logzio-aws-integrations-sa-east-1.s3.amazonaws.com/firehose-logs/0.2.0/sam-template.yaml&stackName=logzio-firehose¶m_logzioToken=<>¶m_logzioListener=https://aws-firehose-logs-<>) | +| `ap-northeast-1` | [![Deploy to AWS](https://dytvr9ot2sszz.cloudfront.net/logz-docs/lights/LightS-button.png)](https://console.aws.amazon.com/cloudformation/home?region=ap-northeast-1#/stacks/create/review?templateURL=https://logzio-aws-integrations-ap-northeast-1.s3.amazonaws.com/firehose-logs/0.2.0/sam-template.yaml&stackName=logzio-firehose¶m_logzioToken=<>¶m_logzioListener=https://aws-firehose-logs-<>) | +| `ap-northeast-2` | [![Deploy to AWS](https://dytvr9ot2sszz.cloudfront.net/logz-docs/lights/LightS-button.png)](https://console.aws.amazon.com/cloudformation/home?region=ap-northeast-2#/stacks/create/review?templateURL=https://logzio-aws-integrations-ap-northeast-2.s3.amazonaws.com/firehose-logs/0.2.0/sam-template.yaml&stackName=logzio-firehose¶m_logzioToken=<>¶m_logzioListener=https://aws-firehose-logs-<>) | +| `ap-northeast-3` | [![Deploy to AWS](https://dytvr9ot2sszz.cloudfront.net/logz-docs/lights/LightS-button.png)](https://console.aws.amazon.com/cloudformation/home?region=ap-northeast-3#/stacks/create/review?templateURL=https://logzio-aws-integrations-ap-northeast-3.s3.amazonaws.com/firehose-logs/0.2.0/sam-template.yaml&stackName=logzio-firehose¶m_logzioToken=<>¶m_logzioListener=https://aws-firehose-logs-<>) | +| `ap-south-1` | [![Deploy to AWS](https://dytvr9ot2sszz.cloudfront.net/logz-docs/lights/LightS-button.png)](https://console.aws.amazon.com/cloudformation/home?region=ap-south-1#/stacks/create/review?templateURL=https://logzio-aws-integrations-ap-south-1.s3.amazonaws.com/firehose-logs/0.2.0/sam-template.yaml&stackName=logzio-firehose¶m_logzioToken=<>¶m_logzioListener=https://aws-firehose-logs-<>) | +| `ap-southeast-1` | [![Deploy to AWS](https://dytvr9ot2sszz.cloudfront.net/logz-docs/lights/LightS-button.png)](https://console.aws.amazon.com/cloudformation/home?region=ap-southeast-1#/stacks/create/review?templateURL=https://logzio-aws-integrations-ap-southeast-1.s3.amazonaws.com/firehose-logs/0.2.0/sam-template.yaml&stackName=logzio-firehose¶m_logzioToken=<>¶m_logzioListener=https://aws-firehose-logs-<>) | +| `ap-southeast-2` | [![Deploy to AWS](https://dytvr9ot2sszz.cloudfront.net/logz-docs/lights/LightS-button.png)](https://console.aws.amazon.com/cloudformation/home?region=ap-southeast-2#/stacks/create/review?templateURL=https://logzio-aws-integrations-ap-southeast-2.s3.amazonaws.com/firehose-logs/0.2.0/sam-template.yaml&stackName=logzio-firehose¶m_logzioToken=<>¶m_logzioListener=https://aws-firehose-logs-<>) | +| `ca-central-1` | [![Deploy to AWS](https://dytvr9ot2sszz.cloudfront.net/logz-docs/lights/LightS-button.png)](https://console.aws.amazon.com/cloudformation/home?region=ca-central-1#/stacks/create/review?templateURL=https://logzio-aws-integrations-ca-central-1.s3.amazonaws.com/firehose-logs/0.2.0/sam-template.yaml&stackName=logzio-firehose¶m_logzioToken=<>¶m_logzioListener=https://aws-firehose-logs-<>) | #### Specify stack details diff --git a/docs/shipping/AWS/aws-guardduty.md b/docs/shipping/AWS/aws-guardduty.md index 39804c98..6ceb4704 100644 --- a/docs/shipping/AWS/aws-guardduty.md +++ b/docs/shipping/AWS/aws-guardduty.md @@ -37,23 +37,23 @@ To deploy this project, click the button that matches the region you wish to dep | Region | Deployment | |------------------|--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| -| `us-east-1` | [![Deploy to AWS](https://dytvr9ot2sszz.cloudfront.net/logz-docs/lights/LightS-button.png)](https://console.aws.amazon.com/cloudformation/home?region=us-east-1#/stacks/create/review?templateURL=https://logzio-aws-integrations-us-east-1.s3.amazonaws.com/firehose-logs/0.1.0/sam-template.yaml&stackName=logzio-firehose¶m_logzioToken=<>¶m_logzioListener=https://aws-firehose-logs-<>) | -| `us-east-2` | [![Deploy to AWS](https://dytvr9ot2sszz.cloudfront.net/logz-docs/lights/LightS-button.png)](https://console.aws.amazon.com/cloudformation/home?region=us-east-2#/stacks/create/review?templateURL=https://logzio-aws-integrations-us-east-2.s3.amazonaws.com/firehose-logs/0.1.0/sam-template.yaml&stackName=logzio-firehose¶m_logzioToken=<>¶m_logzioListener=https://aws-firehose-logs-<>) | -| `us-west-1` | [![Deploy to AWS](https://dytvr9ot2sszz.cloudfront.net/logz-docs/lights/LightS-button.png)](https://console.aws.amazon.com/cloudformation/home?region=us-west-1#/stacks/create/review?templateURL=https://logzio-aws-integrations-us-west-1.s3.amazonaws.com/firehose-logs/0.1.0/sam-template.yaml&stackName=logzio-firehose¶m_logzioToken=<>¶m_logzioListener=https://aws-firehose-logs-<>) | -| `us-west-2` | [![Deploy to AWS](https://dytvr9ot2sszz.cloudfront.net/logz-docs/lights/LightS-button.png)](https://console.aws.amazon.com/cloudformation/home?region=us-west-2#/stacks/create/review?templateURL=https://logzio-aws-integrations-us-west-2.s3.amazonaws.com/firehose-logs/0.1.0/sam-template.yaml&stackName=logzio-firehose¶m_logzioToken=<>¶m_logzioListener=https://aws-firehose-logs-<>) | -| `eu-central-1` | [![Deploy to AWS](https://dytvr9ot2sszz.cloudfront.net/logz-docs/lights/LightS-button.png)](https://console.aws.amazon.com/cloudformation/home?region=eu-central-1#/stacks/create/review?templateURL=https://logzio-aws-integrations-eu-central-1.s3.amazonaws.com/firehose-logs/0.1.0/sam-template.yaml&stackName=logzio-firehose¶m_logzioToken=<>¶m_logzioListener=https://aws-firehose-logs-<>) | -| `eu-north-1` | [![Deploy to AWS](https://dytvr9ot2sszz.cloudfront.net/logz-docs/lights/LightS-button.png)](https://console.aws.amazon.com/cloudformation/home?region=eu-north-1#/stacks/create/review?templateURL=https://logzio-aws-integrations-eu-north-1.s3.amazonaws.com/firehose-logs/0.1.0/sam-template.yaml&stackName=logzio-firehose¶m_logzioToken=<>¶m_logzioListener=https://aws-firehose-logs-<>) | -| `eu-west-1` | [![Deploy to AWS](https://dytvr9ot2sszz.cloudfront.net/logz-docs/lights/LightS-button.png)](https://console.aws.amazon.com/cloudformation/home?region=eu-west-1#/stacks/create/review?templateURL=https://logzio-aws-integrations-eu-west-1.s3.amazonaws.com/firehose-logs/0.1.0/sam-template.yaml&stackName=logzio-firehose¶m_logzioToken=<>¶m_logzioListener=https://aws-firehose-logs-<>) | -| `eu-west-2` | [![Deploy to AWS](https://dytvr9ot2sszz.cloudfront.net/logz-docs/lights/LightS-button.png)](https://console.aws.amazon.com/cloudformation/home?region=eu-west-2#/stacks/create/review?templateURL=https://logzio-aws-integrations-eu-west-2.s3.amazonaws.com/firehose-logs/0.1.0/sam-template.yaml&stackName=logzio-firehose¶m_logzioToken=<>¶m_logzioListener=https://aws-firehose-logs-<>) | -| `eu-west-3` | [![Deploy to AWS](https://dytvr9ot2sszz.cloudfront.net/logz-docs/lights/LightS-button.png)](https://console.aws.amazon.com/cloudformation/home?region=eu-west-3#/stacks/create/review?templateURL=https://logzio-aws-integrations-eu-west-3.s3.amazonaws.com/firehose-logs/0.1.0/sam-template.yaml&stackName=logzio-firehose¶m_logzioToken=<>¶m_logzioListener=https://aws-firehose-logs-<>) | -| `sa-east-1` | [![Deploy to AWS](https://dytvr9ot2sszz.cloudfront.net/logz-docs/lights/LightS-button.png)](https://console.aws.amazon.com/cloudformation/home?region=sa-east-1#/stacks/create/review?templateURL=https://logzio-aws-integrations-sa-east-1.s3.amazonaws.com/firehose-logs/0.1.0/sam-template.yaml&stackName=logzio-firehose¶m_logzioToken=<>¶m_logzioListener=https://aws-firehose-logs-<>) | -| `ap-northeast-1` | [![Deploy to AWS](https://dytvr9ot2sszz.cloudfront.net/logz-docs/lights/LightS-button.png)](https://console.aws.amazon.com/cloudformation/home?region=ap-northeast-1#/stacks/create/review?templateURL=https://logzio-aws-integrations-ap-northeast-1.s3.amazonaws.com/firehose-logs/0.1.0/sam-template.yaml&stackName=logzio-firehose¶m_logzioToken=<>¶m_logzioListener=https://aws-firehose-logs-<>) | -| `ap-northeast-2` | [![Deploy to AWS](https://dytvr9ot2sszz.cloudfront.net/logz-docs/lights/LightS-button.png)](https://console.aws.amazon.com/cloudformation/home?region=ap-northeast-2#/stacks/create/review?templateURL=https://logzio-aws-integrations-ap-northeast-2.s3.amazonaws.com/firehose-logs/0.1.0/sam-template.yaml&stackName=logzio-firehose¶m_logzioToken=<>¶m_logzioListener=https://aws-firehose-logs-<>) | -| `ap-northeast-3` | [![Deploy to AWS](https://dytvr9ot2sszz.cloudfront.net/logz-docs/lights/LightS-button.png)](https://console.aws.amazon.com/cloudformation/home?region=ap-northeast-3#/stacks/create/review?templateURL=https://logzio-aws-integrations-ap-northeast-3.s3.amazonaws.com/firehose-logs/0.1.0/sam-template.yaml&stackName=logzio-firehose¶m_logzioToken=<>¶m_logzioListener=https://aws-firehose-logs-<>) | -| `ap-south-1` | [![Deploy to AWS](https://dytvr9ot2sszz.cloudfront.net/logz-docs/lights/LightS-button.png)](https://console.aws.amazon.com/cloudformation/home?region=ap-south-1#/stacks/create/review?templateURL=https://logzio-aws-integrations-ap-south-1.s3.amazonaws.com/firehose-logs/0.1.0/sam-template.yaml&stackName=logzio-firehose¶m_logzioToken=<>¶m_logzioListener=https://aws-firehose-logs-<>) | -| `ap-southeast-1` | [![Deploy to AWS](https://dytvr9ot2sszz.cloudfront.net/logz-docs/lights/LightS-button.png)](https://console.aws.amazon.com/cloudformation/home?region=ap-southeast-1#/stacks/create/review?templateURL=https://logzio-aws-integrations-ap-southeast-1.s3.amazonaws.com/firehose-logs/0.1.0/sam-template.yaml&stackName=logzio-firehose¶m_logzioToken=<>¶m_logzioListener=https://aws-firehose-logs-<>) | -| `ap-southeast-2` | [![Deploy to AWS](https://dytvr9ot2sszz.cloudfront.net/logz-docs/lights/LightS-button.png)](https://console.aws.amazon.com/cloudformation/home?region=ap-southeast-2#/stacks/create/review?templateURL=https://logzio-aws-integrations-ap-southeast-2.s3.amazonaws.com/firehose-logs/0.1.0/sam-template.yaml&stackName=logzio-firehose¶m_logzioToken=<>¶m_logzioListener=https://aws-firehose-logs-<>) | -| `ca-central-1` | [![Deploy to AWS](https://dytvr9ot2sszz.cloudfront.net/logz-docs/lights/LightS-button.png)](https://console.aws.amazon.com/cloudformation/home?region=ca-central-1#/stacks/create/review?templateURL=https://logzio-aws-integrations-ca-central-1.s3.amazonaws.com/firehose-logs/0.1.0/sam-template.yaml&stackName=logzio-firehose¶m_logzioToken=<>¶m_logzioListener=https://aws-firehose-logs-<>) | +| `us-east-1` | [![Deploy to AWS](https://dytvr9ot2sszz.cloudfront.net/logz-docs/lights/LightS-button.png)](https://console.aws.amazon.com/cloudformation/home?region=us-east-1#/stacks/create/review?templateURL=https://logzio-aws-integrations-us-east-1.s3.amazonaws.com/firehose-logs/0.2.0/sam-template.yaml&stackName=logzio-firehose¶m_logzioToken=<>¶m_logzioListener=https://aws-firehose-logs-<>) | +| `us-east-2` | [![Deploy to AWS](https://dytvr9ot2sszz.cloudfront.net/logz-docs/lights/LightS-button.png)](https://console.aws.amazon.com/cloudformation/home?region=us-east-2#/stacks/create/review?templateURL=https://logzio-aws-integrations-us-east-2.s3.amazonaws.com/firehose-logs/0.2.0/sam-template.yaml&stackName=logzio-firehose¶m_logzioToken=<>¶m_logzioListener=https://aws-firehose-logs-<>) | +| `us-west-1` | [![Deploy to AWS](https://dytvr9ot2sszz.cloudfront.net/logz-docs/lights/LightS-button.png)](https://console.aws.amazon.com/cloudformation/home?region=us-west-1#/stacks/create/review?templateURL=https://logzio-aws-integrations-us-west-1.s3.amazonaws.com/firehose-logs/0.2.0/sam-template.yaml&stackName=logzio-firehose¶m_logzioToken=<>¶m_logzioListener=https://aws-firehose-logs-<>) | +| `us-west-2` | [![Deploy to AWS](https://dytvr9ot2sszz.cloudfront.net/logz-docs/lights/LightS-button.png)](https://console.aws.amazon.com/cloudformation/home?region=us-west-2#/stacks/create/review?templateURL=https://logzio-aws-integrations-us-west-2.s3.amazonaws.com/firehose-logs/0.2.0/sam-template.yaml&stackName=logzio-firehose¶m_logzioToken=<>¶m_logzioListener=https://aws-firehose-logs-<>) | +| `eu-central-1` | [![Deploy to AWS](https://dytvr9ot2sszz.cloudfront.net/logz-docs/lights/LightS-button.png)](https://console.aws.amazon.com/cloudformation/home?region=eu-central-1#/stacks/create/review?templateURL=https://logzio-aws-integrations-eu-central-1.s3.amazonaws.com/firehose-logs/0.2.0/sam-template.yaml&stackName=logzio-firehose¶m_logzioToken=<>¶m_logzioListener=https://aws-firehose-logs-<>) | +| `eu-north-1` | [![Deploy to AWS](https://dytvr9ot2sszz.cloudfront.net/logz-docs/lights/LightS-button.png)](https://console.aws.amazon.com/cloudformation/home?region=eu-north-1#/stacks/create/review?templateURL=https://logzio-aws-integrations-eu-north-1.s3.amazonaws.com/firehose-logs/0.2.0/sam-template.yaml&stackName=logzio-firehose¶m_logzioToken=<>¶m_logzioListener=https://aws-firehose-logs-<>) | +| `eu-west-1` | [![Deploy to AWS](https://dytvr9ot2sszz.cloudfront.net/logz-docs/lights/LightS-button.png)](https://console.aws.amazon.com/cloudformation/home?region=eu-west-1#/stacks/create/review?templateURL=https://logzio-aws-integrations-eu-west-1.s3.amazonaws.com/firehose-logs/0.2.0/sam-template.yaml&stackName=logzio-firehose¶m_logzioToken=<>¶m_logzioListener=https://aws-firehose-logs-<>) | +| `eu-west-2` | [![Deploy to AWS](https://dytvr9ot2sszz.cloudfront.net/logz-docs/lights/LightS-button.png)](https://console.aws.amazon.com/cloudformation/home?region=eu-west-2#/stacks/create/review?templateURL=https://logzio-aws-integrations-eu-west-2.s3.amazonaws.com/firehose-logs/0.2.0/sam-template.yaml&stackName=logzio-firehose¶m_logzioToken=<>¶m_logzioListener=https://aws-firehose-logs-<>) | +| `eu-west-3` | [![Deploy to AWS](https://dytvr9ot2sszz.cloudfront.net/logz-docs/lights/LightS-button.png)](https://console.aws.amazon.com/cloudformation/home?region=eu-west-3#/stacks/create/review?templateURL=https://logzio-aws-integrations-eu-west-3.s3.amazonaws.com/firehose-logs/0.2.0/sam-template.yaml&stackName=logzio-firehose¶m_logzioToken=<>¶m_logzioListener=https://aws-firehose-logs-<>) | +| `sa-east-1` | [![Deploy to AWS](https://dytvr9ot2sszz.cloudfront.net/logz-docs/lights/LightS-button.png)](https://console.aws.amazon.com/cloudformation/home?region=sa-east-1#/stacks/create/review?templateURL=https://logzio-aws-integrations-sa-east-1.s3.amazonaws.com/firehose-logs/0.2.0/sam-template.yaml&stackName=logzio-firehose¶m_logzioToken=<>¶m_logzioListener=https://aws-firehose-logs-<>) | +| `ap-northeast-1` | [![Deploy to AWS](https://dytvr9ot2sszz.cloudfront.net/logz-docs/lights/LightS-button.png)](https://console.aws.amazon.com/cloudformation/home?region=ap-northeast-1#/stacks/create/review?templateURL=https://logzio-aws-integrations-ap-northeast-1.s3.amazonaws.com/firehose-logs/0.2.0/sam-template.yaml&stackName=logzio-firehose¶m_logzioToken=<>¶m_logzioListener=https://aws-firehose-logs-<>) | +| `ap-northeast-2` | [![Deploy to AWS](https://dytvr9ot2sszz.cloudfront.net/logz-docs/lights/LightS-button.png)](https://console.aws.amazon.com/cloudformation/home?region=ap-northeast-2#/stacks/create/review?templateURL=https://logzio-aws-integrations-ap-northeast-2.s3.amazonaws.com/firehose-logs/0.2.0/sam-template.yaml&stackName=logzio-firehose¶m_logzioToken=<>¶m_logzioListener=https://aws-firehose-logs-<>) | +| `ap-northeast-3` | [![Deploy to AWS](https://dytvr9ot2sszz.cloudfront.net/logz-docs/lights/LightS-button.png)](https://console.aws.amazon.com/cloudformation/home?region=ap-northeast-3#/stacks/create/review?templateURL=https://logzio-aws-integrations-ap-northeast-3.s3.amazonaws.com/firehose-logs/0.2.0/sam-template.yaml&stackName=logzio-firehose¶m_logzioToken=<>¶m_logzioListener=https://aws-firehose-logs-<>) | +| `ap-south-1` | [![Deploy to AWS](https://dytvr9ot2sszz.cloudfront.net/logz-docs/lights/LightS-button.png)](https://console.aws.amazon.com/cloudformation/home?region=ap-south-1#/stacks/create/review?templateURL=https://logzio-aws-integrations-ap-south-1.s3.amazonaws.com/firehose-logs/0.2.0/sam-template.yaml&stackName=logzio-firehose¶m_logzioToken=<>¶m_logzioListener=https://aws-firehose-logs-<>) | +| `ap-southeast-1` | [![Deploy to AWS](https://dytvr9ot2sszz.cloudfront.net/logz-docs/lights/LightS-button.png)](https://console.aws.amazon.com/cloudformation/home?region=ap-southeast-1#/stacks/create/review?templateURL=https://logzio-aws-integrations-ap-southeast-1.s3.amazonaws.com/firehose-logs/0.2.0/sam-template.yaml&stackName=logzio-firehose¶m_logzioToken=<>¶m_logzioListener=https://aws-firehose-logs-<>) | +| `ap-southeast-2` | [![Deploy to AWS](https://dytvr9ot2sszz.cloudfront.net/logz-docs/lights/LightS-button.png)](https://console.aws.amazon.com/cloudformation/home?region=ap-southeast-2#/stacks/create/review?templateURL=https://logzio-aws-integrations-ap-southeast-2.s3.amazonaws.com/firehose-logs/0.2.0/sam-template.yaml&stackName=logzio-firehose¶m_logzioToken=<>¶m_logzioListener=https://aws-firehose-logs-<>) | +| `ca-central-1` | [![Deploy to AWS](https://dytvr9ot2sszz.cloudfront.net/logz-docs/lights/LightS-button.png)](https://console.aws.amazon.com/cloudformation/home?region=ca-central-1#/stacks/create/review?templateURL=https://logzio-aws-integrations-ca-central-1.s3.amazonaws.com/firehose-logs/0.2.0/sam-template.yaml&stackName=logzio-firehose¶m_logzioToken=<>¶m_logzioListener=https://aws-firehose-logs-<>) | #### Specify stack details diff --git a/docs/shipping/AWS/aws-kinesis-firehose.md b/docs/shipping/AWS/aws-kinesis-firehose.md index 1d372a57..fc9baf82 100644 --- a/docs/shipping/AWS/aws-kinesis-firehose.md +++ b/docs/shipping/AWS/aws-kinesis-firehose.md @@ -37,35 +37,35 @@ To deploy this project, click the button that matches the region you wish to dep | Region | Deployment | |------------------|--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| -| `us-east-1` | [![Deploy to AWS](https://dytvr9ot2sszz.cloudfront.net/logz-docs/lights/LightS-button.png)](https://console.aws.amazon.com/cloudformation/home?region=us-east-1#/stacks/create/review?templateURL=https://logzio-aws-integrations-us-east-1.s3.amazonaws.com/firehose-logs/0.1.0/sam-template.yaml&stackName=logzio-firehose¶m_logzioToken=<>¶m_logzioListener=https://aws-firehose-logs-<>) | -| `us-east-2` | [![Deploy to AWS](https://dytvr9ot2sszz.cloudfront.net/logz-docs/lights/LightS-button.png)](https://console.aws.amazon.com/cloudformation/home?region=us-east-2#/stacks/create/review?templateURL=https://logzio-aws-integrations-us-east-2.s3.amazonaws.com/firehose-logs/0.1.0/sam-template.yaml&stackName=logzio-firehose¶m_logzioToken=<>¶m_logzioListener=https://aws-firehose-logs-<>) | -| `us-west-1` | [![Deploy to AWS](https://dytvr9ot2sszz.cloudfront.net/logz-docs/lights/LightS-button.png)](https://console.aws.amazon.com/cloudformation/home?region=us-west-1#/stacks/create/review?templateURL=https://logzio-aws-integrations-us-west-1.s3.amazonaws.com/firehose-logs/0.1.0/sam-template.yaml&stackName=logzio-firehose¶m_logzioToken=<>¶m_logzioListener=https://aws-firehose-logs-<>) | -| `us-west-2` | [![Deploy to AWS](https://dytvr9ot2sszz.cloudfront.net/logz-docs/lights/LightS-button.png)](https://console.aws.amazon.com/cloudformation/home?region=us-west-2#/stacks/create/review?templateURL=https://logzio-aws-integrations-us-west-2.s3.amazonaws.com/firehose-logs/0.1.0/sam-template.yaml&stackName=logzio-firehose¶m_logzioToken=<>¶m_logzioListener=https://aws-firehose-logs-<>) | -| `eu-central-1` | [![Deploy to AWS](https://dytvr9ot2sszz.cloudfront.net/logz-docs/lights/LightS-button.png)](https://console.aws.amazon.com/cloudformation/home?region=eu-central-1#/stacks/create/review?templateURL=https://logzio-aws-integrations-eu-central-1.s3.amazonaws.com/firehose-logs/0.1.0/sam-template.yaml&stackName=logzio-firehose¶m_logzioToken=<>¶m_logzioListener=https://aws-firehose-logs-<>) | -| `eu-central-2` | [![Deploy to AWS](https://dytvr9ot2sszz.cloudfront.net/logz-docs/lights/LightS-button.png)](https://console.aws.amazon.com/cloudformation/home?region=eu-central-2#/stacks/create/review?templateURL=https://logzio-aws-integrations-eu-central-2.s3.amazonaws.com/firehose-logs/0.1.0/sam-template.yaml&stackName=logzio-firehose¶m_logzioToken=<>¶m_logzioListener=https://aws-firehose-logs-<>) | -| `eu-north-1` | [![Deploy to AWS](https://dytvr9ot2sszz.cloudfront.net/logz-docs/lights/LightS-button.png)](https://console.aws.amazon.com/cloudformation/home?region=eu-north-1#/stacks/create/review?templateURL=https://logzio-aws-integrations-eu-north-1.s3.amazonaws.com/firehose-logs/0.1.0/sam-template.yaml&stackName=logzio-firehose¶m_logzioToken=<>¶m_logzioListener=https://aws-firehose-logs-<>) | -| `eu-west-1` | [![Deploy to AWS](https://dytvr9ot2sszz.cloudfront.net/logz-docs/lights/LightS-button.png)](https://console.aws.amazon.com/cloudformation/home?region=eu-west-1#/stacks/create/review?templateURL=https://logzio-aws-integrations-eu-west-1.s3.amazonaws.com/firehose-logs/0.1.0/sam-template.yaml&stackName=logzio-firehose¶m_logzioToken=<>¶m_logzioListener=https://aws-firehose-logs-<>) | -| `eu-west-2` | [![Deploy to AWS](https://dytvr9ot2sszz.cloudfront.net/logz-docs/lights/LightS-button.png)](https://console.aws.amazon.com/cloudformation/home?region=eu-west-2#/stacks/create/review?templateURL=https://logzio-aws-integrations-eu-west-2.s3.amazonaws.com/firehose-logs/0.1.0/sam-template.yaml&stackName=logzio-firehose¶m_logzioToken=<>¶m_logzioListener=https://aws-firehose-logs-<>) | -| `eu-west-3` | [![Deploy to AWS](https://dytvr9ot2sszz.cloudfront.net/logz-docs/lights/LightS-button.png)](https://console.aws.amazon.com/cloudformation/home?region=eu-west-3#/stacks/create/review?templateURL=https://logzio-aws-integrations-eu-west-3.s3.amazonaws.com/firehose-logs/0.1.0/sam-template.yaml&stackName=logzio-firehose¶m_logzioToken=<>¶m_logzioListener=https://aws-firehose-logs-<>) | -| `eu-south-1` | [![Deploy to AWS](https://dytvr9ot2sszz.cloudfront.net/logz-docs/lights/LightS-button.png)](https://console.aws.amazon.com/cloudformation/home?region=eu-south-1#/stacks/create/review?templateURL=https://logzio-aws-integrations-eu-south-1.s3.amazonaws.com/firehose-logs/0.1.0/sam-template.yaml&stackName=logzio-firehose¶m_logzioToken=<>¶m_logzioListener=https://aws-firehose-logs-<>) | -| `eu-south-2` | [![Deploy to AWS](https://dytvr9ot2sszz.cloudfront.net/logz-docs/lights/LightS-button.png)](https://console.aws.amazon.com/cloudformation/home?region=eu-south-2#/stacks/create/review?templateURL=https://logzio-aws-integrations-eu-south-2.s3.amazonaws.com/firehose-logs/0.1.0/sam-template.yaml&stackName=logzio-firehose¶m_logzioToken=<>¶m_logzioListener=https://aws-firehose-logs-<>) | -| `sa-east-1` | [![Deploy to AWS](https://dytvr9ot2sszz.cloudfront.net/logz-docs/lights/LightS-button.png)](https://console.aws.amazon.com/cloudformation/home?region=sa-east-1#/stacks/create/review?templateURL=https://logzio-aws-integrations-sa-east-1.s3.amazonaws.com/firehose-logs/0.1.0/sam-template.yaml&stackName=logzio-firehose¶m_logzioToken=<>¶m_logzioListener=https://aws-firehose-logs-<>) | -| `ap-northeast-1` | [![Deploy to AWS](https://dytvr9ot2sszz.cloudfront.net/logz-docs/lights/LightS-button.png)](https://console.aws.amazon.com/cloudformation/home?region=ap-northeast-1#/stacks/create/review?templateURL=https://logzio-aws-integrations-ap-northeast-1.s3.amazonaws.com/firehose-logs/0.1.0/sam-template.yaml&stackName=logzio-firehose¶m_logzioToken=<>¶m_logzioListener=https://aws-firehose-logs-<>) | -| `ap-northeast-2` | [![Deploy to AWS](https://dytvr9ot2sszz.cloudfront.net/logz-docs/lights/LightS-button.png)](https://console.aws.amazon.com/cloudformation/home?region=ap-northeast-2#/stacks/create/review?templateURL=https://logzio-aws-integrations-ap-northeast-2.s3.amazonaws.com/firehose-logs/0.1.0/sam-template.yaml&stackName=logzio-firehose¶m_logzioToken=<>¶m_logzioListener=https://aws-firehose-logs-<>) | -| `ap-northeast-3` | [![Deploy to AWS](https://dytvr9ot2sszz.cloudfront.net/logz-docs/lights/LightS-button.png)](https://console.aws.amazon.com/cloudformation/home?region=ap-northeast-3#/stacks/create/review?templateURL=https://logzio-aws-integrations-ap-northeast-3.s3.amazonaws.com/firehose-logs/0.1.0/sam-template.yaml&stackName=logzio-firehose¶m_logzioToken=<>¶m_logzioListener=https://aws-firehose-logs-<>) | -| `ap-south-1` | [![Deploy to AWS](https://dytvr9ot2sszz.cloudfront.net/logz-docs/lights/LightS-button.png)](https://console.aws.amazon.com/cloudformation/home?region=ap-south-1#/stacks/create/review?templateURL=https://logzio-aws-integrations-ap-south-1.s3.amazonaws.com/firehose-logs/0.1.0/sam-template.yaml&stackName=logzio-firehose¶m_logzioToken=<>¶m_logzioListener=https://aws-firehose-logs-<>) | -| `ap-south-2` | [![Deploy to AWS](https://dytvr9ot2sszz.cloudfront.net/logz-docs/lights/LightS-button.png)](https://console.aws.amazon.com/cloudformation/home?region=ap-south-2#/stacks/create/review?templateURL=https://logzio-aws-integrations-ap-south-2.s3.amazonaws.com/firehose-logs/0.1.0/sam-template.yaml&stackName=logzio-firehose¶m_logzioToken=<>¶m_logzioListener=https://aws-firehose-logs-<>) | -| `ap-southeast-1` | [![Deploy to AWS](https://dytvr9ot2sszz.cloudfront.net/logz-docs/lights/LightS-button.png)](https://console.aws.amazon.com/cloudformation/home?region=ap-southeast-1#/stacks/create/review?templateURL=https://logzio-aws-integrations-ap-southeast-1.s3.amazonaws.com/firehose-logs/0.1.0/sam-template.yaml&stackName=logzio-firehose¶m_logzioToken=<>¶m_logzioListener=https://aws-firehose-logs-<>) | -| `ap-southeast-2` | [![Deploy to AWS](https://dytvr9ot2sszz.cloudfront.net/logz-docs/lights/LightS-button.png)](https://console.aws.amazon.com/cloudformation/home?region=ap-southeast-2#/stacks/create/review?templateURL=https://logzio-aws-integrations-ap-southeast-2.s3.amazonaws.com/firehose-logs/0.1.0/sam-template.yaml&stackName=logzio-firehose¶m_logzioToken=<>¶m_logzioListener=https://aws-firehose-logs-<>) | -| `ap-southeast-3` | [![Deploy to AWS](https://dytvr9ot2sszz.cloudfront.net/logz-docs/lights/LightS-button.png)](https://console.aws.amazon.com/cloudformation/home?region=ap-southeast-3#/stacks/create/review?templateURL=https://logzio-aws-integrations-ap-southeast-3.s3.amazonaws.com/firehose-logs/0.1.0/sam-template.yaml&stackName=logzio-firehose¶m_logzioToken=<>¶m_logzioListener=https://aws-firehose-logs-<>) | -| `ap-southeast-4` | [![Deploy to AWS](https://dytvr9ot2sszz.cloudfront.net/logz-docs/lights/LightS-button.png)](https://console.aws.amazon.com/cloudformation/home?region=ap-southeast-4#/stacks/create/review?templateURL=https://logzio-aws-integrations-ap-southeast-4.s3.amazonaws.com/firehose-logs/0.1.0/sam-template.yaml&stackName=logzio-firehose¶m_logzioToken=<>¶m_logzioListener=https://aws-firehose-logs-<>) | -| `ap-east-1` | [![Deploy to AWS](https://dytvr9ot2sszz.cloudfront.net/logz-docs/lights/LightS-button.png)](https://console.aws.amazon.com/cloudformation/home?region=ap-east-1#/stacks/create/review?templateURL=https://logzio-aws-integrations-ap-east-1.s3.amazonaws.com/firehose-logs/0.1.0/sam-template.yaml&stackName=logzio-firehose¶m_logzioToken=<>¶m_logzioListener=https://aws-firehose-logs-<>) | -| `ca-central-1` | [![Deploy to AWS](https://dytvr9ot2sszz.cloudfront.net/logz-docs/lights/LightS-button.png)](https://console.aws.amazon.com/cloudformation/home?region=ca-central-1#/stacks/create/review?templateURL=https://logzio-aws-integrations-ca-central-1.s3.amazonaws.com/firehose-logs/0.1.0/sam-template.yaml&stackName=logzio-firehose¶m_logzioToken=<>¶m_logzioListener=https://aws-firehose-logs-<>) | -| `ca-west-1` | [![Deploy to AWS](https://dytvr9ot2sszz.cloudfront.net/logz-docs/lights/LightS-button.png)](https://console.aws.amazon.com/cloudformation/home?region=ca-west-1#/stacks/create/review?templateURL=https://logzio-aws-integrations-ca-west-1.s3.amazonaws.com/firehose-logs/0.1.0/sam-template.yaml&stackName=logzio-firehose¶m_logzioToken=<>¶m_logzioListener=https://aws-firehose-logs-<>) | -| `af-south-1` | [![Deploy to AWS](https://dytvr9ot2sszz.cloudfront.net/logz-docs/lights/LightS-button.png)](https://console.aws.amazon.com/cloudformation/home?region=af-south-1#/stacks/create/review?templateURL=https://logzio-aws-integrations-af-south-1.s3.amazonaws.com/firehose-logs/0.1.0/sam-template.yaml&stackName=logzio-firehose¶m_logzioToken=<>¶m_logzioListener=https://aws-firehose-logs-<>) | -| `me-south-1` | [![Deploy to AWS](https://dytvr9ot2sszz.cloudfront.net/logz-docs/lights/LightS-button.png)](https://console.aws.amazon.com/cloudformation/home?region=me-south-1#/stacks/create/review?templateURL=https://logzio-aws-integrations-me-south-1.s3.amazonaws.com/firehose-logs/0.1.0/sam-template.yaml&stackName=logzio-firehose¶m_logzioToken=<>¶m_logzioListener=https://aws-firehose-logs-<>) | -| `me-central-1` | [![Deploy to AWS](https://dytvr9ot2sszz.cloudfront.net/logz-docs/lights/LightS-button.png)](https://console.aws.amazon.com/cloudformation/home?region=me-central-1#/stacks/create/review?templateURL=https://logzio-aws-integrations-me-central-1.s3.amazonaws.com/firehose-logs/0.1.0/sam-template.yaml&stackName=logzio-firehose¶m_logzioToken=<>¶m_logzioListener=https://aws-firehose-logs-<>) | -| `il-central-1` | [![Deploy to AWS](https://dytvr9ot2sszz.cloudfront.net/logz-docs/lights/LightS-button.png)](https://console.aws.amazon.com/cloudformation/home?region=il-central-1#/stacks/create/review?templateURL=https://logzio-aws-integrations-il-central-1.s3.amazonaws.com/firehose-logs/0.1.0/sam-template.yaml&stackName=logzio-firehose¶m_logzioToken=<>¶m_logzioListener=https://aws-firehose-logs-<>) | +| `us-east-1` | [![Deploy to AWS](https://dytvr9ot2sszz.cloudfront.net/logz-docs/lights/LightS-button.png)](https://console.aws.amazon.com/cloudformation/home?region=us-east-1#/stacks/create/review?templateURL=https://logzio-aws-integrations-us-east-1.s3.amazonaws.com/firehose-logs/0.2.0/sam-template.yaml&stackName=logzio-firehose¶m_logzioToken=<>¶m_logzioListener=https://aws-firehose-logs-<>) | +| `us-east-2` | [![Deploy to AWS](https://dytvr9ot2sszz.cloudfront.net/logz-docs/lights/LightS-button.png)](https://console.aws.amazon.com/cloudformation/home?region=us-east-2#/stacks/create/review?templateURL=https://logzio-aws-integrations-us-east-2.s3.amazonaws.com/firehose-logs/0.2.0/sam-template.yaml&stackName=logzio-firehose¶m_logzioToken=<>¶m_logzioListener=https://aws-firehose-logs-<>) | +| `us-west-1` | [![Deploy to AWS](https://dytvr9ot2sszz.cloudfront.net/logz-docs/lights/LightS-button.png)](https://console.aws.amazon.com/cloudformation/home?region=us-west-1#/stacks/create/review?templateURL=https://logzio-aws-integrations-us-west-1.s3.amazonaws.com/firehose-logs/0.2.0/sam-template.yaml&stackName=logzio-firehose¶m_logzioToken=<>¶m_logzioListener=https://aws-firehose-logs-<>) | +| `us-west-2` | [![Deploy to AWS](https://dytvr9ot2sszz.cloudfront.net/logz-docs/lights/LightS-button.png)](https://console.aws.amazon.com/cloudformation/home?region=us-west-2#/stacks/create/review?templateURL=https://logzio-aws-integrations-us-west-2.s3.amazonaws.com/firehose-logs/0.2.0/sam-template.yaml&stackName=logzio-firehose¶m_logzioToken=<>¶m_logzioListener=https://aws-firehose-logs-<>) | +| `eu-central-1` | [![Deploy to AWS](https://dytvr9ot2sszz.cloudfront.net/logz-docs/lights/LightS-button.png)](https://console.aws.amazon.com/cloudformation/home?region=eu-central-1#/stacks/create/review?templateURL=https://logzio-aws-integrations-eu-central-1.s3.amazonaws.com/firehose-logs/0.2.0/sam-template.yaml&stackName=logzio-firehose¶m_logzioToken=<>¶m_logzioListener=https://aws-firehose-logs-<>) | +| `eu-central-2` | [![Deploy to AWS](https://dytvr9ot2sszz.cloudfront.net/logz-docs/lights/LightS-button.png)](https://console.aws.amazon.com/cloudformation/home?region=eu-central-2#/stacks/create/review?templateURL=https://logzio-aws-integrations-eu-central-2.s3.amazonaws.com/firehose-logs/0.2.0/sam-template.yaml&stackName=logzio-firehose¶m_logzioToken=<>¶m_logzioListener=https://aws-firehose-logs-<>) | +| `eu-north-1` | [![Deploy to AWS](https://dytvr9ot2sszz.cloudfront.net/logz-docs/lights/LightS-button.png)](https://console.aws.amazon.com/cloudformation/home?region=eu-north-1#/stacks/create/review?templateURL=https://logzio-aws-integrations-eu-north-1.s3.amazonaws.com/firehose-logs/0.2.0/sam-template.yaml&stackName=logzio-firehose¶m_logzioToken=<>¶m_logzioListener=https://aws-firehose-logs-<>) | +| `eu-west-1` | [![Deploy to AWS](https://dytvr9ot2sszz.cloudfront.net/logz-docs/lights/LightS-button.png)](https://console.aws.amazon.com/cloudformation/home?region=eu-west-1#/stacks/create/review?templateURL=https://logzio-aws-integrations-eu-west-1.s3.amazonaws.com/firehose-logs/0.2.0/sam-template.yaml&stackName=logzio-firehose¶m_logzioToken=<>¶m_logzioListener=https://aws-firehose-logs-<>) | +| `eu-west-2` | [![Deploy to AWS](https://dytvr9ot2sszz.cloudfront.net/logz-docs/lights/LightS-button.png)](https://console.aws.amazon.com/cloudformation/home?region=eu-west-2#/stacks/create/review?templateURL=https://logzio-aws-integrations-eu-west-2.s3.amazonaws.com/firehose-logs/0.2.0/sam-template.yaml&stackName=logzio-firehose¶m_logzioToken=<>¶m_logzioListener=https://aws-firehose-logs-<>) | +| `eu-west-3` | [![Deploy to AWS](https://dytvr9ot2sszz.cloudfront.net/logz-docs/lights/LightS-button.png)](https://console.aws.amazon.com/cloudformation/home?region=eu-west-3#/stacks/create/review?templateURL=https://logzio-aws-integrations-eu-west-3.s3.amazonaws.com/firehose-logs/0.2.0/sam-template.yaml&stackName=logzio-firehose¶m_logzioToken=<>¶m_logzioListener=https://aws-firehose-logs-<>) | +| `eu-south-1` | [![Deploy to AWS](https://dytvr9ot2sszz.cloudfront.net/logz-docs/lights/LightS-button.png)](https://console.aws.amazon.com/cloudformation/home?region=eu-south-1#/stacks/create/review?templateURL=https://logzio-aws-integrations-eu-south-1.s3.amazonaws.com/firehose-logs/0.2.0/sam-template.yaml&stackName=logzio-firehose¶m_logzioToken=<>¶m_logzioListener=https://aws-firehose-logs-<>) | +| `eu-south-2` | [![Deploy to AWS](https://dytvr9ot2sszz.cloudfront.net/logz-docs/lights/LightS-button.png)](https://console.aws.amazon.com/cloudformation/home?region=eu-south-2#/stacks/create/review?templateURL=https://logzio-aws-integrations-eu-south-2.s3.amazonaws.com/firehose-logs/0.2.0/sam-template.yaml&stackName=logzio-firehose¶m_logzioToken=<>¶m_logzioListener=https://aws-firehose-logs-<>) | +| `sa-east-1` | [![Deploy to AWS](https://dytvr9ot2sszz.cloudfront.net/logz-docs/lights/LightS-button.png)](https://console.aws.amazon.com/cloudformation/home?region=sa-east-1#/stacks/create/review?templateURL=https://logzio-aws-integrations-sa-east-1.s3.amazonaws.com/firehose-logs/0.2.0/sam-template.yaml&stackName=logzio-firehose¶m_logzioToken=<>¶m_logzioListener=https://aws-firehose-logs-<>) | +| `ap-northeast-1` | [![Deploy to AWS](https://dytvr9ot2sszz.cloudfront.net/logz-docs/lights/LightS-button.png)](https://console.aws.amazon.com/cloudformation/home?region=ap-northeast-1#/stacks/create/review?templateURL=https://logzio-aws-integrations-ap-northeast-1.s3.amazonaws.com/firehose-logs/0.2.0/sam-template.yaml&stackName=logzio-firehose¶m_logzioToken=<>¶m_logzioListener=https://aws-firehose-logs-<>) | +| `ap-northeast-2` | [![Deploy to AWS](https://dytvr9ot2sszz.cloudfront.net/logz-docs/lights/LightS-button.png)](https://console.aws.amazon.com/cloudformation/home?region=ap-northeast-2#/stacks/create/review?templateURL=https://logzio-aws-integrations-ap-northeast-2.s3.amazonaws.com/firehose-logs/0.2.0/sam-template.yaml&stackName=logzio-firehose¶m_logzioToken=<>¶m_logzioListener=https://aws-firehose-logs-<>) | +| `ap-northeast-3` | [![Deploy to AWS](https://dytvr9ot2sszz.cloudfront.net/logz-docs/lights/LightS-button.png)](https://console.aws.amazon.com/cloudformation/home?region=ap-northeast-3#/stacks/create/review?templateURL=https://logzio-aws-integrations-ap-northeast-3.s3.amazonaws.com/firehose-logs/0.2.0/sam-template.yaml&stackName=logzio-firehose¶m_logzioToken=<>¶m_logzioListener=https://aws-firehose-logs-<>) | +| `ap-south-1` | [![Deploy to AWS](https://dytvr9ot2sszz.cloudfront.net/logz-docs/lights/LightS-button.png)](https://console.aws.amazon.com/cloudformation/home?region=ap-south-1#/stacks/create/review?templateURL=https://logzio-aws-integrations-ap-south-1.s3.amazonaws.com/firehose-logs/0.2.0/sam-template.yaml&stackName=logzio-firehose¶m_logzioToken=<>¶m_logzioListener=https://aws-firehose-logs-<>) | +| `ap-south-2` | [![Deploy to AWS](https://dytvr9ot2sszz.cloudfront.net/logz-docs/lights/LightS-button.png)](https://console.aws.amazon.com/cloudformation/home?region=ap-south-2#/stacks/create/review?templateURL=https://logzio-aws-integrations-ap-south-2.s3.amazonaws.com/firehose-logs/0.2.0/sam-template.yaml&stackName=logzio-firehose¶m_logzioToken=<>¶m_logzioListener=https://aws-firehose-logs-<>) | +| `ap-southeast-1` | [![Deploy to AWS](https://dytvr9ot2sszz.cloudfront.net/logz-docs/lights/LightS-button.png)](https://console.aws.amazon.com/cloudformation/home?region=ap-southeast-1#/stacks/create/review?templateURL=https://logzio-aws-integrations-ap-southeast-1.s3.amazonaws.com/firehose-logs/0.2.0/sam-template.yaml&stackName=logzio-firehose¶m_logzioToken=<>¶m_logzioListener=https://aws-firehose-logs-<>) | +| `ap-southeast-2` | [![Deploy to AWS](https://dytvr9ot2sszz.cloudfront.net/logz-docs/lights/LightS-button.png)](https://console.aws.amazon.com/cloudformation/home?region=ap-southeast-2#/stacks/create/review?templateURL=https://logzio-aws-integrations-ap-southeast-2.s3.amazonaws.com/firehose-logs/0.2.0/sam-template.yaml&stackName=logzio-firehose¶m_logzioToken=<>¶m_logzioListener=https://aws-firehose-logs-<>) | +| `ap-southeast-3` | [![Deploy to AWS](https://dytvr9ot2sszz.cloudfront.net/logz-docs/lights/LightS-button.png)](https://console.aws.amazon.com/cloudformation/home?region=ap-southeast-3#/stacks/create/review?templateURL=https://logzio-aws-integrations-ap-southeast-3.s3.amazonaws.com/firehose-logs/0.2.0/sam-template.yaml&stackName=logzio-firehose¶m_logzioToken=<>¶m_logzioListener=https://aws-firehose-logs-<>) | +| `ap-southeast-4` | [![Deploy to AWS](https://dytvr9ot2sszz.cloudfront.net/logz-docs/lights/LightS-button.png)](https://console.aws.amazon.com/cloudformation/home?region=ap-southeast-4#/stacks/create/review?templateURL=https://logzio-aws-integrations-ap-southeast-4.s3.amazonaws.com/firehose-logs/0.2.0/sam-template.yaml&stackName=logzio-firehose¶m_logzioToken=<>¶m_logzioListener=https://aws-firehose-logs-<>) | +| `ap-east-1` | [![Deploy to AWS](https://dytvr9ot2sszz.cloudfront.net/logz-docs/lights/LightS-button.png)](https://console.aws.amazon.com/cloudformation/home?region=ap-east-1#/stacks/create/review?templateURL=https://logzio-aws-integrations-ap-east-1.s3.amazonaws.com/firehose-logs/0.2.0/sam-template.yaml&stackName=logzio-firehose¶m_logzioToken=<>¶m_logzioListener=https://aws-firehose-logs-<>) | +| `ca-central-1` | [![Deploy to AWS](https://dytvr9ot2sszz.cloudfront.net/logz-docs/lights/LightS-button.png)](https://console.aws.amazon.com/cloudformation/home?region=ca-central-1#/stacks/create/review?templateURL=https://logzio-aws-integrations-ca-central-1.s3.amazonaws.com/firehose-logs/0.2.0/sam-template.yaml&stackName=logzio-firehose¶m_logzioToken=<>¶m_logzioListener=https://aws-firehose-logs-<>) | +| `ca-west-1` | [![Deploy to AWS](https://dytvr9ot2sszz.cloudfront.net/logz-docs/lights/LightS-button.png)](https://console.aws.amazon.com/cloudformation/home?region=ca-west-1#/stacks/create/review?templateURL=https://logzio-aws-integrations-ca-west-1.s3.amazonaws.com/firehose-logs/0.2.0/sam-template.yaml&stackName=logzio-firehose¶m_logzioToken=<>¶m_logzioListener=https://aws-firehose-logs-<>) | +| `af-south-1` | [![Deploy to AWS](https://dytvr9ot2sszz.cloudfront.net/logz-docs/lights/LightS-button.png)](https://console.aws.amazon.com/cloudformation/home?region=af-south-1#/stacks/create/review?templateURL=https://logzio-aws-integrations-af-south-1.s3.amazonaws.com/firehose-logs/0.2.0/sam-template.yaml&stackName=logzio-firehose¶m_logzioToken=<>¶m_logzioListener=https://aws-firehose-logs-<>) | +| `me-south-1` | [![Deploy to AWS](https://dytvr9ot2sszz.cloudfront.net/logz-docs/lights/LightS-button.png)](https://console.aws.amazon.com/cloudformation/home?region=me-south-1#/stacks/create/review?templateURL=https://logzio-aws-integrations-me-south-1.s3.amazonaws.com/firehose-logs/0.2.0/sam-template.yaml&stackName=logzio-firehose¶m_logzioToken=<>¶m_logzioListener=https://aws-firehose-logs-<>) | +| `me-central-1` | [![Deploy to AWS](https://dytvr9ot2sszz.cloudfront.net/logz-docs/lights/LightS-button.png)](https://console.aws.amazon.com/cloudformation/home?region=me-central-1#/stacks/create/review?templateURL=https://logzio-aws-integrations-me-central-1.s3.amazonaws.com/firehose-logs/0.2.0/sam-template.yaml&stackName=logzio-firehose¶m_logzioToken=<>¶m_logzioListener=https://aws-firehose-logs-<>) | +| `il-central-1` | [![Deploy to AWS](https://dytvr9ot2sszz.cloudfront.net/logz-docs/lights/LightS-button.png)](https://console.aws.amazon.com/cloudformation/home?region=il-central-1#/stacks/create/review?templateURL=https://logzio-aws-integrations-il-central-1.s3.amazonaws.com/firehose-logs/0.2.0/sam-template.yaml&stackName=logzio-firehose¶m_logzioToken=<>¶m_logzioListener=https://aws-firehose-logs-<>) | | ##### Specify stack details diff --git a/docs/shipping/AWS/aws-mq.md b/docs/shipping/AWS/aws-mq.md index c0278a47..ed755c1f 100644 --- a/docs/shipping/AWS/aws-mq.md +++ b/docs/shipping/AWS/aws-mq.md @@ -24,23 +24,23 @@ To deploy this project, click the button that matches the region you wish to dep | Region | Deployment | |------------------|--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| -| `us-east-1` | [![Deploy to AWS](https://dytvr9ot2sszz.cloudfront.net/logz-docs/lights/LightS-button.png)](https://console.aws.amazon.com/cloudformation/home?region=us-east-1#/stacks/create/review?templateURL=https://logzio-aws-integrations-us-east-1.s3.amazonaws.com/firehose-logs/0.1.0/sam-template.yaml&stackName=logzio-firehose¶m_logzioToken=<>¶m_logzioListener=https://aws-firehose-logs-<>) | -| `us-east-2` | [![Deploy to AWS](https://dytvr9ot2sszz.cloudfront.net/logz-docs/lights/LightS-button.png)](https://console.aws.amazon.com/cloudformation/home?region=us-east-2#/stacks/create/review?templateURL=https://logzio-aws-integrations-us-east-2.s3.amazonaws.com/firehose-logs/0.1.0/sam-template.yaml&stackName=logzio-firehose¶m_logzioToken=<>¶m_logzioListener=https://aws-firehose-logs-<>) | -| `us-west-1` | [![Deploy to AWS](https://dytvr9ot2sszz.cloudfront.net/logz-docs/lights/LightS-button.png)](https://console.aws.amazon.com/cloudformation/home?region=us-west-1#/stacks/create/review?templateURL=https://logzio-aws-integrations-us-west-1.s3.amazonaws.com/firehose-logs/0.1.0/sam-template.yaml&stackName=logzio-firehose¶m_logzioToken=<>¶m_logzioListener=https://aws-firehose-logs-<>) | -| `us-west-2` | [![Deploy to AWS](https://dytvr9ot2sszz.cloudfront.net/logz-docs/lights/LightS-button.png)](https://console.aws.amazon.com/cloudformation/home?region=us-west-2#/stacks/create/review?templateURL=https://logzio-aws-integrations-us-west-2.s3.amazonaws.com/firehose-logs/0.1.0/sam-template.yaml&stackName=logzio-firehose¶m_logzioToken=<>¶m_logzioListener=https://aws-firehose-logs-<>) | -| `eu-central-1` | [![Deploy to AWS](https://dytvr9ot2sszz.cloudfront.net/logz-docs/lights/LightS-button.png)](https://console.aws.amazon.com/cloudformation/home?region=eu-central-1#/stacks/create/review?templateURL=https://logzio-aws-integrations-eu-central-1.s3.amazonaws.com/firehose-logs/0.1.0/sam-template.yaml&stackName=logzio-firehose¶m_logzioToken=<>¶m_logzioListener=https://aws-firehose-logs-<>) | -| `eu-north-1` | [![Deploy to AWS](https://dytvr9ot2sszz.cloudfront.net/logz-docs/lights/LightS-button.png)](https://console.aws.amazon.com/cloudformation/home?region=eu-north-1#/stacks/create/review?templateURL=https://logzio-aws-integrations-eu-north-1.s3.amazonaws.com/firehose-logs/0.1.0/sam-template.yaml&stackName=logzio-firehose¶m_logzioToken=<>¶m_logzioListener=https://aws-firehose-logs-<>) | -| `eu-west-1` | [![Deploy to AWS](https://dytvr9ot2sszz.cloudfront.net/logz-docs/lights/LightS-button.png)](https://console.aws.amazon.com/cloudformation/home?region=eu-west-1#/stacks/create/review?templateURL=https://logzio-aws-integrations-eu-west-1.s3.amazonaws.com/firehose-logs/0.1.0/sam-template.yaml&stackName=logzio-firehose¶m_logzioToken=<>¶m_logzioListener=https://aws-firehose-logs-<>) | -| `eu-west-2` | [![Deploy to AWS](https://dytvr9ot2sszz.cloudfront.net/logz-docs/lights/LightS-button.png)](https://console.aws.amazon.com/cloudformation/home?region=eu-west-2#/stacks/create/review?templateURL=https://logzio-aws-integrations-eu-west-2.s3.amazonaws.com/firehose-logs/0.1.0/sam-template.yaml&stackName=logzio-firehose¶m_logzioToken=<>¶m_logzioListener=https://aws-firehose-logs-<>) | -| `eu-west-3` | [![Deploy to AWS](https://dytvr9ot2sszz.cloudfront.net/logz-docs/lights/LightS-button.png)](https://console.aws.amazon.com/cloudformation/home?region=eu-west-3#/stacks/create/review?templateURL=https://logzio-aws-integrations-eu-west-3.s3.amazonaws.com/firehose-logs/0.1.0/sam-template.yaml&stackName=logzio-firehose¶m_logzioToken=<>¶m_logzioListener=https://aws-firehose-logs-<>) | -| `sa-east-1` | [![Deploy to AWS](https://dytvr9ot2sszz.cloudfront.net/logz-docs/lights/LightS-button.png)](https://console.aws.amazon.com/cloudformation/home?region=sa-east-1#/stacks/create/review?templateURL=https://logzio-aws-integrations-sa-east-1.s3.amazonaws.com/firehose-logs/0.1.0/sam-template.yaml&stackName=logzio-firehose¶m_logzioToken=<>¶m_logzioListener=https://aws-firehose-logs-<>) | -| `ap-northeast-1` | [![Deploy to AWS](https://dytvr9ot2sszz.cloudfront.net/logz-docs/lights/LightS-button.png)](https://console.aws.amazon.com/cloudformation/home?region=ap-northeast-1#/stacks/create/review?templateURL=https://logzio-aws-integrations-ap-northeast-1.s3.amazonaws.com/firehose-logs/0.1.0/sam-template.yaml&stackName=logzio-firehose¶m_logzioToken=<>¶m_logzioListener=https://aws-firehose-logs-<>) | -| `ap-northeast-2` | [![Deploy to AWS](https://dytvr9ot2sszz.cloudfront.net/logz-docs/lights/LightS-button.png)](https://console.aws.amazon.com/cloudformation/home?region=ap-northeast-2#/stacks/create/review?templateURL=https://logzio-aws-integrations-ap-northeast-2.s3.amazonaws.com/firehose-logs/0.1.0/sam-template.yaml&stackName=logzio-firehose¶m_logzioToken=<>¶m_logzioListener=https://aws-firehose-logs-<>) | -| `ap-northeast-3` | [![Deploy to AWS](https://dytvr9ot2sszz.cloudfront.net/logz-docs/lights/LightS-button.png)](https://console.aws.amazon.com/cloudformation/home?region=ap-northeast-3#/stacks/create/review?templateURL=https://logzio-aws-integrations-ap-northeast-3.s3.amazonaws.com/firehose-logs/0.1.0/sam-template.yaml&stackName=logzio-firehose¶m_logzioToken=<>¶m_logzioListener=https://aws-firehose-logs-<>) | -| `ap-south-1` | [![Deploy to AWS](https://dytvr9ot2sszz.cloudfront.net/logz-docs/lights/LightS-button.png)](https://console.aws.amazon.com/cloudformation/home?region=ap-south-1#/stacks/create/review?templateURL=https://logzio-aws-integrations-ap-south-1.s3.amazonaws.com/firehose-logs/0.1.0/sam-template.yaml&stackName=logzio-firehose¶m_logzioToken=<>¶m_logzioListener=https://aws-firehose-logs-<>) | -| `ap-southeast-1` | [![Deploy to AWS](https://dytvr9ot2sszz.cloudfront.net/logz-docs/lights/LightS-button.png)](https://console.aws.amazon.com/cloudformation/home?region=ap-southeast-1#/stacks/create/review?templateURL=https://logzio-aws-integrations-ap-southeast-1.s3.amazonaws.com/firehose-logs/0.1.0/sam-template.yaml&stackName=logzio-firehose¶m_logzioToken=<>¶m_logzioListener=https://aws-firehose-logs-<>) | -| `ap-southeast-2` | [![Deploy to AWS](https://dytvr9ot2sszz.cloudfront.net/logz-docs/lights/LightS-button.png)](https://console.aws.amazon.com/cloudformation/home?region=ap-southeast-2#/stacks/create/review?templateURL=https://logzio-aws-integrations-ap-southeast-2.s3.amazonaws.com/firehose-logs/0.1.0/sam-template.yaml&stackName=logzio-firehose¶m_logzioToken=<>¶m_logzioListener=https://aws-firehose-logs-<>) | -| `ca-central-1` | [![Deploy to AWS](https://dytvr9ot2sszz.cloudfront.net/logz-docs/lights/LightS-button.png)](https://console.aws.amazon.com/cloudformation/home?region=ca-central-1#/stacks/create/review?templateURL=https://logzio-aws-integrations-ca-central-1.s3.amazonaws.com/firehose-logs/0.1.0/sam-template.yaml&stackName=logzio-firehose¶m_logzioToken=<>¶m_logzioListener=https://aws-firehose-logs-<>) | +| `us-east-1` | [![Deploy to AWS](https://dytvr9ot2sszz.cloudfront.net/logz-docs/lights/LightS-button.png)](https://console.aws.amazon.com/cloudformation/home?region=us-east-1#/stacks/create/review?templateURL=https://logzio-aws-integrations-us-east-1.s3.amazonaws.com/firehose-logs/0.2.0/sam-template.yaml&stackName=logzio-firehose¶m_logzioToken=<>¶m_logzioListener=https://aws-firehose-logs-<>) | +| `us-east-2` | [![Deploy to AWS](https://dytvr9ot2sszz.cloudfront.net/logz-docs/lights/LightS-button.png)](https://console.aws.amazon.com/cloudformation/home?region=us-east-2#/stacks/create/review?templateURL=https://logzio-aws-integrations-us-east-2.s3.amazonaws.com/firehose-logs/0.2.0/sam-template.yaml&stackName=logzio-firehose¶m_logzioToken=<>¶m_logzioListener=https://aws-firehose-logs-<>) | +| `us-west-1` | [![Deploy to AWS](https://dytvr9ot2sszz.cloudfront.net/logz-docs/lights/LightS-button.png)](https://console.aws.amazon.com/cloudformation/home?region=us-west-1#/stacks/create/review?templateURL=https://logzio-aws-integrations-us-west-1.s3.amazonaws.com/firehose-logs/0.2.0/sam-template.yaml&stackName=logzio-firehose¶m_logzioToken=<>¶m_logzioListener=https://aws-firehose-logs-<>) | +| `us-west-2` | [![Deploy to AWS](https://dytvr9ot2sszz.cloudfront.net/logz-docs/lights/LightS-button.png)](https://console.aws.amazon.com/cloudformation/home?region=us-west-2#/stacks/create/review?templateURL=https://logzio-aws-integrations-us-west-2.s3.amazonaws.com/firehose-logs/0.2.0/sam-template.yaml&stackName=logzio-firehose¶m_logzioToken=<>¶m_logzioListener=https://aws-firehose-logs-<>) | +| `eu-central-1` | [![Deploy to AWS](https://dytvr9ot2sszz.cloudfront.net/logz-docs/lights/LightS-button.png)](https://console.aws.amazon.com/cloudformation/home?region=eu-central-1#/stacks/create/review?templateURL=https://logzio-aws-integrations-eu-central-1.s3.amazonaws.com/firehose-logs/0.2.0/sam-template.yaml&stackName=logzio-firehose¶m_logzioToken=<>¶m_logzioListener=https://aws-firehose-logs-<>) | +| `eu-north-1` | [![Deploy to AWS](https://dytvr9ot2sszz.cloudfront.net/logz-docs/lights/LightS-button.png)](https://console.aws.amazon.com/cloudformation/home?region=eu-north-1#/stacks/create/review?templateURL=https://logzio-aws-integrations-eu-north-1.s3.amazonaws.com/firehose-logs/0.2.0/sam-template.yaml&stackName=logzio-firehose¶m_logzioToken=<>¶m_logzioListener=https://aws-firehose-logs-<>) | +| `eu-west-1` | [![Deploy to AWS](https://dytvr9ot2sszz.cloudfront.net/logz-docs/lights/LightS-button.png)](https://console.aws.amazon.com/cloudformation/home?region=eu-west-1#/stacks/create/review?templateURL=https://logzio-aws-integrations-eu-west-1.s3.amazonaws.com/firehose-logs/0.2.0/sam-template.yaml&stackName=logzio-firehose¶m_logzioToken=<>¶m_logzioListener=https://aws-firehose-logs-<>) | +| `eu-west-2` | [![Deploy to AWS](https://dytvr9ot2sszz.cloudfront.net/logz-docs/lights/LightS-button.png)](https://console.aws.amazon.com/cloudformation/home?region=eu-west-2#/stacks/create/review?templateURL=https://logzio-aws-integrations-eu-west-2.s3.amazonaws.com/firehose-logs/0.2.0/sam-template.yaml&stackName=logzio-firehose¶m_logzioToken=<>¶m_logzioListener=https://aws-firehose-logs-<>) | +| `eu-west-3` | [![Deploy to AWS](https://dytvr9ot2sszz.cloudfront.net/logz-docs/lights/LightS-button.png)](https://console.aws.amazon.com/cloudformation/home?region=eu-west-3#/stacks/create/review?templateURL=https://logzio-aws-integrations-eu-west-3.s3.amazonaws.com/firehose-logs/0.2.0/sam-template.yaml&stackName=logzio-firehose¶m_logzioToken=<>¶m_logzioListener=https://aws-firehose-logs-<>) | +| `sa-east-1` | [![Deploy to AWS](https://dytvr9ot2sszz.cloudfront.net/logz-docs/lights/LightS-button.png)](https://console.aws.amazon.com/cloudformation/home?region=sa-east-1#/stacks/create/review?templateURL=https://logzio-aws-integrations-sa-east-1.s3.amazonaws.com/firehose-logs/0.2.0/sam-template.yaml&stackName=logzio-firehose¶m_logzioToken=<>¶m_logzioListener=https://aws-firehose-logs-<>) | +| `ap-northeast-1` | [![Deploy to AWS](https://dytvr9ot2sszz.cloudfront.net/logz-docs/lights/LightS-button.png)](https://console.aws.amazon.com/cloudformation/home?region=ap-northeast-1#/stacks/create/review?templateURL=https://logzio-aws-integrations-ap-northeast-1.s3.amazonaws.com/firehose-logs/0.2.0/sam-template.yaml&stackName=logzio-firehose¶m_logzioToken=<>¶m_logzioListener=https://aws-firehose-logs-<>) | +| `ap-northeast-2` | [![Deploy to AWS](https://dytvr9ot2sszz.cloudfront.net/logz-docs/lights/LightS-button.png)](https://console.aws.amazon.com/cloudformation/home?region=ap-northeast-2#/stacks/create/review?templateURL=https://logzio-aws-integrations-ap-northeast-2.s3.amazonaws.com/firehose-logs/0.2.0/sam-template.yaml&stackName=logzio-firehose¶m_logzioToken=<>¶m_logzioListener=https://aws-firehose-logs-<>) | +| `ap-northeast-3` | [![Deploy to AWS](https://dytvr9ot2sszz.cloudfront.net/logz-docs/lights/LightS-button.png)](https://console.aws.amazon.com/cloudformation/home?region=ap-northeast-3#/stacks/create/review?templateURL=https://logzio-aws-integrations-ap-northeast-3.s3.amazonaws.com/firehose-logs/0.2.0/sam-template.yaml&stackName=logzio-firehose¶m_logzioToken=<>¶m_logzioListener=https://aws-firehose-logs-<>) | +| `ap-south-1` | [![Deploy to AWS](https://dytvr9ot2sszz.cloudfront.net/logz-docs/lights/LightS-button.png)](https://console.aws.amazon.com/cloudformation/home?region=ap-south-1#/stacks/create/review?templateURL=https://logzio-aws-integrations-ap-south-1.s3.amazonaws.com/firehose-logs/0.2.0/sam-template.yaml&stackName=logzio-firehose¶m_logzioToken=<>¶m_logzioListener=https://aws-firehose-logs-<>) | +| `ap-southeast-1` | [![Deploy to AWS](https://dytvr9ot2sszz.cloudfront.net/logz-docs/lights/LightS-button.png)](https://console.aws.amazon.com/cloudformation/home?region=ap-southeast-1#/stacks/create/review?templateURL=https://logzio-aws-integrations-ap-southeast-1.s3.amazonaws.com/firehose-logs/0.2.0/sam-template.yaml&stackName=logzio-firehose¶m_logzioToken=<>¶m_logzioListener=https://aws-firehose-logs-<>) | +| `ap-southeast-2` | [![Deploy to AWS](https://dytvr9ot2sszz.cloudfront.net/logz-docs/lights/LightS-button.png)](https://console.aws.amazon.com/cloudformation/home?region=ap-southeast-2#/stacks/create/review?templateURL=https://logzio-aws-integrations-ap-southeast-2.s3.amazonaws.com/firehose-logs/0.2.0/sam-template.yaml&stackName=logzio-firehose¶m_logzioToken=<>¶m_logzioListener=https://aws-firehose-logs-<>) | +| `ca-central-1` | [![Deploy to AWS](https://dytvr9ot2sszz.cloudfront.net/logz-docs/lights/LightS-button.png)](https://console.aws.amazon.com/cloudformation/home?region=ca-central-1#/stacks/create/review?templateURL=https://logzio-aws-integrations-ca-central-1.s3.amazonaws.com/firehose-logs/0.2.0/sam-template.yaml&stackName=logzio-firehose¶m_logzioToken=<>¶m_logzioListener=https://aws-firehose-logs-<>) | #### Specify stack details diff --git a/docs/shipping/AWS/aws-msk.md b/docs/shipping/AWS/aws-msk.md index 3e5b3ff8..c72fc34e 100644 --- a/docs/shipping/AWS/aws-msk.md +++ b/docs/shipping/AWS/aws-msk.md @@ -24,23 +24,23 @@ To deploy this project, click the button that matches the region you wish to dep | Region | Deployment | |------------------|--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| -| `us-east-1` | [![Deploy to AWS](https://dytvr9ot2sszz.cloudfront.net/logz-docs/lights/LightS-button.png)](https://console.aws.amazon.com/cloudformation/home?region=us-east-1#/stacks/create/review?templateURL=https://logzio-aws-integrations-us-east-1.s3.amazonaws.com/firehose-logs/0.1.0/sam-template.yaml&stackName=logzio-firehose¶m_logzioToken=<>¶m_logzioListener=https://aws-firehose-logs-<>) | -| `us-east-2` | [![Deploy to AWS](https://dytvr9ot2sszz.cloudfront.net/logz-docs/lights/LightS-button.png)](https://console.aws.amazon.com/cloudformation/home?region=us-east-2#/stacks/create/review?templateURL=https://logzio-aws-integrations-us-east-2.s3.amazonaws.com/firehose-logs/0.1.0/sam-template.yaml&stackName=logzio-firehose¶m_logzioToken=<>¶m_logzioListener=https://aws-firehose-logs-<>) | -| `us-west-1` | [![Deploy to AWS](https://dytvr9ot2sszz.cloudfront.net/logz-docs/lights/LightS-button.png)](https://console.aws.amazon.com/cloudformation/home?region=us-west-1#/stacks/create/review?templateURL=https://logzio-aws-integrations-us-west-1.s3.amazonaws.com/firehose-logs/0.1.0/sam-template.yaml&stackName=logzio-firehose¶m_logzioToken=<>¶m_logzioListener=https://aws-firehose-logs-<>) | -| `us-west-2` | [![Deploy to AWS](https://dytvr9ot2sszz.cloudfront.net/logz-docs/lights/LightS-button.png)](https://console.aws.amazon.com/cloudformation/home?region=us-west-2#/stacks/create/review?templateURL=https://logzio-aws-integrations-us-west-2.s3.amazonaws.com/firehose-logs/0.1.0/sam-template.yaml&stackName=logzio-firehose¶m_logzioToken=<>¶m_logzioListener=https://aws-firehose-logs-<>) | -| `eu-central-1` | [![Deploy to AWS](https://dytvr9ot2sszz.cloudfront.net/logz-docs/lights/LightS-button.png)](https://console.aws.amazon.com/cloudformation/home?region=eu-central-1#/stacks/create/review?templateURL=https://logzio-aws-integrations-eu-central-1.s3.amazonaws.com/firehose-logs/0.1.0/sam-template.yaml&stackName=logzio-firehose¶m_logzioToken=<>¶m_logzioListener=https://aws-firehose-logs-<>) | -| `eu-north-1` | [![Deploy to AWS](https://dytvr9ot2sszz.cloudfront.net/logz-docs/lights/LightS-button.png)](https://console.aws.amazon.com/cloudformation/home?region=eu-north-1#/stacks/create/review?templateURL=https://logzio-aws-integrations-eu-north-1.s3.amazonaws.com/firehose-logs/0.1.0/sam-template.yaml&stackName=logzio-firehose¶m_logzioToken=<>¶m_logzioListener=https://aws-firehose-logs-<>) | -| `eu-west-1` | [![Deploy to AWS](https://dytvr9ot2sszz.cloudfront.net/logz-docs/lights/LightS-button.png)](https://console.aws.amazon.com/cloudformation/home?region=eu-west-1#/stacks/create/review?templateURL=https://logzio-aws-integrations-eu-west-1.s3.amazonaws.com/firehose-logs/0.1.0/sam-template.yaml&stackName=logzio-firehose¶m_logzioToken=<>¶m_logzioListener=https://aws-firehose-logs-<>) | -| `eu-west-2` | [![Deploy to AWS](https://dytvr9ot2sszz.cloudfront.net/logz-docs/lights/LightS-button.png)](https://console.aws.amazon.com/cloudformation/home?region=eu-west-2#/stacks/create/review?templateURL=https://logzio-aws-integrations-eu-west-2.s3.amazonaws.com/firehose-logs/0.1.0/sam-template.yaml&stackName=logzio-firehose¶m_logzioToken=<>¶m_logzioListener=https://aws-firehose-logs-<>) | -| `eu-west-3` | [![Deploy to AWS](https://dytvr9ot2sszz.cloudfront.net/logz-docs/lights/LightS-button.png)](https://console.aws.amazon.com/cloudformation/home?region=eu-west-3#/stacks/create/review?templateURL=https://logzio-aws-integrations-eu-west-3.s3.amazonaws.com/firehose-logs/0.1.0/sam-template.yaml&stackName=logzio-firehose¶m_logzioToken=<>¶m_logzioListener=https://aws-firehose-logs-<>) | -| `sa-east-1` | [![Deploy to AWS](https://dytvr9ot2sszz.cloudfront.net/logz-docs/lights/LightS-button.png)](https://console.aws.amazon.com/cloudformation/home?region=sa-east-1#/stacks/create/review?templateURL=https://logzio-aws-integrations-sa-east-1.s3.amazonaws.com/firehose-logs/0.1.0/sam-template.yaml&stackName=logzio-firehose¶m_logzioToken=<>¶m_logzioListener=https://aws-firehose-logs-<>) | -| `ap-northeast-1` | [![Deploy to AWS](https://dytvr9ot2sszz.cloudfront.net/logz-docs/lights/LightS-button.png)](https://console.aws.amazon.com/cloudformation/home?region=ap-northeast-1#/stacks/create/review?templateURL=https://logzio-aws-integrations-ap-northeast-1.s3.amazonaws.com/firehose-logs/0.1.0/sam-template.yaml&stackName=logzio-firehose¶m_logzioToken=<>¶m_logzioListener=https://aws-firehose-logs-<>) | -| `ap-northeast-2` | [![Deploy to AWS](https://dytvr9ot2sszz.cloudfront.net/logz-docs/lights/LightS-button.png)](https://console.aws.amazon.com/cloudformation/home?region=ap-northeast-2#/stacks/create/review?templateURL=https://logzio-aws-integrations-ap-northeast-2.s3.amazonaws.com/firehose-logs/0.1.0/sam-template.yaml&stackName=logzio-firehose¶m_logzioToken=<>¶m_logzioListener=https://aws-firehose-logs-<>) | -| `ap-northeast-3` | [![Deploy to AWS](https://dytvr9ot2sszz.cloudfront.net/logz-docs/lights/LightS-button.png)](https://console.aws.amazon.com/cloudformation/home?region=ap-northeast-3#/stacks/create/review?templateURL=https://logzio-aws-integrations-ap-northeast-3.s3.amazonaws.com/firehose-logs/0.1.0/sam-template.yaml&stackName=logzio-firehose¶m_logzioToken=<>¶m_logzioListener=https://aws-firehose-logs-<>) | -| `ap-south-1` | [![Deploy to AWS](https://dytvr9ot2sszz.cloudfront.net/logz-docs/lights/LightS-button.png)](https://console.aws.amazon.com/cloudformation/home?region=ap-south-1#/stacks/create/review?templateURL=https://logzio-aws-integrations-ap-south-1.s3.amazonaws.com/firehose-logs/0.1.0/sam-template.yaml&stackName=logzio-firehose¶m_logzioToken=<>¶m_logzioListener=https://aws-firehose-logs-<>) | -| `ap-southeast-1` | [![Deploy to AWS](https://dytvr9ot2sszz.cloudfront.net/logz-docs/lights/LightS-button.png)](https://console.aws.amazon.com/cloudformation/home?region=ap-southeast-1#/stacks/create/review?templateURL=https://logzio-aws-integrations-ap-southeast-1.s3.amazonaws.com/firehose-logs/0.1.0/sam-template.yaml&stackName=logzio-firehose¶m_logzioToken=<>¶m_logzioListener=https://aws-firehose-logs-<>) | -| `ap-southeast-2` | [![Deploy to AWS](https://dytvr9ot2sszz.cloudfront.net/logz-docs/lights/LightS-button.png)](https://console.aws.amazon.com/cloudformation/home?region=ap-southeast-2#/stacks/create/review?templateURL=https://logzio-aws-integrations-ap-southeast-2.s3.amazonaws.com/firehose-logs/0.1.0/sam-template.yaml&stackName=logzio-firehose¶m_logzioToken=<>¶m_logzioListener=https://aws-firehose-logs-<>) | -| `ca-central-1` | [![Deploy to AWS](https://dytvr9ot2sszz.cloudfront.net/logz-docs/lights/LightS-button.png)](https://console.aws.amazon.com/cloudformation/home?region=ca-central-1#/stacks/create/review?templateURL=https://logzio-aws-integrations-ca-central-1.s3.amazonaws.com/firehose-logs/0.1.0/sam-template.yaml&stackName=logzio-firehose¶m_logzioToken=<>¶m_logzioListener=https://aws-firehose-logs-<>) | +| `us-east-1` | [![Deploy to AWS](https://dytvr9ot2sszz.cloudfront.net/logz-docs/lights/LightS-button.png)](https://console.aws.amazon.com/cloudformation/home?region=us-east-1#/stacks/create/review?templateURL=https://logzio-aws-integrations-us-east-1.s3.amazonaws.com/firehose-logs/0.2.0/sam-template.yaml&stackName=logzio-firehose¶m_logzioToken=<>¶m_logzioListener=https://aws-firehose-logs-<>) | +| `us-east-2` | [![Deploy to AWS](https://dytvr9ot2sszz.cloudfront.net/logz-docs/lights/LightS-button.png)](https://console.aws.amazon.com/cloudformation/home?region=us-east-2#/stacks/create/review?templateURL=https://logzio-aws-integrations-us-east-2.s3.amazonaws.com/firehose-logs/0.2.0/sam-template.yaml&stackName=logzio-firehose¶m_logzioToken=<>¶m_logzioListener=https://aws-firehose-logs-<>) | +| `us-west-1` | [![Deploy to AWS](https://dytvr9ot2sszz.cloudfront.net/logz-docs/lights/LightS-button.png)](https://console.aws.amazon.com/cloudformation/home?region=us-west-1#/stacks/create/review?templateURL=https://logzio-aws-integrations-us-west-1.s3.amazonaws.com/firehose-logs/0.2.0/sam-template.yaml&stackName=logzio-firehose¶m_logzioToken=<>¶m_logzioListener=https://aws-firehose-logs-<>) | +| `us-west-2` | [![Deploy to AWS](https://dytvr9ot2sszz.cloudfront.net/logz-docs/lights/LightS-button.png)](https://console.aws.amazon.com/cloudformation/home?region=us-west-2#/stacks/create/review?templateURL=https://logzio-aws-integrations-us-west-2.s3.amazonaws.com/firehose-logs/0.2.0/sam-template.yaml&stackName=logzio-firehose¶m_logzioToken=<>¶m_logzioListener=https://aws-firehose-logs-<>) | +| `eu-central-1` | [![Deploy to AWS](https://dytvr9ot2sszz.cloudfront.net/logz-docs/lights/LightS-button.png)](https://console.aws.amazon.com/cloudformation/home?region=eu-central-1#/stacks/create/review?templateURL=https://logzio-aws-integrations-eu-central-1.s3.amazonaws.com/firehose-logs/0.2.0/sam-template.yaml&stackName=logzio-firehose¶m_logzioToken=<>¶m_logzioListener=https://aws-firehose-logs-<>) | +| `eu-north-1` | [![Deploy to AWS](https://dytvr9ot2sszz.cloudfront.net/logz-docs/lights/LightS-button.png)](https://console.aws.amazon.com/cloudformation/home?region=eu-north-1#/stacks/create/review?templateURL=https://logzio-aws-integrations-eu-north-1.s3.amazonaws.com/firehose-logs/0.2.0/sam-template.yaml&stackName=logzio-firehose¶m_logzioToken=<>¶m_logzioListener=https://aws-firehose-logs-<>) | +| `eu-west-1` | [![Deploy to AWS](https://dytvr9ot2sszz.cloudfront.net/logz-docs/lights/LightS-button.png)](https://console.aws.amazon.com/cloudformation/home?region=eu-west-1#/stacks/create/review?templateURL=https://logzio-aws-integrations-eu-west-1.s3.amazonaws.com/firehose-logs/0.2.0/sam-template.yaml&stackName=logzio-firehose¶m_logzioToken=<>¶m_logzioListener=https://aws-firehose-logs-<>) | +| `eu-west-2` | [![Deploy to AWS](https://dytvr9ot2sszz.cloudfront.net/logz-docs/lights/LightS-button.png)](https://console.aws.amazon.com/cloudformation/home?region=eu-west-2#/stacks/create/review?templateURL=https://logzio-aws-integrations-eu-west-2.s3.amazonaws.com/firehose-logs/0.2.0/sam-template.yaml&stackName=logzio-firehose¶m_logzioToken=<>¶m_logzioListener=https://aws-firehose-logs-<>) | +| `eu-west-3` | [![Deploy to AWS](https://dytvr9ot2sszz.cloudfront.net/logz-docs/lights/LightS-button.png)](https://console.aws.amazon.com/cloudformation/home?region=eu-west-3#/stacks/create/review?templateURL=https://logzio-aws-integrations-eu-west-3.s3.amazonaws.com/firehose-logs/0.2.0/sam-template.yaml&stackName=logzio-firehose¶m_logzioToken=<>¶m_logzioListener=https://aws-firehose-logs-<>) | +| `sa-east-1` | [![Deploy to AWS](https://dytvr9ot2sszz.cloudfront.net/logz-docs/lights/LightS-button.png)](https://console.aws.amazon.com/cloudformation/home?region=sa-east-1#/stacks/create/review?templateURL=https://logzio-aws-integrations-sa-east-1.s3.amazonaws.com/firehose-logs/0.2.0/sam-template.yaml&stackName=logzio-firehose¶m_logzioToken=<>¶m_logzioListener=https://aws-firehose-logs-<>) | +| `ap-northeast-1` | [![Deploy to AWS](https://dytvr9ot2sszz.cloudfront.net/logz-docs/lights/LightS-button.png)](https://console.aws.amazon.com/cloudformation/home?region=ap-northeast-1#/stacks/create/review?templateURL=https://logzio-aws-integrations-ap-northeast-1.s3.amazonaws.com/firehose-logs/0.2.0/sam-template.yaml&stackName=logzio-firehose¶m_logzioToken=<>¶m_logzioListener=https://aws-firehose-logs-<>) | +| `ap-northeast-2` | [![Deploy to AWS](https://dytvr9ot2sszz.cloudfront.net/logz-docs/lights/LightS-button.png)](https://console.aws.amazon.com/cloudformation/home?region=ap-northeast-2#/stacks/create/review?templateURL=https://logzio-aws-integrations-ap-northeast-2.s3.amazonaws.com/firehose-logs/0.2.0/sam-template.yaml&stackName=logzio-firehose¶m_logzioToken=<>¶m_logzioListener=https://aws-firehose-logs-<>) | +| `ap-northeast-3` | [![Deploy to AWS](https://dytvr9ot2sszz.cloudfront.net/logz-docs/lights/LightS-button.png)](https://console.aws.amazon.com/cloudformation/home?region=ap-northeast-3#/stacks/create/review?templateURL=https://logzio-aws-integrations-ap-northeast-3.s3.amazonaws.com/firehose-logs/0.2.0/sam-template.yaml&stackName=logzio-firehose¶m_logzioToken=<>¶m_logzioListener=https://aws-firehose-logs-<>) | +| `ap-south-1` | [![Deploy to AWS](https://dytvr9ot2sszz.cloudfront.net/logz-docs/lights/LightS-button.png)](https://console.aws.amazon.com/cloudformation/home?region=ap-south-1#/stacks/create/review?templateURL=https://logzio-aws-integrations-ap-south-1.s3.amazonaws.com/firehose-logs/0.2.0/sam-template.yaml&stackName=logzio-firehose¶m_logzioToken=<>¶m_logzioListener=https://aws-firehose-logs-<>) | +| `ap-southeast-1` | [![Deploy to AWS](https://dytvr9ot2sszz.cloudfront.net/logz-docs/lights/LightS-button.png)](https://console.aws.amazon.com/cloudformation/home?region=ap-southeast-1#/stacks/create/review?templateURL=https://logzio-aws-integrations-ap-southeast-1.s3.amazonaws.com/firehose-logs/0.2.0/sam-template.yaml&stackName=logzio-firehose¶m_logzioToken=<>¶m_logzioListener=https://aws-firehose-logs-<>) | +| `ap-southeast-2` | [![Deploy to AWS](https://dytvr9ot2sszz.cloudfront.net/logz-docs/lights/LightS-button.png)](https://console.aws.amazon.com/cloudformation/home?region=ap-southeast-2#/stacks/create/review?templateURL=https://logzio-aws-integrations-ap-southeast-2.s3.amazonaws.com/firehose-logs/0.2.0/sam-template.yaml&stackName=logzio-firehose¶m_logzioToken=<>¶m_logzioListener=https://aws-firehose-logs-<>) | +| `ca-central-1` | [![Deploy to AWS](https://dytvr9ot2sszz.cloudfront.net/logz-docs/lights/LightS-button.png)](https://console.aws.amazon.com/cloudformation/home?region=ca-central-1#/stacks/create/review?templateURL=https://logzio-aws-integrations-ca-central-1.s3.amazonaws.com/firehose-logs/0.2.0/sam-template.yaml&stackName=logzio-firehose¶m_logzioToken=<>¶m_logzioListener=https://aws-firehose-logs-<>) | #### Specify stack details diff --git a/docs/shipping/AWS/aws-sqs.md b/docs/shipping/AWS/aws-sqs.md index 9cf19a20..be0fe480 100644 --- a/docs/shipping/AWS/aws-sqs.md +++ b/docs/shipping/AWS/aws-sqs.md @@ -25,23 +25,23 @@ To deploy this project, click the button that matches the region you wish to dep | Region | Deployment | |------------------|--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| -| `us-east-1` | [![Deploy to AWS](https://dytvr9ot2sszz.cloudfront.net/logz-docs/lights/LightS-button.png)](https://console.aws.amazon.com/cloudformation/home?region=us-east-1#/stacks/create/review?templateURL=https://logzio-aws-integrations-us-east-1.s3.amazonaws.com/firehose-logs/0.1.0/sam-template.yaml&stackName=logzio-firehose¶m_logzioToken=<>¶m_logzioListener=https://aws-firehose-logs-<>) | -| `us-east-2` | [![Deploy to AWS](https://dytvr9ot2sszz.cloudfront.net/logz-docs/lights/LightS-button.png)](https://console.aws.amazon.com/cloudformation/home?region=us-east-2#/stacks/create/review?templateURL=https://logzio-aws-integrations-us-east-2.s3.amazonaws.com/firehose-logs/0.1.0/sam-template.yaml&stackName=logzio-firehose¶m_logzioToken=<>¶m_logzioListener=https://aws-firehose-logs-<>) | -| `us-west-1` | [![Deploy to AWS](https://dytvr9ot2sszz.cloudfront.net/logz-docs/lights/LightS-button.png)](https://console.aws.amazon.com/cloudformation/home?region=us-west-1#/stacks/create/review?templateURL=https://logzio-aws-integrations-us-west-1.s3.amazonaws.com/firehose-logs/0.1.0/sam-template.yaml&stackName=logzio-firehose¶m_logzioToken=<>¶m_logzioListener=https://aws-firehose-logs-<>) | -| `us-west-2` | [![Deploy to AWS](https://dytvr9ot2sszz.cloudfront.net/logz-docs/lights/LightS-button.png)](https://console.aws.amazon.com/cloudformation/home?region=us-west-2#/stacks/create/review?templateURL=https://logzio-aws-integrations-us-west-2.s3.amazonaws.com/firehose-logs/0.1.0/sam-template.yaml&stackName=logzio-firehose¶m_logzioToken=<>¶m_logzioListener=https://aws-firehose-logs-<>) | -| `eu-central-1` | [![Deploy to AWS](https://dytvr9ot2sszz.cloudfront.net/logz-docs/lights/LightS-button.png)](https://console.aws.amazon.com/cloudformation/home?region=eu-central-1#/stacks/create/review?templateURL=https://logzio-aws-integrations-eu-central-1.s3.amazonaws.com/firehose-logs/0.1.0/sam-template.yaml&stackName=logzio-firehose¶m_logzioToken=<>¶m_logzioListener=https://aws-firehose-logs-<>) | -| `eu-north-1` | [![Deploy to AWS](https://dytvr9ot2sszz.cloudfront.net/logz-docs/lights/LightS-button.png)](https://console.aws.amazon.com/cloudformation/home?region=eu-north-1#/stacks/create/review?templateURL=https://logzio-aws-integrations-eu-north-1.s3.amazonaws.com/firehose-logs/0.1.0/sam-template.yaml&stackName=logzio-firehose¶m_logzioToken=<>¶m_logzioListener=https://aws-firehose-logs-<>) | -| `eu-west-1` | [![Deploy to AWS](https://dytvr9ot2sszz.cloudfront.net/logz-docs/lights/LightS-button.png)](https://console.aws.amazon.com/cloudformation/home?region=eu-west-1#/stacks/create/review?templateURL=https://logzio-aws-integrations-eu-west-1.s3.amazonaws.com/firehose-logs/0.1.0/sam-template.yaml&stackName=logzio-firehose¶m_logzioToken=<>¶m_logzioListener=https://aws-firehose-logs-<>) | -| `eu-west-2` | [![Deploy to AWS](https://dytvr9ot2sszz.cloudfront.net/logz-docs/lights/LightS-button.png)](https://console.aws.amazon.com/cloudformation/home?region=eu-west-2#/stacks/create/review?templateURL=https://logzio-aws-integrations-eu-west-2.s3.amazonaws.com/firehose-logs/0.1.0/sam-template.yaml&stackName=logzio-firehose¶m_logzioToken=<>¶m_logzioListener=https://aws-firehose-logs-<>) | -| `eu-west-3` | [![Deploy to AWS](https://dytvr9ot2sszz.cloudfront.net/logz-docs/lights/LightS-button.png)](https://console.aws.amazon.com/cloudformation/home?region=eu-west-3#/stacks/create/review?templateURL=https://logzio-aws-integrations-eu-west-3.s3.amazonaws.com/firehose-logs/0.1.0/sam-template.yaml&stackName=logzio-firehose¶m_logzioToken=<>¶m_logzioListener=https://aws-firehose-logs-<>) | -| `sa-east-1` | [![Deploy to AWS](https://dytvr9ot2sszz.cloudfront.net/logz-docs/lights/LightS-button.png)](https://console.aws.amazon.com/cloudformation/home?region=sa-east-1#/stacks/create/review?templateURL=https://logzio-aws-integrations-sa-east-1.s3.amazonaws.com/firehose-logs/0.1.0/sam-template.yaml&stackName=logzio-firehose¶m_logzioToken=<>¶m_logzioListener=https://aws-firehose-logs-<>) | -| `ap-northeast-1` | [![Deploy to AWS](https://dytvr9ot2sszz.cloudfront.net/logz-docs/lights/LightS-button.png)](https://console.aws.amazon.com/cloudformation/home?region=ap-northeast-1#/stacks/create/review?templateURL=https://logzio-aws-integrations-ap-northeast-1.s3.amazonaws.com/firehose-logs/0.1.0/sam-template.yaml&stackName=logzio-firehose¶m_logzioToken=<>¶m_logzioListener=https://aws-firehose-logs-<>) | -| `ap-northeast-2` | [![Deploy to AWS](https://dytvr9ot2sszz.cloudfront.net/logz-docs/lights/LightS-button.png)](https://console.aws.amazon.com/cloudformation/home?region=ap-northeast-2#/stacks/create/review?templateURL=https://logzio-aws-integrations-ap-northeast-2.s3.amazonaws.com/firehose-logs/0.1.0/sam-template.yaml&stackName=logzio-firehose¶m_logzioToken=<>¶m_logzioListener=https://aws-firehose-logs-<>) | -| `ap-northeast-3` | [![Deploy to AWS](https://dytvr9ot2sszz.cloudfront.net/logz-docs/lights/LightS-button.png)](https://console.aws.amazon.com/cloudformation/home?region=ap-northeast-3#/stacks/create/review?templateURL=https://logzio-aws-integrations-ap-northeast-3.s3.amazonaws.com/firehose-logs/0.1.0/sam-template.yaml&stackName=logzio-firehose¶m_logzioToken=<>¶m_logzioListener=https://aws-firehose-logs-<>) | -| `ap-south-1` | [![Deploy to AWS](https://dytvr9ot2sszz.cloudfront.net/logz-docs/lights/LightS-button.png)](https://console.aws.amazon.com/cloudformation/home?region=ap-south-1#/stacks/create/review?templateURL=https://logzio-aws-integrations-ap-south-1.s3.amazonaws.com/firehose-logs/0.1.0/sam-template.yaml&stackName=logzio-firehose¶m_logzioToken=<>¶m_logzioListener=https://aws-firehose-logs-<>) | -| `ap-southeast-1` | [![Deploy to AWS](https://dytvr9ot2sszz.cloudfront.net/logz-docs/lights/LightS-button.png)](https://console.aws.amazon.com/cloudformation/home?region=ap-southeast-1#/stacks/create/review?templateURL=https://logzio-aws-integrations-ap-southeast-1.s3.amazonaws.com/firehose-logs/0.1.0/sam-template.yaml&stackName=logzio-firehose¶m_logzioToken=<>¶m_logzioListener=https://aws-firehose-logs-<>) | -| `ap-southeast-2` | [![Deploy to AWS](https://dytvr9ot2sszz.cloudfront.net/logz-docs/lights/LightS-button.png)](https://console.aws.amazon.com/cloudformation/home?region=ap-southeast-2#/stacks/create/review?templateURL=https://logzio-aws-integrations-ap-southeast-2.s3.amazonaws.com/firehose-logs/0.1.0/sam-template.yaml&stackName=logzio-firehose¶m_logzioToken=<>¶m_logzioListener=https://aws-firehose-logs-<>) | -| `ca-central-1` | [![Deploy to AWS](https://dytvr9ot2sszz.cloudfront.net/logz-docs/lights/LightS-button.png)](https://console.aws.amazon.com/cloudformation/home?region=ca-central-1#/stacks/create/review?templateURL=https://logzio-aws-integrations-ca-central-1.s3.amazonaws.com/firehose-logs/0.1.0/sam-template.yaml&stackName=logzio-firehose¶m_logzioToken=<>¶m_logzioListener=https://aws-firehose-logs-<>) | +| `us-east-1` | [![Deploy to AWS](https://dytvr9ot2sszz.cloudfront.net/logz-docs/lights/LightS-button.png)](https://console.aws.amazon.com/cloudformation/home?region=us-east-1#/stacks/create/review?templateURL=https://logzio-aws-integrations-us-east-1.s3.amazonaws.com/firehose-logs/0.2.0/sam-template.yaml&stackName=logzio-firehose¶m_logzioToken=<>¶m_logzioListener=https://aws-firehose-logs-<>) | +| `us-east-2` | [![Deploy to AWS](https://dytvr9ot2sszz.cloudfront.net/logz-docs/lights/LightS-button.png)](https://console.aws.amazon.com/cloudformation/home?region=us-east-2#/stacks/create/review?templateURL=https://logzio-aws-integrations-us-east-2.s3.amazonaws.com/firehose-logs/0.2.0/sam-template.yaml&stackName=logzio-firehose¶m_logzioToken=<>¶m_logzioListener=https://aws-firehose-logs-<>) | +| `us-west-1` | [![Deploy to AWS](https://dytvr9ot2sszz.cloudfront.net/logz-docs/lights/LightS-button.png)](https://console.aws.amazon.com/cloudformation/home?region=us-west-1#/stacks/create/review?templateURL=https://logzio-aws-integrations-us-west-1.s3.amazonaws.com/firehose-logs/0.2.0/sam-template.yaml&stackName=logzio-firehose¶m_logzioToken=<>¶m_logzioListener=https://aws-firehose-logs-<>) | +| `us-west-2` | [![Deploy to AWS](https://dytvr9ot2sszz.cloudfront.net/logz-docs/lights/LightS-button.png)](https://console.aws.amazon.com/cloudformation/home?region=us-west-2#/stacks/create/review?templateURL=https://logzio-aws-integrations-us-west-2.s3.amazonaws.com/firehose-logs/0.2.0/sam-template.yaml&stackName=logzio-firehose¶m_logzioToken=<>¶m_logzioListener=https://aws-firehose-logs-<>) | +| `eu-central-1` | [![Deploy to AWS](https://dytvr9ot2sszz.cloudfront.net/logz-docs/lights/LightS-button.png)](https://console.aws.amazon.com/cloudformation/home?region=eu-central-1#/stacks/create/review?templateURL=https://logzio-aws-integrations-eu-central-1.s3.amazonaws.com/firehose-logs/0.2.0/sam-template.yaml&stackName=logzio-firehose¶m_logzioToken=<>¶m_logzioListener=https://aws-firehose-logs-<>) | +| `eu-north-1` | [![Deploy to AWS](https://dytvr9ot2sszz.cloudfront.net/logz-docs/lights/LightS-button.png)](https://console.aws.amazon.com/cloudformation/home?region=eu-north-1#/stacks/create/review?templateURL=https://logzio-aws-integrations-eu-north-1.s3.amazonaws.com/firehose-logs/0.2.0/sam-template.yaml&stackName=logzio-firehose¶m_logzioToken=<>¶m_logzioListener=https://aws-firehose-logs-<>) | +| `eu-west-1` | [![Deploy to AWS](https://dytvr9ot2sszz.cloudfront.net/logz-docs/lights/LightS-button.png)](https://console.aws.amazon.com/cloudformation/home?region=eu-west-1#/stacks/create/review?templateURL=https://logzio-aws-integrations-eu-west-1.s3.amazonaws.com/firehose-logs/0.2.0/sam-template.yaml&stackName=logzio-firehose¶m_logzioToken=<>¶m_logzioListener=https://aws-firehose-logs-<>) | +| `eu-west-2` | [![Deploy to AWS](https://dytvr9ot2sszz.cloudfront.net/logz-docs/lights/LightS-button.png)](https://console.aws.amazon.com/cloudformation/home?region=eu-west-2#/stacks/create/review?templateURL=https://logzio-aws-integrations-eu-west-2.s3.amazonaws.com/firehose-logs/0.2.0/sam-template.yaml&stackName=logzio-firehose¶m_logzioToken=<>¶m_logzioListener=https://aws-firehose-logs-<>) | +| `eu-west-3` | [![Deploy to AWS](https://dytvr9ot2sszz.cloudfront.net/logz-docs/lights/LightS-button.png)](https://console.aws.amazon.com/cloudformation/home?region=eu-west-3#/stacks/create/review?templateURL=https://logzio-aws-integrations-eu-west-3.s3.amazonaws.com/firehose-logs/0.2.0/sam-template.yaml&stackName=logzio-firehose¶m_logzioToken=<>¶m_logzioListener=https://aws-firehose-logs-<>) | +| `sa-east-1` | [![Deploy to AWS](https://dytvr9ot2sszz.cloudfront.net/logz-docs/lights/LightS-button.png)](https://console.aws.amazon.com/cloudformation/home?region=sa-east-1#/stacks/create/review?templateURL=https://logzio-aws-integrations-sa-east-1.s3.amazonaws.com/firehose-logs/0.2.0/sam-template.yaml&stackName=logzio-firehose¶m_logzioToken=<>¶m_logzioListener=https://aws-firehose-logs-<>) | +| `ap-northeast-1` | [![Deploy to AWS](https://dytvr9ot2sszz.cloudfront.net/logz-docs/lights/LightS-button.png)](https://console.aws.amazon.com/cloudformation/home?region=ap-northeast-1#/stacks/create/review?templateURL=https://logzio-aws-integrations-ap-northeast-1.s3.amazonaws.com/firehose-logs/0.2.0/sam-template.yaml&stackName=logzio-firehose¶m_logzioToken=<>¶m_logzioListener=https://aws-firehose-logs-<>) | +| `ap-northeast-2` | [![Deploy to AWS](https://dytvr9ot2sszz.cloudfront.net/logz-docs/lights/LightS-button.png)](https://console.aws.amazon.com/cloudformation/home?region=ap-northeast-2#/stacks/create/review?templateURL=https://logzio-aws-integrations-ap-northeast-2.s3.amazonaws.com/firehose-logs/0.2.0/sam-template.yaml&stackName=logzio-firehose¶m_logzioToken=<>¶m_logzioListener=https://aws-firehose-logs-<>) | +| `ap-northeast-3` | [![Deploy to AWS](https://dytvr9ot2sszz.cloudfront.net/logz-docs/lights/LightS-button.png)](https://console.aws.amazon.com/cloudformation/home?region=ap-northeast-3#/stacks/create/review?templateURL=https://logzio-aws-integrations-ap-northeast-3.s3.amazonaws.com/firehose-logs/0.2.0/sam-template.yaml&stackName=logzio-firehose¶m_logzioToken=<>¶m_logzioListener=https://aws-firehose-logs-<>) | +| `ap-south-1` | [![Deploy to AWS](https://dytvr9ot2sszz.cloudfront.net/logz-docs/lights/LightS-button.png)](https://console.aws.amazon.com/cloudformation/home?region=ap-south-1#/stacks/create/review?templateURL=https://logzio-aws-integrations-ap-south-1.s3.amazonaws.com/firehose-logs/0.2.0/sam-template.yaml&stackName=logzio-firehose¶m_logzioToken=<>¶m_logzioListener=https://aws-firehose-logs-<>) | +| `ap-southeast-1` | [![Deploy to AWS](https://dytvr9ot2sszz.cloudfront.net/logz-docs/lights/LightS-button.png)](https://console.aws.amazon.com/cloudformation/home?region=ap-southeast-1#/stacks/create/review?templateURL=https://logzio-aws-integrations-ap-southeast-1.s3.amazonaws.com/firehose-logs/0.2.0/sam-template.yaml&stackName=logzio-firehose¶m_logzioToken=<>¶m_logzioListener=https://aws-firehose-logs-<>) | +| `ap-southeast-2` | [![Deploy to AWS](https://dytvr9ot2sszz.cloudfront.net/logz-docs/lights/LightS-button.png)](https://console.aws.amazon.com/cloudformation/home?region=ap-southeast-2#/stacks/create/review?templateURL=https://logzio-aws-integrations-ap-southeast-2.s3.amazonaws.com/firehose-logs/0.2.0/sam-template.yaml&stackName=logzio-firehose¶m_logzioToken=<>¶m_logzioListener=https://aws-firehose-logs-<>) | +| `ca-central-1` | [![Deploy to AWS](https://dytvr9ot2sszz.cloudfront.net/logz-docs/lights/LightS-button.png)](https://console.aws.amazon.com/cloudformation/home?region=ca-central-1#/stacks/create/review?templateURL=https://logzio-aws-integrations-ca-central-1.s3.amazonaws.com/firehose-logs/0.2.0/sam-template.yaml&stackName=logzio-firehose¶m_logzioToken=<>¶m_logzioListener=https://aws-firehose-logs-<>) | #### Specify stack details From 7e556928b5bb30bb30501ad65ba8213c18b9e5dd Mon Sep 17 00:00:00 2001 From: Simplychee Date: Mon, 22 Jul 2024 12:16:03 +0300 Subject: [PATCH 4/6] tabs --- docs/user-guide/log-management/api-fetcher.md | 15 ++++++++------- 1 file changed, 8 insertions(+), 7 deletions(-) diff --git a/docs/user-guide/log-management/api-fetcher.md b/docs/user-guide/log-management/api-fetcher.md index 1089e599..ce9c2cf9 100644 --- a/docs/user-guide/log-management/api-fetcher.md +++ b/docs/user-guide/log-management/api-fetcher.md @@ -73,6 +73,9 @@ logzio: ### Configure your APIs +import Tabs from '@theme/Tabs'; +import TabItem from '@theme/TabItem'; + @@ -174,9 +177,8 @@ And in the call after it, it would update again according to the response and th | scrape_interval | Time interval to wait between runs (unit: `minutes`) | Optional | 1 (minute) | | additional_fields | Additional custom fields to add to the logs before sending to logzio | Optional | Add `type` as `api-fetcher` | - - - + + #### Azure API Settings Below fields are relevant for **all Azure API types** @@ -212,9 +214,8 @@ The below fields are relevant **in addition** to the required ones listed under | data_request.url | The request URL | Required | - | | data_request.additional_fields | Additional custom fields to add to the logs before sending to logzio | Optional | - | - - - + + #### Cloudflare API Settings By default `cloudflare` API type has built in pagination settings and sets the `response_data_path` to `result` field. @@ -236,7 +237,7 @@ By default `cloudflare` API type has built in pagination settings and sets the ` -### Launch the Docker Container +## Launch the Docker Container Use Docker to run the Logz.io API Fetcher with the provided command in the path where you saved your `config.yaml`: From a3c014391b0294e28c09cbd39d53d0634115973c Mon Sep 17 00:00:00 2001 From: 8naama Date: Mon, 22 Jul 2024 12:24:33 +0300 Subject: [PATCH 5/6] add more examples to config --- docs/user-guide/log-management/api-fetcher.md | 23 +++++++++++++++++++ 1 file changed, 23 insertions(+) diff --git a/docs/user-guide/log-management/api-fetcher.md b/docs/user-guide/log-management/api-fetcher.md index ce9c2cf9..75f41117 100644 --- a/docs/user-guide/log-management/api-fetcher.md +++ b/docs/user-guide/log-management/api-fetcher.md @@ -33,6 +33,29 @@ apis: scrape_interval: 1 days_back_fetch: 30 + - name: mail reports example + type: azure_mail_reports + azure_ad_tenant_id: <> + azure_ad_client_id: <> + azure_ad_secret_value: <> + data_request: + url: https://login.microsoftonline.com/<>/oauth2/v2.0/token + additional_fields: + type: azure_mail_reports + scrape_interval: 60 # for mail reports we suggest no less than 60 minutes + days_back_fetch: 8 # for mail reports we suggest up to 8 days + + - name: cloudflare test + type: cloudflare + cloudflare_account_id: <> + cloudflare_bearer_token: <> + url: https://api.cloudflare.com/client/v4/accounts/{account_id}/alerting/v3/history + next_url: https://api.cloudflare.com/client/v4/accounts/{account_id}/alerting/v3/history?since={res.result.[0].sent} + days_back_fetch: 7 + scrape_interval: 5 + additional_fields: + type: cloudflare + - name: general example type: general url: https://first/request/url From b655afa1ee89fa02cd6926bcf5e3e71d769359b1 Mon Sep 17 00:00:00 2001 From: 8naama Date: Mon, 22 Jul 2024 12:28:14 +0300 Subject: [PATCH 6/6] rephrase example explanation --- docs/user-guide/log-management/api-fetcher.md | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/docs/user-guide/log-management/api-fetcher.md b/docs/user-guide/log-management/api-fetcher.md index 75f41117..5aa8a62f 100644 --- a/docs/user-guide/log-management/api-fetcher.md +++ b/docs/user-guide/log-management/api-fetcher.md @@ -10,9 +10,7 @@ The Logz.io API Fetcher supports both auth and OAuth APIs and includes specific This guide outlines the steps for configuring the Logz.io API Fetcher to fetch and send data to Logz.io. Our aim is to develop the API Fetcher as a generic tool capable of fetching data from any API endpoint. However, this presents significant challenges. If you encounter difficulties configuring the API Fetcher with a particular API endpoint, please reach out to our support team for assistance. -The configuration example provided focuses on Azure Graph Security Center alerts. However, the same methodology can be applied to other API types. - -Below is a sample configuration template for Azure Graph, as found in our documentation and on GitHub: +Below is a sample configuration template, as found in our documentation and on GitHub: ```yaml logzio: