From 630bd1b404ac267ebb32cf860fe2bccfbc43a191 Mon Sep 17 00:00:00 2001 From: Simplychee Date: Tue, 9 Jul 2024 14:02:03 +0300 Subject: [PATCH 01/14] java --- docs/shipping/Code/java.md | 307 +++++++++++++++++-------------------- 1 file changed, 143 insertions(+), 164 deletions(-) diff --git a/docs/shipping/Code/java.md b/docs/shipping/Code/java.md index 64b87387..ab4f8038 100644 --- a/docs/shipping/Code/java.md +++ b/docs/shipping/Code/java.md @@ -16,7 +16,7 @@ drop_filter: [] --- :::tip -If your code runs within Kubernetes, it's best practice to use our Kubernetes integration to collect various telemetry types. +For Kubernetes, use the Kubernetes integration to collect various telemetry types. ::: ## Logs @@ -32,22 +32,18 @@ import TabItem from '@theme/TabItem'; [Project's GitHub repo](https://github.com/logzio/logzio-log4j2-appender/) ::: -The Logz.io Log4j 2 appender sends logs using non-blocking threading, bulks, and HTTPS encryption to port 8071. +The Logz.io Log4j 2 appender sends logs via non-blocking threading bulks and HTTPS encryption to port 8071. It uses LogzioSender, with logs queued in a buffer and are 100% non-blocking, shipped by a background task. This .jar includes LogzioSender, BigQueue, Gson, and Guava. -This appender uses LogzioSender. -Logs queue in the buffer and are 100% non-blocking. -A background task handles log shipping. -To help manage dependencies, this .jar shades LogzioSender, BigQueue, Gson, and Guava. -**Before you begin, you'll need**: -Log4j 2.7 or higher, -Java 8 or higher + +**Requirements:**: +* Log4j 2.7+ +* Java 8+ -#### Add the dependency to your project +### Add a dependency to a configuration file -Add a dependency to your project configuration file (for instance, `pom.xml` in a Maven project). JDK 8: ```xml @@ -59,10 +55,10 @@ JDK 8: ``` :::note -In case of issues, consider using version 1.0.12 or other earlier versions as a potential solution. +If you encounter any issue, try using version 1.0.12 or earlier. ::: -JDK 11 and above: +JDK 11+: ```xml io.logz.log4j2 @@ -71,7 +67,7 @@ JDK 11 and above: ``` -The appender also requires a logger implementation, for example: +The appender also requires a logger implementation: ```xml org.apache.logging.log4j @@ -80,20 +76,18 @@ The appender also requires a logger implementation, for example: ``` -The logzio-log4j2-appender artifact can be found in the Maven central repo at https://search.maven.org/artifact/io.logz.log4j2/logzio-log4j2-appender. +Find the logzio-log4j2-appender artifact in the [Maven central repo](https://search.maven.org/artifact/io.logz.log4j2/logzio-log4j2-appender). -#### Configure the appender +### Appender configuration -Use the samples in the code block below as a starting point, and replace the sample with a configuration that matches your needs. +Replace the placeholders with your configuration. -For a complete list of options, see the configuration parameters below the code block.👇 XML example: ```xml - <> https://<>:8071 @@ -135,44 +129,45 @@ rootLogger.appenderRef.logzioAppender.ref = logzioAppender :::note -See the [Log4j documentation](https://logging.apache.org/log4j/2.x/manual/configuration.html) for more information on the Log4j 2 configuration file. +For more details, see the [Log4j documentation](https://logging.apache.org/log4j/2.x/manual/configuration.html). ::: -#### Parameters +### Appender parameters | Parameter | Default | Explained | Required/Optional | | ------------------ | ------------------------------------ | ----- | ----- | -| **logzioToken** | *None* | Your Logz.io log shipping token securely directs the data to your [Logz.io account](https://app.logz.io/#/dashboard/settings/manage-tokens/log-shipping). {@include: ../../_include/log-shipping/log-shipping-token.html} Begin with `$` to use an environment variable or system property with the specified name. For example, `$LOGZIO_TOKEN` uses the LOGZIO_TOKEN environment variable. | Required | -| **logzioType** | *java* | The [log type](https://support.logz.io/hc/en-us/articles/209486049-What-is-Type-) for that appender, it must not contain any spaces | Optional | +| **logzioToken** | *None* | Your Logz.io log shipping token. {@include: ../../_include/log-shipping/log-shipping-token.html} Begin with `$` to use an environment variable or system property with the specified name. For example, `$LOGZIO_TOKEN` uses the LOGZIO_TOKEN environment variable. | Required | +| **logzioType** | *java* | The [log type](https://support.logz.io/hc/en-us/articles/209486049-What-is-Type-). Can't contain spaces. | Optional | | **logzioUrl** | *https://listener.logz.io:8071* | Listener URL and port. {@include: ../../_include/log-shipping/listener-var.html} | Required | -| **drainTimeoutSec** | *5* | How often the appender should drain the queue (in seconds) | Required | -| **socketTimeoutMs** | *10 * 1000* | The socket timeout during log shipment | Required | -| **connectTimeoutMs** | *10 * 1000* | The connection timeout during log shipment | Required | -| **addHostname** | *false* | If true, then a field named 'hostname' will be added holding the host name of the machine. If from some reason there's no defined hostname, this field won't be added | Required | -| **additionalFields** | *None* | Allows to add additional fields to the JSON message sent. The format is "fieldName1=fieldValue1;fieldName2=fieldValue2". You can optionally inject an environment variable value using the following format: "fieldName1=fieldValue1;fieldName2=$ENV_VAR_NAME". In that case, the environment variable should be the only value. In case the environment variable can't be resolved, the field will be omitted. | Optional | -| **debug** | *false* | Print some debug messages to stdout to help to diagnose issues | Required | -| **compressRequests** | *false* | Boolean. `true` if logs are compressed in gzip format before sending. `false` if logs are sent uncompressed. | Required | -| **exceedMaxSizeAction** | *"cut"* | String. cut to truncate the message field or drop to drop log that exceed the allowed maximum size for logzio. If the log size exceeding the maximum size allowed after truncating the message field, the log will be dropped. | Required | - -#### Parameters for in-memory queue +| **drainTimeoutSec** | *5* | How often the appender drains the buffer, in seconds. | Required | +| **socketTimeoutMs** | *10 * 1000* | Socket timeout during log shipment. | Required | +| **connectTimeoutMs** | *10 * 1000* | Connection timeout during log shipment, in milliseconds. | Required | +| **addHostname** | *false* | If true, adds a field named `hostname` with the machine's hostname. If there's no defined hostname, the field won't be added. | Required | +| **additionalFields** | *None* | Allows to add additional fields to the JSON message sent. The format is "fieldName1=fieldValue1;fieldName2=fieldValue2". Optionally, inject an environment variable value using this format: "fieldName1=fieldValue1;fieldName2=$ENV_VAR_NAME". The environment variable should be the only value. If the environment variable can't be resolved, the field will be omitted. | Optional | +| **debug** | *false* | Boolean. Set to `true` to print debug messages to stdout. | Required | +| **compressRequests** | *false* | Boolean. If `true`, logs are compressed in gzip format before sending. If `false`, logs are sent uncompressed. | Required | +| **exceedMaxSizeAction** | *"cut"* | String. Use "cut" to truncate the message or "drop" to discard oversized logs. Logs exceeding the maximum size after truncation will be dropped. | Required | + +### In-memory queue parameters | Parameter | Default | Explained | | ------------------ | ------------------------------------ | ----- | -| **inMemoryQueueCapacityBytes** | *1024 * 1024 * 100* | The amount of memory(bytes) we are allowed to use for the memory queue. If the value is -1 the sender will not limit the queue size.| -| **inMemoryLogsCountCapacity** | *-1* | Number of logs we are allowed to have in the queue before dropping logs. If the value is -1 the sender will not limit the number of logs allowed.| -| **inMemoryQueue** | *false* | Set to true if the appender uses in memory queue. By default the appender uses disk queue| +| **inMemoryQueueCapacityBytes** | *1024 * 1024 * 100* | Memory (in bytes) allowed to use for the memory queue. -1 value means no limit.| +| **inMemoryLogsCountCapacity** | *-1* | Number of logs allowed in the queue before dropping logs. -1 value means no limit.| +| **inMemoryQueue** | *false* | Set to true to use in memory queue. Default is disk queue.| + +### Disk queue parameters -#### Parameters for disk queue | Parameter | Default | Explained | | ------------------ | ------------------------------------ | ----- | -| **fileSystemFullPercentThreshold** | *98* | The percent of used file system space at which the sender will stop queueing. When we will reach that percentage, the file system in which the queue is stored will drop all new logs until the percentage of used space drops below that threshold. Set to -1 to never stop processing new logs | -| **gcPersistedQueueFilesIntervalSeconds** | *30* | How often the disk queue should clean sent logs from disk | -| **bufferDir**(deprecated, use queueDir) | *System.getProperty("java.io.tmpdir")* | Where the appender should store the queue | -| **queueDir** | *System.getProperty("java.io.tmpdir")* | Where the appender should store the queue | +| **fileSystemFullPercentThreshold** | *98* | Percentage of file system usage at which the sender stops queueing. Once reached, new logs are dropped until usage falls below the threshold. Set to -1 to never stop processing logs. | +| **gcPersistedQueueFilesIntervalSeconds** | *30* | Interval (in seconds) for cleaning sent logs from disk. | +| **bufferDir**(deprecated, use queueDir) | *System.getProperty("java.io.tmpdir")* | Directory for storing the queue. | +| **queueDir** | *System.getProperty("java.io.tmpdir")* | Directory for storing the queue. | -#### Code Example +### Code Example ```java import org.apache.logging.log4j.LogManager; @@ -190,9 +185,9 @@ public class LogzioLog4j2Example { -#### Troubleshooting +### Troubleshooting -If you receive an error message regarding a missing appender, try adding the following configuration to the beginning and end of the configuration file: +If you receive an error about a missing appender, add the following to the configuration file: ```xml @@ -204,12 +199,10 @@ If you receive an error message regarding a missing appender, try adding the fol ``` -#### MDC +#### Using Mapped Diagnostic Context (MDC) -When you add mapped diagnostic context (MDC) to your logs, -each key-value pair you define is added log lines while the thread is alive. +Add MDC with the following code: -So this code sample... ```java import org.apache.logging.log4j.LogManager; @@ -225,7 +218,7 @@ public class LogzioLog4j2Example { } ``` -...produces this log output. +Which produces the following output: ```json { @@ -235,11 +228,10 @@ public class LogzioLog4j2Example { } ``` -#### Markers +#### Using Markers -Markers are values you can use to tag and enrich log statements. +Markers are used to tag and enrich log statements. Add this: -This code... ```java import org.apache.logging.log4j.LogManager; @@ -256,7 +248,7 @@ public class LogzioLog4j2Example { } ``` -...produces this log output. +To produce the following: ```json { @@ -275,26 +267,18 @@ public class LogzioLog4j2Example { Logback sends logs to your Logz.io account using non-blocking threading, bulks, and HTTPS encryption to port 8071. -This appender uses BigQueue implementation of persistent queue, so all logs are backed up to a local file system before being sent. -Once you send a log, it will be enqueued in the buffer and 100% non-blocking. -A background task handles the log shipment. -To help manage dependencies, this .jar shades BigQueue, Gson, and Guava. +This appender uses BigQueue for a persistent queue, backing up all logs to the local file system before sending. Logs are enqueued in the buffer and 100% non-blocking, with a background task handling shipment. The `.jar` includes BigQueue, Gson, and Guava for dependency management. -**Before you begin, you'll need**: -Logback 1.1.7 or higher, -Java 8 or higher +**Requirements**: +* Logback 1.1.7+ +* Java 8+ +### Add dependencies from Maven -#### Add the dependency to your project - -Add a dependency to your project configuration file - -#### Installation from Maven +Add the following dependencies to `pom.xml`: -In the `pom.xml` add the following dependencies: - -JDK 11 and above: +JDK 11+: ``` io.logz.logback @@ -304,7 +288,7 @@ JDK 11 and above: ``` -JDK 8 and above: +JDK 8+: ``` io.logz.logback @@ -313,7 +297,7 @@ JDK 8 and above: ``` -Logback appender also requires logback classic: +Logback classic: ``` ch.qos.logback @@ -322,19 +306,16 @@ Logback appender also requires logback classic: ``` -The logzio-log4j2-appender artifact can be found in the Maven central repo at https://search.maven.org/artifact/io.logz.log4j2/logzio-log4j2-appender. - +Find logzio-log4j2-appender artifact in the [Maven central repo](https://search.maven.org/artifact/io.logz.log4j2/logzio-log4j2-appender). -#### Configure the appender -Use the samples in the code block below as a starting point, and replace the sample with a configuration that matches your needs. +#### Appender configuration -For a complete list of options, see the configuration parameters below the code block.👇 +Replace placeholders with your configuration. :::note -See the [Logback documentation](https://logback.qos.ch/manual/configuration.html) for more information on the Logback configuration file. +For more details, see the [Logback documentation](https://logback.qos.ch/manual/configuration.html). ::: - ```xml @@ -357,7 +338,7 @@ See the [Logback documentation](https://logback.qos.ch/manual/configuration.html ``` -If you want to output `debug` messages, include the `debug` parameter into the code as follows: +To output `debug` messages, include the parameter into the code: ```xml @@ -384,17 +365,17 @@ If you want to output `debug` messages, include the `debug` parameter into the c ``` -#### Parameters +#### Appender parameters | Parameter | Description | Required/Default | |---|---|---| -| token | Your Logz.io log shipping token securely directs the data to your [Logz.io account](https://app.logz.io/#/dashboard/settings/manage-tokens/log-shipping). {@include: ../../_include/log-shipping/log-shipping-token.html} Begin with `$` to use an environment variable or system property with the specified name. For example, `$LOGZIO_TOKEN` uses the LOGZIO_TOKEN environment variable. | Required | -| logzioUrl | Listener URL and port. {@include: ../../_include/log-shipping/listener-var.html} | `https://listener.logz.io:8071` | -| logzioType | The [log type](https://docs.logz.io/docs/user-guide/data-hub/log-parsing/default-parsing/#built-in-log-types), shipped as `type` field. Used by Logz.io for consistent parsing. Can't contain spaces. | `java` | -| addHostname | Indicates whether to add `hostname` field to logs. This field holds the machine's host name. Set to `true` to include hostname. Set to `false` to leave it off. If a host name can't be found, this field is not added. | `false` | -| additionalFields | Adds fields to the JSON message output, formatted as `field1=value1;field2=value2`. Use `$` to inject an environment variable value, such as `field2=$VAR_NAME`. The environment variable should be the only value in the key-value pair. If the environment variable can't be resolved, the field is omitted. | N/A | +| token | Your Logz.io log shipping token. {@include: ../../_include/log-shipping/log-shipping-token.html} Begin with `$` to use an environment variable or system property with the specified name. For example, `$LOGZIO_TOKEN` uses the LOGZIO_TOKEN environment variable. | Required | +| logzioUrl | Listener URL and port. {@include: ../../_include/log-shipping/listener-var.html} | `https://listener.logz.io:8071` | +| logzioType | The [log type](https://docs.logz.io/docs/user-guide/data-hub/log-parsing/default-parsing/#built-in-log-types), shipped as `type` field. Can't contain spaces. | `java` | +| addHostname | If true, adds a field named `hostname` with the machine's hostname. If there's no defined hostname, the field won't be added. | `false` | +| additionalFields | Adds fields to the JSON message output, formatted as `field1=value1;field2=value2`. Use `$` to inject an environment variable value, such as `field2=$VAR_NAME`. The environment variable should be the only value in the key-value pair. If the environment variable can't be resolved, the field is omitted. | N/A | | bufferDir | Filepath where the appender stores the buffer. | `System.getProperty("java.io.tmpdir")` | -| compressRequests | Boolean. Set to `true` if you're sending gzip-compressed logs. Set to `false` if sending uncompressed logs. | `false` | +| compressRequests | Boolean. If `true`, logs are compressed in gzip format before sending. If `false`, logs are sent uncompressed. | `false` | | connectTimeout | Connection timeout during log shipment, in milliseconds. | `10 * 1000` | | debug | Boolean. Set to `true` to print debug messages to stdout. | `false` | | drainTimeoutSec | How often the appender drains the buffer, in seconds. | `5` | @@ -404,6 +385,7 @@ If you want to output `debug` messages, include the `debug` parameter into the c | socketTimeout | Socket timeout during log shipment, in milliseconds. | `10 * 1000` | + #### Code sample ```java @@ -422,17 +404,11 @@ public class LogzioLogbackExample { -#### More options - -You can optionally add mapped diagnostic context (MDC) -and markers to your logs. +#### Add MDC to your logs -#### MDC +Each key-value pair you define will be included in log lines while the thread is active. -You can add Mapped Diagnostic Context (MDC) to your logs. -Each key-value pair you define is added log lines while the thread is alive. - -So this code sample... +This code: ```java import org.slf4j.Logger; @@ -449,7 +425,7 @@ public class LogzioLogbackExample { } ``` -...produces this log output. +Produces this log output: ```json { @@ -459,11 +435,12 @@ public class LogzioLogbackExample { } ``` -#### Markers +#### Add Markers to your logs + +Markers are used to tag and enrich log statements. -Markers are values you can use to tag and enrich log statements. -This code... +This code: ```java import org.slf4j.Logger; @@ -481,7 +458,7 @@ public class LogzioLogbackExample { } ``` -...produces this log output. +Produces this log output: ```json { @@ -529,6 +506,7 @@ If the log appender does not ship logs, add `true :::note [Project's GitHub repo](https://github.com/logzio/micrometer-registry-logzio/) ::: + ### Usage @@ -558,24 +536,26 @@ implementation("io.logz.micrometer:micrometer-registry-logzio:1.0.2") -#### Import in your package +### Import to your code ```java import io.micrometer.logzio.LogzioConfig; import io.micrometer.logzio.LogzioMeterRegistry; ``` -#### Quick start +### Getting started + +Replace the placeholders in the code (indicated by `<< >>`) to match your specifics. + -Replace the placeholders in the code (indicated by the double angle brackets `<< >>`) to match your specifics. | Environment variable | Description |Required/Default| |---|---|---| -|`<>`| The full Logz.io Listener URL for for your region, configured to use port **8052** for http traffic, or port **8053** for https traffic (example: https://listener.logz.io:8053). For more details, see the [regions page](https://docs.logz.io/docs/user-guide/admin/hosting-regions/account-region/) in logz.io docs | Required| -|`<>`| The Logz.io Prometheus Metrics account token. Find it under **Settings > Manage accounts**. [Look up your Metrics account token.](https://docs.logz.io/docs/user-guide/admin/authentication-tokens/finding-your-metrics-account-token/) | Required| -|interval | The interval in seconds, to push metrics to Logz.io **Note that your program will need to run for at least one interval for the metrics to be sent** | Required| +|`<>`| Logz.io Listener URL for your region. Port **8052** for HTTP, or port **8053** for HTTPS. See the [regions page](https://docs.logz.io/docs/user-guide/admin/hosting-regions/account-region/) for more info. | Required| +|`<>`| Logz.io Prometheus Metrics account token. Find it under **Settings > Manage accounts**. [Look up your Metrics account token.](https://docs.logz.io/docs/user-guide/admin/authentication-tokens/finding-your-metrics-account-token/). | Required| +|interval | Interval in seconds to push metrics to Logz.io. **Your program must run for at least one interval**. | Required| -#### In your package +### Example: ```java package your_package; @@ -638,9 +618,9 @@ class MicrometerLogzio { } ``` -#### Common tags +### Configuring common tags -You can attach common tags to your registry that will be added to all metrics reported, for example: +Attach common tags to your registry to include them in all reported metrics. For example: ```java // Initialize registry @@ -649,13 +629,9 @@ LogzioMeterRegistry registry = new LogzioMeterRegistry(logzioConfig, Clock.SYSTE registry.config().commonTags("key", "value"); ``` -#### Filter labels +### Filtering labels - Include -You can the `includeLabels` or `excludeLabels` functions to filter your metrics by labels. - -#### Include - -Take for example this following usage, In your `LogzioConfig()` constructor: +Use `includeLabels` in your `LogzioConfig()` constructor: ```java @Override @@ -668,9 +644,9 @@ public Hashtable includeLabels() { ``` The registry will keep only metrics with the label `__name__` matching the regex `my_counter_abc_total|my_second_counter_abc_total`, and with the label `k1` matching the regex `v1`. -#### Exclude +#### Filtering labels - Exclude -In your `LogzioConfig()` constructor +Use `excludeLabels` in your `LogzioConfig()` constructor: ```java @Override @@ -685,9 +661,11 @@ public Hashtable excludeLabels() { The registry will drop all metrics with the label `__name__` matching the regex `my_counter_abc_total|my_second_counter_abc_total`, and with the label `k1` matching the regex `v1`. -#### Meter binders +### Using meter binders + +Micrometer provides a set of binders for monitoring JVM metrics out of the box: + -Micrometer provides a set of binders for monitoring JVM metrics out of the box, for example: ```java // Initialize registry @@ -714,21 +692,22 @@ new LogbackMetrics().bindTo(registry); new Log4j2Metrics().bindTo(registry); ``` -For more information about other binders check out [Micrometer-core](https://github.com/micrometer-metrics/micrometer/tree/main/micrometer-core/src/main/java/io/micrometer/core/instrument/binder) Github repo. - -#### Types of metrics +For more information about other binders check out the [Micrometer-core](https://github.com/micrometer-metrics/micrometer/tree/main/micrometer-core/src/main/java/io/micrometer/core/instrument/binder) Github repo. -Refer to the Micrometer [documentation](https://micrometer.io/docs/concepts) for more details. +### Metric types | Name | Behavior | | ---- | ---------- | -| Counter | Metric value can only go up or be reset to 0, calculated per `counter.increment(value); ` call. | -| Gauge | Metric value can arbitrarily increment or decrement, values can set automaticaly by tracking `Collection` size or set manually by `gauge.set(value)` | -| DistributionSummary | Metric values captured by the `summary.record(value)` function, the output is a distribution of `count`,`sum` and `max` for the recorded values during the push interval. | -| Timer | Mesures timing, metric values can be recorded by `timer.record()` call. | +| Counter | Metric value can only go up or be reset to 0, calculated per `counter.increment(value);` call. | +| Gauge | Metric value can arbitrarily increment or decrement, values can set automaticaly by tracking `Collection` size or manually by `gauge.set(value)`. | +| DistributionSummary | Captured metric values via `summary.record(value)`. Outputs a distribution of `count`,`sum` and `max` for the recorded values during the push interval. | +| Timer | Mesures timing. Metric values recorded by `timer.record()` call. | -##### [Counter](https://micrometer.io/docs/concepts#_counters) +For more details, see the Micrometer [documentation](https://micrometer.io/docs/concepts). + + +#### [Counter](https://micrometer.io/docs/concepts#_counters) ```java Counter counter = Counter @@ -742,7 +721,7 @@ counter.increment(2); // The following metric will be created and sent to Logz.io: counter_example_total{env="dev"} 3 ``` -##### [Gauge](https://micrometer.io/docs/concepts#_gauges) +#### [Gauge](https://micrometer.io/docs/concepts#_gauges) ```java // Create Gauge @@ -766,7 +745,7 @@ manual_gauge.set(83); // The following metric will be created and sent to Logz.io:: manual_gauge_example{env="dev"} 83 ``` -##### [DistributionSummary](https://micrometer.io/docs/concepts#_distribution_summaries) +#### [DistributionSummary](https://micrometer.io/docs/concepts#_distribution_summaries) ```java // Create DistributionSummary @@ -785,7 +764,7 @@ summary.record(30); // summary_example_sum{env="dev"} 60 ``` -##### [Timer](https://micrometer.io/docs/concepts#_timers) +#### [Timer](https://micrometer.io/docs/concepts#_timers) ```java // Create Timer @@ -810,21 +789,15 @@ timer.record(()-> { // timer_example_duration_seconds_sum{env="dev"} 3000 ``` - - ### Run your application -Run your application to start sending metrics to Logz.io. - - -### Check Logz.io for your metrics - -Give your metrics some time to get from your system to ours, and then open [Metrics dashboard](https://app.logz.io/#/dashboard/metrics/discover?). +Run your application to start sending metrics to Logz.io. Give it some time to run and check the Logz.io [Metrics dashboard](https://app.logz.io/#/dashboard/metrics/discover?). ## Traces -Deploy this integration to enable automatic instrumentation of your Java application using OpenTelemetry. + +Deploy this integration for automatic instrumentation of your Java application using OpenTelemetry. The Java agent captures spans and forwards them to the collector, which exports data to your Logz.io account. This integration includes: @@ -832,53 +805,58 @@ This integration includes: * Installing the OpenTelemetry collector with Logz.io exporter * Establishing communication between the agent and collector -On deployment, the Java agent automatically captures spans from your application and forwards them to the collector, which exports the data to your Logz.io account. -### Setup auto-instrumentation for your locally hosted Java application and send traces to Logz.io +**Requirements**: -**Before you begin, you'll need**: - -* A Java application without instrumentation -* An active account with Logz.io -* Port `4317` available on your host system +* A Java application without instrumentation. +* An active Logz.io account. +* Port `4317` available on your host system. * A name defined for your tracing service. You will need it to identify the traces in Logz.io. :::note This integration uses OpenTelemetry Collector Contrib, not the OpenTelemetry Collector Core. ::: - -### Download Java agent +### Setting up auto-instrumentation and sending Traces to Logz.io -Download the latest version of the [OpenTelemetry Java agent](https://github.com/open-telemetry/opentelemetry-java-instrumentation/releases/latest/download/opentelemetry-javaagent.jar) to the host of your Java application. -### Download and configure OpenTelemetry collector +**1. Download Java agent** -Create a dedicated directory on the host of your Java application and download the [OpenTelemetry collector](https://github.com/open-telemetry/opentelemetry-collector-contrib/releases/tag/v0.70.0) that is relevant to the operating system of your host. +Download the latest version of the [OpenTelemetry Java agent](https://github.com/open-telemetry/opentelemetry-java-instrumentation/releases/latest/download/opentelemetry-javaagent.jar) to your application host. -After downloading the collector, create a configuration file `config.yaml` with the following parameters: + +**2. Download and configure OpenTelemetry collector** + +Create a dedicated directory on the host of your Java application and download the relevant [OpenTelemetry collector](https://github.com/open-telemetry/opentelemetry-collector-contrib/releases/tag/v0.70.0). + +Next, create a configuration file, `config.yaml`, with the following parameters: {@include: ../../_include/tracing-shipping/collector-config.md} {@include: ../../_include/tracing-shipping/replace-tracing-token.html} -### Start the collector -Run the following command: +**3. Start the collector** + +Run: ```shell /otelcontribcol_ --config ./config.yaml ``` -* Replace `` with the path to the directory where you downloaded the collector. -* Replace `` with the version name of the collector applicable to your system, e.g. `otelcontribcol_darwin_amd64`. +* Replace `` with the collector's directory. +* Replace `` with the version name, e.g. `otelcontribcol_darwin_amd64`. + + + +**4. Attach the agent** + +Run the following command from your Java application's directory: -### Attach the agent to the runtime and run it -Run the following command from the directory of your Java application: ```shell java -javaagent:/opentelemetry-javaagent-all.jar \ @@ -889,13 +867,14 @@ java -javaagent:/opentelemetry-javaagent-all.jar \ -jar target/*.jar ``` -* Replace `` with the path to the directory where you downloaded the agent. -* Replace `` with the name of your tracing service defined earlier. +* Replace `` with the collector's directory. +* Replace `` with the tracing service name. + -### Controlling the number of spans +### Control the number of spans -To limit the number of outgoing spans, you can use the sampling option in the Java agent. +Use the sampling option in the Java agent to limit outgoing spans. The sampler configures whether spans will be recorded for any call to `SpanBuilder.startSpan`. @@ -913,6 +892,6 @@ Supported values for `otel.traces.sampler` are - "parentbased_always_off": ParentBased(root=AlwaysOffSampler) - "parentbased_traceidratio": ParentBased(root=TraceIdRatioBased). `otel.traces.sampler.arg` sets the ratio. -### Check Logz.io for your traces +### Viewing Traces in Logz.io -Give your traces some time to get from your system to ours, and then open [Tracing](https://app.logz.io/#/dashboard/jaeger). +Give your traces time to process, after which they'll be available in your [Tracing](https://app.logz.io/#/dashboard/jaeger) dashboard. From a8e513c01e19bcdce168d58af0b9f0dcca32ab24 Mon Sep 17 00:00:00 2001 From: Simplychee Date: Tue, 9 Jul 2024 14:03:51 +0300 Subject: [PATCH 02/14] updates --- docs/shipping/Code/java.md | 16 ++++++---------- 1 file changed, 6 insertions(+), 10 deletions(-) diff --git a/docs/shipping/Code/java.md b/docs/shipping/Code/java.md index ab4f8038..0629b2ca 100644 --- a/docs/shipping/Code/java.md +++ b/docs/shipping/Code/java.md @@ -230,7 +230,7 @@ Which produces the following output: #### Using Markers -Markers are used to tag and enrich log statements. Add this: +Markers are used to tag and enrich log statements. Add them by running this: ```java @@ -248,7 +248,7 @@ public class LogzioLog4j2Example { } ``` -To produce the following: +Which produces the following output: ```json { @@ -406,9 +406,7 @@ public class LogzioLogbackExample { #### Add MDC to your logs -Each key-value pair you define will be included in log lines while the thread is active. - -This code: +Each key-value pair you define will be included in log lines while the thread is active. Add it by running the following: ```java import org.slf4j.Logger; @@ -425,7 +423,7 @@ public class LogzioLogbackExample { } ``` -Produces this log output: +Which produces this output: ```json { @@ -437,10 +435,8 @@ Produces this log output: #### Add Markers to your logs -Markers are used to tag and enrich log statements. - +Markers are used to tag and enrich log statements. Add it by running: -This code: ```java import org.slf4j.Logger; @@ -458,7 +454,7 @@ public class LogzioLogbackExample { } ``` -Produces this log output: +Which produces this output: ```json { From 80ebe43505978191944283291ef10a117d3899c7 Mon Sep 17 00:00:00 2001 From: Simplychee Date: Tue, 9 Jul 2024 15:29:02 +0300 Subject: [PATCH 03/14] Override --- docs/shipping/Code/dotnet-traces-kafka.md | 2 +- docs/shipping/Code/dotnet.md | 2 +- .../shipping/Code/java-traces-with-kafka-using-opentelemetry.md | 2 +- docs/shipping/Code/nestjs.md | 2 +- docs/shipping/Code/node-js.md | 2 +- docs/shipping/Code/ruby.md | 2 +- docs/shipping/Other/fluent-bit.md | 2 +- docs/shipping/Security/trivy.md | 2 +- 8 files changed, 8 insertions(+), 8 deletions(-) diff --git a/docs/shipping/Code/dotnet-traces-kafka.md b/docs/shipping/Code/dotnet-traces-kafka.md index e5603120..2152f56b 100644 --- a/docs/shipping/Code/dotnet-traces-kafka.md +++ b/docs/shipping/Code/dotnet-traces-kafka.md @@ -203,7 +203,7 @@ You can use the following options to update the Helm chart parameters: * Edit the `values.yaml`. -* Overide default values with your own `my_values.yaml` and apply it in the `helm install` command. +* Override default values with your own `my_values.yaml` and apply it in the `helm install` command. If required, you can add the following optional parameters as environment variables: diff --git a/docs/shipping/Code/dotnet.md b/docs/shipping/Code/dotnet.md index c793cb70..12eefa57 100644 --- a/docs/shipping/Code/dotnet.md +++ b/docs/shipping/Code/dotnet.md @@ -1324,7 +1324,7 @@ You can use the following options to update the Helm chart parameters: * Edit the `values.yaml` -* Overide default values with your own `my_values.yaml` and apply it in the `helm install` command. +* Override default values with your own `my_values.yaml` and apply it in the `helm install` command. ##### Customization parameters diff --git a/docs/shipping/Code/java-traces-with-kafka-using-opentelemetry.md b/docs/shipping/Code/java-traces-with-kafka-using-opentelemetry.md index fd1248a9..7a18a1c2 100644 --- a/docs/shipping/Code/java-traces-with-kafka-using-opentelemetry.md +++ b/docs/shipping/Code/java-traces-with-kafka-using-opentelemetry.md @@ -225,7 +225,7 @@ You can use the following options to update the Helm chart parameters: * Edit the `values.yaml`. -* Overide default values with your own `my_values.yaml` and apply it in the `helm install` command. +* Override default values with your own `my_values.yaml` and apply it in the `helm install` command. If required, you can add the following optional parameters as environment variables: diff --git a/docs/shipping/Code/nestjs.md b/docs/shipping/Code/nestjs.md index 462fd60f..e3d0df4c 100644 --- a/docs/shipping/Code/nestjs.md +++ b/docs/shipping/Code/nestjs.md @@ -435,7 +435,7 @@ You can use the following options to update the Helm chart parameters: * Edit the `values.yaml`. -* Overide default values with your own `my_values.yaml` and apply it in the `helm install` command. +* Override default values with your own `my_values.yaml` and apply it in the `helm install` command. If required, you can add the following optional parameters as environment variables: diff --git a/docs/shipping/Code/node-js.md b/docs/shipping/Code/node-js.md index c34e7909..13ba0449 100644 --- a/docs/shipping/Code/node-js.md +++ b/docs/shipping/Code/node-js.md @@ -721,7 +721,7 @@ You can use the following options to update the Helm chart parameters: * Edit the `values.yaml`. -* Overide default values with your own `my_values.yaml` and apply it in the `helm install` command. +* Override default values with your own `my_values.yaml` and apply it in the `helm install` command. If required, you can add the following optional parameters as environment variables: diff --git a/docs/shipping/Code/ruby.md b/docs/shipping/Code/ruby.md index a79f926b..ccd8311c 100644 --- a/docs/shipping/Code/ruby.md +++ b/docs/shipping/Code/ruby.md @@ -271,7 +271,7 @@ You can use the following options to update the Helm chart parameters: * Edit the `values.yaml`. -* Overide default values with your own `my_values.yaml` and apply it in the `helm install` command. +* Override default values with your own `my_values.yaml` and apply it in the `helm install` command. If required, you can add the following optional parameters as environment variables: diff --git a/docs/shipping/Other/fluent-bit.md b/docs/shipping/Other/fluent-bit.md index e7aa07c5..964a1927 100644 --- a/docs/shipping/Other/fluent-bit.md +++ b/docs/shipping/Other/fluent-bit.md @@ -266,7 +266,7 @@ You can use the following options to update the Helm chart parameters: * Edit the `values.yaml` -* Overide default values with your own `my_values.yaml` and apply it in the `helm install` command. +* Override default values with your own `my_values.yaml` and apply it in the `helm install` command. #### Example diff --git a/docs/shipping/Security/trivy.md b/docs/shipping/Security/trivy.md index 431701f1..2721e0eb 100644 --- a/docs/shipping/Security/trivy.md +++ b/docs/shipping/Security/trivy.md @@ -91,7 +91,7 @@ You can use the following options to update the Helm chart parameters: * Edit the `values.yaml` -* Overide default values with your own `my_values.yaml` and apply it in the `helm install` command. +* Override default values with your own `my_values.yaml` and apply it in the `helm install` command. #### Custom parameters From 4cc3b875e75e6cd8e8a9dc911cdc60ea155cc19d Mon Sep 17 00:00:00 2001 From: Simplychee Date: Tue, 9 Jul 2024 16:24:02 +0300 Subject: [PATCH 04/14] for for --- .../general-shipping/replace-placeholders-prometheus.md | 2 +- .../remotewrite-syd-userguide-values-not-to-show-in-app.html | 2 +- docs/_include/p8s-shipping/remotewrite-syd-userguide.md | 4 ++-- docs/shipping/Code/go.md | 2 +- 4 files changed, 5 insertions(+), 5 deletions(-) diff --git a/docs/_include/general-shipping/replace-placeholders-prometheus.md b/docs/_include/general-shipping/replace-placeholders-prometheus.md index 90e21e43..3d54ab0f 100644 --- a/docs/_include/general-shipping/replace-placeholders-prometheus.md +++ b/docs/_include/general-shipping/replace-placeholders-prometheus.md @@ -2,7 +2,7 @@ Replace the placeholders in the code block (indicated by the double angle bracke | Environment variable | Description |Required/Default| |---|---|---| -|url| The Logz.io Listener URL for for your region, configured to use port **8050** (default), or port **8052** for http traffic, or port **8053** for https traffic. For more details, see the [Prometheus configuration file remote write reference. ](https://prometheus.io/docs/prometheus/latest/configuration/configuration/#remote_write) | Required| +|url| The Logz.io Listener URL for your region, configured to use port **8050** (default), or port **8052** for http traffic, or port **8053** for https traffic. For more details, see the [Prometheus configuration file remote write reference. ](https://prometheus.io/docs/prometheus/latest/configuration/configuration/#remote_write) | Required| |Bearer|The Logz.io Prometheus Metrics account token. | Required| diff --git a/docs/_include/p8s-shipping/remotewrite-syd-userguide-values-not-to-show-in-app.html b/docs/_include/p8s-shipping/remotewrite-syd-userguide-values-not-to-show-in-app.html index 908d9159..a6a7bf76 100644 --- a/docs/_include/p8s-shipping/remotewrite-syd-userguide-values-not-to-show-in-app.html +++ b/docs/_include/p8s-shipping/remotewrite-syd-userguide-values-not-to-show-in-app.html @@ -1,3 +1,3 @@ | remote_write | The remote write section configuration sets Logz.io as the endpoint for your Prometheus metrics data. Place this section at the same indentation level as the `global` section. || -|url| The Logz.io Listener URL for for your region, configured to use port **8052** for http traffic, or port **8053** for https traffic. For more details, see the [Prometheus configuration file remote write reference. ](https://prometheus.io/docs/prometheus/latest/configuration/configuration/#remote_write) | Required| +|url| The Logz.io Listener URL for your region, configured to use port **8052** for http traffic, or port **8053** for https traffic. For more details, see the [Prometheus configuration file remote write reference. ](https://prometheus.io/docs/prometheus/latest/configuration/configuration/#remote_write) | Required| |bearer_token|The Logz.io Prometheus Metrics account token. | Required| \ No newline at end of file diff --git a/docs/_include/p8s-shipping/remotewrite-syd-userguide.md b/docs/_include/p8s-shipping/remotewrite-syd-userguide.md index 10bda003..2a63e279 100644 --- a/docs/_include/p8s-shipping/remotewrite-syd-userguide.md +++ b/docs/_include/p8s-shipping/remotewrite-syd-userguide.md @@ -34,7 +34,7 @@ Add the following parameters to your Prometheus yaml file: | external_labels | Parameters to tag the metrics from this specific Prometheus server. | | | p8s_logzio_name |Use the value of the parameter `p8s_logzio_name` to identify from which Prometheus environment the metrics are arriving to Logz.io. Replace the `` placeholder with a label that will be added to all the metrics that are sent from this specific Prometheus server. | | | remote_write | The remote write section configuration sets Logz.io as the endpoint for your Prometheus metrics data. Place this section at the same indentation level as the `global` section. || -|url| The Logz.io Listener URL for for your region, configured to use port **8052** for http traffic, or port **8053** for https traffic. For more details, see the [Prometheus configuration file remote write reference. ](https://prometheus.io/docs/prometheus/latest/configuration/configuration/#remote_write) | Required| +|url| The Logz.io Listener URL for your region, configured to use port **8052** for http traffic, or port **8053** for https traffic. For more details, see the [Prometheus configuration file remote write reference. ](https://prometheus.io/docs/prometheus/latest/configuration/configuration/#remote_write) | Required| |bearer_token|The Logz.io Prometheus Metrics account token. | Required| @@ -64,7 +64,7 @@ If you want to use a `bearer_token_file` to configure your Prometheus account, c | external_labels | Parameters to tag the metrics from this specific Prometheus server. | | p8s_logzio_name |Use the value of the parameter `p8s_logzio_name` to identify from which Prometheus environment the metrics are arriving to Logz.io. Replace the `` placeholder with a label that will be added to all the metrics that are sent from this specific Prometheus server. | | remote_write | The remote write section configuration sets Logz.io as the endpoint for your Prometheus metrics data. Place this section at the same indentation level as the `global` section. | -|url| The Logz.io Listener URL for for your region, configured to use port **8052** for http traffic, or port **8053** for https traffic. For more details, see the [Prometheus configuration file remote write reference. ](https://prometheus.io/docs/prometheus/latest/configuration/configuration/#remote_write) | Required| +|url| The Logz.io Listener URL for your region, configured to use port **8052** for http traffic, or port **8053** for https traffic. For more details, see the [Prometheus configuration file remote write reference. ](https://prometheus.io/docs/prometheus/latest/configuration/configuration/#remote_write) | Required| |bearer_token_file|The file path that holds Logz.io Prometheus Metrics account token. | Required| ```yaml diff --git a/docs/shipping/Code/go.md b/docs/shipping/Code/go.md index 12d1408b..917814a8 100644 --- a/docs/shipping/Code/go.md +++ b/docs/shipping/Code/go.md @@ -145,7 +145,7 @@ Replace the placeholders in the code to match your specifics. | Parameter | Description | Required | Default| |---|---|---|---| -|`<>`| The full Logz.io Listener URL for for your region, configured to use port **8052** for http traffic, or port **8053** for https traffic (example: https://listener.logz.io:8053). For more details, see the [regions page](https://docs.logz.io/docs/user-guide/admin/hosting-regions/account-region/) in logz.io docs | Required | https://listener.logz.io:8053 | +|`<>`| The full Logz.io Listener URL for your region, configured to use port **8052** for http traffic, or port **8053** for https traffic (example: https://listener.logz.io:8053). For more details, see the [regions page](https://docs.logz.io/docs/user-guide/admin/hosting-regions/account-region/) in logz.io docs | Required | https://listener.logz.io:8053 | |`<>`| The Logz.io Prometheus Metrics account token. Find it under **Settings > Manage accounts**. [Look up your Metrics account token.](https://docs.logz.io/docs/user-guide/admin/authentication-tokens/finding-your-metrics-account-token/) | Required | - | | RemoteTimeout | The timeout for requests to the remote write Logz.io metrics listener endpoint. | Required | 30 (seconds) | | PushInterval | The time interval for sending the metrics to Logz.io. | Required | 10 (seconds) | From 3dba48e74dc3175e8d04fe40253ace32b74de59a Mon Sep 17 00:00:00 2001 From: Simplychee Date: Tue, 9 Jul 2024 16:33:17 +0300 Subject: [PATCH 05/14] an --- docs/shipping/Code/node-js.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/shipping/Code/node-js.md b/docs/shipping/Code/node-js.md index 13ba0449..e30c65a8 100644 --- a/docs/shipping/Code/node-js.md +++ b/docs/shipping/Code/node-js.md @@ -476,7 +476,7 @@ requestCounter.add(1,labels); ```javascript // Create UpDownCounter metric const upDownCounter = meter.createUpDownCounter('UpDownCounter', { - description: 'Example of a UpDownCounter', + description: 'Example of an UpDownCounter', }); // Define some labels for your metrics const labels = { environment: 'prod' }; From 2e8fa6f8040739458562c7e320f33cd38dfe7e66 Mon Sep 17 00:00:00 2001 From: Simplychee Date: Tue, 9 Jul 2024 16:33:30 +0300 Subject: [PATCH 06/14] python --- docs/shipping/Code/python.md | 402 +++++++++++++++++------------------ 1 file changed, 201 insertions(+), 201 deletions(-) diff --git a/docs/shipping/Code/python.md b/docs/shipping/Code/python.md index 23b854b9..a06412ca 100644 --- a/docs/shipping/Code/python.md +++ b/docs/shipping/Code/python.md @@ -21,44 +21,48 @@ drop_filter: [] [Project's GitHub repo](https://github.com/logzio/logzio-python-handler/) ::: -Logz.io Python Handler sends logs in bulk over HTTPS to Logz.io. -Logs are grouped into bulks based on their size. +The Logz.io Python Handler sends logs in bulk over HTTPS to Logz.io, grouping them based on size. If the main thread quits, the handler attempts to send any remaining logs before exiting. If unsuccessful, the logs are saved to the local file system for later retrieval. -If the main thread quits,the handler tries to consume the remaining logs and then exits. -If the handler can't send the remaining logs, they're written to the local file system for later retrieval. -## Set up Logz.io Python Handler +## Setup Logz.io Python Handler *Supported versions*: Python 3.5 or newer. -### Add the dependency to your project +### Install dependency -Navigate to your project's folder in the command line, and run this command to install the dependency. +Navigate to your project's folder and run: ```shell pip install logzio-python-handler ``` -If you'd like to use Trace context, you need to install the OpenTelemetry logging instrumentation dependency by running the following command: +For Trace context, install the OpenTelemetry logging instrumentation dependency by running: ```shell pip install logzio-python-handler[opentelemetry-logging] ``` -### Configure Logz.io Python Handler for a standard Python project +### Configure Python Handler for a standard project -Use the samples in the code block below as a starting point, and replace the sample with a configuration that matches your needs. +Replace placeholders with your details. You must configure these parameters **by this exact order**. i.e. you cannot set Debug to true, without configuring all of the previous parameters as well. -Replace: -* `<< LOG-SHIPPING-TOKEN >>` - Your Logz.io account log shipping token. -* `<< LISTENER-HOST >>` - Logz.io listener host, as described [here](https://docs.logz.io/docs/user-guide/admin/hosting-regions/account-region/#regions-and-urls). -* `<< LOG-TYPE >>` - Log type, for searching in logz.io (defaults to "python") -For a complete list of options, see the configuration parameters below the code block.👇 -##### Config File +|Parameter|Description| Required/Default | +|---|---|----| +| `<< LOG-SHIPPING-TOKEN >>` | Your Logz.io account log shipping token. | Required | +| `<< LOG-TYPE >>` | Log type, for searching in logz.io. | `python` | +| `<>` | Time to sleep between draining attempts | `3` | +| `<< LISTENER-HOST >>` | Logz.io listener host, as described [here](https://docs.logz.io/docs/user-guide/admin/hosting-regions/account-region/#regions-and-urls). | `https://listener.logz.io:8071` | +| `<>` | Debug flag. If set to True, will print debug messages to stdout. | `false` | +| `<>` | If set to False, disables the local backup of logs in case of failure.| `true` | +| `<>` | Network timeout, in seconds, int or float, for sending the logs to logz.io. | `10`| +| `<>` | Retries number | `4` | +| `<>` | Retry timeout (retry_timeout) in seconds | `2`| + + ```python [handlers] @@ -68,7 +72,6 @@ keys=LogzioHandler class=logzio.handler.LogzioHandler formatter=logzioFormat -# Parameters must be set in order. Replace these parameters with your configuration. args=('<>', '<>', <>, 'https://<>:8071', <>,<>,<>,<>) [formatters] @@ -84,21 +87,9 @@ level=INFO [formatter_logzioFormat] format={"additional_field": "value"} ``` -*args=() arguments, by order* - - Your logz.io token - - Log type, for searching in logz.io (defaults to "python") - - Time to sleep between draining attempts (defaults to "3") - - Logz.io Listener address (defaults to `https://listener.logz.io:8071`) - - Debug flag. Set to True, will print debug messages to stdout. (defaults to "False") - - Backup logs flag. Set to False, will disable the local backup of logs in case of failure. (defaults to "True") - - Network timeout, in seconds, int or float, for sending the logs to logz.io. (defaults to 10) - - Retries number (retry_no, defaults to 4). - - Retry timeout (retry_timeout) in seconds (defaults to 2). - - Please note, that you have to configure those parameters by this exact order. - i.e. you cannot set Debug to true, without configuring all of the previous parameters as well. - -##### Dict Config + + +### Dictionary configuration: ```python LOGGING = { @@ -132,7 +123,7 @@ LOGGING = { } } ``` -##### Django configuration +### Django configuration ```python LOGGING = { @@ -181,9 +172,13 @@ LOGGING = { ### Serverless platforms -If you're using a serverless function, you'll need to: -1. Import and add the LogzioFlusher annotation before your sender function. To do this, in the Code Example below, uncomment the `import` statement and the `@LogzioFlusher(logger)` annotation line. -2. Make sure that the Logz.io handler is added to the root logger in your Configuration: +When using a serverless function, import and add LogzioFlusher annotation before your sender function. In the code example below umcomment `import` and the `@LogzioFlusher(logger)` annotation line. Next, ensure the Logz.io handler is added to the root logger. + +Be sure to replace `superAwesomeLogzioLoggers` with the name of your logger. + + + + ```python 'loggers': { 'superAwesomeLogzioLogger': { @@ -193,24 +188,19 @@ If you're using a serverless function, you'll need to: } } ``` -**Note:** replace `superAwesomeLogzioLoggers` with the name you used for your logger in the code (see Code Example below). -### Code Example +For example: ```python import logging import logging.config -# If you're using a serverless function, uncomment. # from logzio.flusher import LogzioFlusher - -# If you'd like to leverage the dynamic extra fields feature, uncomment. # from logzio.handler import ExtraFieldsLogFilter # Say I have saved my configuration as a dictionary in a variable named 'LOGGING' - see 'Dict Config' sample section logging.config.dictConfig(LOGGING) logger = logging.getLogger('superAwesomeLogzioLogger') -# If you're using a serverless function, uncomment. # @LogzioFlusher(logger) def my_func(): logger.info('Test log') @@ -222,33 +212,32 @@ def my_func(): logger.exception("Supporting exceptions too!") ``` -### Dynamic Extra Fields -If you prefer, you can add extra fields to your logs dynamically, and not pre-defining them in the configuration. -This way, you can allow different logs to have different extra fields. -Example in the code below. +### Dynamic extra fields + +You can dynamically add extra fields to your logs without predefining them in the configuration. This allows each log to have unique extra fields. + ``` python -# Example additional code that demonstrates how to dynamically add/remove fields within the code, make sure class is imported. -logger.info("Test log") # Outputs: {"message":"Test log"} +logger.info("Test log") extra_fields = {"foo":"bar","counter":1} logger.addFilter(ExtraFieldsLogFilter(extra_fields)) -logger.warning("Warning test log") # Outputs: {"message":"Warning test log","foo":"bar","counter":1} +logger.warning("Warning test log") error_fields = {"err_msg":"Failed to run due to exception.","status_code":500} logger.addFilter(ExtraFieldsLogFilter(error_fields)) -logger.error("Error test log") # Outputs: {"message":"Error test log","foo":"bar","counter":1,"err_msg":"Failed to run due to exception.","status_code":500} +logger.error("Error test log") # If you'd like to remove filters from future logs using the logger.removeFilter option: logger.removeFilter(ExtraFieldsLogFilter(error_fields)) -logger.debug("Debug test log") # Outputs: {"message":"Debug test log","foo":"bar","counter":1} +logger.debug("Debug test log") ``` ### Extra Fields -In case you need to dynamic metadata to a specific log and not dynamically to the logger, other than the constant metadata from the formatter, you can use the "extra" parameter. -All key values in the dictionary passed in "extra" will be presented in Logz.io as new fields in the log you are sending. -Please note, that you cannot override default fields by the python logger (i.e. lineno, thread, etc..) + +To add dynamic metadata to a specific log rather than to the logger, use the "extra" parameter. All key-value pairs in the dictionary passed to "extra" will appear as new fields in Logz.io. Note that you cannot override default fields set by the Python logger (e.g., lineno, thread). + For example: ```python @@ -257,15 +246,18 @@ logger.info('Warning', extra={'extra_key':'extra_value'}) ### Trace context -If you're sending traces with OpenTelemetry instrumentation (auto or manual), you can correlate your logs with the trace context. -That way, your logs will have traces data in it, such as service name, span id and trace id. +You can correlate your logs with the trace context by installing the OpenTelemetry logging instrumentation dependency: + + -Make sure to install the OpenTelemetry logging instrumentation dependecy by running the following command: ```shell pip install logzio-python-handler[opentelemetry-logging] ``` -To enable this feature, set the `add_context` param in your handler configuration to `True`, like in this example: + +Enable this feature by setting `add_context` parameter to `True` in your handler configuration: + + ```python LOGGING = { @@ -303,7 +295,7 @@ LOGGING = { ### Truncating logs -If you want to create a Python logging filter to truncate log messages to a set number of characters before they are processed, add the following code: +To create a Python logging filter that truncates log messages to a specific number of characters before processing, use the following code: ```python class TruncationLoggerFilter(logging.Filter): @@ -319,12 +311,12 @@ logger = logging.getLogger("logzio") logger.addFilter(TruncationLoggerFilter()) ``` -Th edefault limit is 32700, but you can adjust this value as required. +The default limit is 32,700, but you can adjust this value as required. ## Metrics -You can send custom metrics to Logz.io from your Python application. This example uses the [OpenTelemetry Python SDK](https://github.com/open-telemetry/opentelemetry-python-contrib) and the [OpenTelemetry remote write exporter](https://pypi.org/project/opentelemetry-exporter-prometheus-remote-write/), which are both in alpha/preview. +Send custom metrics to Logz.io from your Python application. This example uses [OpenTelemetry Python SDK](https://github.com/open-telemetry/opentelemetry-python-contrib) and the [OpenTelemetry remote write exporter](https://pypi.org/project/opentelemetry-exporter-prometheus-remote-write/). import Tabs from '@theme/Tabs'; import TabItem from '@theme/TabItem'; @@ -332,10 +324,10 @@ import TabItem from '@theme/TabItem'; -### Setup in code +### Code configuration setup -#### Install the snappy c-library +**1. Install the snappy c-library** DEB: `sudo apt-get install libsnappy-dev` @@ -345,19 +337,20 @@ OSX/Brew: `brew install snappy` Windows: `pip install python_snappy-0.5-cp36-cp36m-win_amd64.whl` -#### Install the exporter and opentelemtry sdk +**2. Install the exporter and opentelemtry sdk** + ``` pip install opentelemetry-exporter-prometheus-remote-write ``` -#### Add instruments to your application +**3. Add instruments to your application** -Replace the placeholders in the `exporter` section code (indicated by the double angle brackets `<< >>`) to match your specifics. +Replace the placeholders in the `exporter` section to match your specifics. |Parameter|Description| |---|---| -|LISTENER-HOST| The Logz.io Listener URL for for your region, configured to use port **8052** for http traffic, or port **8053** for https traffic. {@include: ../../_include//log-shipping/listener-var.html} and add http/https protocol (https://listener.logz.io:8053) | +|LISTENER-HOST| The Logz.io Listener URL for your region, configured to use port **8052** for http traffic, or port **8053** for https traffic. {@include: ../../_include//log-shipping/listener-var.html} and add http/https protocol (https://listener.logz.io:8053). | |PROMETHEUS-METRICS-SHIPPING-TOKEN| Your Logz.io Prometheus Metrics account token. {@include: ../../_include//p8s-shipping/replace-prometheus-token.html} | @@ -440,7 +433,7 @@ sleep(6) #### Types of metric instruments -Refer to the OpenTelemetry [documentation](https://github.com/open-telemetry/opentelemetry-specification/blob/main/specification/metrics/api.md) for more details. +See OpenTelemetry [documentation](https://github.com/open-telemetry/opentelemetry-specification/blob/main/specification/metrics/api.md) for more details. | Name | Behavior | Default aggregation | @@ -473,7 +466,7 @@ counter.add(25, labels) ##### [UpDownCounter](https://github.com/open-telemetry/opentelemetry-specification/blob/main/specification/metrics/api.md#updowncounter) ```python -# create a updowncounter instrument +# create an updowncounter instrument requests_active = meter.create_updowncounter( name="requests_active", description="number of active requests", @@ -539,7 +532,7 @@ def get_ram_usage_callback(observer): "dimension": "value" } observer.observe(ram_percent, labels) -# create a updownsumobserver instrument +# create an updownsumobserver instrument meter.register_updownsumobserver( callback=get_ram_usage_callback, name="ram_usage", @@ -567,33 +560,44 @@ meter.register_valueobserver( ) ``` -#### Check Logz.io for your metrics +**5. Check Logz.io for your metrics** + +Allow some time for your data to transfer. Then log in to your Logz.io Metrics account and open the [Metrics](https://app.logz.io/#/dashboard/metrics/) dashboard. + + + + + + -Give your data some time to get from your system to ours, then log in to your Logz.io Metrics account, and open [the Logz.io Metrics tab](https://app.logz.io/#/dashboard/metrics/). ### Setup Metrics using Lambda -This integration uses OpenTelemetry collector extention and Python metrics SDK to create and send metrics from your Lambda functions to your Logz.io account. +This integration uses the OpenTelemetry collector extension and Python metrics SDK to create and send metrics from your Lambda functions to your Logz.io account. + + :::note -This integration is currently only supported in the following AWS regions: **us-east-1**, **us-east-2**,**us-west-1**, **us-west-2**, **ca-central-1**, **ap-northeast-2**, **ap-northeast-1**,**eu-central-1**, **eu-west-2**. Contact Logz.io Customer Support if you need to deploy in a different region. +This integration is currently supported in the following AWS regions: **us-east-1**, **us-east-2**,**us-west-1**, **us-west-2**, **ca-central-1**, **ap-northeast-2**, **ap-northeast-1**,**eu-central-1**, **eu-west-2**. Contact Logz.io [Customer Support](mailto:help@logz.io) for other regions. ::: #### Create Lambda function Create a new Lambda function in your AWS account (with Python version >= 3.8). -After creating your new Lambda function, you can use our example [deployment package](https://logzio-aws-integrations-us-east-1.s3.amazonaws.com/aws-otel-lambda-python/logzio-python-lambda-custom-metrics-deployment.zip) that includes the code sample. Upload the .zip file to the **code source** section inside your newly created Lambda function. +You can use our example [deployment package](https://logzio-aws-integrations-us-east-1.s3.amazonaws.com/aws-otel-lambda-python/logzio-python-lambda-custom-metrics-deployment.zip) by uploading the .zip file to the **code source** section inside your newly created Lambda function. ![Upload deployment package](https://dytvr9ot2sszz.cloudfront.net/logz-docs/log-shipping/uploadzip.gif) #### Add OpenTelemetry collector config variable -Add `OPENTELEMETRY_COLLECTOR_CONFIG_FILE` environment variable with a value of `/var/task/collector.yaml`. This will tell the collector extention the path to the configuration file. +Add the `OPENTELEMETRY_COLLECTOR_CONFIG_FILE` environment variable with a value of `/var/task/collector.yaml`. This indicates the path to the configuration file. + + #### Add OpenTelemetry config file @@ -624,11 +628,11 @@ service: exporters: [logging,prometheusremotewrite] ``` -Replace the placeholders (indicated by the double angle brackets `<< >>`) to match your specifics as per the table below. +Replace the placeholders to match your data: |Environment variable|Description| |---|---| -|`<>`| The Logz.io [Listener URL](https://docs.logz.io/docs/user-guide/admin/hosting-regions/account-region/) for for your region, configured to use port **8052** for http traffic, or port **8053** for https traffic. | +|`<>`| The Logz.io [Listener URL](https://docs.logz.io/docs/user-guide/admin/hosting-regions/account-region/) for your region, configured to use port **8052** for http traffic, or port **8053** for https traffic. | |`<>`| The Logz.io listener port. **8052** for HTTP traffic, or **8053** for HTTPS traffic. | |`<>`| {@include: ../../_include/p8s-shipping/replace-prometheus-token.html} | @@ -685,7 +689,7 @@ def lambda_handler(event, context): ``` -#### Add Logz.io Otel Python layer +#### Add Logz.io OTEL Python layer Add the `logzio-otel-python-layer` lambda layer to your function: @@ -697,18 +701,20 @@ Replace `<>` with your AWS resgion. #### Run the Lambda function -Start running the Lambda function to send metrics to your Logz.io account. +Run the Lambda function to send metrics to your Logz.io account. + +#### Viewing metrics in Logz.io -#### Check Logz.io for your metrics +Give your metrics time to process, after which they'll be available in your [Metrics](https://app.logz.io/#/dashboard/metrics/) dashboard. -Give your data some time to get from your system to ours, then log in to your Logz.io Metrics account, and open [the Logz.io Metrics tab](https://app.logz.io/#/dashboard/metrics/). #### Types of metric instruments -For more information, see the OpenTelemetry [documentation](https://github.com/open-telemetry/opentelemetry-specification/blob/main/specification/metrics/api.md). +Refer to the OpenTelemetry [documentation](https://github.com/open-telemetry/opentelemetry-specification/blob/main/specification/metrics/api.md) for more details. + | Name | Behavior | | ---- | ---------- | @@ -716,7 +722,6 @@ For more information, see the OpenTelemetry [documentation](https://github.com/o | UpDownCounter | Metric value can arbitrarily increment or decrement, calculated per `updowncounter.Add(context,value,labels)` request. | | Histogram | Metric values captured by the `histogram.Record(context,value,labels)` function, calculated per request. | -#### More examples ##### [Counter](https://github.com/open-telemetry/opentelemetry-specification/blob/main/specification/metrics/api.md#counter) @@ -751,17 +756,17 @@ For more information, see the OpenTelemetry [documentation](https://github.com/o -### Setup Metrics using `prometheus_client` Library +### Setup Metrics using prometheus_client Library -#### Install the prometheus_client library +**1. Install Prometheus_client Library:** ```python pip3 install Prometheus-client ``` -#### Add the prometheus_client library to your application +**2. Add the prometheus_client library to your application** -In your Python script, use the prometheus_client library and expose the built-in metrics to the Prometheus HTTP server. See the code below for an example: +In your Python script, use the prometheus_client library and expose the built-in metrics to the Prometheus HTTP server: ```python from prometheus_client import start_http_server @@ -780,11 +785,10 @@ if __name__== '__main__': main() ``` -#### Add system metrics (if required) +**3. Add system metrics (if required)** -If you are using Linux, the system metrics such as CPU and memory usage are exposed by default. -If you are using an OS other than Linux: +For non-Linux OS, install the psutil library: 1. Instal the `psutil` library: @@ -830,23 +834,22 @@ If you are using an OS other than Linux: ``` -#### Check the metrics locally +**3. Check metrics locally** -Go to the HTTP server at `localhost:8000` to see the metrics. +Go to `localhost:8000` to see the metrics. -#### Download OpenTelemetry collector +**4. Download OpenTelemetry collector** :::note If you already have OpenTelemetry, proceed to the next step. ::: -Create a dedicated directory on your host and download the OpenTelemetry collector that is relevant to the operating system of your host. +Create a dedicated directory on your host and download the OpenTelemetry collector for your OS. -After downloading the collector, create a configuration file `config.yaml`. +Create a configuration file `config.yaml` with the following: -#### Configure the Receivers +#### Receivers configuration -Open the configuration file and ensure it contains the receivers required to collect your metrics: ```yaml receivers: @@ -859,9 +862,7 @@ receivers: - targets: ['localhost:8000'] ``` -#### Configure the Exporters - -In the same configuration file, add the following to the exporters section: +#### Exporters configuration ```yaml exporters: @@ -878,7 +879,7 @@ exporters: {@include: ../../_include/p8s-shipping/replace-prometheus-token.html} -#### Configure teh Processors and Service +#### Processors and Service configuration ```yaml processors: @@ -896,7 +897,7 @@ service: exporters: [prometheusremotewrite, logging] ``` -#### Start the Collector +**5. Start the Collector** Run the following command: @@ -904,11 +905,15 @@ Run the following command: /otelcol-contrib --config ./config.yaml ``` -* Replace `` with the path to the directory where you downloaded the collector. If the name of your configuration file is different to config, adjust the name in the command accordingly. +* Replace `` with the directory path where you downloaded the collector. Adjust the configuration file name if it is different. + + + +#### Viewing metrics in Logz.io + +Give your metrics time to process, after which they'll be available in your [Metrics](https://app.logz.io/#/dashboard/metrics/) dashboard. -#### Check Logz.io for your metrics -Give your data some time to get from your system to ours, then log in to your Logz.io Metrics account, and open [the Logz.io Metrics tab](https://app.logz.io/#/dashboard/metrics/). @@ -918,7 +923,7 @@ Give your data some time to get from your system to ours, then log in to your Lo Deploy this integration to enable automatic instrumentation of your Python application using OpenTelemetry. -### Architecture overview +## Architecture overview This integration includes: @@ -930,12 +935,12 @@ On deployment, the Python instrumentation automatically captures spans from your ### Local host Python application auto instrumentation -**Before you begin, you'll need**: +**Requirements**: * A Python application without instrumentation -* An active account with Logz.io +* An active Logz.io account * Port `4317` available on your host system -* A name defined for your tracing service. You will need it to identify the traces in Logz.io. +* A name defined for your tracing service :::note @@ -943,10 +948,8 @@ This integration uses OpenTelemetry Collector Contrib, not the OpenTelemetry Col ::: +### Install OpenTelemetry components for Python -#### Install general Python OpenTelemetry instrumentation components - -Run the following commands: ```shell pip3 install opentelemetry-distro @@ -955,23 +958,18 @@ opentelemetry-bootstrap --action=install pip3 install opentelemetry-exporter-otlp ``` -#### Set environment variables +### Set environment variables -After installation, configure the exporter by running the following command: +After installation, configure the exporter with this command: ```shell export OTEL_TRACES_EXPORTER=otlp export OTEL_RESOURCE_ATTRIBUTES="service.name=<>" ``` -Replace `<>` with the name of your tracing service defined earlier. - -#### Download and configure OpenTelemetry collector - -Create a dedicated directory on the host of your Python application and download the [OpenTelemetry collector](https://github.com/open-telemetry/opentelemetry-collector-contrib/releases/tag/v0.82.0) that is relevant to the operating system of your host. +### Download and configure OpenTelemetry collector - -After downloading the collector, create a configuration file `config.yaml` with the parameters below. +Create a directory on your Python application and download the relevant [OpenTelemetry collector](https://github.com/open-telemetry/opentelemetry-collector-contrib/releases/tag/v0.82.0). Create a `config.yaml` with the following parameters: * {@include: ../../_include/tracing-shipping/replace-tracing-token.md} @@ -980,47 +978,47 @@ After downloading the collector, create a configuration file `config.yaml` with {@include: ../../_include/tracing-shipping/tail-sampling.md} -#### Start the collector +### Start the collector -Run the following command: +Run: ```shell /otelcontribcol_ --config ./config.yaml ``` -* Replace `` with the path to the directory where you downloaded the collector. -* Replace `` with the version name of the collector applicable to your system, e.g. `otelcontribcol_darwin_amd64`. +* Replace `` with the collector's directory. +* Replace `` with the version name, e.g. `otelcontribcol_darwin_amd64`. -#### Run the OpenTelemetry instrumentation in conjunction with your Python application +### Run OpenTelemetry with your Python application -Run the following command from the directory of your Python application script: +Run this code from the directory of your Python application script: ```shell opentelemetry-instrument python3 .py ``` -Replace `` with the name of your Python application script. +Replace `` with your Python application script name. -#### Check Logz.io for your traces +### Viewing Traces in Logz.io + +Give your traces time to process, after which they'll be available in your [Tracing](https://app.logz.io/#/dashboard/jaeger) dashboard. -Give your traces some time to get from your system to ours, and then open [Tracing](https://app.logz.io/#/dashboard/jaeger). ### Docker Python application auto instrumentation -This integration enables you to auto-instrument your Python application and run a containerized OpenTelemetry collector to send your traces to Logz.io. If your application also runs in a Docker container, make sure that both the application and collector containers are on the same network. +Auto-instrument your Python application and run a containerized OpenTelemetry collector to send traces to Logz.io. Ensure both application and collector containers share the same network. -**Before you begin, you'll need**: +**Requirements**: * A Python application without instrumentation -* An active account with Logz.io +* An active Logz.io account * Port `4317` available on your host system -* A name defined for your tracing service. You will need it to identify the traces in Logz.io. +* A name defined for your tracing service -#### Install general Python OpenTelemetry instrumentation components +#### Install OpenTelemetry instrumentation components -Run the following commands: ```shell pip3 install opentelemetry-distro @@ -1031,17 +1029,18 @@ pip3 install opentelemetry-exporter-otlp #### Set environment variables -After installation, configure the exporter by running the following command: +Configure the exporter by running: ```shell export OTEL_TRACES_EXPORTER=otlp export OTEL_RESOURCE_ATTRIBUTES="service.name=<>" ``` -Replace `<>` with the name of your tracing service defined earlier. +Replace `<>` with your tracing service name. + +#### Pull OpenTelemetry collector docker image -#### Pull the Docker image for the OpenTelemetry collector ```shell docker pull otel/opentelemetry-collector-contrib:0.78.0 @@ -1049,7 +1048,7 @@ docker pull otel/opentelemetry-collector-contrib:0.78.0 #### Create a configuration file -Create a file `config.yaml` with the following content: +Create a `config.yaml` file with the following content: ```yaml receivers: @@ -1112,8 +1111,10 @@ service: {@include: ../../_include/tracing-shipping/tail-sampling.md} +If you already have an OpenTelemetry installation, add these parameters to your existing collector's configuration file: + + -If you already have an OpenTelemetry installation, add the following parameters to the configuration file of your existing OpenTelemetry collector: * Under the `exporters` list @@ -1137,7 +1138,7 @@ If you already have an OpenTelemetry installation, add the following parameters {@include: ../../_include/tracing-shipping/replace-tracing-token.html} -An example configuration file looks as follows: +An example configuration file: ```yaml receivers: @@ -1198,9 +1199,9 @@ service: #### Run the container -Mount the `config.yaml` as volume to the `docker run` command and run it as follows. +Mount `config.yaml` as volume to the `docker run` command and run it as follows. -###### Linux +##### Linux ``` docker run \ @@ -1212,7 +1213,7 @@ otel/opentelemetry-collector-contrib:0.78.0 Replace `` to the path to the `config.yaml` file on your system. -###### Windows +##### Windows ``` docker run \ @@ -1237,38 +1238,41 @@ otel/opentelemetry-collector-contrib:0.78.0 {@include: ../../_include/tracing-shipping/collector-run-note.md} -Run the following command from the directory of your Python application script: +Run this code from your Python application script directory: ```shell opentelemetry-instrument python3 `<>`.py ``` -Replace `<>` with the name of your Python application script. +Replace `<>` with your Python application script name. + +#### Viewing Traces in Logz.io + +Give your traces time to process, after which they'll be available in your [Tracing](https://app.logz.io/#/dashboard/jaeger) dashboard. -#### Check Logz.io for your traces -Give your traces some time to get from your system to ours, and then open [Tracing](https://app.logz.io/#/dashboard/jaeger). -### Kuberenetes Python application auto insturmentation +### Kuberenetes Python application auto insturmentation -#### Overview -You can use a Helm chart to ship Traces to Logz.io via the OpenTelemetry collector. The Helm tool is used to manage packages of preconfigured Kubernetes resources that use charts. +Use a Helm chart to ship traces to Logz.io via the OpenTelemetry collector. The Helm tool manages packages of preconfigured Kubernetes resources. **logzio-k8s-telemetry** allows you to ship traces from your Kubernetes cluster to Logz.io with the OpenTelemetry collector. :::note -This chart is a fork of the [opentelemtry-collector](https://github.com/open-telemetry/opentelemetry-helm-charts/tree/main/charts/opentelemetry-collector) Helm chart. The main repository for Logz.io helm charts are [logzio-helm](https://github.com/logzio/logzio-helm). +This chart is a fork of the [opentelemtry-collector](https://github.com/open-telemetry/opentelemetry-helm-charts/tree/main/charts/opentelemetry-collector) Helm chart. The main repository for Logz.io helm charts is [logzio-helm](https://github.com/logzio/logzio-helm). ::: - + + :::caution This integration uses OpenTelemetry Collector Contrib, not the OpenTelemetry Collector Core. ::: + @@ -1276,7 +1280,8 @@ This integration uses OpenTelemetry Collector Contrib, not the OpenTelemetry Col -##### Deploy the Helm chart +**1. Deploy the Helm chart** + Add `logzio-helm` repo as follows: @@ -1285,7 +1290,7 @@ helm repo add logzio-helm https://logzio.github.io/logzio-helm helm repo update ``` -##### Run the Helm deployment code +**2. Run the Helm deployment code** ``` helm install \ @@ -1298,23 +1303,19 @@ logzio-monitoring logzio-helm/logzio-monitoring -n monitoring `<>` - Your Logz.io account region code. [Available regions](https://docs.logz.io/docs/user-guide/admin/hosting-regions/account-region/#available-regions). -##### Define the logzio-k8s-telemetry service DNS +**3. Define the logzio-k8s-telemetry service DNS** -In most cases, the service name will be `logzio-k8s-telemetry.default.svc.cluster.local`, where `default` is the namespace where you deployed the helm chart and `svc.cluster.name` is your cluster domain name. - -If you are not sure what your cluster domain name is, you can run the following command to look it up: +Typically, the service name will be `logzio-k8s-telemetry.default.svc.cluster.local`, where `default` is the namespace where you deployed the helm chart and `svc.cluster.name` is your cluster domain name. If you're unsude what your cluster domain name is, run the following command to find it: ```shell kubectl run -it --image=k8s.gcr.io/e2e-test-images/jessie-dnsutils:1.3 --restart=Never shell -- \ sh -c 'nslookup kubernetes.default | grep Name | sed "s/Name:\skubernetes.default//"' ``` -It will deploy a small pod that extracts your cluster domain name from your Kubernetes environment. You can remove this pod after it has returned the cluster domain name. - +This command deploys a pod to extract your cluster domain name, which can be removed after. -#### Install general Python OpenTelemetry instrumentation components -Run the following commands: +**4. Install general Python OpenTelemetry instrumentation components** ```shell pip3 install opentelemetry-distro @@ -1323,51 +1324,64 @@ opentelemetry-bootstrap --action=install pip3 install opentelemetry-exporter-otlp ``` -#### Set environment variables +**5. Set environment variables** -After installation, configure the exporter by running the following command: +Configure the exporter by running the following command: ```shell export OTEL_TRACES_EXPORTER=otlp export OTEL_RESOURCE_ATTRIBUTES="service.name=<>" ``` -Replace `<>` with the name of your tracing service defined earlier. +Replace `<>` with your tracing service name. -#### Check Logz.io for your traces +**6. Viewing Traces in Logz.io** -Give your traces some time to get from your system to ours, then open [Logz.io](https://app.logz.io/). +Give your traces time to process, after which they'll be available in your [Tracing](https://app.logz.io/#/dashboard/jaeger) dashboard. - Customizing Helm chart parameters -#### Configure customization options -You can use the following options to update the Helm chart parameters: +#### Customizing Helm chart parameters + +You can update Helm chart parameters in three ways: * Specify parameters using the `--set key=value[,key=value]` argument to `helm install`. * Edit the `values.yaml`. -* Overide default values with your own `my_values.yaml` and apply it in the `helm install` command. +* Override default values with your own `my_values.yaml` and apply it in the `helm install` command. -If required, you can add the following optional parameters as environment variables: +Optional parameters can be added as environment variables: -| Parameter | Description | -|---|---| -| secrets.SamplingLatency | Threshold for the spand latency - all traces slower than the threshold value will be filtered in. Default 500. | -| secrets.SamplingProbability | Sampling percentage for the probabilistic policy. Default 10. | +| Parameter | Description | Default | +|---|---|---| +| secrets.SamplingLatency | Threshold for the spand latency - all traces slower than the threshold value will be filtered in. | `500` | +| secrets.SamplingProbability | Sampling percentage for the probabilistic policy. | `10` | ##### Example -You can run the logzio-k8s-telemetry chart with your custom configuration file that takes precedence over the `values.yaml` of the chart. +You can run the logzio-k8s-telemetry chart with a custom configuration file that takes precedence over the `values.yaml` of the chart by running the following: + + +``` +helm install -f /my_values.yaml \ +--set logzio-k8s-telemetry.secrets.TracesToken=<> \ +--set logzio-k8s-telemetry.secrets.LogzioRegion=<> \ +--set metricsOrTraces=true \ +logzio-monitoring logzio-helm/logzio-monitoring +``` + +Replace `` with your custom `values.yaml` file path. + +{@include: ../../_include/tracing-shipping/replace-tracing-token.html} -For example: :::note -The collector will sample **ALL traces** where is some span with error with this example configuration. +The collector will sample **ALL traces** that contain any span with an error with this example configuration. ::: - + + ```yaml baseCollectorConfig: @@ -1417,26 +1431,15 @@ baseCollectorConfig: ] ``` -Command: -``` -helm install -f /my_values.yaml \ ---set logzio-k8s-telemetry.secrets.TracesToken=<> \ ---set logzio-k8s-telemetry.secrets.LogzioRegion=<> \ ---set metricsOrTraces=true \ -logzio-monitoring logzio-helm/logzio-monitoring -``` -Replace `` with the path to your custom `values.yaml` file. -{@include: ../../_include/tracing-shipping/replace-tracing-token.html} #### Uninstalling the Chart -The uninstall command is used to remove all the Kubernetes components associated with the chart and to delete the release. -To uninstall the `logzio-monitoring` deployment, use the following command: +To uninstall the `logzio-monitoring` deployment, run: ```shell helm uninstall logzio-monitoring @@ -1446,11 +1449,8 @@ helm uninstall logzio-monitoring ## Troubleshooting -#### Logz.io Python handler -For troubleshooting the Logz.io Python handler, see our [Python logging troubleshooting guide](https://docs.logz.io/docs/user-guide/log-management/troubleshooting/troubleshooting-python/). +* [Python logging troubleshooting guide](https://docs.logz.io/docs/user-guide/log-management/troubleshooting/troubleshooting-python/). -#### OpenTelemetry instrumentation -For troubleshooting the OpenTelemetry instrumentation, see our [OpenTelemetry troubleshooting guide](https://docs.logz.io/docs/user-guide/distributed-tracing/troubleshooting/otel-troubleshooting/). +* [OpenTelemetry troubleshooting guide](https://docs.logz.io/docs/user-guide/distributed-tracing/troubleshooting/otel-troubleshooting/). -#### Distributed Tracing account -For troubleshooting your Distributed Tracing account, see our [Distributed Tracing troubleshooting guide](https://docs.logz.io/docs/user-guide/distributed-tracing/troubleshooting/tracing-troubleshooting/) +* [Distributed Tracing troubleshooting guide](https://docs.logz.io/docs/user-guide/distributed-tracing/troubleshooting/tracing-troubleshooting/) From 4d8bef5e9698ef974134d6fb73cab338cfc106af Mon Sep 17 00:00:00 2001 From: Simplychee Date: Tue, 9 Jul 2024 16:46:50 +0300 Subject: [PATCH 07/14] span --- docs/_include/tracing-shipping/tail-sampling.md | 2 +- docs/shipping/App360/App360.md | 2 +- docs/shipping/Code/dotnet-traces-kafka.md | 2 +- .../shipping/Code/java-traces-with-kafka-using-opentelemetry.md | 2 +- docs/shipping/Code/nestjs.md | 2 +- docs/shipping/Code/node-js.md | 2 +- docs/shipping/Code/python.md | 2 +- docs/shipping/Code/ruby.md | 2 +- 8 files changed, 8 insertions(+), 8 deletions(-) diff --git a/docs/_include/tracing-shipping/tail-sampling.md b/docs/_include/tracing-shipping/tail-sampling.md index 32f7e06b..b52869ac 100644 --- a/docs/_include/tracing-shipping/tail-sampling.md +++ b/docs/_include/tracing-shipping/tail-sampling.md @@ -6,5 +6,5 @@ The configurable parameters in the Logz.io default configuration are: | Parameter | Description | Default | |---|---|---| -| threshold_ms | Threshold for the spand latency - all traces slower than the threshold value will be filtered in. | 1000 | +| threshold_ms | Threshold for the span latency - all traces slower than the threshold value will be filtered in. | 1000 | | sampling_percentage | Sampling percentage for the probabilistic policy. | 10 | diff --git a/docs/shipping/App360/App360.md b/docs/shipping/App360/App360.md index bec4d235..103f3565 100644 --- a/docs/shipping/App360/App360.md +++ b/docs/shipping/App360/App360.md @@ -202,7 +202,7 @@ The configurable parameters in the Logz.io default configuration are: | Parameter | Description | Default | |---|---|---| -| threshold_ms | Threshold for the spand latency - all traces slower than the threshold value will be filtered in. | 1000 | +| threshold_ms | Threshold for the span latency - all traces slower than the threshold value will be filtered in. | 1000 | | sampling_percentage | Sampling percentage for the probabilistic policy. | 10 | diff --git a/docs/shipping/Code/dotnet-traces-kafka.md b/docs/shipping/Code/dotnet-traces-kafka.md index 2152f56b..134522e2 100644 --- a/docs/shipping/Code/dotnet-traces-kafka.md +++ b/docs/shipping/Code/dotnet-traces-kafka.md @@ -209,7 +209,7 @@ If required, you can add the following optional parameters as environment variab | Parameter | Description | |---|---| -| secrets.SamplingLatency | Threshold for the spand latency - all traces slower than the threshold value will be filtered in. Default 500. | +| secrets.SamplingLatency | Threshold for the span latency - all traces slower than the threshold value will be filtered in. Default 500. | | secrets.SamplingProbability | Sampling percentage for the probabilistic policy. Default 10. | diff --git a/docs/shipping/Code/java-traces-with-kafka-using-opentelemetry.md b/docs/shipping/Code/java-traces-with-kafka-using-opentelemetry.md index 7a18a1c2..f3348af7 100644 --- a/docs/shipping/Code/java-traces-with-kafka-using-opentelemetry.md +++ b/docs/shipping/Code/java-traces-with-kafka-using-opentelemetry.md @@ -231,7 +231,7 @@ If required, you can add the following optional parameters as environment variab | Parameter | Description | |---|---| -| secrets.SamplingLatency | Threshold for the spand latency - all traces slower than the threshold value will be filtered in. Default 500. | +| secrets.SamplingLatency | Threshold for the span latency - all traces slower than the threshold value will be filtered in. Default 500. | | secrets.SamplingProbability | Sampling percentage for the probabilistic policy. Default 10. | diff --git a/docs/shipping/Code/nestjs.md b/docs/shipping/Code/nestjs.md index e3d0df4c..cca6624d 100644 --- a/docs/shipping/Code/nestjs.md +++ b/docs/shipping/Code/nestjs.md @@ -441,7 +441,7 @@ If required, you can add the following optional parameters as environment variab | Parameter | Description | |---|---| -| secrets.SamplingLatency | Threshold for the spand latency - all traces slower than the threshold value will be filtered in. Default 500. | +| secrets.SamplingLatency | Threshold for the span latency - all traces slower than the threshold value will be filtered in. Default 500. | | secrets.SamplingProbability | Sampling percentage for the probabilistic policy. Default 10. | #### Example diff --git a/docs/shipping/Code/node-js.md b/docs/shipping/Code/node-js.md index e30c65a8..cb31b193 100644 --- a/docs/shipping/Code/node-js.md +++ b/docs/shipping/Code/node-js.md @@ -727,7 +727,7 @@ If required, you can add the following optional parameters as environment variab | Parameter | Description | |---|---| -| secrets.SamplingLatency | Threshold for the spand latency - all traces slower than the threshold value will be filtered in. Default 500. | +| secrets.SamplingLatency | Threshold for the span latency - all traces slower than the threshold value will be filtered in. Default 500. | | secrets.SamplingProbability | Sampling percentage for the probabilistic policy. Default 10. | ##### Example diff --git a/docs/shipping/Code/python.md b/docs/shipping/Code/python.md index a06412ca..b83deebd 100644 --- a/docs/shipping/Code/python.md +++ b/docs/shipping/Code/python.md @@ -1355,7 +1355,7 @@ Optional parameters can be added as environment variables: | Parameter | Description | Default | |---|---|---| -| secrets.SamplingLatency | Threshold for the spand latency - all traces slower than the threshold value will be filtered in. | `500` | +| secrets.SamplingLatency | Threshold for the span latency - all traces slower than the threshold value will be filtered in. | `500` | | secrets.SamplingProbability | Sampling percentage for the probabilistic policy. | `10` | ##### Example diff --git a/docs/shipping/Code/ruby.md b/docs/shipping/Code/ruby.md index ccd8311c..5fb6ef09 100644 --- a/docs/shipping/Code/ruby.md +++ b/docs/shipping/Code/ruby.md @@ -277,7 +277,7 @@ If required, you can add the following optional parameters as environment variab | Parameter | Description | |---|---| -| secrets.SamplingLatency | Threshold for the spand latency - all traces slower than the threshold value will be filtered in. Default 500. | +| secrets.SamplingLatency | Threshold for the span latency - all traces slower than the threshold value will be filtered in. Default 500. | | secrets.SamplingProbability | Sampling percentage for the probabilistic policy. Default 10. | #### Example From 8de869b311cab72c1036e6e5e93291425f830751 Mon Sep 17 00:00:00 2001 From: Simplychee Date: Tue, 9 Jul 2024 13:47:13 +0000 Subject: [PATCH 08/14] 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 36e7821de90d2a26731ade744c97673c3aec38d4 Mon Sep 17 00:00:00 2001 From: Simplychee Date: Tue, 9 Jul 2024 16:52:53 +0300 Subject: [PATCH 09/14] edits --- docs/shipping/Code/java.md | 2 +- docs/shipping/Code/python.md | 2 -- 2 files changed, 1 insertion(+), 3 deletions(-) diff --git a/docs/shipping/Code/java.md b/docs/shipping/Code/java.md index 0629b2ca..4652fe06 100644 --- a/docs/shipping/Code/java.md +++ b/docs/shipping/Code/java.md @@ -167,7 +167,7 @@ For more details, see the [Log4j documentation](https://logging.apache.org/log4j | **queueDir** | *System.getProperty("java.io.tmpdir")* | Directory for storing the queue. | -### Code Example +Code Example: ```java import org.apache.logging.log4j.LogManager; diff --git a/docs/shipping/Code/python.md b/docs/shipping/Code/python.md index b83deebd..27e6dea9 100644 --- a/docs/shipping/Code/python.md +++ b/docs/shipping/Code/python.md @@ -234,8 +234,6 @@ logger.removeFilter(ExtraFieldsLogFilter(error_fields)) logger.debug("Debug test log") ``` -### Extra Fields - To add dynamic metadata to a specific log rather than to the logger, use the "extra" parameter. All key-value pairs in the dictionary passed to "extra" will appear as new fields in Logz.io. Note that you cannot override default fields set by the Python logger (e.g., lineno, thread). For example: From 20751b4b4751e94e7b5055660fbfd46707ab279d Mon Sep 17 00:00:00 2001 From: Simplychee Date: Tue, 9 Jul 2024 13:53:41 +0000 Subject: [PATCH 10/14] 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 a451f2b3..a91ec366 100644 --- a/static/manifest.json +++ b/static/manifest.json @@ -1 +1 @@ -{"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 +{"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 From 2633a4f921cdf4f70539c58e018590281d28404f Mon Sep 17 00:00:00 2001 From: Simplychee Date: Tue, 9 Jul 2024 13:57:34 +0000 Subject: [PATCH 11/14] 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 945b3d5a4cf71f1cd57c7e99c5a14930fa766a07 Mon Sep 17 00:00:00 2001 From: Simplychee Date: Wed, 10 Jul 2024 14:22:29 +0300 Subject: [PATCH 12/14] titles --- docs/shipping/Code/java.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/shipping/Code/java.md b/docs/shipping/Code/java.md index 4652fe06..5703e418 100644 --- a/docs/shipping/Code/java.md +++ b/docs/shipping/Code/java.md @@ -16,7 +16,7 @@ drop_filter: [] --- :::tip -For Kubernetes, use the Kubernetes integration to collect various telemetry types. +For Kubernetes data, use the [dedicated integration](https://docs.logz.io/docs/shipping/containers/kubernetes/). ::: ## Logs From ba40d8cb4ab6bd1d2b6b3086f9c2d3613a6b7809 Mon Sep 17 00:00:00 2001 From: Simplychee Date: Thu, 11 Jul 2024 10:35:06 +0300 Subject: [PATCH 13/14] k8s --- .../_include/general-shipping/k8s-all-data.md | 4 +- docs/_include/general-shipping/k8s.md | 74 +++++++++---------- docs/shipping/Containers/kubernetes.md | 2 +- 3 files changed, 38 insertions(+), 42 deletions(-) diff --git a/docs/_include/general-shipping/k8s-all-data.md b/docs/_include/general-shipping/k8s-all-data.md index 7109554b..cd9fecc9 100644 --- a/docs/_include/general-shipping/k8s-all-data.md +++ b/docs/_include/general-shipping/k8s-all-data.md @@ -1,7 +1,7 @@ -## All telemetry (logs, metrics, traces and security reports) at once +## Send all telemetry Data (logs, metrics, traces and security reports) at once -To enjoy the full Kubernetes 360 experience, you can send all your telemetry data to Logz.io using one single Helm chart: +Send all of your telemetry data using one single Helm chart: ```sh helm repo add logzio-helm https://logzio.github.io/logzio-helm diff --git a/docs/_include/general-shipping/k8s.md b/docs/_include/general-shipping/k8s.md index 58408c1c..f2aed3a6 100644 --- a/docs/_include/general-shipping/k8s.md +++ b/docs/_include/general-shipping/k8s.md @@ -9,22 +9,19 @@ You can find your Logz.io configuration tokens, environment IDs, regions, and other required details [here](https://app.logz.io/#/dashboard/integrations/aws-eks). ::: -1. [Helm](https://helm.sh/) +* [Helm](https://helm.sh/) -Add Logzio-helm repository +* Add Logzio-helm repository -```sh -helm repo add logzio-helm https://logzio.github.io/logzio-helm && helm repo update -``` -{@include: ../../_include/general-shipping/k8s-all-data.md} + ```sh + helm repo add logzio-helm https://logzio.github.io/logzio-helm && helm repo update + ``` -## Send your logs +* {@include: ../../_include/general-shipping/k8s-all-data.md} -`logzio-monitoring` supports the following subcharts for log collection agent: -- `logzio-logs-collector`: Based on opentelemetry collector -- `logzio-fluentd`: Based on fluentd +## Send your logs -### Log collection with logzio-logs-collector +`logzio-monitoring` supports `logzio-logs-collector`, Based on OpenTelemetry collector. _Migrating to `logzio-monitoring` >=6.0.0_ @@ -63,12 +60,12 @@ logzio-monitoring logzio-helm/logzio-monitoring | `<>` | Logzio region. | -For log shipping troubleshooting, see our [user guide](https://docs.logz.io/docs/user-guide/log-management/troubleshooting/troubleshooting-fluentd-for-kubernetes-logs/). +If you encounter an issue, see our [troubleshooting guide](https://docs.logz.io/docs/user-guide/log-management/troubleshooting/troubleshooting-fluentd-for-kubernetes-logs/). -## Send your deploy events logs +## Send deployment events logs -This integration sends data about deployment events in the cluster, and how they affect the cluster's resources. -Currently supported resource kinds are `Deployment`, `Daemonset`, `Statefulset`, `ConfigMap`, `Secret`, `Service Account`, `Cluster Role` and `Cluster Role Binding`. +Send data about deployment events in the cluster, and how they affect it's resources. +_Supported resource kinds are `Deployment`, `Daemonset`, `Statefulset`, `ConfigMap`, `Secret`, `Service Account`, `Cluster Role` and `Cluster Role Binding`._ ```sh helm install --namespace=monitoring \ @@ -90,7 +87,8 @@ logzio-monitoring logzio-helm/logzio-monitoring ### Deployment events versioning -To add a versioning indicator to our K8S 360 and Service Overview UI, the specified annotation must be included in the metadata of each resource whose versioning you wish to track. The 'View commit' button will link to the commit URL in your version control system (VCS) from the logzio/commit_url annotation value. +To add a versioning indicator in Kubernetes 360 and Service Overview, include the logzio/commit_url annotation in the resource metadata. The 'View commit' button will link to the commit URL in your version control system (VCS). + ```yaml metadata: @@ -221,36 +219,36 @@ helm install -n monitoring \ | `<>` | The cluster's name, to easily identify the telemetry data for each environment. | -## Modifying the configuration for logs +## Modifying log configuration -You can see a full list of the possible configuration values in the [logzio-fluentd Chart folder](https://github.com/logzio/logzio-helm/tree/master/charts/fluentd#configuration). +View the full list of the possible configuration values in the [logzio-fluentd Chart folder](https://github.com/logzio/logzio-helm/tree/master/charts/fluentd#configuration). -If you would like to modify any of the values found in the `logzio-fluentd` folder, use the `--set` flag with the `logzio-fluentd` prefix. +To modify values in the `logzio-fluentd` folder, use the `--set` flag with the `logzio-fluentd` prefix. -For instance, if there is a parameter called `someField` in the `logzio-telemetry`'s `values.yaml` file, you can set it by adding the following to the `helm install` command: +For example, for a parameter called `someField` in the `logzio-telemetry`'s `values.yaml` file, set it by adding the following to the `helm install` command: ```sh --set logzio-fluentd.someField="my new value" ``` -You can add `log_type` annotation with a custom value, which will be parsed into a `log_type` field with the same value. +Adding `log_type` annotation with a custom value will be parsed into a `log_type` field with the same value. -### Modifying the configuration for metrics and traces -You can see a full list of the possible configuration values in the [logzio-telemetry Chart folder](https://github.com/logzio/logzio-helm/tree/master/charts/logzio-telemetry). +### Modifying metrics and traces configuration -If you would like to modify any of the values found in the `logzio-telemetry` folder, use the `--set` flag with the `logzio-k8s-telemetry` prefix. +View the full list of the possible configuration values in the [logzio-telemetry Chart folder](https://github.com/logzio/logzio-helm/tree/master/charts/logzio-telemetry). -For instance, if there is a parameter called `someField` in the `logzio-telemetry`'s `values.yaml` file, you can set it by adding the following to the `helm install` command: +To modify values found in the `logzio-telemetry` folder, use the `--set` flag with the `logzio-k8s-telemetry` prefix. +For example, for a parameter called `someField` in the `logzio-telemetry`'s `values.yaml` file, set it by adding the following to the `helm install` command: ```sh --set logzio-k8s-telemetry.someField="my new value" ``` -## Sending telemetry data from eks on fargate +## Sending telemetry data from EKS on Fargate -To ship logs from pods running on Fargate, set the `fargateLogRouter.enabled` value to `true`. Doing so will deploy a dedicated `aws-observability` namespace and a `configmap` for the Fargate log router. For more information on EKS Fargate logging, please refer to the [official AWS documentation](https://docs.aws.amazon.com/eks/latest/userguide/fargate-logging.html). +Set the `fargateLogRouter.enabled` value to `true`. This deploys a dedicated `aws-observability` namespace and a `configmap` for the Fargate log router. Read more on EKS Fargate logging in the [official AWS documentation](https://docs.aws.amazon.com/eks/latest/userguide/fargate-logging.html). ```shell helm install -n monitoring \ @@ -284,9 +282,7 @@ logzio-monitoring logzio-helm/logzio-monitoring ## Handling image pull rate limit -In certain situations, such as with spot clusters where pods/nodes are frequently replaced, you may encounter the pull rate limit for images fetched from Docker Hub. This could result in the following error: `You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limits`. - -To address this issue, you can use the `--set` commands provided below in order to access an alternative image repository: +To avoid Docker Hub pull rate limits, which could result in the following error: `You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limits`, use the `--set` commands below to access an alternative image repository: ```shell --set logzio-k8s-telemetry.image.repository=ghcr.io/open-telemetry/opentelemetry-collector-releases/opentelemetry-collector-contrib @@ -298,15 +294,16 @@ To address this issue, you can use the `--set` commands provided below in order ## Upgrading logzio-monitoring to v3.0.0 -Before upgrading your logzio-monitoring Chart to v3.0.0 with `helm upgrade`, note that you may encounter an error for some of the logzio-telemetry sub-charts. +Before upgrading your logzio-monitoring chart to v3.0.0 with `helm upgrade`, you might encounter errors with some logzio-telemetry sub-charts. + +You have two options to proceed: -There are two possible approaches to the upgrade you can choose from: - Reinstall the chart. -- Before running the `helm upgrade` command, delete the old subcharts resources: `logzio-monitoring-prometheus-pushgateway` deployment and the `logzio-monitoring-prometheus-node-exporter` daemonset. +- Before running `helm upgrade`, delete the old subcharts resources: `logzio-monitoring-prometheus-pushgateway` deployment and the `logzio-monitoring-prometheus-node-exporter` daemonset. ## Configuring logs in JSON format -This configuration sets up a log processor to parse, restructure, and clean JSON-formatted log messages for streamlined analysis and monitoring: +Set up a log processor to parse JSON logs: ```json @@ -320,17 +317,16 @@ This configuration sets up a log processor to parse, restructure, and clean JSON ``` -## Adding metric names to K8S 360 filter +## Adding metric names to Kubernetes 360 filter -To customize the metrics collected by Prometheus in your Kubernetes environment, you need to modify the `prometheusFilters` configuration in your Helm chart. +To customize Prometheus metrics in your Kubernetes environment, you need to modify the `prometheusFilters` configuration in your Helm chart. -### Identify metrics to keep +**1. Identify metrics to keep** Decide which metrics you need to add to your collection, formatted as a regex string (e.g., `new_metric_1|new_metric_2`). -### Set filters +**2. Set filters** -Run the following command: ```shell helm upgrade logzio-helm/logzio-monitoring \ diff --git a/docs/shipping/Containers/kubernetes.md b/docs/shipping/Containers/kubernetes.md index af5994bf..b8e19486 100644 --- a/docs/shipping/Containers/kubernetes.md +++ b/docs/shipping/Containers/kubernetes.md @@ -15,6 +15,6 @@ metrics_alerts: ['5Ng398K19vXP9197bRV1If'] drop_filter: [] --- -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. +Integrate your Kubernetes system with Logz.io to monitor your logs, metrics, and traces to gain observability and resolve issues in your environment. {@include: ../../_include/general-shipping/k8s.md} From 8a51e8de4ab75365fd567b7e821705c917f1d62a Mon Sep 17 00:00:00 2001 From: Simplychee Date: Tue, 16 Jul 2024 11:21:26 +0300 Subject: [PATCH 14/14] dot net --- docs/_include/general-shipping/k8s.md | 26 +- .../metric-shipping/custom-dashboard.html | 2 +- .../tracing-shipping/collector-run-note.md | 11 +- docs/_include/tracing-shipping/docker.md | 11 +- .../_include/tracing-shipping/dotnet-steps.md | 4 +- .../tracing-shipping/tail-sampling.md | 9 +- docs/shipping/Code/dotnet.md | 561 +++++++----------- 7 files changed, 234 insertions(+), 390 deletions(-) diff --git a/docs/_include/general-shipping/k8s.md b/docs/_include/general-shipping/k8s.md index f2aed3a6..f75cb1ab 100644 --- a/docs/_include/general-shipping/k8s.md +++ b/docs/_include/general-shipping/k8s.md @@ -6,7 +6,7 @@ ## Prerequisites :::note -You can find your Logz.io configuration tokens, environment IDs, regions, and other required details [here](https://app.logz.io/#/dashboard/integrations/aws-eks). +Your Logz.io configuration tokens, environment IDs, regions, and other required details are [here](https://app.logz.io/#/dashboard/integrations/aws-eks). ::: * [Helm](https://helm.sh/) @@ -37,8 +37,8 @@ logzio-monitoring logzio-helm/logzio-monitoring ``` ### Log collection with logzio-fluentd -The `logzio-fluentd` chart is disabled by default in favor of the `logzio-logs-collector` chart for log collection. -Deploy `logzio-fluentd`, by adding the following `--set` flags: +The `logzio-fluentd` chart is disabled by default in favor of the `logzio-logs-collector` chart. +Deploy `logzio-fluentd` by adding the following `--set` flags: ```sh helm install -n monitoring \ @@ -64,7 +64,7 @@ If you encounter an issue, see our [troubleshooting guide](https://docs.logz.io/ ## Send deployment events logs -Send data about deployment events in the cluster, and how they affect it's resources. +Send data about deployment events in the cluster, and how they affect its resources. _Supported resource kinds are `Deployment`, `Daemonset`, `Statefulset`, `ConfigMap`, `Secret`, `Service Account`, `Cluster Role` and `Cluster Role Binding`._ ```sh @@ -87,7 +87,7 @@ logzio-monitoring logzio-helm/logzio-monitoring ### Deployment events versioning -To add a versioning indicator in Kubernetes 360 and Service Overview, include the logzio/commit_url annotation in the resource metadata. The 'View commit' button will link to the commit URL in your version control system (VCS). +To add a versioning indicator in Kubernetes 360 and Service Overview, include the `logzio/commit_url` annotation in the resource metadata. The 'View commit' button will link to the commit URL in your version control system (VCS). ```yaml @@ -173,7 +173,9 @@ logzio-monitoring logzio-helm/logzio-monitoring | `<>` | Your [span metrics shipping token](https://app.logz.io/#/dashboard/settings/manage-tokens/data-shipping). | ## Deploy both charts with span metrics and service graph -**Note** `serviceGraph.enabled=true` will have no effect unless `traces.enabled` & `spm.enabled=true` is also set to `true` + +**Note:** `serviceGraph.enabled=true` will have no effect unless `traces.enabled` & `spm.enabled=true` is also set to `true`. + ```sh helm install -n monitoring \ --set metricsOrTraces.enabled=true \ @@ -187,8 +189,10 @@ helm install -n monitoring \ logzio-monitoring logzio-helm/logzio-monitoring ``` -#### Deploy metrics chart with Kuberenetes object logs correlation -**Note** `k8sObjectsConfig.enabled=true` will have no effect unless `metrics.enabled` is also set to `true` +#### Deploy metrics chart with Kubernetes object logs correlation + +**Note** `k8sObjectsConfig.enabled=true` will have no effect unless `metrics.enabled` is also set to `true`. + ```sh helm install \ --set logzio-k8s-telemetry.metrics.enabled=true \ @@ -282,7 +286,7 @@ logzio-monitoring logzio-helm/logzio-monitoring ## Handling image pull rate limit -To avoid Docker Hub pull rate limits, which could result in the following error: `You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limits`, use the `--set` commands below to access an alternative image repository: +Docker Hub pull rate limits could result in the following error: `You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limits`. To avoid this, use the `--set` commands below to access an alternative image repository: ```shell --set logzio-k8s-telemetry.image.repository=ghcr.io/open-telemetry/opentelemetry-collector-releases/opentelemetry-collector-contrib @@ -296,7 +300,7 @@ To avoid Docker Hub pull rate limits, which could result in the following error: Before upgrading your logzio-monitoring chart to v3.0.0 with `helm upgrade`, you might encounter errors with some logzio-telemetry sub-charts. -You have two options to proceed: +You have two options: - Reinstall the chart. - Before running `helm upgrade`, delete the old subcharts resources: `logzio-monitoring-prometheus-pushgateway` deployment and the `logzio-monitoring-prometheus-node-exporter` daemonset. @@ -319,7 +323,7 @@ Set up a log processor to parse JSON logs: ## Adding metric names to Kubernetes 360 filter -To customize Prometheus metrics in your Kubernetes environment, you need to modify the `prometheusFilters` configuration in your Helm chart. +Customize Prometheus metrics in your Kubernetes environment by modifying the `prometheusFilters` configuration in your Helm chart. **1. Identify metrics to keep** diff --git a/docs/_include/metric-shipping/custom-dashboard.html b/docs/_include/metric-shipping/custom-dashboard.html index ce223ae4..049741bc 100644 --- a/docs/_include/metric-shipping/custom-dashboard.html +++ b/docs/_include/metric-shipping/custom-dashboard.html @@ -1 +1 @@ -Log in to your Logz.io account and navigate to the current instructions page [inside the Logz.io app](https://app.logz.io/#/dashboard/send-your-data/prometheus-sources/{{page.slug}}). \ No newline at end of file +Navigate to the instructions page within [the Logz.io app](https://app.logz.io/#/dashboard/send-your-data/prometheus-sources/{{page.slug}}). \ No newline at end of file diff --git a/docs/_include/tracing-shipping/collector-run-note.md b/docs/_include/tracing-shipping/collector-run-note.md index ff950e4f..d980fb06 100644 --- a/docs/_include/tracing-shipping/collector-run-note.md +++ b/docs/_include/tracing-shipping/collector-run-note.md @@ -1,3 +1,10 @@ :::note -Normally, when you run the OTEL collector in a Docker container, your application will run in separate containers on the same host. In this case, you need to make sure that all your application containers share the same network as the OTEL collector container. One way to achieve this, is to run all containers, including the OTEL collector, with a Docker-compose configuration. Docker-compose automatically makes sure that all containers with the same configuration are sharing the same network. -::: \ No newline at end of file +When running the OTEL collector in a Docker container, your application should run in separate containers on the same host network. **Ensure all containers share the same network**. Using Docker Compose ensures that all containers, including the OTEL collector, share the same network configuration automatically. +::: + + + + + + + diff --git a/docs/_include/tracing-shipping/docker.md b/docs/_include/tracing-shipping/docker.md index a64a62a3..69571889 100644 --- a/docs/_include/tracing-shipping/docker.md +++ b/docs/_include/tracing-shipping/docker.md @@ -68,7 +68,7 @@ service: {@include: ../../_include/tracing-shipping/replace-tracing-token.html} -##### Tail Sampling +### Tail Sampling {@include: ../../_include/tracing-shipping/tail-sampling.md} @@ -158,14 +158,11 @@ service: {@include: ../../_include/tracing-shipping/replace-tracing-token.html} -{@include: ../../_include/tracing-shipping/tail-sampling.md} - - -##### Run the container +#### Run the container Mount the `config.yaml` as volume to the `docker run` command and run it as follows. -###### Linux +##### Linux ``` docker run \ @@ -177,7 +174,7 @@ otel/opentelemetry-collector-contrib:0.78.0 Replace `` to the path to the `config.yaml` file on your system. -###### Windows +##### Windows ``` docker run \ diff --git a/docs/_include/tracing-shipping/dotnet-steps.md b/docs/_include/tracing-shipping/dotnet-steps.md index edba24e2..4dc11b20 100644 --- a/docs/_include/tracing-shipping/dotnet-steps.md +++ b/docs/_include/tracing-shipping/dotnet-steps.md @@ -1,4 +1,4 @@ -##### Download instrumentation packages +#### Download instrumentation packages Run the following command from the application directory: @@ -9,7 +9,7 @@ dotnet add package OpenTelemetry.Instrumentation.AspNetCore dotnet add package OpenTelemetry.Extensions.Hosting ``` -##### Enable instrumentation in the code +#### Enable instrumentation in the code Add the following configuration to the beginning of the Startup.cs file: diff --git a/docs/_include/tracing-shipping/tail-sampling.md b/docs/_include/tracing-shipping/tail-sampling.md index b52869ac..96b3bc05 100644 --- a/docs/_include/tracing-shipping/tail-sampling.md +++ b/docs/_include/tracing-shipping/tail-sampling.md @@ -1,10 +1,11 @@ -The `tail_sampling` defines the decision to sample a trace after the completion of all the spans in a request. By default, this configuration collects all traces that have a span that was completed with an error, all traces that are slower than 1000 ms, and 10% of the rest of the traces. +`tail_sampling` defines which traces to sample after all spans in a request are completed. By default, it collects all traces with an error span, traces slower than 1000 ms, and 10% of all other traces. -You can add more policy configurations to the processor. For more on this, refer to [OpenTelemetry Documentation](https://github.com/open-telemetry/opentelemetry-collector-contrib/blob/main/processor/tailsamplingprocessor/README.md). + +Additional policy configurations can be added to the processor. For more details, refer to the [OpenTelemetry Documentation](https://github.com/open-telemetry/opentelemetry-collector-contrib/blob/main/processor/tailsamplingprocessor/README.md). The configurable parameters in the Logz.io default configuration are: | Parameter | Description | Default | |---|---|---| -| threshold_ms | Threshold for the span latency - all traces slower than the threshold value will be filtered in. | 1000 | -| sampling_percentage | Sampling percentage for the probabilistic policy. | 10 | +| threshold_ms | Threshold for the span latency - traces slower than this value will be included. | 1000 | +| sampling_percentage | Percentage of traces to sample using the probabilistic policy. | 10 | diff --git a/docs/shipping/Code/dotnet.md b/docs/shipping/Code/dotnet.md index 12eefa57..e96a6be2 100644 --- a/docs/shipping/Code/dotnet.md +++ b/docs/shipping/Code/dotnet.md @@ -37,65 +37,36 @@ import TabItem from '@theme/TabItem'; ::: -#### Add the dependency to your project +### Add the dependency to your project -If you're on Windows, navigate to your project's folder in the command line, and run this command to install the dependency. +On Windows, open the command line, go to your project folder, and run this command to install the dependency. ``` Install-Package Logzio.DotNet.Log4net ``` -If you're on a Mac or Linux machine, you can install the package using Visual Studio. Select **Project > Add NuGet Packages...**, and then search for `Logzio.DotNet.Log4net`. +On Mac or Linux, install the package using Visual Studio. **Project > Add NuGet Packages...**, and search for `Logzio.DotNet.Log4net`. -#### Configure the appender -You can configure the appender in a configuration file or directly in the code. -Use the samples in the code blocks below as a starting point, and replace them with a configuration that matches your needs. See [log4net documentation 🔗](https://github.com/apache/logging-log4net) to learn more about configuration options. +### Configure the appender in a configuration file -For a complete list of options, see the configuration parameters below the code blocks.👇 +Use the samples below as a starting point and adjust them to fit your needs. For more options, see the [log4net documentation](https://github.com/apache/logging-log4net). -##### Option 1: In a configuration file ```xml - - <> - - - log4net - https://<>:8071 - - 100 - 00:00:05 - 3 - 00:00:02 - true - - - false - false - false - false @@ -109,7 +80,7 @@ For a complete list of options, see the configuration parameters below the code Add a reference to the configuration file in your code, as shown in the example [here](https://github.com/logzio/logzio-dotnet/blob/master/sample-applications/LogzioLog4netSampleApplication/Program.cs). -###### Code sample +#### Code sample ```csharp using System.IO; @@ -140,29 +111,29 @@ namespace dotnet_log4net ``` -##### Option 2: In the code +##### Configure the appender in the code ```csharp var hierarchy = (Hierarchy)LogManager.GetRepository(); var logzioAppender = new LogzioAppender(); logzioAppender.AddToken("<>"); logzioAppender.AddListenerUrl("<>"); -// <-- Uncomment and edit this line to enable proxy routing: --> -// logzioAppender.AddProxyAddress("http://your.proxy.com:port"); -// <-- Uncomment this to enable sending logs in Json format --> -// logzioAppender.ParseJsonMessage(true); -// <-- Uncomment these lines to enable gzip compression --> -// logzioAppender.AddGzip(true); -// logzioAppender.ActivateOptions(); -// logzioAppender.JsonKeysCamelCase(false); -// logzioAppender.AddTraceContext(false); -// logzioAppender.UseStaticHttpClient(false); logzioAppender.ActivateOptions(); hierarchy.Root.AddAppender(logzioAppender); hierarchy.Root.Level = Level.All; hierarchy.Configured = true; ``` +Add the following to your code to customize it: + +| Why? | What? | +|------|-------| +| Enable proxy routing | `logzioAppender.AddProxyAddress("http://your.proxy.com:port");` | +| Enable sending logs in JSON format | `logzioAppender.ParseJsonMessage(true);` | +| Enable gzip compression | `logzioAppender.AddGzip(true);` , `logzioAppender.ActivateOptions();` , `logzioAppender.JsonKeysCamelCase(false);` , `logzioAppender.AddTraceContext(false);` , `logzioAppender.UseStaticHttpClient(false);` | + + + ###### Code sample @@ -184,16 +155,6 @@ namespace dotnet_log4net logzioAppender.AddToken("<>"); logzioAppender.AddListenerUrl("https://<>:8071"); - // <-- Uncomment and edit this line to enable proxy routing: --> - // logzioAppender.AddProxyAddress("http://your.proxy.com:port"); - // <-- Uncomment this to enable sending logs in Json format --> - // logzioAppender.ParseJsonMessage(true); - // <-- Uncomment these lines to enable gzip compression --> - // logzioAppender.AddGzip(true); - // logzioAppender.ActivateOptions(); - // logzioAppender.JsonKeysCamelCase(false) - // logzioAppender.AddTraceContext(false); - // logzioAppender.UseStaticHttpClient(false); logzioAppender.ActivateOptions(); hierarchy.Root.AddAppender(logzioAppender); @@ -210,7 +171,7 @@ namespace dotnet_log4net } ``` -###### Parameters +### Parameters | Parameter | Description | Default/Required | |---|---|---| @@ -231,10 +192,10 @@ namespace dotnet_log4net -##### Custom fields +### Custom fields + +Add static keys and values to all log messages by including these custom fields under ``, as shown: -You can add static keys and values to be added to all log messages. -These custom fields must be children of ``, as shown here. ```xml @@ -249,7 +210,7 @@ These custom fields must be children of ``, as shown here. ``` -##### Extending the appender +### Extending the appender To change or add fields to your logs, inherit the appender and override the `ExtendValues` method. @@ -267,13 +228,14 @@ public class MyAppLogzioAppender : LogzioAppender Change your configuration to use your new appender name. For the example above, you'd use `MyAppLogzioAppender`. -##### Add trace context +### Add trace context :::note The Trace Context feature does not support .NET Standard 1.3. ::: -If you’re sending traces with OpenTelemetry instrumentation (auto or manual), you can correlate your logs with the trace context. In this way, your logs will have traces data in it: `span id` and `trace id`. To enable this feature, set `true` in your configuration file or `logzioAppender.AddTraceContext(true);` in your code. For example: +To correlate logs with trace context in OpenTelemetry, set `true` in your configuration file or use `logzioAppender.AddTraceContext(true);` in your code. This adds `span id` and `trace id` to your logs. For example: + ```csharp using log4net; @@ -293,14 +255,6 @@ namespace dotnet_log4net logzioAppender.AddToken("<>"); logzioAppender.AddListenerUrl("https://<>:8071"); - // <-- Uncomment and edit this line to enable proxy routing: --> - // logzioAppender.AddProxyAddress("http://your.proxy.com:port"); - // <-- Uncomment this to enable sending logs in Json format --> - // logzioAppender.ParseJsonMessage(true); - // <-- Uncomment these lines to enable gzip compression --> - // logzioAppender.AddGzip(true); - // logzioAppender.ActivateOptions(); - // logzioAppender.JsonKeysCamelCase(false) logzioAppender.AddTraceContext(true); logzioAppender.ActivateOptions(); @@ -318,11 +272,12 @@ namespace dotnet_log4net } ``` -##### Serverless platforms -If you’re using a serverless function, you’ll need to call the appender's flush method at the end of the function run to make sure the logs are sent before the function finishes its execution. You’ll also need to create a static appender in the Startup.cs file so each invocation will use the same appender. The appender should have the `UseStaticHttpClient` flag set to `true`. +### Serverless platforms +For serverless functions, call the appender's flush method at the end to ensure logs are sent before execution finishes. Create a static appender in Startup.cs with `UseStaticHttpClient` set to `true` for consistent invocations. + +For example: -###### Azure serverless function code sample *Startup.cs* ```csharp using Microsoft.Azure.Functions.Extensions.DependencyInjection; @@ -398,22 +353,19 @@ namespace LogzioLog4NetSampleApplication #### Add the dependency to your project -If you're on Windows, navigate to your project's folder in the command line, and run this command to install the dependency. +On Windows, open the command line, go to your project folder, and run this command to install the dependency. ``` Install-Package Logzio.DotNet.NLog ``` -If you’re on a Mac or Linux machine, you can install the package using Visual Studio. **Select Project > Add NuGet Packages...**, and then search for `Logzio.DotNet.NLog`. +On Mac or Linux, install the package using Visual Studio. Project > Add NuGet Packages..., and search for `Logzio.DotNet.NLog`. -#### Configure the appender -You can configure the appender in a configuration file or directly in the code. -Use the samples in the code blocks below as a starting point, and replace them with a configuration that matches your needs. See [NLog documentation 🔗](https://github.com/NLog/NLog/wiki/Configuration-file) to learn more about configuration options. +### Configure the appender in a configuration file -For a complete list of options, see the configuration parameters below the code blocks.👇 +Use the samples below as a starting point and adjust them to fit your needs. For more options, see the [NLog documentation](https://github.com/NLog/NLog/wiki/Configuration-file). For a complete list of options, see the configuration parameters listed below. -##### Option 1: In a configuration file ```xml @@ -421,9 +373,6 @@ For a complete list of options, see the configuration parameters below the code - - > @@ -458,7 +405,6 @@ For a complete list of options, see the configuration parameters below the code ```csharp var config = new LoggingConfiguration(); -// Replace these parameters with your configuration var logzioTarget = new LogzioTarget { Name = "Logzio", Token = "<>", @@ -471,16 +417,13 @@ var logzioTarget = new LogzioTarget { Debug = false, JsonKeysCamelCase = false, AddTraceContext = false, - // ParseJsonMessage = true, - // ProxyAddress = "http://your.proxy.com:port", - // UseStaticHttpClient = false, }; config.AddRule(LogLevel.Debug, LogLevel.Fatal, logzioTarget); LogManager.Configuration = config; ``` -###### Parameters +### Parameters | Parameter | Description | Default/Required | |---|---|---| @@ -498,7 +441,7 @@ LogManager.Configuration = config; | addTraceContext | If want to add trace context to each log, set this field to true. | `false` | | useStaticHttpClient | If want to use the same static HTTP/s client for sending logs, set this field to true. | `false` | -###### Code sample +##### Code sample ```csharp using System; @@ -529,9 +472,9 @@ namespace LogzioNLogSampleApplication } ``` -##### Include context properties +### Include context properties -You can configure the target to include your own custom values when forwarding logs to Logz.io. For example: +Configure the target to include your custom values when forwarding logs to Logz.io. For example: ```xml @@ -544,7 +487,7 @@ You can configure the target to include your own custom values when forwarding l ``` -##### Extending the appender +### Extending the appender To change or add fields to your logs, inherit the appender and override the `ExtendValues` method. @@ -560,11 +503,14 @@ public class MyAppLogzioTarget : LogzioTarget } ``` -Change your configuration to use your new target. For the example above, you'd use `MyAppLogzio`. +Update your configuration to use the new appender name, such as `MyAppLogzio`. -##### Json Layout -When using 'JsonLayout' set the name of the attribute to **other than** 'message'. for example: + +### JSON Layout + +When using `JsonLayout`, set the attribute name to something **other than** 'message'. For example: + ```xml @@ -572,13 +518,13 @@ When using 'JsonLayout' set the name of the attribute to **other than** 'message ``` -##### Add trace context +### Add trace context :::note The Trace Context feature does not support .NET Standard 1.3. ::: -If you’re sending traces with OpenTelemetry instrumentation (auto or manual), you can correlate your logs with the trace context. In this way, your logs will have traces data in it: `span id` and `trace id`. To enable this feature, set `addTraceContext="true"` in your configuration file or `AddTraceContext = true` in your code. For example: +To correlate logs with trace context in OpenTelemetry (auto or manual), set `addTraceContext="true"` in your configuration file or `AddTraceContext = true` in your code. This adds `span id` and `trace id` to your logs. For example: ```csharp var config = new LoggingConfiguration(); @@ -604,11 +550,11 @@ config.AddRule(LogLevel.Debug, LogLevel.Fatal, logzioTarget); LogManager.Configuration = config; ``` -##### Serverless platforms -If you’re using a serverless function, you’ll need to call the appender's flush method at the end of the function run to make sure the logs are sent before the function finishes its execution. You’ll also need to create a static appender in the Startup.cs file so each invocation will use the same appender. The appender should have the `UseStaticHttpClient` flag set to `true`. +### Serverless platforms +For serverless functions, call the appender's flush method at the end to ensure logs are sent before execution finishes. Create a static appender in Startup.cs with `UseStaticHttpClient` flag set to `true` for consistent invocations. -###### Azure serverless function code sample +For example: *Startup.cs* @@ -629,7 +575,6 @@ namespace LogzioNLogSampleApplication { var config = new LoggingConfiguration(); - // Replace these parameters with your configuration var logzioTarget = new LogzioTarget { Name = "Logzio", @@ -644,8 +589,6 @@ namespace LogzioNLogSampleApplication JsonKeysCamelCase = false, AddTraceContext = false, UseStaticHttpClient = true, - // ParseJsonMessage = true, - // ProxyAddress = "http://your.proxy.com:port", }; config.AddRule(NLog.LogLevel.Debug, NLog.LogLevel.Fatal, logzioTarget); @@ -701,7 +644,7 @@ namespace LogzioNLogSampleApplication #### Add the dependency to your project -If you're on Windows, navigate to your project's folder in the command line, and run these commands to install the dependencies. +On Windows, open the command line, go to your project folder, and run this command to install the dependency. ``` Install-Package Logzio.DotNet.Log4net @@ -711,53 +654,28 @@ Install-Package Logzio.DotNet.Log4net Install-Package Microsoft.Extensions.Logging.Log4Net.AspNetCore ``` -If you're on a Mac or Linux machine, you can install the package using Visual Studio. Select **Project > Add NuGet Packages...**, and then search for `Logzio.DotNet.Log4net` and `Microsoft.Extensions.Logging.Log4Net.AspNetCore`. - -#### Configure the appender +On Mac or Linux, install the package using Visual Studio. **Project > Add NuGet Packages...**, and search for `Logzio.DotNet.Log4net` and `Microsoft.Extensions.Logging.Log4Net.AspNetCore`. -You can configure the appender in a configuration file or directly in the code. -Use the samples in the code blocks below as a starting point, and replace them with a configuration that matches your needs. See [log4net documentation 🔗](https://github.com/apache/logging-log4net) to learn more about configuration options. +### Configure the appender in a configuration file -For a complete list of options, see the configuration parameters below the code blocks.👇 +Use the samples below as a starting point and adjust them to fit your needs. For more options, see the [log4net documentation](https://github.com/apache/logging-log4net). For a complete list of options, see the configuration parameters listed below. -###### Option 1: In a configuration file ```xml - - <> - - log4net - https://<>:8071 - - 100 - 00:00:05 - 3 - 00:00:02 - true - false - false - false - false @@ -769,28 +687,32 @@ For a complete list of options, see the configuration parameters below the code ``` -###### Option 2: In the code +### Configure the appender in the code + +Use the samples below as a starting point and adjust them to fit your needs. For more options, see the [log4net documentation](https://github.com/apache/logging-log4net). For a complete list of options, see the configuration parameters listed below. + ```csharp var hierarchy = (Hierarchy)LogManager.GetRepository(); var logzioAppender = new LogzioAppender(); logzioAppender.AddToken("<>"); logzioAppender.AddListenerUrl("<>"); -// Uncomment and edit this line to enable proxy routing: -// logzioAppender.AddProxyAddress("http://your.proxy.com:port"); -// Uncomment these lines to enable gzip compression -// logzioAppender.AddGzip(true); -// logzioAppender.ActivateOptions(); -// logzioAppender.JsonKeysCamelCase(false); -// logzioAppender.AddTraceContext(false); -// logzioAppender.UseStaticHttpClient(false); logzioAppender.ActivateOptions(); hierarchy.Root.AddAppender(logzioAppender); hierarchy.Root.Level = Level.All; hierarchy.Configured = true; ``` -###### Parameters +Customize your code by adding the following: + + +| Why? | What? | +|------|-------| +| Enable proxy routing | `logzioAppender.AddProxyAddress("http://your.proxy.com:port");` | +| Enable gzip compression | `logzioAppender.AddGzip(true);` , `logzioAppender.ActivateOptions();` , `logzioAppender.JsonKeysCamelCase(false);` , `logzioAppender.AddTraceContext(false);` , `logzioAppender.UseStaticHttpClient(false);` | + + +### Parameters | Parameter | Description | Default/Required | |---|---|---| @@ -809,9 +731,8 @@ hierarchy.Configured = true; | addTraceContext | If want to add trace context to each log, set this field to true. | `false` | | useStaticHttpClient | If want to use the same static HTTP/s client for sending logs, set this field to true. | `false` | -###### Code sample -###### ASP.NET Core +### ASP.NET Core Update Startup.cs file in Configure method to include the Log4Net middleware as in the code below. @@ -860,7 +781,7 @@ In the Controller methods: } ``` -###### .NET Core Desktop Application +### .NET Core Desktop Application ```csharp using System.IO; @@ -894,10 +815,9 @@ In the Controller methods: ``` -##### Custom fields +### Custom fields -You can add static keys and values to all log messages. -These custom fields must be children of ``, as shown in the code below. +Add static keys and values to all log messages by including these custom fields under ``, as shown: ```xml @@ -912,7 +832,7 @@ These custom fields must be children of ``, as shown in the code below ``` -#### Extending the appender +### Extending the appender To change or add fields to your logs, inherit the appender and override the `ExtendValues` method. @@ -927,28 +847,22 @@ public class MyAppLogzioAppender : LogzioAppender } ``` -Change your configuration to use your new appender name. -For the example above, you'd use `MyAppLogzioAppender`. +Update your configuration to use the new appender name, such as `MyAppLogzioAppender`. -##### Add trace context +### Add trace context :::note The Trace Context feature does not support .NET Standard 1.3. ::: -If you’re sending traces with OpenTelemetry instrumentation (auto or manual), you can correlate your logs with the trace context. In this way, your logs will have traces data in it: `span id` and `trace id`. To enable this feature, set `addTraceContext="true"` in your configuration file or `AddTraceContext = true` in your code. For example: +To correlate logs with trace context in OpenTelemetry (auto or manual), set `addTraceContext="true"` in your configuration file or `AddTraceContext = true` in your code. This adds `span id` and `trace id` to your logs. For example: + ```csharp var hierarchy = (Hierarchy)LogManager.GetRepository(); var logzioAppender = new LogzioAppender(); logzioAppender.AddToken("<>"); logzioAppender.AddListenerUrl("<>"); -// Uncomment and edit this line to enable proxy routing: -// logzioAppender.AddProxyAddress("http://your.proxy.com:port"); -// Uncomment these lines to enable gzip compression -// logzioAppender.AddGzip(true); -// logzioAppender.ActivateOptions(); -// logzioAppender.JsonKeysCamelCase(false); logzioAppender.AddTraceContext(true); logzioAppender.ActivateOptions(); hierarchy.Root.AddAppender(logzioAppender); @@ -956,11 +870,24 @@ hierarchy.Root.Level = Level.All; hierarchy.Configured = true; ``` -##### Serverless platforms -If you’re using a serverless function, you’ll need to call the appender's flush method at the end of the function run to make sure the logs are sent before the function finishes its execution. You’ll also need to create a static appender in the Startup.cs file so each invocation will use the same appender. The appender should have the `UseStaticHttpClient` flag set to `true`. +Customize your code by adding the following: -###### Azure serverless function code sample +| Why? | What? | +|------|-------| +| Enable proxy routing | `logzioAppender.AddProxyAddress("http://your.proxy.com:port");` | +| Enable sending logs in JSON format | `logzioAppender.ParseJsonMessage(true);` | +| Enable gzip compression | `logzioAppender.AddGzip(true);` , `logzioAppender.ActivateOptions();` , `logzioAppender.JsonKeysCamelCase(false);` | + + + +### Serverless platforms + +For serverless functions, call the appender's flush method at the end to ensure logs are sent before execution finishes. Create a static appender in Startup.cs with `UseStaticHttpClient` set to `true` for consistent invocations. + + +#### Azure serverless function code sample + *Startup.cs* ```csharp @@ -1043,7 +970,7 @@ This integration is based on [Serilog.Sinks.Logz.Io repository](https://github.c [Project's GitHub repo](https://github.com/logzio/logzio-dotnet/) ::: -#### Install the Logz.io Serilog sink +### Install the Logz.io Serilog sink Install `Serilog.Sinks.Logz.Io` using Nuget or by running the following command in the Package Manager Console: @@ -1227,15 +1154,18 @@ Replace `<` with the type that you want to assign to your logs. You will u -Helm is a tool for managing packages of preconfigured Kubernetes resources using Charts. This integration allows you to collect and ship diagnostic metrics of your .NET application in Kubernetes to Logz.io, using dotnet-monitor and OpenTelemetry. logzio-dotnet-monitor runs as a sidecar in the same pod as the .NET application. + +Helm manages preconfigured Kubernetes resources. This integration collects and ships .NET application metrics from Kubernetes to Logz.io using dotnet-monitor and OpenTelemetry. logzio-dotnet-monitor runs as a sidecar in the same pod as the .NET application. + + :::note [Project's GitHub repo](https://github.com/logzio/logzio-helm/) ::: -###### Sending metrics from nodes with taints +### Send metrics from nodes with taints -If you want to ship metrics from any of the nodes that have a taint, make sure that the taint key values are listed in your in your daemonset/deployment configuration as follows: +Ensure that the taint key values are listed in your in your daemonset/deployment configuration as follows: ```yaml tolerations: @@ -1251,19 +1181,13 @@ To determine if a node uses taints as well as to display the taint keys, run: kubectl get nodes -o json | jq ".items[]|{name:.metadata.name, taints:.spec.taints}" ``` -:::node +:::note You need to use `Helm` client with version `v3.9.0` or above. ::: -#### Standard configuration - - - -##### Select the namespace +### Standard configuration -This integration will be deployed in the namespace you set in values.yaml. The default namespace for this integration is logzio-dotnet-monitor. - -To select a different namespace, run: +The integrations uses the namespace specified in values.yaml. The default namespace is `logzio-dotnet-monitor`. To select a different namespace, run: ```shell kubectl create namespace <> @@ -1272,7 +1196,7 @@ kubectl create namespace <> * Replace `<>` with the name of your namespace. -##### Add `logzio-helm` repo +#### Add `logzio-helm` repo ```shell helm repo add logzio-helm https://logzio.github.io/logzio-helm @@ -1280,7 +1204,7 @@ helm repo update ``` -###### Run the Helm deployment code +#### Run the Helm deployment code ```shell helm install -n <> \ @@ -1301,11 +1225,11 @@ volumeMounts: ``` -##### Check Logz.io for your metrics +#### View metrics in Logz.io -Give your metrics some time to get from your system to ours, then open [Logz.io](https://app.logz.io/). You can search for your metrics in Logz.io by searching `{job="dotnet-monitor-collector"}` +Give your metrics some time to process, then open [Logz.io](https://app.logz.io/). Find your metrics in Logz.io by searching `{job="dotnet-monitor-collector"}`. -{@include: ../../_include/metric-shipping/custom-dashboard.html} Install the pre-built dashboard to enhance the observability of your metrics. +{@include: ../../_include/metric-shipping/custom-dashboard.html} Install the pre-built dashboard to enhance metrics observability. @@ -1313,12 +1237,9 @@ Give your metrics some time to get from your system to ours, then open [Logz.io] -#### Customizing Helm chart parameters - +### Customizing Helm chart parameters -##### Configure customization options - -You can use the following options to update the Helm chart parameters: +Use the following to update the Helm chart parameters: * Specify parameters using the `--set key=value[,key=value]` argument to `helm install` or `--set-file key=value[,key=value]` @@ -1326,7 +1247,7 @@ You can use the following options to update the Helm chart parameters: * Override default values with your own `my_values.yaml` and apply it in the `helm install` command. -##### Customization parameters +#### Customization parameters | Parameter | Description | Default | |---|---|---| @@ -1354,12 +1275,12 @@ You can use the following options to update the Helm chart parameters: | `configMap.opentelemetry` | The opentelemetry configuration. | See [values.yaml](https://github.com/logzio/logzio-helm/blob/master/charts/dotnet-monitor/values.yaml). | -* To get additional information about dotnet-monitor configuration, click [here](https://github.com/dotnet/dotnet-monitor/blob/main/documentation/api/metrics.md). -* To see well-known providers and their counters, click [here](https://docs.microsoft.com/en-us/dotnet/core/diagnostics/available-counters). +* View additional information about [dotnet-monitor configuration](https://github.com/dotnet/dotnet-monitor/blob/main/documentation/api/metrics.md). +* See [well-known providers and their counters](https://docs.microsoft.com/en-us/dotnet/core/diagnostics/available-counters). #### Uninstalling the Chart -The Uninstall command is used to remove all the Kubernetes components associated with the chart and to delete the release. +Remove all Kubernetes components associated with the chart and to delete the release. To uninstall the `dotnet-monitor-collector` deployment, use the following command: @@ -1367,11 +1288,14 @@ To uninstall the `dotnet-monitor-collector` deployment, use the following comman helm uninstall dotnet-monitor-collector ``` -For troubleshooting this solution, see our [.NET with helm troubleshooting guide](https://docs.logz.io/docs/user-guide/infrastructure-monitoring/troubleshooting/dotnet-helm-troubleshooting/). +See [.NET with helm troubleshooting guide](https://docs.logz.io/docs/user-guide/infrastructure-monitoring/troubleshooting/dotnet-helm-troubleshooting/) for additional info. + -You can send custom metrics from your .NET Core application using Logzio.App.Metrics. Logzio.App.Metrics is an open-source and cross-platform .NET library used to record metrics within an application and forward the data to Logz.io. +Use Logzio.App.Metrics to send custom metrics from your .NET Core application to Logz.io. This open-source library records and forwards metrics data efficiently. + + These instructions show you how to: @@ -1384,32 +1308,25 @@ These instructions show you how to: [Project's GitHub repo](https://github.com/logzio/logzio-app-metrics/) ::: -#### Send custom metrics to Logz.io with a hardcoded Logz.io exporter +### Send custom metrics to Logz.io with a hardcoded Logz.io exporter **Before you begin, you'll need**: -* An application in .NET Core 3.1 or higher +* .NET Core 3.1 or higher * An active Logz.io account - - -##### Install the App.Metrics.Logzio package - - -Install the App.Metrics.Logzio package from the Package Manager Console: +1. Install the App.Metrics.Logzio package from the Package Manager Console: ```shell Install-Package Logzio.App.Metrics ``` -If you prefer to install the library manually, download the latest version from the NuGet Gallery. +To install the library manually, download the latest version from the **NuGet** Gallery. -##### Create MetricsBuilder - -To create MetricsBuilder, copy and paste the following code into the function of the code that you need to export metrics from: +2. Create MetricsBuilder by copying and pasting the following code into the function that you need to export metrics from: ```csharp var metrics = new MetricsBuilder() @@ -1422,7 +1339,7 @@ var metrics = new MetricsBuilder() {@include: ../../_include/metric-shipping/replace-metrics-token.html} -##### Create Scheduler +3. Create Scheduler To create the Scheduler, copy and paste the following code into the same function of the code as the MetricsBuilder: @@ -1433,65 +1350,34 @@ var scheduler = new AppMetricsTaskScheduler( scheduler.Start(); ``` -##### Add required metrics to your code +4. Add required metrics to your code -You can send the following metrics from your code: +You must have at least one of the following metrics in your code to use the `Logzio.App.Metrics`: -* [Apdex (Application Performance Index)](https://www.app-metrics.io/getting-started/metric-types/apdex/) -* [Counter](https://www.app-metrics.io/getting-started/metric-types/counters/) -* [Gauge](https://www.app-metrics.io/getting-started/metric-types/gauges/) -* [Histogram](https://www.app-metrics.io/getting-started/metric-types/histograms/) -* [Meter](https://www.app-metrics.io/getting-started/metric-types/meters/) -* [Timer](https://www.app-metrics.io/getting-started/metric-types/timers/) +* [Apdex (Application Performance Index)](https://www.app-metrics.io/getting-started/metric-types/apdex/) - monitor end-user satisfaction. +* [Counter](https://www.app-metrics.io/getting-started/metric-types/counters/) - Tracks event counts. +* [Gauge](https://www.app-metrics.io/getting-started/metric-types/gauges/) - Measures instantaneous values. +* [Histogram](https://www.app-metrics.io/getting-started/metric-types/histograms/) - Analyzes value distributions. +* [Meter](https://www.app-metrics.io/getting-started/metric-types/meters/) - Measures event rates. +* [Timer](https://www.app-metrics.io/getting-started/metric-types/timers/) - Combines histogram and meter for event duration and rate. -You must have at least one of the above metrics in your code to use the Logzio.App.Metrics. -For example, to add a counter metric to your code, copy and paste the following code block into the same function of the code as the MetricsBuilder and Scheduler. +For example, to add a **counter** metric to your code, copy and paste the following code block into the same function of the code as the MetricsBuilder and Scheduler. ```csharp var counter = new CounterOptions {Name = "my_counter", Tags = new MetricTags("test", "my_test")}; metrics.Measure.Counter.Increment(counter); ``` -In the example above, the metric has a name ("my_counter"), a tag key ("test") and a tag value ("my_test"): These parameters are used to query data from this metric in your Logz.io dashboard. - - -###### Apdex - -Apdex (Application Performance Index) allows you to monitor end-user satisfaction. For more information on this metric, refer to [App Metrics documentation](https://www.app-metrics.io/getting-started/metric-types/apdex/). - -###### Counter +The metric has a name ("my_counter"), a tag key ("test") and a tag value ("my_test"). These parameters are used to query data from this metric in your Logz.io dashboard. -Counters are one of the most basic supported metrics types: They enable you to track how many times something has happened. For more information on this metric, refer to [App Metrics documentation](https://www.app-metrics.io/getting-started/metric-types/counters/). -###### Gauge +5. Running and Monitoring -A Gauge is an action that returns an instantaneous measurement for a value that abitrarily increases and decreases (for example, CPU usage). For more information on this metric, refer to [App Metrics documentation](https://www.app-metrics.io/getting-started/metric-types/gauges/). +Run your application to start sending metrics to Logz.io. Give the data some time to process, and open the [Metrics dashboard](https://app.logz.io/#/dashboard/metrics/discover?) to view it. -###### Histogram +#### Filter the metrics by labels -Histograms measure the statistical distribution of a set of values. For more information on this metric, refer to [App Metrics documentation](https://www.app-metrics.io/getting-started/metric-types/histograms/). - -###### Meter - -A Meter measures the rate at which an event occurs, along with the total count of the occurences. For more information on this metric, refer to [App Metrics documentation](https://www.app-metrics.io/getting-started/metric-types/meters/). - -###### Timer - -A Timer is a combination of a histogram and a meter, which enables you to measure the duration of a type of event, the rate of its occurrence, and provide duration statistics. For more information on this metric, refer to [App Metrics documentation](https://www.app-metrics.io/getting-started/metric-types/timers/). - - -##### Run your application - -Run your application to start sending metrics to Logz.io. - - -##### Check Logz.io for your events - -Give your events some time to get from your system to ours, and then open the [Metrics dashboard](https://app.logz.io/#/dashboard/metrics/discover?). - -##### Filter the metrics by labels - -Once the metrics are in Logz.io, you can query the required metrics using labels. Each metric has the following labels: +Once the metrics are in Logz.io, you can query them using labels. Each metric includes the following labels: | App Metrics parameter name | Description | Logz.io parameter name | |---|---|---| @@ -1500,9 +1386,9 @@ Once the metrics are in Logz.io, you can query the required metrics using labels | Context | The context which the metric belong to. By default it is `Application`. | `context` | | Tags | Pairs of key and value of the metric. It is not required to have tags for a metric.| Tags keys | -Some of the metrics have custom labels, as described below. +Some of the metrics have custom labels: -###### Meter +##### Meter | App Metrics label name | Logz.io label name | |---|---| @@ -1518,7 +1404,7 @@ Some of the metrics have custom labels, as described below. Replace [[your_meter_name]] with the name that you assigned to the meter metric. -###### Histogram +##### Histogram | App Metrics label name | Logz.io label name | |---|---| @@ -1545,7 +1431,7 @@ Replace [[your_meter_name]] with the name that you assigned to the meter metric. Replace [[your_histogram_name]] with the name that you assigned to the histogram metric. -###### Timer +##### Timer | App Metrics label name | Logz.io label name | |---|---| @@ -1574,7 +1460,7 @@ Replace [[your_histogram_name]] with the name that you assigned to the histogram Replace [[your_timer_name]] with the name that you assigned to the timer metric. -###### Apdex +##### Apdex | App Metrics parameter name | Logz.io parameter name | |---|---| @@ -1587,37 +1473,29 @@ Replace [[your_timer_name]] with the name that you assigned to the timer metric. Replace [[your_apdex_name]] with the name that you assigned to the timer metric. - -For troubleshooting this solution, see our [.NET core troubleshooting guide](https://docs.logz.io/docs/user-guide/infrastructure-monitoring/troubleshooting/dotnet-core-troubleshooting/). - +See our [.NET core troubleshooting guide](https://docs.logz.io/docs/user-guide/infrastructure-monitoring/troubleshooting/dotnet-core-troubleshooting/) for additional assistance. -#### Send custom metrics to Logz.io with a Logz.io exporter defined by a config file +### Configuring Logz.io exporter via config file for custom metrics + **Before you begin, you'll need**: -* An application in .NET Core 3.1 or higher +* .NET Core 3.1 or higher * An active Logz.io account - - -##### Install the App.Metrics.Logzio package - - -Install the App.Metrics.Logzio package from the Package Manager Console: +1. Install the App.Metrics.Logzio package from the Package Manager Console: ```csharp Install-Package Logzio.App.Metrics ``` -If you prefer to install the library manually, download the latest version from NuGet Gallery. - +If you prefer to install the library manually, download the latest version from **NuGet** Gallery. -##### Create MetricsBuilder -To create MetricsBuilder, copy and paste the following code into the function of the code that you need to export metrics from: +2. Create MetricsBuilder by copying and pasting the following code into the function of the code that you need to export metrics from: ```csharp var metrics = new MetricsBuilder() @@ -1643,7 +1521,7 @@ Add the following code to the configuration file: {@include: ../../_include/metric-shipping/replace-metrics-token.html} -##### Create Scheduler +3. Create Scheduler To create a Scheduler, copy and paste the following code into the same function of the code as the MetricsBuilder: @@ -1654,63 +1532,33 @@ var scheduler = new AppMetricsTaskScheduler( scheduler.Start(); ``` -##### Add the required metrics to your code +4. Add required metrics to your code -You can send the following metrics from your code: +You must have at least one of the following metrics in your code to use the `Logzio.App.Metrics`: -* [Apdex (Application Performance Index)](https://www.app-metrics.io/getting-started/metric-types/apdex/) -* [Counter](https://www.app-metrics.io/getting-started/metric-types/counters/) -* [Gauge](https://www.app-metrics.io/getting-started/metric-types/gauges/) -* [Histogram](https://www.app-metrics.io/getting-started/metric-types/histograms/) -* [Meter](https://www.app-metrics.io/getting-started/metric-types/meters/) -* [Timer](https://www.app-metrics.io/getting-started/metric-types/timers/) +* [Apdex (Application Performance Index)](https://www.app-metrics.io/getting-started/metric-types/apdex/) - monitor end-user satisfaction. +* [Counter](https://www.app-metrics.io/getting-started/metric-types/counters/) - Tracks event counts. +* [Gauge](https://www.app-metrics.io/getting-started/metric-types/gauges/) - Measures instantaneous values. +* [Histogram](https://www.app-metrics.io/getting-started/metric-types/histograms/) - Analyzes value distributions. +* [Meter](https://www.app-metrics.io/getting-started/metric-types/meters/) - Measures event rates. +* [Timer](https://www.app-metrics.io/getting-started/metric-types/timers/) - Combines histogram and meter for event duration and rate. -You must have at least one of the above metrics in your code to use the Logzio.App.Metrics. For example, to add a counter metric to your code, copy and paste the following code block into the same function of the code as the MetricsBuilder and Scheduler: +For example, to add a counter metric to your code, copy and paste the following code block into the same function of the code as the MetricsBuilder and Scheduler: ```csharp var counter = new CounterOptions {Name = "my_counter", Tags = new MetricTags("test", "my_test")}; metrics.Measure.Counter.Increment(counter); ``` -In the example above, the metric has a name ("my_counter"), a tag key ("test") and a tag value ("my_test"). These parameters are used to query data from this metric in your Logz.io dashboard. - - -###### Apdex +The metric has a name ("my_counter"), a tag key ("test") and a tag value ("my_test"). These parameters are used to query data from this metric in your Logz.io dashboard. -Apdex (Application Performance Index) allows you to monitor end-user satisfaction. For more information on this metric, refer to [App Metrics documentation](https://www.app-metrics.io/getting-started/metric-types/apdex/). -###### Counter +5. Running and Monitoring -Counters are one of the most basic supported metrics types: They enable you to track how many times something has happened. For more information on this metric, refer to [App Metrics documentation](https://www.app-metrics.io/getting-started/metric-types/counters/). -###### Gauge - -A Gauge is an action that returns an instantaneous measurement for a value that abitrarily increases and decreases (for example, CPU usage). For more information on this metric, refer to [App Metrics documentation](https://www.app-metrics.io/getting-started/metric-types/gauges/). - -###### Histogram - -Histograms measure the statistical distribution of a set of values. For more information on this metric, refer to [App Metrics documentation](https://www.app-metrics.io/getting-started/metric-types/histograms/). - -###### Meter - -A Meter measures the rate at which an event occurs, along with the total count of the occurences. For more information on this metric, refer to [App Metrics documentation](https://www.app-metrics.io/getting-started/metric-types/meters/). - -###### Timer - -A Timer is a combination of a histogram and a meter, which enables you to measure the duration of a type of event, the rate of its occurrence, and provide duration statistics. For more information on this metric, refer to [App Metrics documentation](https://www.app-metrics.io/getting-started/metric-types/timers/). - +Run your application to start sending metrics to Logz.io. Give the data some time to process, and open the [Metrics dashboard](https://app.logz.io/#/dashboard/metrics/discover?) to view it. - -##### Run your application - -Run your application to start sending metrics to Logz.io. - - -##### Check Logz.io for your events - -Give your events some time to get from your system to ours, and then open [Metrics dashboard](https://app.logz.io/#/dashboard/metrics/discover?). - -##### Filter the metrics by labels +#### Filter the metrics by labels Once the metrics are in Logz.io, you can query the required metrics using labels. Each metric has the following labels: @@ -1723,7 +1571,7 @@ Once the metrics are in Logz.io, you can query the required metrics using labels Some of the metrics have custom labels as described below. -###### Meter +##### Meter | App Metrics label name | Logz.io label name | |---|---| @@ -1739,7 +1587,7 @@ Some of the metrics have custom labels as described below. Replace [[your_meter_name]] with the name that you assigned to the meter metric. -###### Histogram +##### Histogram | App Metrics label name | Logz.io label name | |---|---| @@ -1766,7 +1614,7 @@ Replace [[your_meter_name]] with the name that you assigned to the meter metric. Replace [[your_histogram_name]] with the name that you assigned to the histogram metric. -###### Timer +##### Timer | App Metrics label name | Logz.io label name | |---|---| @@ -1795,7 +1643,7 @@ Replace [[your_histogram_name]] with the name that you assigned to the histogram Replace [[your_timer_name]] with the name that you assigned to the timer metric. -###### Apdex +##### Apdex | App Metrics parameter name | Logz.io parameter name | |---|---| @@ -1815,7 +1663,9 @@ For troubleshooting this solution, see our [.NET core troubleshooting guide](htt #### Export using ToLogzioHttp exporter -You can configure MetricsBuilder to use ToLogzioHttp exporter, which allows you to export metrics via HTTP using additional export settings. To enable this exporter, add the following code block to define the MetricsBuilder: +Configure MetricsBuilder to use the ToLogzioHttp exporter to export metrics via HTTP with additional settings. Add the following code block to MetricsBuilder: + + ```csharp var metrics = new MetricsBuilder() @@ -1842,7 +1692,7 @@ var metrics = new MetricsBuilder() #### .NET Core runtime metrics -The runtime metrics are additional parameters that will be sent from your code. These parameters include: +The runtime metrics are additional parameters that will be sent from your code, including: * Garbage collection frequencies and timings by generation/type, pause timings and GC CPU consumption ratio. * Heap size by generation. @@ -1892,7 +1742,7 @@ using (var stream = new MemoryStream()) } ``` -For troubleshooting this solution, see our [.NET core troubleshooting guide](https://docs.logz.io/docs/user-guide/infrastructure-monitoring/troubleshooting/dotnet-core-troubleshooting/). +See our [.NET core troubleshooting guide](https://docs.logz.io/docs/user-guide/infrastructure-monitoring/troubleshooting/dotnet-core-troubleshooting/) for additional assistance. @@ -1904,8 +1754,6 @@ For troubleshooting this solution, see our [.NET core troubleshooting guide](htt Deploy this integration to enable automatic instrumentation of your ASP.NET Core application using OpenTelemetry. -### Architecture overview - This integration includes: * Installing the OpenTelemetry ASP.NET Core instrumentation packages on your application host @@ -1915,15 +1763,15 @@ This integration includes: On deployment, the ASP.NET Core instrumentation automatically captures spans from your application and forwards them to the collector, which exports the data to your Logz.io account. - -### Setup auto-instrumentation for your locally hosted ASP.NET Core application and send traces to Logz.io +### Auto-instrument ASP.NET Core and send Traces to Logz.io **Before you begin, you'll need**: * An ASP.NET Core application without instrumentation * An active account with Logz.io * Port `4317` available on your host system -* A name defined for your tracing service. You will need it to identify the traces in Logz.io. +* Defined tracing service name to identify the traces in Logz.io. + :::note This integration uses OpenTelemetry Collector Contrib, not the OpenTelemetry Collector Core. @@ -1934,10 +1782,10 @@ This integration uses OpenTelemetry Collector Contrib, not the OpenTelemetry Col #### Download and configure OpenTelemetry collector -Create a dedicated directory on the host of your ASP.NET Core application and download the [OpenTelemetry collector](https://github.com/open-telemetry/opentelemetry-collector/releases/tag/v0.60.0) that is relevant to the operating system of your host. +Create a dedicated directory on your ASP.NET Core application host. Download the [OpenTelemetry collector](https://github.com/open-telemetry/opentelemetry-collector/releases/tag/v0.60.0) relevant to your operating system. +After downloading, create a file named `config.yaml` in this directory with the following parameters: -After downloading the collector, create a configuration file `config.yaml` with the following parameters: {@include: ../../_include/tracing-shipping/collector-config.md} @@ -1949,20 +1797,15 @@ After downloading the collector, create a configuration file `config.yaml` with {@include: ../../_include/tracing-shipping/collector-run.md} -#### Run the application - -Run the application to generate traces. +#### Run and monitor +Run the application to generate traces. Give your traces some time to get from your system to ours, and then open [Tracing](https://app.logz.io/#/dashboard/jaeger). -#### Check Logz.io for your traces - -Give your traces some time to get from your system to ours, and then open [Tracing](https://app.logz.io/#/dashboard/jaeger). +### Auto-instrument ASP.NET Core with Docker and send Traces to Logz.io -### Setup auto-instrumentation for your ASP.NET Core application using Docker and send traces to Logz.io - -This integration enables you to auto-instrument your ASP.NET Core application and run a containerized OpenTelemetry collector to send your traces to Logz.io. If your application also runs in a Docker container, make sure that both the application and collector containers are on the same network. +This integration auto-instruments your ASP.NET Core application and uses a containerized OpenTelemetry collector to send traces to Logz.io. If your application also runs in a Docker container, ensure that both application and collector containers are on the same network. **Before you begin, you'll need**: @@ -1978,7 +1821,7 @@ This integration enables you to auto-instrument your ASP.NET Core application an {@include: ../../_include/tracing-shipping/replace-tracing-token.html} -#### Run the application +#### Run and monitor {@include: ../../_include/tracing-shipping/collector-run-note.md} @@ -1986,18 +1829,14 @@ This integration enables you to auto-instrument your ASP.NET Core application an Run the application to generate traces. - -#### Check Logz.io for your traces - Give your traces some time to get from your system to ours, and then open [Tracing](https://app.logz.io/#/dashboard/jaeger). -Deploy this integration to enable automatic instrumentation of your ASP.NET Core application using OpenTelemetry. +Enable automatic instrumentation of your ASP.NET Core application using OpenTelemetry. -### Architecture overview This integration includes: @@ -2008,15 +1847,14 @@ This integration includes: On deployment, the ASP.NET Core instrumentation automatically captures spans from your application and forwards them to the collector, which exports the data to your Logz.io account. - -### Setup auto-instrumentation for your locally hosted ASP.NET Core application and send traces to Logz.io +### Auto-instrument ASP.NET Core and send Traces to Logz.io **Before you begin, you'll need**: * An ASP.NET Core application without instrumentation * An active account with Logz.io * Port `4317` available on your host system -* A name defined for your tracing service. You will need it to identify the traces in Logz.io. +* Defined tracing service name to identify the traces in Logz.io. :::note This integration uses OpenTelemetry Collector Contrib, not the OpenTelemetry Collector Core. @@ -2026,37 +1864,36 @@ This integration uses OpenTelemetry Collector Contrib, not the OpenTelemetry Col {@include: ../../_include/tracing-shipping/dotnet-steps.md} -##### Download and configure OpenTelemetry collector +#### Download and configure OpenTelemetry collector -Create a dedicated directory on the host of your ASP.NET Core application and download the [OpenTelemetry collector](https://github.com/open-telemetry/opentelemetry-collector/releases/tag/v0.60.0) that is relevant to the operating system of your host. +Create a dedicated directory on your ASP.NET Core application host. Download the [OpenTelemetry collector](https://github.com/open-telemetry/opentelemetry-collector/releases/tag/v0.60.0) relevant to your operating system. -After downloading the collector, create a configuration file `config.yaml` with the following parameters: +After downloading, create a configuration file `config.yaml` with the following parameters: {@include: ../../_include/tracing-shipping/collector-config.md} {@include: ../../_include/tracing-shipping/replace-tracing-token.html} -##### Start the collector +#### Start the collector {@include: ../../_include/tracing-shipping/collector-run.md} -##### Run the application +#### Run and monitor Run the application to generate traces. +Give your traces some time to get from your system to ours, and then open [Tracing](https://app.logz.io/#/dashboard/jaeger). -##### Check Logz.io for your traces -Give your traces some time to get from your system to ours, and then open [Tracing](https://app.logz.io/#/dashboard/jaeger). +### Auto-instrument ASP.NET Core with Docker and send Traces to Logz.io +This integration auto-instruments your ASP.NET Core application and uses a containerized OpenTelemetry collector to send traces to Logz.io. If your application also runs in a Docker container, ensure that both application and collector containers are on the same network. -### Setup auto-instrumentation for your ASP.NET Core application using Docker and send traces to Logz.io -This integration enables you to auto-instrument your ASP.NET Core application and run a containerized OpenTelemetry collector to send your traces to Logz.io. If your application also runs in a Docker container, make sure that both the application and collector containers are on the same network. **Before you begin, you'll need**: @@ -2074,7 +1911,7 @@ This integration enables you to auto-instrument your ASP.NET Core application an {@include: ../../_include/tracing-shipping/replace-tracing-token.html} -##### Run the application +#### Run and monitor {@include: ../../_include/tracing-shipping/collector-run-note.md} @@ -2083,17 +1920,15 @@ This integration enables you to auto-instrument your ASP.NET Core application an Run the application to generate traces. -##### Check Logz.io for your traces - Give your traces some time to get from your system to ours, and then open [Tracing](https://app.logz.io/#/dashboard/jaeger). - + #### OpenTelemetry instrumentation For troubleshooting the OpenTelemetry instrumentation, see our [OpenTelemetry troubleshooting guide](https://docs.logz.io/docs/user-guide/distributed-tracing/troubleshooting/otel-troubleshooting/). - - + +