@exulu/backend 1.17.0 → 1.18.0
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.
- package/CHANGELOG.md +3 -2
- package/dist/index.cjs +1676 -1719
- package/dist/index.d.cts +12 -67
- package/dist/index.d.ts +12 -67
- package/dist/index.js +1677 -1718
- package/documentation/logging.md +1 -1
- package/documentation/otel.md +1 -1
- package/package.json +1 -1
- package/types/models/agent.ts +0 -1
- package/types/models/context.ts +2 -22
- package/types/models/item.ts +1 -1
- package/types/models/variable.ts +8 -0
package/documentation/logging.md
CHANGED
package/documentation/otel.md
CHANGED
|
@@ -80,7 +80,7 @@ if (config?.telemetry?.enabled) {
|
|
|
80
80
|
|
|
81
81
|
The current implementation is specifically designed for SigNoz integration (supports both SigNoz Cloud and self-hosted deployments):
|
|
82
82
|
|
|
83
|
-
- **Service Name**: `
|
|
83
|
+
- **Service Name**: `Exulu`
|
|
84
84
|
- **Traces**: Exported to `SIGNOZ_TRACES_URL`
|
|
85
85
|
- **Logs**: Exported to `SIGNOZ_LOGS_URL`
|
|
86
86
|
- **Authentication**: Uses `signoz-access-token` header
|
package/package.json
CHANGED
package/types/models/agent.ts
CHANGED
package/types/models/context.ts
CHANGED
|
@@ -1,5 +1,4 @@
|
|
|
1
1
|
import type { ExuluFieldTypes } from "../enums/field-types"
|
|
2
|
-
import type { Agent } from "./agent"
|
|
3
2
|
|
|
4
3
|
export interface Context {
|
|
5
4
|
id: string
|
|
@@ -11,25 +10,6 @@ export interface Context {
|
|
|
11
10
|
fields: {
|
|
12
11
|
name: string
|
|
13
12
|
type: ExuluFieldTypes
|
|
13
|
+
label: string
|
|
14
14
|
}[]
|
|
15
|
-
|
|
16
|
-
agents: Agent[]
|
|
17
|
-
}
|
|
18
|
-
|
|
19
|
-
export interface ContextSource {
|
|
20
|
-
id: string
|
|
21
|
-
name: string
|
|
22
|
-
description: string
|
|
23
|
-
updaters: Updater[]
|
|
24
|
-
}
|
|
25
|
-
|
|
26
|
-
export interface Updater {
|
|
27
|
-
id: string
|
|
28
|
-
type: string
|
|
29
|
-
configuration: Configuration
|
|
30
|
-
}
|
|
31
|
-
|
|
32
|
-
export interface Configuration {
|
|
33
|
-
query: string
|
|
34
|
-
}
|
|
35
|
-
|
|
15
|
+
}
|
package/types/models/item.ts
CHANGED