Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Binary file added img/integrations/groundcover.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
1 change: 1 addition & 0 deletions mint.json
Original file line number Diff line number Diff line change
Expand Up @@ -118,6 +118,7 @@
"openllmetry/integrations/elasticsearch-apm",
"openllmetry/integrations/gcp",
"openllmetry/integrations/grafana",
"openllmetry/integrations/groundcover",
"openllmetry/integrations/highlight",
"openllmetry/integrations/honeycomb",
"openllmetry/integrations/hyperdx",
Expand Down
36 changes: 36 additions & 0 deletions openllmetry/integrations/groundcover.mdx
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
---
title: "LLM Observability with groundcover and OpenLLMetry"
sidebarTitle: "groundcover"
---

<Frame>
<img src="/img/integrations/groundcover.png" />
</Frame>

[groundcover](https://www.groundcover.com) is a BYOC, eBPF-powered, OpenTelemetry-native complete observability platform.

You have two options for sending traces to groundcover:

## Option 1 - Send directly to the groundcover sensor

No API key required. Saves on networking costs.

```bash
TRACELOOP_BASE_URL=http://groundcover-sensor.groundcover.svc.cluster.local:4318
```

## Option 2 - Send directly to the groundcover BYOC endpoint

Allows sending traces from any runtime, e.g., Docker, serverless, ECS, etc. Requires an ingestion key.

First, [create an ingestion key](https://docs.groundcover.com/use-groundcover/remote-access-and-apis/ingestion-keys#creating-an-ingestion-key).

Then, set the following environment variables:

```bash
TRACELOOP_BASE_URL=https://<GROUNDCOVER_BYOC_ENDPOINT>
TRACELOOP_HEADERS="apikey=<GROUNDCOVER_INGESTION_KEY>"
```

For more information, check out the [groundcover OpenTelemetry documentation](https://docs.groundcover.com/integrations/data-sources/opentelemetry).

1 change: 1 addition & 0 deletions openllmetry/integrations/introduction.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@ in any observability platform that supports OpenTelemetry.
<Card title="Elasticsearch APM" href="/openllmetry/integrations/elasticsearch-apm"></Card>
<Card title="Google Cloud" href="/openllmetry/integrations/gcp"></Card>
<Card title="Grafana Tempo" href="/openllmetry/integrations/grafana"></Card>
<Card title="groundcover" href="/openllmetry/integrations/groundcover"></Card>
<Card title="Highlight" href="/openllmetry/integrations/highlight"></Card>
<Card title="Honeycomb" href="/openllmetry/integrations/honeycomb"></Card>
<Card title="HyperDX" href="/openllmetry/integrations/hyperdx"></Card>
Expand Down