diff --git a/docs/en/changes/changes.md b/docs/en/changes/changes.md index 5e5f262d7f19..7a5d87fbc018 100644 --- a/docs/en/changes/changes.md +++ b/docs/en/changes/changes.md @@ -8,6 +8,7 @@ * Fix wrong indices in the eBPF Profiling related models. * Support exclude the specific namespaces traffic in the eBPF Access Log receiver. * Add Golang as a supported language for Elasticsearch. +* Remove unnecessary BanyanDB flushing logs(info). #### UI diff --git a/docs/en/setup/backend/marketplace.md b/docs/en/setup/backend/marketplace.md index 28165eb2ccbe..7a398b339796 100644 --- a/docs/en/setup/backend/marketplace.md +++ b/docs/en/setup/backend/marketplace.md @@ -8,5 +8,5 @@ Once SkyWalking detects the services of those layers, the relative menu will sho If you prefer to have a custom dashboard to visualize your metrics, logs, and traces in your private setup, you need to 1. Follow Tracing, Logging, and Metrics documentation to set up codes. 2. Follow Customization documentation to add analysis pipeline. -3. Follow [UI Customization Setup documentation](../../ui/readme) to set up new UI dashboards. +3. Follow [UI Customization Setup documentation](../../ui/README.md) to set up new UI dashboards. diff --git a/oap-server/server-storage-plugin/storage-banyandb-plugin/src/main/java/org/apache/skywalking/oap/server/storage/plugin/banyandb/measure/BanyanDBMetricsDAO.java b/oap-server/server-storage-plugin/storage-banyandb-plugin/src/main/java/org/apache/skywalking/oap/server/storage/plugin/banyandb/measure/BanyanDBMetricsDAO.java index e971dd70320a..fd519c8a1b90 100644 --- a/oap-server/server-storage-plugin/storage-banyandb-plugin/src/main/java/org/apache/skywalking/oap/server/storage/plugin/banyandb/measure/BanyanDBMetricsDAO.java +++ b/oap-server/server-storage-plugin/storage-banyandb-plugin/src/main/java/org/apache/skywalking/oap/server/storage/plugin/banyandb/measure/BanyanDBMetricsDAO.java @@ -64,7 +64,6 @@ public BanyanDBMetricsDAO(BanyanDBStorageClient client, StorageBuilder @Override public List multiGet(Model model, List metrics) throws IOException { - log.info("multiGet {} from BanyanDB", model.getName()); MetadataRegistry.Schema schema = MetadataRegistry.INSTANCE.findMetadata(model); if (schema == null) { throw new IOException(model.getName() + " is not registered"); @@ -148,7 +147,6 @@ protected void apply(MeasureQuery query) { @Override public InsertRequest prepareBatchInsert(Model model, Metrics metrics, SessionCacheCallback callback) throws IOException { - log.info("prepare to insert {}", model.getName()); MetadataRegistry.Schema schema = MetadataRegistry.INSTANCE.findMetadata(model); if (schema == null) { throw new IOException(model.getName() + " is not registered"); @@ -166,7 +164,6 @@ public InsertRequest prepareBatchInsert(Model model, Metrics metrics, SessionCac @Override public UpdateRequest prepareBatchUpdate(Model model, Metrics metrics, SessionCacheCallback callback) throws IOException { - log.info("prepare to update {}", model.getName()); MetadataRegistry.Schema schema = MetadataRegistry.INSTANCE.findMetadata(model); if (schema == null) { throw new IOException(model.getName() + " is not registered");