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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 6c38e176c17f5a182fcab038fd6d83d9c4892323e25396233b05c8ba77c4b5fe
4
- data.tar.gz: f884e7ee222f1e58d6d839c03d36e8dd8cff4f364850eff485d7f8b99e840899
3
+ metadata.gz: 1c2085ce9e986ab9f20cd5b8b6faf925301ec001c3f2c1c2b83192a5dcdde2f3
4
+ data.tar.gz: a62a35e305d0aa40b045759aef40ba1875ee44c87fa5a8c567e26b9ecda32ad5
5
5
  SHA512:
6
- metadata.gz: c455c628880fa3394dd19cdcb9e332f6a66624c1c85ca786d034ee29b4b20d8c3606c9a328f25a979ca29ed35a93aebe42155bc27666f4cab54feeb4502b5a5d
7
- data.tar.gz: c6d2eb0384422271e510528fa363fc5b961b9aceb393e2fe575985fa9326433765e014eda642acd891e75b038f1faf25a1101d74416ef325278e6a458948d020
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
- Tool arguments and results are never sent. Error messages are truncated and
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
@@ -2,6 +2,6 @@
2
2
 
3
3
  module ActiveAgents
4
4
  module Telemetry
5
- VERSION = "0.1.0"
5
+ VERSION = "0.2.0"
6
6
  end
7
7
  end
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.1.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-10 00:00:00.000000000 Z
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