This is an automated email from the ASF dual-hosted git repository.

github-bot pushed a change to branch 
dependabot/go_modules/go.opentelemetry.io/otel/sdk-1.40.0
in repository https://gitbox.apache.org/repos/asf/skywalking-banyandb.git


 discard f61f43361 Bump go.opentelemetry.io/otel/sdk from 1.38.0 to 1.40.0
     add 66c9bdc9c Support schema property client connect to the schema server 
(#979)
     add ff1c63e33 Support gossip repair protocol in schema property server 
(#982)
     add 7568a326b feat(fodc): Add eBPF-based KTM I/O monitor to FODC agent 
(#919)
     add a80d98062 Bump go.opentelemetry.io/otel/sdk from 1.38.0 to 1.40.0

This update added new revisions after undoing existing revisions.
That is to say, some revisions that were in the old version of the
branch are not in the new version.  This situation occurs
when a user --force pushes a change and generates a repository
containing something like this:

 * -- * -- B -- O -- O -- O   (f61f43361)
            \
             N -- N -- N   
refs/heads/dependabot/go_modules/go.opentelemetry.io/otel/sdk-1.40.0 (a80d98062)

You should already have received notification emails for all of the O
revisions, and so the following emails describe only the N revisions
from the common base, B.

Any revisions marked "omit" are not gone; other references still
refer to them.  Any revisions marked "discard" are gone forever.

No new revisions were added by this update.

Summary of changes:
 .github/workflows/ci.yml                           |   45 +-
 .github/workflows/test-fodc-e2e.yml                |  133 ++
 .gitignore                                         |    8 +
 CHANGES.md                                         |    1 +
 api/common/id.go                                   |   10 +-
 api/proto/banyandb/database/v1/database.proto      |    1 +
 api/proto/banyandb/schema/v1/internal.proto        |    9 -
 banyand/liaison/grpc/registry_test.go              |    2 +-
 banyand/liaison/grpc/server_test.go                |    2 +-
 banyand/measure/cache_benchmark_test.go            |    2 +-
 banyand/measure/measure_suite_test.go              |    2 +-
 banyand/metadata/client.go                         |  358 +++--
 banyand/metadata/discovery/common/cache.go         |   25 +-
 banyand/metadata/discovery/dns/dns.go              |   18 +-
 banyand/metadata/discovery/dns/dns_test.go         |   16 +-
 banyand/metadata/discovery/file/file.go            |   17 +
 banyand/metadata/discovery/file/file_test.go       |    2 +-
 banyand/metadata/metadata_test.go                  |    2 +-
 banyand/metadata/schema/etcd.go                    |   47 +-
 banyand/metadata/schema/export_test.go             |   49 +
 banyand/metadata/schema/group.go                   |    2 +-
 banyand/metadata/schema/kind.go                    |   23 +-
 banyand/metadata/schema/property/cache.go          |  133 ++
 banyand/metadata/schema/property/cache_test.go     |  233 +++
 banyand/metadata/schema/property/client.go         | 1327 +++++++++++++++++
 banyand/metadata/schema/property/client_test.go    | 1498 ++++++++++++++++++++
 banyand/metadata/schema/property/converter.go      |  375 +++++
 banyand/metadata/schema/property/converter_test.go |  541 +++++++
 banyand/metadata/schema/property/schema_client.go  |   91 ++
 .../schema/property}/testdata/certs/ca.crt         |    0
 .../schema/property}/testdata/certs/ca.key         |    0
 .../property}/testdata/certs/cert.conf.template    |    0
 .../schema/property}/testdata/certs/server.crt     |    0
 .../schema/property}/testdata/certs/server.key     |    0
 banyand/metadata/schema/register_test.go           |   22 +-
 banyand/metadata/schema/schema.go                  |   22 +-
 banyand/metadata/schema/schemaserver/grpc.go       |   44 +-
 banyand/metadata/schema/schemaserver/grpc_test.go  |   72 +-
 .../metadata/schema/schemaserver/repair_service.go |  196 +++
 .../schema/schemaserver/repair_service_test.go     |  452 ++++++
 banyand/metadata/schema/schemaserver/service.go    |   50 +-
 banyand/metadata/schema/watcher_test.go            |   25 +-
 banyand/metadata/service/server.go                 |  247 +++-
 banyand/observability/services/meter_native.go     |   27 +-
 banyand/observability/services/service.go          |   11 +-
 banyand/property/db/db.go                          |   24 +-
 banyand/property/db/repair.go                      |   11 +-
 banyand/property/db/repair_gossip_test.go          |    5 +-
 banyand/property/db/repair_test.go                 |    2 +
 banyand/property/db/shard.go                       |    2 +-
 banyand/property/db/shard_test.go                  |    2 +
 banyand/property/db/test_helper.go                 |    1 +
 banyand/property/gossip/client.go                  |    2 +-
 banyand/property/gossip/server.go                  |   17 +-
 banyand/property/gossip/service.go                 |   56 +-
 banyand/property/gossip/service_test.go            |    4 +-
 banyand/property/gossip/trace.go                   |    6 +-
 banyand/property/service.go                        |    5 +-
 banyand/queue/sub/server.go                        |    1 +
 banyand/stream/stream_suite_test.go                |    2 +-
 banyand/trace/trace_suite_test.go                  |    2 +-
 bydbctl/internal/cmd/property_test.go              |   12 +-
 dist/LICENSE                                       |    2 +
 ....txt => license-github.com-SkyAPM-ktm-ebpf.txt} |    0
 ...tify.txt => license-github.com-cilium-ebpf.txt} |    4 +-
 docs/api-reference.md                              |   34 +-
 docs/design/ktm.md                                 |   72 +-
 docs/operation/fodc/ktm_metrics.md                 |    5 +-
 fodc/agent/Makefile                                |    5 +-
 fodc/agent/internal/cmd/root.go                    |  165 ++-
 .../integration/basic_metrics_buffering_test.go    |    2 +-
 .../internal/integration/buffer_overflow_test.go   |    2 +-
 .../internal/integration/metrics_export_test.go    |  218 ++-
 .../agent/internal/ktm/config.go                   |   28 +-
 fodc/agent/internal/ktm/iomonitor/collector.go     |  213 +++
 .../ktm/iomonitor/ebpf/cgroup_discovery.go         |   72 +
 .../internal/ktm/iomonitor/ebpf/cgroup_filter.go   |   23 +-
 fodc/agent/internal/ktm/iomonitor/ebpf/filter.go   |  224 +++
 .../internal/ktm/iomonitor/ebpf/kernel_compat.go   |  230 +++
 fodc/agent/internal/ktm/iomonitor/ebpf/loader.go   |  333 +++++
 fodc/agent/internal/ktm/iomonitor/module_linux.go  |  435 ++++++
 .../agent/internal/ktm/iomonitor/module_other.go   |   53 +-
 fodc/agent/internal/ktm/ktm.go                     |  105 ++
 fodc/agent/internal/server/server.go               |    4 +-
 fodc/agent/internal/server/server_test.go          |   11 +-
 fodc/proxy/internal/api/server.go                  |   85 +-
 fodc/proxy/internal/api/server_test.go             |  531 ++++++-
 go.mod                                             |    2 +
 go.sum                                             |   14 +
 pkg/cmdsetup/data.go                               |    9 +-
 pkg/cmdsetup/liaison.go                            |    4 +-
 pkg/cmdsetup/standalone.go                         |    6 +-
 pkg/grpchelper/connmanager.go                      |   55 +-
 pkg/meter/native/provider.go                       |   82 +-
 pkg/test/flags/flags.go                            |   14 +
 pkg/test/setup/setup.go                            |    2 +
 scripts/build/{generate_go.mk => bpf2go.mk}        |   26 +-
 .../input/limit.yaml => scripts/build/bpftool.mk   |   26 +-
 scripts/build/version.mk                           |    4 +
 test/fodc/README.md                                |   99 ++
 test/fodc/check.sh                                 |  151 ++
 .../expected/report-event.yml => fodc/kind.yaml}   |    6 +-
 test/fodc/pod-sysadmin.yaml                        |   79 ++
 test/fodc/pod.yaml                                 |   78 +
 test/fodc/write-load.sh                            |   75 +
 105 files changed, 9189 insertions(+), 693 deletions(-)
 create mode 100644 .github/workflows/test-fodc-e2e.yml
 create mode 100644 banyand/metadata/schema/export_test.go
 create mode 100644 banyand/metadata/schema/property/cache.go
 create mode 100644 banyand/metadata/schema/property/cache_test.go
 create mode 100644 banyand/metadata/schema/property/client.go
 create mode 100644 banyand/metadata/schema/property/client_test.go
 create mode 100644 banyand/metadata/schema/property/converter.go
 create mode 100644 banyand/metadata/schema/property/converter_test.go
 create mode 100644 banyand/metadata/schema/property/schema_client.go
 copy banyand/{queue/pub => metadata/schema/property}/testdata/certs/ca.crt 
(100%)
 copy banyand/{queue/pub => metadata/schema/property}/testdata/certs/ca.key 
(100%)
 copy banyand/{queue/pub => 
metadata/schema/property}/testdata/certs/cert.conf.template (100%)
 copy banyand/{queue/pub => metadata/schema/property}/testdata/certs/server.crt 
(100%)
 copy banyand/{queue/pub => metadata/schema/property}/testdata/certs/server.key 
(100%)
 create mode 100644 banyand/metadata/schema/schemaserver/repair_service.go
 create mode 100644 banyand/metadata/schema/schemaserver/repair_service_test.go
 copy dist/licenses/{license-github.com-cncf-xds-go.txt => 
license-github.com-SkyAPM-ktm-ebpf.txt} (100%)
 copy dist/licenses/{license-github.com-stretchr-testify.txt => 
license-github.com-cilium-ebpf.txt} (90%)
 copy pkg/accesslog/accesslog.go => fodc/agent/internal/ktm/config.go (59%)
 create mode 100644 fodc/agent/internal/ktm/iomonitor/collector.go
 create mode 100644 fodc/agent/internal/ktm/iomonitor/ebpf/cgroup_discovery.go
 copy banyand/cmd/restore/main.go => 
fodc/agent/internal/ktm/iomonitor/ebpf/cgroup_filter.go (64%)
 create mode 100644 fodc/agent/internal/ktm/iomonitor/ebpf/filter.go
 create mode 100644 fodc/agent/internal/ktm/iomonitor/ebpf/kernel_compat.go
 create mode 100644 fodc/agent/internal/ktm/iomonitor/ebpf/loader.go
 create mode 100644 fodc/agent/internal/ktm/iomonitor/module_linux.go
 copy banyand/liaison/http/rpath_ui.go => 
fodc/agent/internal/ktm/iomonitor/module_other.go (53%)
 create mode 100644 fodc/agent/internal/ktm/ktm.go
 copy scripts/build/{generate_go.mk => bpf2go.mk} (56%)
 copy test/cases/measure/data/input/limit.yaml => scripts/build/bpftool.mk (57%)
 create mode 100644 test/fodc/README.md
 create mode 100755 test/fodc/check.sh
 copy test/{e2e-v2/cases/event/expected/report-event.yml => fodc/kind.yaml} 
(90%)
 create mode 100644 test/fodc/pod-sysadmin.yaml
 create mode 100644 test/fodc/pod.yaml
 create mode 100755 test/fodc/write-load.sh

Reply via email to