---
title: "SparkPipe | Connectors | Stdout"
slug: "sparkpipe-connectors-stdout"
description: "SparkPipe is a cloud-native service that utilizes the MQTT Sparkplug specification to securely connect to any MQTT 3.1 compatible broker, capturing all the events published by any Sparkplug-enabled edge node, and routing this data to cloud-based services and applications such as Apache Kafka, etc."
updated: 2025-09-30T15:55:37Z
published: 2025-12-19T15:12:25Z
canonical: "docs.n3uron.com/sparkpipe-connectors-stdout"
---

> ## Documentation Index
> Fetch the complete documentation index at: https://docs.n3uron.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Stdout

## Overview

> [!NOTE]
> Note:
> 
> The stdout connector is provided for testing and debugging purposes.

The Stdout connector logs the SparkplugB metrics to the console’s standard output using a JSON format that represents the Sparkplug payload.

### **Features**

- **Provides a JSON representation of the Sparkplug message payload**
- **Supports filtering using regular expressions (regex)**

## Configuration

The default configuration for the Stdout connector:

```ini
...
# Connectors configuration
[connectors]
  name = "stdout"

# Stdout
[connectors.stdout]
  # Regex pattern to include all metrics
  metric_name_filter = ".*"
```

### Example

Example configuration to capture all metrics with “Temperature” in the name:

```ini
...
# Connectors configuration
[connectors]
  name = "stdout"

# Stdout
[connectors.stdout]
  metric_name_filter = "Temperature"
```
