Lalit Kumar Bhasin

Results 433 comments of Lalit Kumar Bhasin
trafficstars

@frederikhors Can you try something like (not tested) ```rust fn init_tracer_provider() -> Result { // Create a span exporter let exporter = SpanExporter::builder() .with_http() .with_protocol(Protocol::HttpBinary) .with_endpoint("http://localhost:4318/v1/traces") .build()?; let batch_config =...

> Importing TracerProvider oviously doesn't work because this is not the fix. Try importing `use opentelemetry::trace::TracerProvider as _;` if that works?

> It works. But ??? Is this OK? Yes, this is typical of Rust — the trait must be in scope for its methods to be accessible.

Yes it's know issue, and was discussed in the community meeting. I was supposed to give access to other maintainers to debug further, somehow missed out. Let me have a...

@nishchith-cp Sorry for the late reply. Our Observability team doesn't have the necessary bandwidth to support VisionOS for now. We will discuss with @eduardo-camacho during the next community meeting if...

@nishchith-cp - Yes this was discussed yesterday. @eduardo-camacho suggested using the `DeviceInfo.OsVersion` to identify visionOS. The OS name would remain the same, however the version would be the actual version...

Also, the core C++ SDK provides the SemanticContext method to [override ](https://github.com/microsoft/cpp_client_telemetry/blob/f1470795977588fbf5a3c25c0ab83e16c9635505/lib/include/public/ISemanticContext.hpp#L195)the OsName - ```cpp virtual void ISemanticContext::SetOsName(const std::string &x) { SetCommonField(COMMONFIELDS_OS_NAME, x); }; ``` This method is implemented for...

> For the suggested changes, when can we expect the SDK release? As I mentioned earlier, we can help with guidance and reviews if someone would like to contribute to...

@nishchith-cp Just wondering if you plan to add this support?