-
Notifications
You must be signed in to change notification settings - Fork 3.2k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
KIP 714 with compression support #4721
KIP 714 with compression support #4721
Conversation
* WIP:Push telemetry is being scheduled now. * Push * Compliation Fix * Working * Use UUID in PUSH * Remove fprintf * Changes * Fix CONFIGURATION.md * Fix size * Update s2i bounds --------- Co-authored-by: Milind L <miluthra@confluent.io>
* Add broker selection and client termination * Address review comments
* Serialise metrics using nanopb * Move nanopb and opentelemetry inside src * Add metrics.options file * Remove unused includes * Style fix * Fix formatting * Skip copyright check * Add nanopb and opentelemetry in windows vcxproj * Include headers directories in CMAKE * Use flexver with PushTelemetry * Fix memory leaks * Change import path * Use rd_bool_t everywhere * Fix librdkafka.vcxproj * Use rd_bool_t * PR Feedback * Add nanopb license * Include opentelemtry license
* Support for delta temporality * Style fix * Fix bugs * Fix memory leaks and formatting * Fixes * PR Feedback
* Add telemetry encode and decode unit tests * Style fix * Improve test * PR Feedback
* Add max telemetry bytes * Clear telemetry_max_bytes * PR comments
…master_merge_with_compression
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Comments about encode and decode
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Most of remaining comments
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Comments about unit tests and naming
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Copyright and includes comments
#ifndef _RDKAFKA_RDKAFKA_TELEMETRY_ENCODE_H | ||
#define _RDKAFKA_RDKAFKA_TELEMETRY_ENCODE_H | ||
|
||
#include "rdtypes.h" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Add #include "rdkafka_int.h"
as it's needed for rd_kafka_t
#include "rdtypes.h" | |
#include "rdkafka_int.h" | |
#include "rdtypes.h" |
|
||
|
||
#ifndef _RD_KAFKA_TELEMETRY_H_ | ||
#define _RD_KAFKA_TELEMETRY_H_ |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Required for rd_kafka_t
#define _RD_KAFKA_TELEMETRY_H_ | |
#define _RD_KAFKA_TELEMETRY_H_ | |
#include "rdkafka_int.h" |
Please add these to the list of
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Some comments about placeholders types in formatted strings
9616eba
to
4732ff6
Compare
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
No description provided.