---
title: Telegraf Documentation
description: Telegraf plugin for transforming metrics using Clone
url: https://docs.influxdata.com/telegraf/v1/processor-plugins/clone/
estimated_tokens: 653
product: Telegraf
version: v1
---

-   Telegraf v1.13.0+

# Clone Processor Plugin

This plugin creates a copy of each metric passing through it, preserving the original metric and allowing modifications such as [metric modifiers](/telegraf/v1/configuration/#modifiers) in the copied metric.

[Metric filtering](/telegraf/v1/configuration/#metric-filtering) options apply to both the clone and the original metric.

**Introduced in:** Telegraf v1.13.0 **Tags:** transformation **OS support:** all

## Global configuration options

Plugins support additional global and plugin configuration settings for tasks such as modifying metrics, tags, and fields, creating aliases, and configuring plugin ordering. See [CONFIGURATION.md](/telegraf/v1/configuration/#plugins) for more details.

## Configuration

```toml
# Apply metric modifications using override semantics.
[[processors.clone]]
  ## All modifications on inputs and aggregators can be overridden:
  # name_override = "new_name"
  # name_prefix = "new_name_prefix"
  # name_suffix = "new_name_suffix"

  ## Tags to be added (all values must be strings)
  # [processors.clone.tags]
  #   additional_tag = "tag_value"
```

#### Related

-   [Configure plugins](/telegraf/v1/configure_plugins/)
-   [Clone Plugin Source](https://github.com/influxdata/telegraf/tree/v1.38.4/plugins/processors/clone/README.md)
