# InfluxDB Output: parametric data\_points

**URL:** https://discuss.elastic.co/t/influxdb-output-parametric-data-points/95938
**Category:** Logstash
**Created:** [August 4, 2017, 5:48pm UTC](https://discuss.elastic.co/t/influxdb-output-parametric-data-points/95938 "2017-08-04T17:48:24Z")
**Posts on this page:** 3
**Page:** 1

<div class="post-metadata">

### Author: ![JoaquinS](https://avatars.discourse-cdn.com/v4/letter/j/f07891/32.png) [@JoaquinS](https://discuss.elastic.co/u/JoaquinS)
#### Post date: [August 4, 2017, 5:48pm UTC](https://discuss.elastic.co/t/influxdb-output-parametric-data-points/95938/1 "2017-08-04T17:48:24Z")

</div>

Hello,

I want to write this data into InfluxDB:

```
{
     "product" => "telegraf",
     "data_points" => {
        "TraficoEntrante" => 2474864615,
               "hostname" => "host1",
        "TraficoSaliente" => 2474864615,
                   "host" => "host2",
             "agent_host" => "host3",
         "NombreInterfaz" => "lo"
    },
    "@timestamp" => 2017-08-04T17:30:23.883Z,
    "send_as_tags" => [
        [0] "hostname",
        [1] "host",
        [2] "agent_host",
        [3] "NombreInterfaz"
    ],
    "name" => "Network",
    "@version" => "1",
          "fields" => {
        "TraficoEntrante" => 2474864615,
        "TraficoSaliente" => 2474864615
    },
  
    "timestamp" => 1501867801
}

```

But the output throws me error this error:

`"Something is wrong with your configuration."`

This is my output configuration:

```
influxdb {
           host => "InfluxHost"
           user => "user"
           password => "password"
           port => "port"
           db => "database"
           measurement => "%{name}"
           allow_time_override => true
           time => "%{timestamp}"
           data_points => "%{data_points}"
           send_as_tags => "%{send_as_tags}"
          }

```

I think I have all the required field. The problem must be the `data_points` or the `send_as_tags` format, but I think they are fine.

---

<div class="post-metadata">

### Author: ![magnusbaeck](https://sea2.discourse-cdn.com/elastic/user_avatar/discuss.elastic.co/magnusbaeck/32/44943_2.png) [@magnusbaeck](https://discuss.elastic.co/u/magnusbaeck)
#### Post date: [August 7, 2017, 5:30am UTC](https://discuss.elastic.co/t/influxdb-output-parametric-data-points/95938/2 "2017-08-07T05:30:18Z")

</div>

> "Something is wrong with your configuration."

I'm pretty sure that's not the only error message you get.

---

<div class="post-metadata">

### Author: ![system](https://us1.discourse-cdn.com/elastic/original/3X/1/a/1ac57faf039f6b580b3f104ef42a2a89e41014de.png) [@system](https://discuss.elastic.co/u/system)
#### Post date: [September 4, 2017, 5:30am UTC](https://discuss.elastic.co/t/influxdb-output-parametric-data-points/95938/3 "2017-09-04T05:30:34Z")

</div>

This topic was automatically closed 28 days after the last reply. New replies are no longer allowed.
