Abhijit Sarkar

Results 123 issues of Abhijit Sarkar

**Is your feature request related to a problem? Please describe.** The expression: ``` lexeme $ (:) between '2' '9' M.count 2 $ between '0' '9' ``` is evaluated as: ```...

type: enhancement

I'm looking to know the next version without actually making any changes to the repo, sort of like the `currentVersion`. I'd like to set up versioning rules in the build...

If I wanted to impose a tag naming convention, or in other words, disallow some tags, how could I do that? I need a hook that gets called no matter...

**The problem** Currently, annotations `@GrpcService` and `@GrpcClient` autoconfigure the server and the client respectively. For integration testing, we can use in process server and client as explained [here](https://yidongnan.github.io/grpc-spring-boot-starter/en/server/testing.html#integration-tests). In my...

enhancement

This is a usage question. In the [Sleuth docs](https://cloud.spring.io/spring-cloud-sleuth/spring-cloud-sleuth.html#_grpc) for gRPC, they mention two variants. First one uses `io.github.lognet:grpc-spring-boot-starter` and `io.zipkin.brave:brave-instrumentation-grpc` and clients must use `SpringAwareManagedChannelBuilder`. In the second variant,...

help wanted
examples

It's not at all clear from the documentation what is traced in the presence of Spring Cloud Sleuth. Are tracing headers added to all client-server calls? How's that helpful if...

help wanted
documentation

**The problem** Monitor the health of a gRPC server app. **The solution** Provide a gRPC server `HealthEndpoint`. My blog post on this matter may be useful. https://blog.asarkar.com/technical/grpc-kubernetes-spring/ **Alternatives considered** Implement...

enhancement

Firstly, there is nothing in the docs regarding what metrics are collected, and how to disable metrics collections. I asked in https://github.com/yidongnan/grpc-spring-boot-starter/issues/239 if more details could be added. Then, looking...

enhancement
help wanted

I’ve a use case where the provider wants us to throttle the calls not by some fixed rate/second, but by individual user ids. In other words, a user must wait...