Kafka consumer json topics

| You have not provided any information to telegraf as to how to parse your data.
thats make sense. I’v been studing bore about and I found a good sintax at this topic.
fixing my code i did this:

[[inputs.kafka_consumer]]
  brokers = ["localhost:9092"]
  topics = ["topic1"]
  data_format = "json"
  [inputs.kafka_consumer.tags]
    destination = "bucket1"
  
[[inputs.kafka_consumer]]
  brokers = ["localhost:9092"]
  topics = ["topic2"]
  data_format = "json"
  [inputs.kafka_consumer.tags]
    destination = "bucket2"

[[outputs.influxdb_v2]]
  urls = ["http://localhost:8086"]
  token = ""
  organization = ""
  bucket_tag = "destination"
  exclude_bucket_tag = true

but still not working.
Any tip about what is missing or mistake?