unloggedio / unlogged-sdk

Unlogged SDK for recording code execution
https://unlogged.io
Apache License 2.0
152 stars 16 forks source link

For Classes/methods excluded by the plugin itself, the tool window shows 0 filters even though those classes are excluded. #77

Open kingkong-AI opened 2 weeks ago

kingkong-AI commented 2 weeks ago

Describe the bug

In the below image you can see that the BulkHeadController is excluded in the filters. But still the tool window shows 0 filters. image

Reproduction steps

  1. Direct invoke the method in webflux demo project with a large enough number:
    @GetMapping("fib/{input}")
    public Mono<ResponseEntity<Long>> fib(@PathVariable Long input){
        return Mono.fromSupplier(() -> findFib(input))
                .subscribeOn(scheduler)
                .map(ResponseEntity::ok);
    }
  2. The class will be excluded in the filters, but the filters will still show as 0 ...

Expected behavior

The actual number of filters applied should be visible in the toolbar UI.

Additional context

No response