Skip to content
This repository was archived by the owner on Aug 1, 2024. It is now read-only.

Commit a36f836

Browse files
committed
updated sdk
1 parent 69e56b9 commit a36f836

File tree

3 files changed

+17
-1
lines changed

3 files changed

+17
-1
lines changed

.gitignore

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
.idea/
2+
__pycache__/
3+
.venv/
4+
domains/deployments/local/models/gguf/**
5+
tmp/**
6+
.DS_Store
7+
.env
8+
**.parquet
9+
**.csv
10+
.egg-info/
11+
dist/
12+
domains/platform-frontend/.env.production
13+
domains/platform-frontend/.env.development
14+
*.tgz
15+
domains/control-plane/.env.bck

.python-version

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
3.11.8

src/vendi_sdk/runtime/span_processer.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77

88

99
def get_exporter(api_endpoint: str, headers: dict[str, str]) -> OTLPSpanExporter:
10-
return OTLPSpanExporter(endpoint=f"{api_endpoint}/api/v1/traces", headers=headers)
10+
return OTLPSpanExporter(endpoint=f"{api_endpoint}/api/v1/analytics-collector/activity", headers=headers)
1111

1212

1313
class InstrumentSpanProcessor(SimpleSpanProcessor):

0 commit comments

Comments
 (0)