This repository has been archived by the owner on Jul 24, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
febb710e - feat(electric): Internal API for distributed tracing using OpenTelemetry (#1370) 2024-06-27 10:19:43 +0000 - Oleksii Sholik electric-sql/electric@febb710e 31ffde3b - Minor fixes to client Makefile (#1408) 2024-06-27 15:32:51 +0000 - Rob A'Court electric-sql/electric@31ffde3b d46d148b - fix(ci): Upgrade GitHub Action versions to resolve Node 16 deprecation warnings and fix pnpm lockfile compatibility (#1384) 2024-06-27 16:09:28 +0000 - Oleksii Sholik electric-sql/electric@d46d148b 31d8418f - fix (toolbar): modify drivers dependency to be a workspace dependency (#1411) 2024-06-28 09:44:32 +0000 - Kevin electric-sql/electric@31d8418f ab3e89a5 - chore (client): add .tool-versions to gitignore (#1410) 2024-06-28 09:47:18 +0000 - Kevin electric-sql/electric@ab3e89a5
- Loading branch information
1 parent
ed17bd7
commit 99bd21f
Showing
16 changed files
with
149 additions
and
59 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,4 @@ | ||
include ../common.mk | ||
|
||
DOCKER_COMPOSE_FILE=compose.yaml | ||
|
||
test: | ||
${LUX} *.lux | ||
|
||
test_pg: | ||
DIALECT=Postgres ${LUX} 03.*.lux | ||
|
||
docker-prisma: | ||
DOCKER_COMPOSE_FILE=${DOCKER_COMPOSE_FILE} ../prisma_example/run.sh $(ARGS) | ||
DOCKER_COMPOSE_FILE=compose.yaml ../prisma_example/run.sh $(ARGS) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
receivers: | ||
otlp: | ||
protocols: | ||
http: | ||
endpoint: "0.0.0.0:4318" | ||
cors: | ||
allowed_origins: | ||
- "*" | ||
|
||
processors: | ||
batch: | ||
|
||
exporters: | ||
otlp/honeycomb: | ||
endpoint: https://api.honeycomb.io:443 | ||
headers: | ||
"x-honeycomb-team": ${env:HONEYCOMB_API_KEY} | ||
|
||
debug: | ||
verbosity: detailed | ||
|
||
service: | ||
pipelines: | ||
traces: | ||
receivers: [otlp] | ||
processors: [batch] | ||
exporters: [otlp/honeycomb] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters