OpenTelemetry Protocol (OTLP)
OpenTelemetry is a vendor-neutral open-source observability framework for instrumenting, generating, collecting, and exporting telemetry data such as traces, metrics, logs. The OpenTelemetry Protocol (OTLP) defines the encoding, transport, and delivery mechanism of telemetry data between telemetry sources, intermediate processes such as collectors and telemetry backends.
Metrics
OTLP/HTTP
GreptimeDB is an observability backend to consume OpenTelemetry Metrics natively via OTLP/HTTP protocol.
API
To send OpenTelemetry Metrics to GreptimeDB through OpenTelemetry SDK libraries, use the following information:
- URL:
https://<host>/v1/otlp/v1/metrics
- Headers:
X-Greptime-DB-Name
:<dbname>
Authorization
:Basic
authentication, which is a Base64 encoded string of<username>:<password>
. For more information, please refer to Authentication and HTTP API
The request uses binary protobuf to encode the payload, so you need to use packages that support HTTP/protobuf
. For example, in Node.js, you can use exporter-trace-otlp-proto
; in Go, you can use go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracehttp
; in Java, you can use io.opentelemetry:opentelemetry-exporter-otlp
; and in Python, you can use opentelemetry-exporter-otlp-proto-http
.
The package names may change according to OpenTelemetry, so we recommend that you refer to the official OpenTelemetry documentation for the most up-to-date information.
For more information about the OpenTelemetry SDK, please refer to the official documentation for your preferred programming language.
Example Code
Here are some example codes about how to setup the request in different languages:
- TypeScript
- Go
- Java
- Python
const auth = Buffer.from(`${username}:${password}`).toString('base64')
const exporter = new OTLPMetricExporter({
url: `https://${dbHost}/v1/otlp/v1/metrics`,
headers: {
Authorization: `Basic ${auth}`,
"X-Greptime-DB-Name": db,
},
timeoutMillis: 5000,
})
auth := base64.StdEncoding.EncodeToString([]byte(fmt.Sprintf("%s:%s", *username, *password)))
exporter, err := otlpmetrichttp.New(
context.Background(),
otlpmetrichttp.WithEndpoint(*dbHost),
otlpmetrichttp.WithURLPath("/v1/otlp/v1/metrics"),
otlpmetrichttp.WithHeaders(map[string]string{
"X-Greptime-DB-Name": *dbName,
"Authorization": "Basic " + auth,
}),
otlpmetrichttp.WithTimeout(time.Second*5),
)
String endpoint = String.format("https://%s/v1/otlp/v1/metrics", dbHost);
String auth = username + ":" + password;
String b64Auth = new String(Base64.getEncoder().encode(auth.getBytes()));
OtlpHttpMetricExporter exporter = OtlpHttpMetricExporter.builder()
.setEndpoint(endpoint)
.addHeader("X-Greptime-DB-Name", db)
.addHeader("Authorization", String.format("Basic %s", b64Auth))
.setTimeout(Duration.ofSeconds(5))
.build();
auth = f"{username}:{password}"
b64_auth = base64.b64encode(auth.encode()).decode("ascii")
endpoint = f"https://{host}/v1/otlp/v1/metrics"
exporter = OTLPMetricExporter(
endpoint=endpoint,
headers={"Authorization": f"Basic {b64_auth}", "X-Greptime-DB-Name": db},
timeout=5)
You can find executable demos on GitHub at the links: Go, Java, Python, and Node.js.
The example codes above may be outdated according to OpenTelemetry. We recommend that you refer to the official OpenTelemetry documentation for the most up-to-date information.
For more information on the example code, please refer to the official documentation for your preferred programming language.
Data Model
The OTLP metrics data model is mapped to the GreptimeDB data model according to the following rules:
- The name of the Metric will be used as the name of the GreptimeDB table, and the table will be automatically created if it does not exist.
- All attributes, including resource attributes, scope attributes, and data point attributes, will be used as tag columns of the GreptimeDB table.
- The timestamp of the data point will be used as the timestamp index of GreptimeDB, and the column name is
greptime_timestamp
. - The data of Gauge/Sum data types will be used as the field column of GreptimeDB, and the column name is
greptime_value
. - Each quantile of the Summary data type will be used as a separated data column of GreptimeDB, and the column name is
greptime_pxx
, where xx is the quantile, such as 90/99, etc. - Histogram and ExponentialHistogram are not supported yet, we may introduce the Histogram data type to natively support these two types in a later version.
Logs
OTLP/HTTP
GreptimeDB is an observability backend to consume OpenTelemetry Logs natively via OTLP/HTTP protocol.
API
To send OpenTelemetry Logs to GreptimeDB through OpenTelemetry SDK libraries, use the following information:
- URL:
https://<host>/v1/otlp/v1/logs
- Headers:
X-Greptime-DB-Name
:<dbname>
Authorization
:Basic
authentication, which is a Base64 encoded string of<username>:<password>
. For more information, please refer to Authentication and HTTP API.X-Greptime-Log-Table-Name
:<table_name>
(optional) - The table name to store the logs. If not provided, the default table name isopentelemetry_logs
.X-Greptime-Log-Extract-Keys
:<extract_keys>
(optional) - The keys to extract from the attributes. The keys should be separated by commas (,
). For example,key1,key2,key3
will extract the keyskey1
,key2
, andkey3
from the attributes and promote them to the top level of the log, setting them as tags. If the field type is array, float, or object, an error will be returned. If a pipeline is provided, this setting will be ignored.X-Greptime-Log-Pipeline-Name
:<pipeline_name>
(optional) - The pipeline name to process the logs. If not provided, the extract keys will be used to process the logs.X-Greptime-Log-Pipeline-Version
:<pipeline_version>
(optional) - The pipeline version to process the logs. If not provided, the latest version of the pipeline will be used.
The request uses binary protobuf to encode the payload, so you need to use packages that support HTTP/protobuf
.
The package names may change according to OpenTelemetry, so we recommend that you refer to the official OpenTelemetry documentation for the most up-to-date information.
For more information about the OpenTelemetry SDK, please refer to the official documentation for your preferred programming language.
Example Code
Here are some example codes about how to use Grafana Alloy to send OpenTelemetry logs to GreptimeDB:
loki.source.file "greptime" {
targets = [
{__path__ = "/tmp/foo.txt"},
]
forward_to = [otelcol.receiver.loki.greptime.receiver]
}
otelcol.receiver.loki "greptime" {
output {
logs = [otelcol.exporter.otlphttp.greptimedb_logs.input]
}
}
otelcol.auth.basic "credentials" {
username = "${GREPTIME_USERNAME}"
password = "${GREPTIME_PASSWORD}"
}
otelcol.exporter.otlphttp "greptimedb_logs" {
client {
endpoint = "${GREPTIME_SCHEME:=http}://${GREPTIME_HOST:=greptimedb}:${GREPTIME_PORT:=4000}/v1/otlp/"
headers = {
"X-Greptime-DB-Name" = "${GREPTIME_DB:=public}",
"x-greptime-log-table-name" = "demo_logs",
"x-greptime-log-extract-keys" = "filename,log.file.name,loki.attribute.labels",
}
auth = otelcol.auth.basic.credentials.handler
}
}
This example listens for changes to the file and sends the latest values to GreptimeDB via the otlp protocol.
The example codes above may be outdated according to OpenTelemetry. We recommend that you refer to the official OpenTelemetry documentation And Grafana Alloy for the most up-to-date information.
For more information on the example code, please refer to the official documentation for your preferred programming language.
Data Model
The OTLP logs data model is mapped to the GreptimeDB data model according to the following rules:
Default table schema:
+-----------------------+---------------------+------+------+---------+---------------+
| Column | Type | Key | Null | Default | Semantic Type |
+-----------------------+---------------------+------+------+---------+---------------+
| timestamp | TimestampNanosecond | PRI | NO | | TIMESTAMP |
| trace_id | String | | YES | | FIELD |
| span_id | String | | YES | | FIELD |
| severity_text | String | | YES | | FIELD |
| severity_number | Int32 | | YES | | FIELD |
| body | String | | YES | | FIELD |
| log_attributes | Json | | YES | | FIELD |
| trace_flags | UInt32 | | YES | | FIELD |
| scope_name | String | PRI | YES | | TAG |
| scope_version | String | | YES | | FIELD |
| scope_attributes | Json | | YES | | FIELD |
| scope_schema_url | String | | YES | | FIELD |
| resource_attributes | Json | | YES | | FIELD |
| resource_schema_url | String | | YES | | FIELD |
+-----------------------+---------------------+------+------+---------+---------------+
17 rows in set (0.00 sec)
- You can use
X-Greptime-Log-Table-Name
to specify the table name for storing the logs. If not provided, the default table name isopentelemetry_logs
. - All attributes, including resource attributes, scope attributes, and log attributes, will be stored as a JSON column in the GreptimeDB table.
- The timestamp of the log will be used as the timestamp index in GreptimeDB, with the column name
timestamp
. It is preferred to usetime_unix_nano
as the timestamp column. Iftime_unix_nano
is not provided,observed_time_unix_nano
will be used instead.