ruby_llm-opentelemetry 0.1.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 +7 -0
- data/LICENSE +21 -0
- data/README.md +25 -0
- data/lib/ruby_llm/opentelemetry/version.rb +7 -0
- data/lib/ruby_llm/opentelemetry.rb +14 -0
- metadata +50 -0
checksums.yaml
ADDED
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
---
|
|
2
|
+
SHA256:
|
|
3
|
+
metadata.gz: 96fcaff449ad04c3e1d40bdb95da9515ee92c7d202875e1bd087e2cccc91e211
|
|
4
|
+
data.tar.gz: a9b660f626be4a407712bc99b665557fc14b7e21e61114e1b634b555693d5f77
|
|
5
|
+
SHA512:
|
|
6
|
+
metadata.gz: 727a2e90a310d15ea86269834970c4c4b96488ef76dc8087f4620149067cc2916ea4dc45e62ae22c0546f40659b86cd86c7b81206b15c4c4042e36d3a132ab5a
|
|
7
|
+
data.tar.gz: 549505e815f9595f5264cde0323ea0e3ebf5f4684103c700513ca68177740435ad24cef3018e31467172d89f177fafe67dced4b95af83e88c2fb4aa0d73aafa6
|
data/LICENSE
ADDED
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
MIT License
|
|
2
|
+
|
|
3
|
+
Copyright (c) 2025 Carmine Paolino
|
|
4
|
+
|
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
6
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
7
|
+
in the Software without restriction, including without limitation the rights
|
|
8
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
9
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
10
|
+
furnished to do so, subject to the following conditions:
|
|
11
|
+
|
|
12
|
+
The above copyright notice and this permission notice shall be included in all
|
|
13
|
+
copies or substantial portions of the Software.
|
|
14
|
+
|
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
17
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
18
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
19
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
20
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
21
|
+
SOFTWARE.
|
data/README.md
ADDED
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
# RubyLLM OpenTelemetry
|
|
2
|
+
|
|
3
|
+
OpenTelemetry instrumentation for RubyLLM.
|
|
4
|
+
|
|
5
|
+
## Status
|
|
6
|
+
|
|
7
|
+
This is a placeholder release. The full implementation is coming soon!
|
|
8
|
+
|
|
9
|
+
## About
|
|
10
|
+
|
|
11
|
+
RubyLLM OpenTelemetry will subscribe to the instrumentation events the [RubyLLM](https://github.com/crmne/ruby_llm) gem emits and re-emit them as OpenTelemetry spans, compatible with the official opentelemetry-ruby SDK.
|
|
12
|
+
|
|
13
|
+
## Installation
|
|
14
|
+
|
|
15
|
+
```bash
|
|
16
|
+
gem install ruby_llm-opentelemetry
|
|
17
|
+
```
|
|
18
|
+
|
|
19
|
+
## Stay Tuned
|
|
20
|
+
|
|
21
|
+
Watch this repository for updates.
|
|
22
|
+
|
|
23
|
+
## License
|
|
24
|
+
|
|
25
|
+
MIT License - see LICENSE file for details.
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
# frozen_string_literal: true
|
|
2
|
+
|
|
3
|
+
require_relative 'opentelemetry/version'
|
|
4
|
+
|
|
5
|
+
module RubyLLM
|
|
6
|
+
# Placeholder release reserving the ruby_llm-opentelemetry gem name.
|
|
7
|
+
module OpenTelemetry
|
|
8
|
+
class Error < StandardError; end
|
|
9
|
+
|
|
10
|
+
def self.info
|
|
11
|
+
"RubyLLM OpenTelemetry #{VERSION} - coming soon"
|
|
12
|
+
end
|
|
13
|
+
end
|
|
14
|
+
end
|
metadata
ADDED
|
@@ -0,0 +1,50 @@
|
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
|
2
|
+
name: ruby_llm-opentelemetry
|
|
3
|
+
version: !ruby/object:Gem::Version
|
|
4
|
+
version: 0.1.0
|
|
5
|
+
platform: ruby
|
|
6
|
+
authors:
|
|
7
|
+
- Carmine Paolino
|
|
8
|
+
bindir: bin
|
|
9
|
+
cert_chain: []
|
|
10
|
+
date: 1980-01-02 00:00:00.000000000 Z
|
|
11
|
+
dependencies: []
|
|
12
|
+
description: 'RubyLLM OpenTelemetry will bridge RubyLLM instrumentation events to
|
|
13
|
+
OpenTelemetry spans: every chat, tool call, and provider attempt, visible in your
|
|
14
|
+
observability stack. This is a placeholder release - full implementation coming
|
|
15
|
+
soon!'
|
|
16
|
+
email:
|
|
17
|
+
- carmine@paolino.me
|
|
18
|
+
executables: []
|
|
19
|
+
extensions: []
|
|
20
|
+
extra_rdoc_files: []
|
|
21
|
+
files:
|
|
22
|
+
- LICENSE
|
|
23
|
+
- README.md
|
|
24
|
+
- lib/ruby_llm/opentelemetry.rb
|
|
25
|
+
- lib/ruby_llm/opentelemetry/version.rb
|
|
26
|
+
homepage: https://github.com/crmne/ruby_llm-opentelemetry
|
|
27
|
+
licenses:
|
|
28
|
+
- MIT
|
|
29
|
+
metadata:
|
|
30
|
+
homepage_uri: https://github.com/crmne/ruby_llm-opentelemetry
|
|
31
|
+
source_code_uri: https://github.com/crmne/ruby_llm-opentelemetry
|
|
32
|
+
rubygems_mfa_required: 'true'
|
|
33
|
+
rdoc_options: []
|
|
34
|
+
require_paths:
|
|
35
|
+
- lib
|
|
36
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
|
37
|
+
requirements:
|
|
38
|
+
- - ">="
|
|
39
|
+
- !ruby/object:Gem::Version
|
|
40
|
+
version: 3.1.3
|
|
41
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
42
|
+
requirements:
|
|
43
|
+
- - ">="
|
|
44
|
+
- !ruby/object:Gem::Version
|
|
45
|
+
version: '0'
|
|
46
|
+
requirements: []
|
|
47
|
+
rubygems_version: 4.0.16
|
|
48
|
+
specification_version: 4
|
|
49
|
+
summary: OpenTelemetry instrumentation for RubyLLM.
|
|
50
|
+
test_files: []
|