Help with Telegraf's exec input

I am trying to ingest the result the “pveversion” command with the input.exec plugin, which should return something like “pve-manager/8.2.7/3e0176e6bb2ade3b (running kernel: 6.8.12-2-pve)”. But my telegraf config running fine and passes “telegraf -config telegraf.conf --test”, but nothing shows up in my influxDB. Any help is appreciated!

global_tags]
  Production_System = "True"

# Configuration for telegraf agent
[agent]
  interval = "10s"
  round_interval = true
  metric_batch_size = 1000
  metric_buffer_limit = 10000
  collection_jitter = "0s"
  flush_interval = "10s"
  flush_jitter = "0s"
  precision = "0s"

  hostname = ""
  omit_hostname = false

###############################################################################
#                            SECRETSTORE PLUGINS                              #
###############################################################################


###############################################################################
#                            OUTPUT PLUGINS                                   #
###############################################################################

# # Configuration for sending metrics to InfluxDB 2.0
 [[outputs.influxdb_v2]]
     urls = ["http://192.168.20.86:8086"]
     token = "###########################################################"
     organization = "proxmox"
     bucket = "test"

###############################################################################
#                            PROCESSOR PLUGINS                                #
###############################################################################

###############################################################################
#                            AGGREGATOR PLUGINS                               #
###############################################################################

###############################################################################
#                            INPUT PLUGINS                                    #
###############################################################################

# # Read metrics from one or more commands that can output to stdout
 [[inputs.exec]]
#   ## Commands array
   commands = ["/usr/bin/pveversion"]
   timeout = "5s"
   data_format = "grok"

@malcolm1308 your configuration is missing any GROK pattern to use for parsing the output! Please check the parser documentation, especially the grok_patterns option!