Nir Gazit
Nir Gazit
### Which component is this feature for? Langchain Instrumentation ### 🔖 Feature description Right now, we monkey-patch classes and methods in LlamaIndex which requires endless work and constant maintenance. Langchain...
### Which component is this bug for? VertexAI Instrumentation ### 📜 Description Following #413, I had to disable the VertexAI tests since vcr.py doesn't support GRPC. We need to figure...
### Which component is this feature for? All Packages ### 🔖 Feature description We need to extract and report embedding vectors that are sent and returned for `query` calls to...
### Which component is this feature for? All Packages ### 🔖 Feature description Instrument calls to [Milvus](https://milvus.io/docs/search.md), including adding attributes, similarly to our [Chroma](https://github.com/traceloop/openllmetry/tree/main/packages/opentelemetry-instrumentation-chroma) instrumentation. The instrumentation should support all...
**Summary** [OpenTelemetry](https://opentelemetry.io) is a CNCF standard for cloud observability. It instruments HTTP calls, DB calls, etc as traces. Together with [OpenLLMetry](https://github.com/traceloop/openllmetry), which provides instrumentations for LLM providers like OpenA, vector...
Our project started as a Javascript project and is gradually moving to Typescript. - [ ] Complete update of all `.js` files to `.ts`. - [ ] Fix all outstanding...
### 🔖 Feature description Similar to how we have Postgres queries assertions that allows us to test that a write to Postgres happened in some system flow, we want to...
### 🔖 Feature description Our [Postgres](https://github.com/traceloop/jest-opentelemetry/blob/main/packages/expect-opentelemetry/src/matchers/service/to-query-postgresql.ts) assertions can only validate exact queries. So, for example, you can validate that a query like `INSERT INTO users(email) VALUES ([email protected])`. The downside of...
### 🔖 Feature description Support asserting against [loading data into Snowflake](https://docs.snowflake.com/en/user-guide/data-load-snowpipe-rest-load). This will allow us to write assertions like ```ts expectTrace(traceloop) .toReportToSnowflake() .withEvent('user-registered') .withProperties({ 'email': '[email protected]'}); ``` ### 🎤 Why...
**Is your contribution request related to a problem? Please describe.** I'm the maintainer of [OpenLLMetry](https://github.com/traceloop/openllmetry) where we instrument LLM providers for traces and metrics on top of OpenTelemetry. I'd like...