You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I would like to capture what is consumed and published from an application, and I want the application to go through a Kafka proxy. Does this source code (without docker image) serve this purpose if I used it as a library in my code-base?
Idea:
graph LR
A[Application]
subgraph KP[Kafka Proxy]
B[Consumer]
C[Producer]
S[In Memory Message Store]
end
A --> KP
KP --> K[Kafka]
K --> KP
subgraph T[Testing]
V[Observation, shouldBeConsumed, shouldBePublished]
end
KP --> T
KP --> A
Hi,
I would like to capture what is consumed and published from an application, and I want the application to go through a Kafka proxy. Does this source code (without docker image) serve this purpose if I used it as a library in my code-base?
Idea:
The need is coming from this library that I ve been developing: https://github.com/Trendyol/stove
Do you think that the idea is possible with the proxy?
The text was updated successfully, but these errors were encountered: