Skip to content

Commit

Permalink
Traces & Logs Arrow Schema v1 (#151)
Browse files Browse the repository at this point in the history
* generate mermait ER diagram from arrow schemas

* improve traces compression ratio

* improve traces compression ratio

* make traces parquet ready

* fix traces unit tests

* modify logs arrow schema to follow the approach used for traces

* fix unit tests

* improve comments

* fix collector unit tests (order issue).
  • Loading branch information
lquerel authored May 22, 2023
1 parent 710580c commit 6d36462
Show file tree
Hide file tree
Showing 70 changed files with 4,686 additions and 3,605 deletions.
4 changes: 2 additions & 2 deletions collector/gen/internal/testdata/trace.go
Original file line number Diff line number Diff line change
Expand Up @@ -35,9 +35,9 @@ func GenerateTraces(spanCount int) ptrace.Traces {
for i := 0; i < spanCount; i++ {
switch i % 2 {
case 0:
fillSpanTwo(ss.AppendEmpty())
case 1:
fillSpanOne(ss.AppendEmpty())
case 1:
fillSpanTwo(ss.AppendEmpty())
}
}
return td
Expand Down
Loading

0 comments on commit 6d36462

Please sign in to comment.