@blaxel/telemetry 0.2.7-preview.6 → 0.2.7

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/README.md +51 -0
  2. package/package.json +2 -2
package/README.md ADDED
@@ -0,0 +1,51 @@
1
+ # Blaxel Typescript SDK
2
+
3
+ <p align="center">
4
+ <img src="https://blaxel.ai/logo.png" alt="Blaxel"/>
5
+ </p>
6
+
7
+ **Blaxel is a computing platform for AI agent builders, with all the services and infrastructure to build and deploy agents efficiently.** This repository contains the TypeScript SDK to enable our integrated telemetry.
8
+
9
+ ## Table of Contents
10
+
11
+ - [Installation](#installation)
12
+ - [Features](#features)
13
+
14
+
15
+
16
+ ## Installation
17
+
18
+ Install Blaxel telemetry SDK, which lets you enable telemetry.
19
+
20
+ ```bash
21
+ ## npm
22
+ npm install @blaxel/telemetry
23
+
24
+ ## pnpm
25
+ pnpm i @blaxel/telemetry
26
+
27
+ ## yarn
28
+ yarn add @blaxel/telemetry
29
+ ```
30
+
31
+
32
+ ## Features
33
+ - Enable tracing : Trace are automatically sampled at 10%, and can be retrieved from the Blaxel console.
34
+
35
+
36
+ Instrumentation happens automatically when workloads run on Blaxel. To enable telemetry, simply require the SDK in your project's entry point.
37
+ ```ts
38
+ import "@blaxel/telemetry";
39
+ ```
40
+
41
+
42
+
43
+ ## Contributing
44
+
45
+ Contributions are welcome! Please feel free to submit a Pull Request.
46
+
47
+
48
+
49
+ ## License
50
+
51
+ This project is licensed under the MIT License - see the LICENSE file for details.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@blaxel/telemetry",
3
- "version": "0.2.7-preview.6",
3
+ "version": "0.2.7",
4
4
  "description": "Blaxel SDK for TypeScript",
5
5
  "license": "MIT",
6
6
  "author": "Blaxel, INC (https://blaxel.ai)",
@@ -71,7 +71,7 @@
71
71
  "@opentelemetry/sdk-trace-base": "^2.0.0",
72
72
  "@opentelemetry/sdk-trace-node": "^2.0.0",
73
73
  "ai": "^4.3.13",
74
- "@blaxel/core": "0.2.7-preview.6"
74
+ "@blaxel/core": "0.2.7"
75
75
  },
76
76
  "devDependencies": {
77
77
  "@eslint/js": "^9.26.0",