diff --git a/docs/shipping/Code/dotnet.md b/docs/shipping/Code/dotnet.md index 7302562f..6ae1160e 100644 --- a/docs/shipping/Code/dotnet.md +++ b/docs/shipping/Code/dotnet.md @@ -1185,93 +1185,19 @@ Replace `<>` with the log type to identify these logs in Logz.io. - +This integration uses the OpenTelemetry logging exporter to send logs to Logz.io via the OpenTelemetry Protocol (OTLP) listener. ### Prerequisites -Ensure that you have the following installed locally: - [.NET SDK](https://dotnet.microsoft.com/download/dotnet) 6+ +- An ASP.NET Core application +- An active account with Logz.io -### Example Application -The following example uses a basic [Minimal API with ASP.NET Core](https://learn.microsoft.com/en-us/aspnet/core/tutorials/min-web-api?view=aspnetcore-8.0&tabs=visual-studio) application. - -### Create and launch an HTTP Server - -1. Set up an environment in a new directory called `dotnet-simple`. Within that directory, execute following command: - -```bash -dotnet new web -``` -2. In the same directory, replace the content of `Program.cs` with the following code: - -```csharp -using System.Globalization; - -using Microsoft.AspNetCore.Mvc; - -var builder = WebApplication.CreateBuilder(args); -var app = builder.Build(); - -string HandleRollDice([FromServices]ILogger logger, string? player) -{ - var result = RollDice(); - - if (string.IsNullOrEmpty(player)) - { - logger.LogInformation("Anonymous player is rolling the dice: {result}", result); - } - else - { - logger.LogInformation("{player} is rolling the dice: {result}", player, result); - } - - return result.ToString(CultureInfo.InvariantCulture); -} - -int RollDice() -{ - return Random.Shared.Next(1, 7); -} - -app.MapGet("/rolldice/{player?}", HandleRollDice); - -app.Run(); - -``` - -3. In the `Properties` subdirectory, replace the content of `launchSettings.json` with the following: - -``` -{ - "$schema": "http://json.schemastore.org/launchsettings.json", - "profiles": { - "http": { - "commandName": "Project", - "dotnetRunMessages": true, - "launchBrowser": true, - "applicationUrl": "http://localhost:8080", - "environmentVariables": { - "ASPNETCORE_ENVIRONMENT": "Development" - } - } - } -} - -``` - -4. Build and run the application with the following command, then open http://localhost:8080/rolldice in your web browser to ensure it is working. - -``` -dotnet build -dotnet run -``` -### Instrumentation - -Next, we'll configure the OpenTelemetry logging exporter to send logs to Logz.io via the OTLP listener. - -This configuration is designed to send logs to your Logz.io account via the OpenTelemetry Protocol (OTLP) listener. You need to specify your Logz.io token and configure the listener endpoint to match the correct region. By default, the endpoint is `https://otlp-listener.logz.io/v1/logs`, but it should be adjusted based on your region. You can find more details on the regional configurations in the [Hosting Regions Documentation](https://docs.logz.io/docs/user-guide/admin/hosting-regions/account-region/#available-regions). - +:::note +If you need an example aplication to test this integration, please refer to our [.NET OpenTelemetry repository](https://github.com/logzio/opentelemetry-examples/tree/main/dotnet/logs). +::: +### Configure the instrumentation 1. Add the packages @@ -1281,15 +1207,7 @@ This configuration is designed to send logs to your Logz.io account via the Open dotnet add package OpenTelemetry.Exporter.OpenTelemetryProtocol ``` -2. Setup the OpenTelemetry code in `Program.cs`, by replacing the following lines: - - ```csharp - var builder = WebApplication.CreateBuilder(args); - var app = builder.Build(); - ``` - - With: - +2. Setup the OpenTelemetry code in `Program.cs`, by adding the following lines: ```csharp using OpenTelemetry; @@ -1297,7 +1215,7 @@ This configuration is designed to send logs to your Logz.io account via the Open using OpenTelemetry.Resources; using OpenTelemetry.Exporter; var builder = WebApplication.CreateBuilder(args); - const string serviceName = "roll-dice"; + const string serviceName = "YOUR-SERVICE-NAME"; const string logzioEndpoint = "https://otlp-listener.logz.io/v1/logs"; const string logzioToken = ""; builder.Logging.AddOpenTelemetry(options => @@ -1315,25 +1233,20 @@ This configuration is designed to send logs to your Logz.io account via the Open }); var app = builder.Build(); ``` + Replace `YOUR-SERVICE-NAME` with the required service name. {@include: ../../_include/log-shipping/log-shipping-token.md} - Update the `listener.logz.io` parth in `https://otlp-listener.logz.io/v1/logs` with the URL for [your hosting region](https://docs.logz.io/docs/user-guide/admin/hosting-regions/account-region). -3. Run your **application** once again: + Update the `listener.logz.io` part in `https://otlp-listener.logz.io/v1/logs` with the URL for [your hosting region](https://docs.logz.io/docs/user-guide/admin/hosting-regions/account-region). - ```bash - dotnet run - ``` +3. Run your application. -4. From another terminal, send a request using curl: +### Check Logz.io for your logs - ```bash - curl localhost:8080/rolldice - ``` -5. After about 30 sec, stop the server process. +Allow some time for data ingestion, then open [Open Search Dashboards](https://app.logz.io/#/dashboard/osd). -At this point, you should see log output from the server and client on your Logz.io account. +Encounter an issue? See our [log shipping troubleshooting](https://docs.logz.io/docs/user-guide/log-management/troubleshooting/log-shipping-troubleshooting/) guide. diff --git a/docs/shipping/Code/go.md b/docs/shipping/Code/go.md index e27dd84b..79484284 100644 --- a/docs/shipping/Code/go.md +++ b/docs/shipping/Code/go.md @@ -392,106 +392,17 @@ Install the pre-built dashboard to enhance the observability of your metrics. +This integration uses the OpenTelemetry logging exporter to send logs to Logz.io via the OpenTelemetry Protocol (OTLP) listener. + ### Prerequisites -Ensure that you have the following installed locally: - -* Go 1.21 or newer - -### Example Application - -The following example uses a basic net/http application in Go. This guide will help you set up the environment, create the application, and configure it to send logs to Logz.io using OpenTelemetry. - - - -### Create and launch an HTTP Server - -1. Create a new directory for your Go project and initialize the Go module: - - ```bash - mkdir otel-getting-started - cd otel-getting-started - go mod init otel-getting-started - ``` +- Go 1.21 or newer -2. Create and activate a virtual environment: - - ```bash - mkdir otel-getting-started - cd otel-getting-started - python3 -m venv venv - source venv/bin/activate - ``` - -3. Create a file named main.go and add the following code to set up a simple HTTP server: - - ```go - package main - - import ( - "io" - "math/rand" - "net/http" - "strconv" - "strings" - - "go.opentelemetry.io/otel/attribute" - "go.opentelemetry.io/otel/metric" - ) - - func rolldice(w http.ResponseWriter, r *http.Request) { - ctx, span := tracer.Start(r.Context(), "roll") - defer span.End() - - // Extract the player's name from a query parameter or other parts of the request - path := r.URL.Path - segments := strings.Split(path, "/") - playerName := "Anonymous" // Default name if not specified - - if len(segments) > 2 && segments[2] != "" { - playerName = segments[2] - } - - roll := 1 + rand.Intn(6) - - if playerName == "Anonymous" { - logger.InfoContext(ctx, "Anonymous player is rolling the dice", "result", roll) - } else { - logger.InfoContext(ctx, playerName+" is rolling the dice", "result", roll) - } - - rollValueAttr := attribute.Int("roll.value", roll) - span.SetAttributes(rollValueAttr) - rollCnt.Add(ctx, 1, metric.WithAttributes(rollValueAttr)) - - resp := strconv.Itoa(roll) + "\n" - if _, err := io.WriteString(w, resp); err != nil { - logger.ErrorContext(ctx, "Write failed", "error", err) - } - } - - func main() { - http.HandleFunc("/rolldice", rolldice) - http.ListenAndServe(":8080", nil) - } - - ``` - -4. Run the application: - - ``` bash - go run main.go - ``` - -Open http://localhost:8080/rolldice in your web browser to ensure it is working. - - -### Instrumentation - -Next, we'll configure the OpenTelemetry logging exporter to send logs to Logz.io via the OTLP listener. - -This configuration is designed to send logs to your Logz.io account via the OpenTelemetry Protocol (OTLP) listener. You need to specify your Logz.io token and configure the listener endpoint to match the correct region. By default, the endpoint is `https://otlp-listener.logz.io/v1/logs`, but it should be adjusted based on your region. You can find more details on the regional configurations in the [Hosting Regions Documentation](https://docs.logz.io/docs/user-guide/admin/hosting-regions/account-region/#available-regions). +:::note +If you need an example aplication to test this integration, please refer to our [Go OpenTelemetry repository](https://github.com/logzio/opentelemetry-examples/tree/main/go/logs). +::: +### Configure the instrumentation 1. Install OpenTelemetry dependencies: @@ -500,77 +411,26 @@ This configuration is designed to send logs to your Logz.io account via the Open go get go.opentelemetry.io/otel go get go.opentelemetry.io/otel/exporters/otlp/otlplog/otlploghttp go get go.opentelemetry.io/otel/exporters/stdout/stdoutlog - go get go.opentelemetry.io/otel/exporters/stdout/stdoutmetric ``` 2. Create a new file named `otel.go` and add the following code to set up OpenTelemetry logging: ```go - // Copyright The OpenTelemetry Authors - // SPDX-License-Identifier: Apache-2.0 - package main - + import ( "context" - "errors" "fmt" + "log" - "go.opentelemetry.io/otel" "go.opentelemetry.io/otel/exporters/otlp/otlplog/otlploghttp" "go.opentelemetry.io/otel/exporters/stdout/stdoutlog" "go.opentelemetry.io/otel/log/global" - "go.opentelemetry.io/otel/propagation" - "go.opentelemetry.io/otel/sdk/log" + sdklog "go.opentelemetry.io/otel/sdk/log" ) - // setupOTelSDK bootstraps the OpenTelemetry pipeline. - // If it does not return an error, make sure to call shutdown for proper cleanup. - func setupOTelSDK(ctx context.Context) (shutdown func(context.Context) error, err error) { - var shutdownFuncs []func(context.Context) error - - // shutdown calls cleanup functions registered via shutdownFuncs. - // The errors from the calls are joined. - // Each registered cleanup will be invoked once. - shutdown = func(ctx context.Context) error { - var err error - for _, fn := range shutdownFuncs { - err = errors.Join(err, fn(ctx)) - } - shutdownFuncs = nil - return err - } - - // handleErr calls shutdown for cleanup and makes sure that all errors are returned. - handleErr := func(inErr error) { - err = errors.Join(inErr, shutdown(ctx)) - } - - // Set up propagator. - prop := newPropagator() - otel.SetTextMapPropagator(prop) - - // Set up logger provider. - loggerProvider, err := newLoggerProvider() - if err != nil { - handleErr(err) - return - } - shutdownFuncs = append(shutdownFuncs, loggerProvider.Shutdown) - global.SetLoggerProvider(loggerProvider) - - return - } - - func newPropagator() propagation.TextMapPropagator { - return propagation.NewCompositeTextMapPropagator( - propagation.TraceContext{}, - propagation.Baggage{}, - ) - } - - func newLoggerProvider() (*log.LoggerProvider, error) { + func newLoggerProvider() (*sdklog.LoggerProvider, error) { // Create stdout log exporter stdoutExporter, err := stdoutlog.New(stdoutlog.WithPrettyPrint()) if err != nil { @@ -582,6 +442,7 @@ This configuration is designed to send logs to your Logz.io account via the Open otlploghttp.WithEndpoint("otlp-listener.logz.io"), otlploghttp.WithHeaders(map[string]string{ "Authorization": "Bearer ", + "user-agent": "logzio-go-logs-otlp", }), otlploghttp.WithURLPath("/v1/logs"), ) @@ -590,34 +451,52 @@ This configuration is designed to send logs to your Logz.io account via the Open } // Create a logger provider with both exporters - loggerProvider := log.NewLoggerProvider( - log.WithProcessor(log.NewBatchProcessor(stdoutExporter)), // For stdout - log.WithProcessor(log.NewBatchProcessor(httpExporter)), // For HTTP export + loggerProvider := sdklog.NewLoggerProvider( + sdklog.WithProcessor(sdklog.NewBatchProcessor(stdoutExporter)), // For stdout + sdklog.WithProcessor(sdklog.NewBatchProcessor(httpExporter)), // For HTTP export ) return loggerProvider, nil } + + // setupOTelSDK bootstraps the OpenTelemetry logging pipeline. + func setupOTelSDK(ctx context.Context) (shutdown func(context.Context) error, err error) { + // Set up logger provider. + loggerProvider, err := newLoggerProvider() + if err != nil { + return nil, err + } + + // Set the global logger provider + global.SetLoggerProvider(loggerProvider) + + // Return a shutdown function + shutdown = func(ctx context.Context) error { + err := loggerProvider.Shutdown(ctx) + if err != nil { + log.Printf("Error during logger provider shutdown: %v", err) + } + return err + } + + return shutdown, nil + } + ``` {@include: ../../_include/log-shipping/log-shipping-token.md} - Update the `listener.logz.io` parth in `https://otlp-listener.logz.io/v1/logs` with the URL for [your hosting region](https://docs.logz.io/docs/user-guide/admin/hosting-regions/account-region). + Update the `listener.logz.io` part in `https://otlp-listener.logz.io/v1/logs` with the URL for [your hosting region](https://docs.logz.io/docs/user-guide/admin/hosting-regions/account-region). -3. Run your **application** once again: +3. Run your application. - ```bash - go run . - ``` +### Check Logz.io for your logs -4. From another terminal, send a request using curl: - ```bash - curl localhost:8080/rolldice - ``` -5. After about 30 sec, stop the server process. +Allow some time for data ingestion, then open [Open Search Dashboards](https://app.logz.io/#/dashboard/osd). -At this point, you should see log output from the server and client on your Logz.io account. +Encounter an issue? See our [log shipping troubleshooting](https://docs.logz.io/docs/user-guide/log-management/troubleshooting/log-shipping-troubleshooting/) guide. diff --git a/docs/shipping/Code/java.md b/docs/shipping/Code/java.md index ef67512a..bfa289e5 100644 --- a/docs/shipping/Code/java.md +++ b/docs/shipping/Code/java.md @@ -494,6 +494,266 @@ If the log appender does not ship logs, add `true ``` + + + + + + + +This integration uses the OpenTelemetry logging exporter to send logs to Logz.io via the OpenTelemetry Protocol (OTLP) listener. + +### Prerequisites + +- Java 8+ + +:::note +If you need an example aplication to test this integration, please refer to our [Java OpenTelemetry repository](https://github.com/logzio/opentelemetry-examples/tree/main/java/logs). +::: + +### Configure the instrumentation + +Add the following dependencies to `pom.xml`: + +```xml + + + + 4.0.0 + + com.logzio.otel + otel-log + 1.0-SNAPSHOT + otel-log + jar + + + UTF-8 + 17 + 3.0.6 + + + + + + io.opentelemetry + opentelemetry-bom + 1.25.0 + pom + import + + + io.opentelemetry + opentelemetry-bom-alpha + 1.25.0-alpha + pom + import + + + + + + + + io.opentelemetry + opentelemetry-api + + + io.opentelemetry + opentelemetry-sdk + + + io.opentelemetry + opentelemetry-exporter-otlp + + + io.opentelemetry + opentelemetry-semconv + + + io.opentelemetry + opentelemetry-exporter-otlp-logs + + + + + org.springframework.boot + spring-boot-starter + ${spring-boot.version} + + + org.springframework.boot + spring-boot-starter-web + ${spring-boot.version} + + + + + ch.qos.logback + logback-core + 1.4.7 + + + ch.qos.logback + logback-classic + 1.4.7 + + + org.slf4j + slf4j-api + 2.0.7 + + + + + io.opentelemetry.instrumentation + opentelemetry-logback-appender-1.0 + 1.25.1-alpha + + + + + + + + org.springframework.boot + spring-boot-maven-plugin + ${spring-boot.version} + + + + maven-assembly-plugin + 3.5.0 + + + jar-with-dependencies + + + + com.logzio.otel.DiceApplication + + + + + + make-assembly + package + + single + + + + + + + + +``` + + + +#### Add the OpenTelemetry controller + +```java +package com.logzio.otel; + +import io.opentelemetry.api.GlobalOpenTelemetry; +import io.opentelemetry.api.logs.GlobalLoggerProvider; +import io.opentelemetry.exporter.otlp.http.logs.OtlpHttpLogRecordExporter; +import io.opentelemetry.sdk.OpenTelemetrySdk; +import io.opentelemetry.sdk.logs.SdkLoggerProvider; +import io.opentelemetry.sdk.logs.export.BatchLogRecordProcessor; +import io.opentelemetry.sdk.resources.Resource; +import io.opentelemetry.semconv.resource.attributes.ResourceAttributes; +import io.opentelemetry.api.common.Attributes; + +public class OpenTelemetryConfig { + + private static final String DEFAULT_ENDPOINT = "https://otlp-listener.logz.io/v1/logs"; + private static final String LOGZ_IO_TOKEN = ""; + private static final String SERVICE_NAME = "java-otlp"; + + public void initializeOpenTelemetry() { + + // set service name on all OTel signals + Resource resource = Resource.getDefault().merge(Resource.create( + Attributes.of(ResourceAttributes.SERVICE_NAME, SERVICE_NAME))); + + // Set up the OTLP log exporter with the endpoint and necessary headers + OtlpHttpLogRecordExporter logExporter = OtlpHttpLogRecordExporter.builder() + .setEndpoint(DEFAULT_ENDPOINT) + .addHeader("Authorization", "Bearer " + LOGZ_IO_TOKEN) + .addHeader("user-agent", "logzio-java-logs-otlp") + .build(); + + // Initialize the logger provider + SdkLoggerProvider sdkLoggerProvider = SdkLoggerProvider.builder() + .setResource(resource) + .addLogRecordProcessor(BatchLogRecordProcessor.builder(logExporter).build()) + .build(); + + // create sdk object and set it as global + OpenTelemetrySdk sdk = OpenTelemetrySdk.builder() + .setLoggerProvider(sdkLoggerProvider) + .build(); + GlobalOpenTelemetry.set(sdk); + // connect logger + GlobalLoggerProvider.set(sdk.getSdkLoggerProvider()); + // Add hook to close SDK, which flushes logs + Runtime.getRuntime().addShutdownHook(new Thread(sdk::close)); + } +} +``` + +{@include: ../../_include/log-shipping/log-shipping-token.md} + +Update the `listener.logz.io` part in `https://otlp-listener.logz.io/v1/logs` with the URL for [your hosting region](https://docs.logz.io/docs/user-guide/admin/hosting-regions/account-region). + +#### Add the Logback + +```xml + + + + + + + false + + true + + true + + + + + + + + +``` + + +#### Run the application + + ```bash + mvn clean package + java -jar target/*.jar + ``` + + +### Check Logz.io for your logs + + +Allow some time for data ingestion, then open [Open Search Dashboards](https://app.logz.io/#/dashboard/osd). + +Encounter an issue? See our [log shipping troubleshooting](https://docs.logz.io/docs/user-guide/log-management/troubleshooting/log-shipping-troubleshooting/) guide. + + + diff --git a/docs/shipping/Code/node-js.md b/docs/shipping/Code/node-js.md index cc063cc3..928e309d 100644 --- a/docs/shipping/Code/node-js.md +++ b/docs/shipping/Code/node-js.md @@ -347,77 +347,74 @@ tsc --project tsconfig.json -Install the dependencies: +This integration uses the OpenTelemetry logging exporter to send logs to Logz.io via the OpenTelemetry Protocol (OTLP) listener. +### Prerequisites + +- Node +- A Node application +- An active account with Logz.io -```shell -npm install --save @opentelemetry/api-logs -npm install --save @opentelemetry/sdk-logs -npm install --save @opentelemetry/exporter-logs-otlp-proto -``` +:::note +If you need an example aplication to test this integration, please refer to our [NodeJS OpenTelemetry repository](https://github.com/logzio/opentelemetry-examples/tree/main/nodjs/logs). +::: -Configure the Opentelemetry Collector, You can use the sample configuration and edit it according to your needs: +### Configure the instrumentation -```javascript -import logsAPI from '@opentelemetry/api-logs' -import { - LoggerProvider, - SimpleLogRecordProcessor, -} from '@opentelemetry/sdk-logs'; -import { OTLPLogExporter } from '@opentelemetry/exporter-logs-otlp-proto'; -import { diag, DiagConsoleLogger, DiagLogLevel } from '@opentelemetry/api'; -import { Resource } from '@opentelemetry/resources'; - - -// Initialize the Logger provider -// Change <> to your service name -const loggerProvider = new LoggerProvider({resource: new Resource({'service.name': '<>'})}); - -// Configure OTLP exporter -const logzioExporterOptions = { - url: 'https://otlp-listener.logz.io/v1/logs', - headers: {Authorization: 'Bearer <>', 'user-agent': 'logzio-nodejs-logs-otlp'}, -}; -// Add a processor to export log record -// In order to send data in batch, change SimpleLogRecordProcessor >> BatchLogRecordProcessor -loggerProvider.addLogRecordProcessor( - new SimpleLogRecordProcessor(new OTLPLogExporter(logzioExporterOptions)), -); +1. Install the dependencies: -// To add debug mode to the OpenTelemetry collector, uncomment the below line -// diag.setLogger(new DiagConsoleLogger(), DiagLogLevel.DEBUG); + ```shell + npm install --save @opentelemetry/api-logs + npm install --save @opentelemetry/sdk-logs + npm install --save @opentelemetry/exporter-logs-otlp-proto + ``` +2. Configure the Opentelemetry Collector, You can use the sample configuration and edit it according to your needs: -// Create a Logger instance -// You can change the logger name from exmaple_logger to any name you prefer -const logger = loggerProvider.getLogger('exmaple_logger'); + ```javascript + const { LoggerProvider, SimpleLogRecordProcessor } = require('@opentelemetry/sdk-logs'); + const { OTLPLogExporter } = require('@opentelemetry/exporter-logs-otlp-proto'); + const { Resource } = require('@opentelemetry/resources'); + + const resource = new Resource({'service.name': 'YOUR-SERVICE-NAME'}); + const loggerProvider = new LoggerProvider({ resource }); + + const otlpExporter = new OTLPLogExporter({ + url: 'https://otlp-listener.logz.io/v1/logs', + headers: { + Authorization: 'Bearer ', + 'user-agent': 'logzio-nodejs-logs-otlp' + } + }); + + loggerProvider.addLogRecordProcessor(new SimpleLogRecordProcessor(otlpExporter)); + + const logger = loggerProvider.getLogger('example_logger'); + module.exports.logger = logger; + ``` + + Replace `YOUR-SERVICE-NAME` with the required service name. + + + {@include: ../../_include/log-shipping/log-shipping-token.md} -// Close logger gracefully -['SIGINT', 'SIGTERM'].forEach(signal => { - process.on(signal, () => loggerProvider.shutdown().catch(console.error)); -}); -// Emit a log record -logger.emit({ - severityNumber: logsAPI.SeverityNumber.INFO, - severityText: 'INFO', - body: 'some message', - attributes: { 'log.type': 'LogRecord' }, -}); + Update the `listener.logz.io` part in `https://otlp-listener.logz.io/v1/logs` with the URL for [your hosting region](https://docs.logz.io/docs/user-guide/admin/hosting-regions/account-region). -logger.emit({ - severityNumber: logsAPI.SeverityNumber.INFO, - severityText: 'INFO', - body: '{"field1": 123, "field2": "value"}', - attributes: { 'log.type': 'LogRecord' }, -}); + + :::note + If your Logz.io account region is not `us-east-1`, add your [region code](https://docs.logz.io/docs/user-guide/admin/hosting-regions/ account-region/#available-regions) to the `url` like so `https://otlp-listener-<>.logz.io/v1/logs`. + ::: -``` +3. Run the application. -:::note -If your Logz.io account region is not `us-east-1`, add your [region code](https://docs.logz.io/docs/user-guide/admin/hosting-regions/account-region/#available-regions) to the `url` like so `https://otlp-listener-<>.logz.io/v1/logs`. -::: +### Check Logz.io for your logs + + +Allow some time for data ingestion, then open [Open Search Dashboards](https://app.logz.io/#/dashboard/osd). + +Encounter an issue? See our [log shipping troubleshooting](https://docs.logz.io/docs/user-guide/log-management/troubleshooting/log-shipping-troubleshooting/) guide. diff --git a/docs/shipping/Code/python.md b/docs/shipping/Code/python.md index e0edbccb..4a2593ab 100644 --- a/docs/shipping/Code/python.md +++ b/docs/shipping/Code/python.md @@ -320,93 +320,17 @@ The default limit is 32,700, but you can adjust this value as required. +This integration uses the OpenTelemetry logging exporter to send logs to Logz.io via the OpenTelemetry Protocol (OTLP) listener. + ### Prerequisites -Ensure that you have the following installed locally: - -* Python 3.7 or newer -* pip (Python package installer) - -### Example Application - -The following example uses a basic Flask application. - - -### Create and launch an HTTP Server - -1. Set up an environment in a new directory called `otel-getting-started`: - - ```bash - mkdir otel-getting-started - cd otel-getting-started - ``` - -2. Create and activate a virtual environment: - - ```bash - mkdir otel-getting-started - cd otel-getting-started - python3 -m venv venv - source venv/bin/activate - ``` - -3. Install Flask and OpenTelemetry dependencies: - - ```bash - pip install flask opentelemetry-api opentelemetry-sdk opentelemetry-exporter-otlp - ``` - -4. Create a Flask application in a file named app.py and add the following code: - - ```python - from flask import Flask - import random - import logging - - # Basic Flask application setup - app = Flask(__name__) - - # Set up basic logging to console - logging.basicConfig(level=logging.INFO) - logger = logging.getLogger("app") - - @app.route("/rolldice/", methods=["GET"]) - @app.route("/rolldice/", methods=["GET"]) - def handle_roll_dice(player=None): - result = roll_dice() - - if player: - logger.info(f"{player} is rolling the dice: {result}") - else: - logger.info(f"Anonymous player is rolling the dice: {result}") - - return str(result) - - def roll_dice(): - return random.randint(1, 6) - - if __name__ == "__main__": - app.run(host="0.0.0.0", port=8080) - ``` - - -5. Run the application: - - ``` bash - python app.py - ``` - -Open http://localhost:8080/rolldice in your web browser to ensure it is working. - - -### Instrumentation - -Next, we'll configure the OpenTelemetry logging exporter to send logs to Logz.io via the OTLP listener. - -This configuration is designed to send logs to your Logz.io account via the OpenTelemetry Protocol (OTLP) listener. You need to specify your Logz.io token and configure the listener endpoint to match the correct region. By default, the endpoint is `https://otlp-listener.logz.io/v1/logs`, but it should be adjusted based on your region. You can find more details on the regional configurations in the [Hosting Regions Documentation](https://docs.logz.io/docs/user-guide/admin/hosting-regions/account-region/#available-regions). +- Python 3.7 or newer +- pip (Python package installer) +- A Python application +- An active account with Logz.io :::note -Ensure that you include the `user-agent` header in the format: `"user-agent=logzio-python-logs-otlp"`. +If you need an example aplication to test this integration, please refer to our [Python OpenTelemetry repository](https://github.com/logzio/opentelemetry-examples/tree/main/python/logs). ::: 1. Install OpenTelemetry dependencies: @@ -417,13 +341,9 @@ Ensure that you include the `user-agent` header in the format: `"user-agent=logz 2. Update the Flask Application to Include OpenTelemetry: - Modify the existing app.py file to include OpenTelemetry logging: ```python - from flask import Flask - import random import logging - from opentelemetry._logs import set_logger_provider from opentelemetry.exporter.otlp.proto.http._log_exporter import OTLPLogExporter from opentelemetry.sdk.resources import Resource @@ -431,7 +351,7 @@ Ensure that you include the `user-agent` header in the format: `"user-agent=logz from opentelemetry.sdk._logs.export import BatchLogRecordProcessor # Configuration - service_name = "roll-dice" + service_name = "YOUR-SERVICE-NAME" logzio_endpoint = "https://otlp-listener.logz.io/v1/logs" # Update this to match your region if needed logzio_token = "<>" @@ -458,53 +378,31 @@ Ensure that you include the `user-agent` header in the format: `"user-agent=logz otlp_handler = LoggingHandler(logger_provider=logger_provider) logger.addHandler(otlp_handler) - # Attach a StreamHandler to log to the console - console_handler = logging.StreamHandler() - console_handler.setLevel(logging.INFO) - formatter = logging.Formatter('%(asctime)s - %(name)s - %(levelname)s - %(message)s') - console_handler.setFormatter(formatter) - logger.addHandler(console_handler) - - # Flask application setup - app = Flask(__name__) - - @app.route("/rolldice/", methods=["GET"]) - @app.route("/rolldice/", methods=["GET"]) - def handle_roll_dice(player=None): - result = roll_dice() - - if player: - logger.info(f"{player} is rolling the dice: {result}") - else: - logger.info(f"Anonymous player is rolling the dice: {result}") - - return str(result) - - def roll_dice(): - return random.randint(1, 6) - + # Example usage of the logger if __name__ == "__main__": - app.run(host="0.0.0.0", port=8080) - + logger.info("Log message sent to Logz.io") ``` + Replace `YOUR-SERVICE-NAME` with the required service name. + + {@include: ../../_include/log-shipping/log-shipping-token.md} + Update the `listener.logz.io` part in `https://otlp-listener.logz.io/v1/logs` with the URL for [your hosting region](https://docs.logz.io/docs/user-guide/admin/hosting-regions/account-region). + -3. Run your **application** once again: +3. Run your application. ```bash python app.py ``` -4. From another terminal, send a request using curl: +### Check Logz.io for your logs - ```bash - curl localhost:8080/rolldice - ``` -5. After about 30 sec, stop the server process. -At this point, you should see log output from the server and client on your Logz.io account. +Allow some time for data ingestion, then open [Open Search Dashboards](https://app.logz.io/#/dashboard/osd). + +Encounter an issue? See our [log shipping troubleshooting](https://docs.logz.io/docs/user-guide/log-management/troubleshooting/log-shipping-troubleshooting/) guide. diff --git a/static/manifest.json b/static/manifest.json index 3fb037e2..212d64ec 100644 --- a/static/manifest.json +++ b/static/manifest.json @@ -1 +1 @@ -{"collectors": [{"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": "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-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-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-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-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-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-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": "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": "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-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-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-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-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-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-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": [{"type": "GRAFANA_DASHBOARD", "id": "2YLu810AXPlVwzQen8vff1"}, {"type": "GRAFANA_ALERT", "id": "4iuPoRsdogZKww8d0NO7er"}], "dataLink": "https://raw.githubusercontent.com/logzio/documentation/master/docs/shipping/AWS/aws-lambda.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-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": "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": "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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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": "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-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-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-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": "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-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-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": "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": "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": "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": "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": ["LOG_ANALYTICS"], "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": [{"type": "GRAFANA_DASHBOARD", "id": "2Q2f3D9WiUgMIyjlDXi0sA"}], "dataLink": "https://raw.githubusercontent.com/logzio/documentation/master/docs/shipping/Other/opentelemetry.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": "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": "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": "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": "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": "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": "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": "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-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": "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": "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": "Vercel-data", "title": "Vercel", "description": "Vercel is a Cloud Platform that enables developers to deploy, manage, and scale modern web applications. Use this integration to send logs from your Vercel applications 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/vercel.svg", "bundle": [], "dataLink": "https://raw.githubusercontent.com/logzio/documentation/master/docs/shipping/Other/vercel.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": "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": "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": "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": "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": [{"type": "OSD_DASHBOARD", "id": "5LWLzuSeGMqXVj5p8cP1NX"}, {"type": "LOG_ALERT", "id": "6b8UfKeSHCc4SWxHphMd0O, 5jTENQYn5PpgiZWvezI0Cp, 6OAv4ozj4eRi7NSHgJawl1, 7EgPOsqIuoBUCwcHpq57L3, 6NmeR0XGMoTTanwU82oCrD"}, {"type": "GRAFANA_DASHBOARD", "id": "28VJXdtDINv7w2T3l8oOO9"}], "dataLink": "https://raw.githubusercontent.com/logzio/documentation/master/docs/shipping/Compute/apache-http-server.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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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": "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-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-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-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": "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-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-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-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-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-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-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-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-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-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-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-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-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-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": "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-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-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-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-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-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-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-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": "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-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-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-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-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-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-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-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-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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": [{"type": "GRAFANA_DASHBOARD", "id": "2zMVEOdWnIMgOPATDLByX7"}], "dataLink": "https://raw.githubusercontent.com/logzio/documentation/master/docs/shipping/Database/mysql.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": "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": "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": "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": "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": "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": "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": "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-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-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-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-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-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-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-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": "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": "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": "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": "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": "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": "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-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": "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": "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": "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": "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": "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": "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": "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": [{"type": "GRAFANA_DASHBOARD", "id": "13q1IECY8zfnnDXvUq7vvH"}], "dataLink": "https://raw.githubusercontent.com/logzio/documentation/master/docs/shipping/Data-Store/mongodb.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": "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": "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": [], "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "HTTP", "title": "HTTP", "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/http.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": "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": "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": "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": "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": "1Password", "title": "1Password", "description": "1Password is a password manager. This integration allows you to send event logs to your Logz.io account.", "productTags": ["LOG_ANALYTICS", "SIEM"], "osTags": ["windows", "linux"], "filterTags": ["Security"], "logo": "https://logzbucket.s3.eu-west-1.amazonaws.com/logz-docs/shipper-logos/1password.png", "bundle": [], "dataLink": "https://raw.githubusercontent.com/logzio/documentation/master/docs/shipping/Security/one-password.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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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"}], "tags": ["AWS", "Memory Caching", "Compute", "Data Store", "Distributed Messaging", "Security", "Load Balancer", "Most Popular", "CI/CD", "Access Management", "Network", "Other", "Containers", "Orchestration", "Database", "IoT", "GCP", "Monitoring", "Azure", "Operating Systems", "Synthetic Monitoring", "Code"]} \ No newline at end of file +{"collectors": [{"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-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-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-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-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-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-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-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-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-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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": [], "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": "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": "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": "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": [{"type": "GRAFANA_DASHBOARD", "id": "13q1IECY8zfnnDXvUq7vvH"}], "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": "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": "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": "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": "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": "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": "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": "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-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-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-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-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-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-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-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-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-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-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": "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": "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-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-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-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-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": "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-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-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-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-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-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-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-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-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-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-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-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-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-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-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": [{"type": "GRAFANA_DASHBOARD", "id": "2YLu810AXPlVwzQen8vff1"}, {"type": "GRAFANA_ALERT", "id": "4iuPoRsdogZKww8d0NO7er"}], "dataLink": "https://raw.githubusercontent.com/logzio/documentation/master/docs/shipping/AWS/aws-lambda.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-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-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-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": "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": "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-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-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-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-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-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-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": "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": "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": "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": "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"}, {"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": "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": "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": "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": "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": "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": "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": "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": [{"type": "GRAFANA_DASHBOARD", "id": "2zMVEOdWnIMgOPATDLByX7"}], "dataLink": "https://raw.githubusercontent.com/logzio/documentation/master/docs/shipping/Database/mysql.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-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": "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": "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-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": "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": "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": "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": [{"type": "OSD_DASHBOARD", "id": "5LWLzuSeGMqXVj5p8cP1NX"}, {"type": "LOG_ALERT", "id": "6b8UfKeSHCc4SWxHphMd0O, 5jTENQYn5PpgiZWvezI0Cp, 6OAv4ozj4eRi7NSHgJawl1, 7EgPOsqIuoBUCwcHpq57L3, 6NmeR0XGMoTTanwU82oCrD"}, {"type": "GRAFANA_DASHBOARD", "id": "28VJXdtDINv7w2T3l8oOO9"}], "dataLink": "https://raw.githubusercontent.com/logzio/documentation/master/docs/shipping/Compute/apache-http-server.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-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": "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-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": "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": "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": "HTTP", "title": "HTTP", "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/http.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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": [{"type": "GRAFANA_DASHBOARD", "id": "2Q2f3D9WiUgMIyjlDXi0sA"}], "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": "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": "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": "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": ["LOG_ANALYTICS"], "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": "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": "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": "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": "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": "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": "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": "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": "Vercel-data", "title": "Vercel", "description": "Vercel is a Cloud Platform that enables developers to deploy, manage, and scale modern web applications. Use this integration to send logs from your Vercel applications 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/vercel.svg", "bundle": [], "dataLink": "https://raw.githubusercontent.com/logzio/documentation/master/docs/shipping/Other/vercel.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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "1Password", "title": "1Password", "description": "1Password is a password manager. This integration allows you to send event logs to your Logz.io account.", "productTags": ["LOG_ANALYTICS", "SIEM"], "osTags": ["windows", "linux"], "filterTags": ["Security"], "logo": "https://logzbucket.s3.eu-west-1.amazonaws.com/logz-docs/shipper-logos/1password.png", "bundle": [], "dataLink": "https://raw.githubusercontent.com/logzio/documentation/master/docs/shipping/Security/one-password.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": "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-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": "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": "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": "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": "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": "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": "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": "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-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-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-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": "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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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": "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-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-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-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": "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-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-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": "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-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-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-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": "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-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-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-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-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-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-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-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-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-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-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", "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-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-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-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-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-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-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-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-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-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-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-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": "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": "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": "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": "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": "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": "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": "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"}], "tags": ["Azure", "Other", "Security", "Access Management", "Compute", "Network", "IoT", "Data Store", "AWS", "Distributed Messaging", "CI/CD", "Containers", "Load Balancer", "Database", "Memory Caching", "Most Popular", "Orchestration", "Operating Systems", "Synthetic Monitoring", "Code", "GCP", "Monitoring"]} \ No newline at end of file