This is an automated email from the ASF dual-hosted git repository.
hanahmily pushed a change to branch dependabot/npm_and_yarn/ui/echarts-6.1.0
in repository https://gitbox.apache.org/repos/asf/skywalking-banyandb.git
from 7edf94bfb Merge branch 'main' into
dependabot/npm_and_yarn/ui/echarts-6.1.0
add 1a2696b8a feat(trace): bounded meter + logger telemetry for the
sampler plugin SDK (#1206)
add 26daf947d chore(deps): bump ui/mcp/go deps to clear Dependabot
advisories (#1211)
add b689bf398 Merge branch 'main' into
dependabot/npm_and_yarn/ui/echarts-6.1.0
No new revisions were added by this update.
Summary of changes:
CHANGES.md | 2 +
Makefile | 18 +-
banyand/trace/metadata.go | 115 +++-
banyand/trace/pipeline_loader.go | 46 +-
banyand/trace/pipeline_loader_test.go | 22 +-
banyand/trace/pipeline_metrics.go | 44 +-
banyand/trace/pipeline_metrics_test.go | 102 ++-
banyand/trace/pipeline_registry.go | 47 +-
banyand/trace/pipeline_watch_test.go | 18 +-
banyand/trace/plugin_telemetry.go | 712 ++++++++++++++++++++
banyand/trace/plugin_telemetry_integration_test.go | 550 +++++++++++++++
banyand/trace/plugin_telemetry_realso_test.go | 746 +++++++++++++++++++++
banyand/trace/plugin_telemetry_test.go | 378 +++++++++++
dist/LICENSE | 226 +++----
...e-github.com-aws-aws-sdk-go-v2-internal-ini.txt | 202 ------
.../license-github.com-bits-and-blooms-bitset.txt | 2 +-
.../license-github.com-golang-jwt-jwt-v5.txt | 9 -
...otify.txt => license-github.com-zeebo-xxh3.txt} | 15 +-
...-go-ini-ini.txt => license-gopkg.in-ini.v1.txt} | 0
...ense-body-parser-node-modules-content-type.txt} | 0
docs/design/post-trace-pipeline.md | 58 ++
go.mod | 177 +++--
go.sum | 382 ++++++-----
mcp/LICENSE | 13 +-
mcp/package-lock.json | 271 ++++----
pkg/encoding/array.go | 80 +--
pkg/encoding/{array.go => vararray/vararray.go} | 9 +-
pkg/pb/v1/value.go | 27 +-
.../pb/v1/valuetype/valuetype.go | 23 +-
pkg/pipeline/sdk/decode.go | 28 +-
pkg/pipeline/sdk/importgraph_test.go | 87 +++
pkg/pipeline/sdk/sdk.go | 21 +-
pkg/pipeline/sdk/telemetry.go | 104 +++
test/plugins/_faultysampler/main.go | 159 +++++
test/plugins/_latencystatussampler/main.go | 6 +-
test/plugins/_telemetrysampler/main.go | 128 ++++
test/plugins/telemetry_smoke_test.go | 171 +++++
ui/LICENSE | 38 +-
ui/package-lock.json | 360 +++++-----
39 files changed, 4245 insertions(+), 1151 deletions(-)
create mode 100644 banyand/trace/plugin_telemetry.go
create mode 100644 banyand/trace/plugin_telemetry_integration_test.go
create mode 100644 banyand/trace/plugin_telemetry_realso_test.go
create mode 100644 banyand/trace/plugin_telemetry_test.go
delete mode 100644
dist/licenses/license-github.com-aws-aws-sdk-go-v2-internal-ini.txt
delete mode 100644 dist/licenses/license-github.com-golang-jwt-jwt-v5.txt
copy dist/licenses/{license-github.com-fsnotify-fsnotify.txt =>
license-github.com-zeebo-xxh3.txt} (75%)
rename dist/licenses/{license-github.com-go-ini-ini.txt =>
license-gopkg.in-ini.v1.txt} (100%)
copy dist/licenses/mcp-licenses/{license-content-type.txt =>
license-body-parser-node-modules-content-type.txt} (100%)
copy pkg/encoding/{array.go => vararray/vararray.go} (86%)
copy banyand/trace/constants.go => pkg/pb/v1/valuetype/valuetype.go (52%)
create mode 100644 pkg/pipeline/sdk/importgraph_test.go
create mode 100644 pkg/pipeline/sdk/telemetry.go
create mode 100644 test/plugins/_faultysampler/main.go
create mode 100644 test/plugins/_telemetrysampler/main.go
create mode 100644 test/plugins/telemetry_smoke_test.go