Skip to main content
Unlisted page
This page is unlisted. Search engines will not index it, and only users having a direct link can access it.
Version: 1.0

Go SDK

The GreptimeDB Go ingester library utilizes gRPC for writing data to the database. For how to use the library, please refer to the Go library documentation.

To connect to GreptimeCloud, using information below:

  • Host: <host>
  • Port: 5001
  • Database: <dbname>
  • Username: <username>
  • Password: <password>

The following code shows how to create a client.

cfg := greptime.NewConfig("<host>").
WithDatabase("<dbname>").
WithPort(5001).
WithInsecure(false).
WithAuth("<username>", "<password>")

cli, err := greptime.NewClient(cfg)
if err != nil {
panic("failed to init client")
}