Harish
Harish
Hi, I looked at implementing in-place zlib compression suggested by @lalitb. A couple of issues that I need some help with: 1. For the case where the data is insufficiently...
@owent I'm planning to deploy opentelemetry as the primary logging system for my organization's c++ projects, and we have a requirement for exporting logs to disk before being read by...
The ```OtlpFileExporter``` that I currently use is nothing more than a slightly modified ```OtlpHttpExporter```. Currently, it does something like this: ``` nlohmann::json json_request; ConvertGenericMessageToJson(json_request, message, options_); writer_
I'm sorry about that @owent. I wasn't able to get permission from higher ups in time to submit a PR earlier.
I'm not completely sure about why some builds pass and some fail. Do we need to add a separate find_package command for ZLIB. I'm a little new to CMake and...
@marcalff Testing was done with an internal message queue which collects logs from multiple services with gzip compression enabled. However, I did find a major issue in my implementation. Because...
@marcalff I have update the CI accordingly. I think the bazel build also has to be updated to link zlib only when built with the otlp compression flag. I'm not...
@lalitb Sorry for the late reply, I'm a little busy till next week. I think the in place compression technique would very much help with allocations. I will take a...
Hi @owent, thanks for doing this. This is a very nice and well done PR. I have a couple of questions for now: 1. I'm not very familiar with this...
Hi @lalitb, I'm interested in working on this issue. It seems quite easy to add gzip compression to a ``grpc::Channel``. However, I'm a little confused about the Http part. As...