activeagents-telemetry 0.1.0 → 0.2.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.
- checksums.yaml +4 -4
- data/CHANGELOG.md +18 -0
- data/README.md +2 -1
- data/lib/activeagents/telemetry/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 1c2085ce9e986ab9f20cd5b8b6faf925301ec001c3f2c1c2b83192a5dcdde2f3
|
|
4
|
+
data.tar.gz: a62a35e305d0aa40b045759aef40ba1875ee44c87fa5a8c567e26b9ecda32ad5
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: e5c6fdd40bd2528aa6c8deea2cbe5aaf506a05020b2a298f00f264178ef86821af63b36a6f6b7bb3bd03c3b23b35d15dce5ed1b24a5a3cfca0a30e336582167a
|
|
7
|
+
data.tar.gz: 93342e15bc143cd5298b39a6944ea95dea84a0cb50f19c359605b5c5f777f91b780e75f02638f074f632fdf473aaf3a8f9cdc05df0af8331324d538a7b3ced4a
|
data/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,23 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## [0.2.0] - 2026-08-14
|
|
4
|
+
|
|
5
|
+
### Added
|
|
6
|
+
|
|
7
|
+
- The RubyLLM adapter captures conversation content when the configuration's
|
|
8
|
+
`capture_bodies` is enabled: `llm.prompt`, `llm.instructions` and
|
|
9
|
+
`llm.completion` on the root span, and `tool.arguments` / `tool.result` on
|
|
10
|
+
each tool span. Each value is truncated to 4,000 characters
|
|
11
|
+
(`RubyLLM::CONTENT_LIMIT`). `llm.instructions` joins every system message,
|
|
12
|
+
since RubyLLM's `with_instructions` appends by default and reporting only
|
|
13
|
+
the last one would hide a layered base prompt. A tool span records a result
|
|
14
|
+
only when the call succeeded; a raised tool reports its truncated error
|
|
15
|
+
message instead.
|
|
16
|
+
|
|
17
|
+
Capture stays **off** by default. Prompts and tool results carry whatever
|
|
18
|
+
the application sends the model, so enabling this is a data-handling
|
|
19
|
+
decision — the truncation is a cap on trace size, not a redaction boundary.
|
|
20
|
+
|
|
3
21
|
## [Unreleased]
|
|
4
22
|
|
|
5
23
|
## [0.1.0] - 2026-08-10
|
data/README.md
CHANGED
|
@@ -50,7 +50,8 @@ root SupportBot.respond 1,240ms OK
|
|
|
50
50
|
└─ tool tool.search_docs 310ms OK
|
|
51
51
|
```
|
|
52
52
|
|
|
53
|
-
|
|
53
|
+
Prompts, completions, and tool arguments/results are sent only when
|
|
54
|
+
`capture_bodies` is enabled (off by default). Error messages are truncated and
|
|
54
55
|
backtraces are never transmitted.
|
|
55
56
|
|
|
56
57
|
## Self-hosting
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: activeagents-telemetry
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.
|
|
4
|
+
version: 0.2.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- ActiveAgents
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2026-08-
|
|
11
|
+
date: 2026-08-14 00:00:00.000000000 Z
|
|
12
12
|
dependencies: []
|
|
13
13
|
description: |
|
|
14
14
|
The wire format, configuration, and delivery layer behind ActiveAgents
|