Skip to content

Commit

Permalink
Remove unnecessary BanyanDB flushing logs(info). (#12319)
Browse files Browse the repository at this point in the history
  • Loading branch information
wu-sheng committed Jun 11, 2024
1 parent 6b9416b commit caeaec6
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 4 deletions.
1 change: 1 addition & 0 deletions docs/en/changes/changes.md
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down
2 changes: 1 addition & 1 deletion docs/en/setup/backend/marketplace.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.

Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,6 @@ public BanyanDBMetricsDAO(BanyanDBStorageClient client, StorageBuilder<Metrics>

@Override
public List<Metrics> multiGet(Model model, List<Metrics> 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");
Expand Down Expand Up @@ -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");
Expand All @@ -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");
Expand Down

0 comments on commit caeaec6

Please sign in to comment.