Vector

GreptimeDB can be used as a Vector Sink component to receive metrics. To integrate Vector with GreptimeDB, use the following configuration:

toml

  1. [sinks.my_sink_id]
  2. inputs = ["my-source-or-transform-id"]
  3. type = "greptimedb"
  4. endpoint = "<host>:4001"
  5. dbname = "<dbname>"
  6. username = "<username>"
  7. password = "<password>"

For more configuration options, see Vector GreptimeDB Configuration.