@damngamerz/pi-otel 0.1.0-bootstrap.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/ACKNOWLEDGEMENTS.md +7 -0
- package/CHANGELOG.md +10 -0
- package/LICENSE +21 -0
- package/LICENSES/Apache-2.0.txt +202 -0
- package/NOTICE +15 -0
- package/README.md +120 -0
- package/SECURITY.md +24 -0
- package/dist/commands/flush.d.ts +4 -0
- package/dist/commands/flush.d.ts.map +1 -0
- package/dist/commands/flush.js +20 -0
- package/dist/commands/flush.js.map +1 -0
- package/dist/commands/status.d.ts +5 -0
- package/dist/commands/status.d.ts.map +1 -0
- package/dist/commands/status.js +47 -0
- package/dist/commands/status.js.map +1 -0
- package/dist/config.d.ts +41 -0
- package/dist/config.d.ts.map +1 -0
- package/dist/config.js +260 -0
- package/dist/config.js.map +1 -0
- package/dist/evaluation/evaluator.d.ts +11 -0
- package/dist/evaluation/evaluator.d.ts.map +1 -0
- package/dist/evaluation/evaluator.js +55 -0
- package/dist/evaluation/evaluator.js.map +1 -0
- package/dist/evaluation/parser.d.ts +3 -0
- package/dist/evaluation/parser.d.ts.map +1 -0
- package/dist/evaluation/parser.js +42 -0
- package/dist/evaluation/parser.js.map +1 -0
- package/dist/evaluation/prompt.d.ts +2 -0
- package/dist/evaluation/prompt.d.ts.map +1 -0
- package/dist/evaluation/prompt.js +16 -0
- package/dist/evaluation/prompt.js.map +1 -0
- package/dist/evaluation/sampling.d.ts +9 -0
- package/dist/evaluation/sampling.d.ts.map +1 -0
- package/dist/evaluation/sampling.js +25 -0
- package/dist/evaluation/sampling.js.map +1 -0
- package/dist/evaluation/types.d.ts +19 -0
- package/dist/evaluation/types.d.ts.map +1 -0
- package/dist/evaluation/types.js +2 -0
- package/dist/evaluation/types.js.map +1 -0
- package/dist/index.d.ts +4 -0
- package/dist/index.d.ts.map +1 -0
- package/dist/index.js +151 -0
- package/dist/index.js.map +1 -0
- package/dist/lifecycle.d.ts +3 -0
- package/dist/lifecycle.d.ts.map +1 -0
- package/dist/lifecycle.js +15 -0
- package/dist/lifecycle.js.map +1 -0
- package/dist/privacy/content-policy.d.ts +8 -0
- package/dist/privacy/content-policy.d.ts.map +1 -0
- package/dist/privacy/content-policy.js +48 -0
- package/dist/privacy/content-policy.js.map +1 -0
- package/dist/privacy/sanitization.d.ts +5 -0
- package/dist/privacy/sanitization.d.ts.map +1 -0
- package/dist/privacy/sanitization.js +42 -0
- package/dist/privacy/sanitization.js.map +1 -0
- package/dist/privacy/secret-detector.d.ts +2 -0
- package/dist/privacy/secret-detector.d.ts.map +1 -0
- package/dist/privacy/secret-detector.js +14 -0
- package/dist/privacy/secret-detector.js.map +1 -0
- package/dist/telemetry/attributes.d.ts +11 -0
- package/dist/telemetry/attributes.d.ts.map +1 -0
- package/dist/telemetry/attributes.js +13 -0
- package/dist/telemetry/attributes.js.map +1 -0
- package/dist/telemetry/instruments.d.ts +17 -0
- package/dist/telemetry/instruments.d.ts.map +1 -0
- package/dist/telemetry/instruments.js +54 -0
- package/dist/telemetry/instruments.js.map +1 -0
- package/dist/telemetry/providers.d.ts +21 -0
- package/dist/telemetry/providers.d.ts.map +1 -0
- package/dist/telemetry/providers.js +88 -0
- package/dist/telemetry/providers.js.map +1 -0
- package/dist/telemetry/traces.d.ts +44 -0
- package/dist/telemetry/traces.d.ts.map +1 -0
- package/dist/telemetry/traces.js +265 -0
- package/dist/telemetry/traces.js.map +1 -0
- package/dist/telemetry/usage.d.ts +11 -0
- package/dist/telemetry/usage.d.ts.map +1 -0
- package/dist/telemetry/usage.js +25 -0
- package/dist/telemetry/usage.js.map +1 -0
- package/docs/configuration.md +61 -0
- package/docs/evaluation.md +38 -0
- package/docs/metrics.md +27 -0
- package/docs/operations.md +41 -0
- package/docs/privacy.md +38 -0
- package/examples/grafana-lgtm/LICENSE +6 -0
- package/examples/grafana-lgtm/README.md +47 -0
- package/examples/grafana-lgtm/compose.yaml +16 -0
- package/examples/grafana-lgtm/dashboard.json +616 -0
- package/examples/grafana-lgtm/provisioning.yaml +9 -0
- package/package.json +87 -0
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
# Acknowledgements
|
|
2
|
+
|
|
3
|
+
This project gratefully acknowledges **Oleksii Nikiforov (`NikiforovAll`)** and the original [`NikiforovAll/pi-otel`](https://github.com/NikiforovAll/pi-otel) project.
|
|
4
|
+
|
|
5
|
+
Its OpenTelemetry work for Pi and Grafana dashboard demonstrated the value of standards-based Pi observability and directly inspired this package. The dashboard under `examples/grafana-lgtm/dashboard.json` is adapted from that project and remains subject to the Apache License 2.0 notice described in [`NOTICE`](NOTICE).
|
|
6
|
+
|
|
7
|
+
Open-source work is stronger when prior art is recognized clearly and visibly. Thank you, Oleksii.
|
package/CHANGELOG.md
ADDED
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
# Changelog
|
|
2
|
+
|
|
3
|
+
All notable changes to this project will be documented here.
|
|
4
|
+
|
|
5
|
+
## 0.1.0
|
|
6
|
+
|
|
7
|
+
- Add privacy-conscious Pi traces and GenAI metrics over OTLP/HTTP.
|
|
8
|
+
- Add optional manual, sampled, and always-on remote response evaluation.
|
|
9
|
+
- Add credential detection, deterministic sampling, and evaluation trace correlation.
|
|
10
|
+
- Add a pinned loopback-only Grafana LGTM example and provisioned dashboard.
|
package/LICENSE
ADDED
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
MIT License
|
|
2
|
+
|
|
3
|
+
Copyright (c) 2026 Damngamerz
|
|
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.
|
|
@@ -0,0 +1,202 @@
|
|
|
1
|
+
|
|
2
|
+
Apache License
|
|
3
|
+
Version 2.0, January 2004
|
|
4
|
+
http://www.apache.org/licenses/
|
|
5
|
+
|
|
6
|
+
TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
|
|
7
|
+
|
|
8
|
+
1. Definitions.
|
|
9
|
+
|
|
10
|
+
"License" shall mean the terms and conditions for use, reproduction,
|
|
11
|
+
and distribution as defined by Sections 1 through 9 of this document.
|
|
12
|
+
|
|
13
|
+
"Licensor" shall mean the copyright owner or entity authorized by
|
|
14
|
+
the copyright owner that is granting the License.
|
|
15
|
+
|
|
16
|
+
"Legal Entity" shall mean the union of the acting entity and all
|
|
17
|
+
other entities that control, are controlled by, or are under common
|
|
18
|
+
control with that entity. For the purposes of this definition,
|
|
19
|
+
"control" means (i) the power, direct or indirect, to cause the
|
|
20
|
+
direction or management of such entity, whether by contract or
|
|
21
|
+
otherwise, or (ii) ownership of fifty percent (50%) or more of the
|
|
22
|
+
outstanding shares, or (iii) beneficial ownership of such entity.
|
|
23
|
+
|
|
24
|
+
"You" (or "Your") shall mean an individual or Legal Entity
|
|
25
|
+
exercising permissions granted by this License.
|
|
26
|
+
|
|
27
|
+
"Source" form shall mean the preferred form for making modifications,
|
|
28
|
+
including but not limited to software source code, documentation
|
|
29
|
+
source, and configuration files.
|
|
30
|
+
|
|
31
|
+
"Object" form shall mean any form resulting from mechanical
|
|
32
|
+
transformation or translation of a Source form, including but
|
|
33
|
+
not limited to compiled object code, generated documentation,
|
|
34
|
+
and conversions to other media types.
|
|
35
|
+
|
|
36
|
+
"Work" shall mean the work of authorship, whether in Source or
|
|
37
|
+
Object form, made available under the License, as indicated by a
|
|
38
|
+
copyright notice that is included in or attached to the work
|
|
39
|
+
(an example is provided in the Appendix below).
|
|
40
|
+
|
|
41
|
+
"Derivative Works" shall mean any work, whether in Source or Object
|
|
42
|
+
form, that is based on (or derived from) the Work and for which the
|
|
43
|
+
editorial revisions, annotations, elaborations, or other modifications
|
|
44
|
+
represent, as a whole, an original work of authorship. For the purposes
|
|
45
|
+
of this License, Derivative Works shall not include works that remain
|
|
46
|
+
separable from, or merely link (or bind by name) to the interfaces of,
|
|
47
|
+
the Work and Derivative Works thereof.
|
|
48
|
+
|
|
49
|
+
"Contribution" shall mean any work of authorship, including
|
|
50
|
+
the original version of the Work and any modifications or additions
|
|
51
|
+
to that Work or Derivative Works thereof, that is intentionally
|
|
52
|
+
submitted to Licensor for inclusion in the Work by the copyright owner
|
|
53
|
+
or by an individual or Legal Entity authorized to submit on behalf of
|
|
54
|
+
the copyright owner. For the purposes of this definition, "submitted"
|
|
55
|
+
means any form of electronic, verbal, or written communication sent
|
|
56
|
+
to the Licensor or its representatives, including but not limited to
|
|
57
|
+
communication on electronic mailing lists, source code control systems,
|
|
58
|
+
and issue tracking systems that are managed by, or on behalf of, the
|
|
59
|
+
Licensor for the purpose of discussing and improving the Work, but
|
|
60
|
+
excluding communication that is conspicuously marked or otherwise
|
|
61
|
+
designated in writing by the copyright owner as "Not a Contribution."
|
|
62
|
+
|
|
63
|
+
"Contributor" shall mean Licensor and any individual or Legal Entity
|
|
64
|
+
on behalf of whom a Contribution has been received by Licensor and
|
|
65
|
+
subsequently incorporated within the Work.
|
|
66
|
+
|
|
67
|
+
2. Grant of Copyright License. Subject to the terms and conditions of
|
|
68
|
+
this License, each Contributor hereby grants to You a perpetual,
|
|
69
|
+
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
|
70
|
+
copyright license to reproduce, prepare Derivative Works of,
|
|
71
|
+
publicly display, publicly perform, sublicense, and distribute the
|
|
72
|
+
Work and such Derivative Works in Source or Object form.
|
|
73
|
+
|
|
74
|
+
3. Grant of Patent License. Subject to the terms and conditions of
|
|
75
|
+
this License, each Contributor hereby grants to You a perpetual,
|
|
76
|
+
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
|
77
|
+
(except as stated in this section) patent license to make, have made,
|
|
78
|
+
use, offer to sell, sell, import, and otherwise transfer the Work,
|
|
79
|
+
where such license applies only to those patent claims licensable
|
|
80
|
+
by such Contributor that are necessarily infringed by their
|
|
81
|
+
Contribution(s) alone or by combination of their Contribution(s)
|
|
82
|
+
with the Work to which such Contribution(s) was submitted. If You
|
|
83
|
+
institute patent litigation against any entity (including a
|
|
84
|
+
cross-claim or counterclaim in a lawsuit) alleging that the Work
|
|
85
|
+
or a Contribution incorporated within the Work constitutes direct
|
|
86
|
+
or contributory patent infringement, then any patent licenses
|
|
87
|
+
granted to You under this License for that Work shall terminate
|
|
88
|
+
as of the date such litigation is filed.
|
|
89
|
+
|
|
90
|
+
4. Redistribution. You may reproduce and distribute copies of the
|
|
91
|
+
Work or Derivative Works thereof in any medium, with or without
|
|
92
|
+
modifications, and in Source or Object form, provided that You
|
|
93
|
+
meet the following conditions:
|
|
94
|
+
|
|
95
|
+
(a) You must give any other recipients of the Work or
|
|
96
|
+
Derivative Works a copy of this License; and
|
|
97
|
+
|
|
98
|
+
(b) You must cause any modified files to carry prominent notices
|
|
99
|
+
stating that You changed the files; and
|
|
100
|
+
|
|
101
|
+
(c) You must retain, in the Source form of any Derivative Works
|
|
102
|
+
that You distribute, all copyright, patent, trademark, and
|
|
103
|
+
attribution notices from the Source form of the Work,
|
|
104
|
+
excluding those notices that do not pertain to any part of
|
|
105
|
+
the Derivative Works; and
|
|
106
|
+
|
|
107
|
+
(d) If the Work includes a "NOTICE" text file as part of its
|
|
108
|
+
distribution, then any Derivative Works that You distribute must
|
|
109
|
+
include a readable copy of the attribution notices contained
|
|
110
|
+
within such NOTICE file, excluding those notices that do not
|
|
111
|
+
pertain to any part of the Derivative Works, in at least one
|
|
112
|
+
of the following places: within a NOTICE text file distributed
|
|
113
|
+
as part of the Derivative Works; within the Source form or
|
|
114
|
+
documentation, if provided along with the Derivative Works; or,
|
|
115
|
+
within a display generated by the Derivative Works, if and
|
|
116
|
+
wherever such third-party notices normally appear. The contents
|
|
117
|
+
of the NOTICE file are for informational purposes only and
|
|
118
|
+
do not modify the License. You may add Your own attribution
|
|
119
|
+
notices within Derivative Works that You distribute, alongside
|
|
120
|
+
or as an addendum to the NOTICE text from the Work, provided
|
|
121
|
+
that such additional attribution notices cannot be construed
|
|
122
|
+
as modifying the License.
|
|
123
|
+
|
|
124
|
+
You may add Your own copyright statement to Your modifications and
|
|
125
|
+
may provide additional or different license terms and conditions
|
|
126
|
+
for use, reproduction, or distribution of Your modifications, or
|
|
127
|
+
for any such Derivative Works as a whole, provided Your use,
|
|
128
|
+
reproduction, and distribution of the Work otherwise complies with
|
|
129
|
+
the conditions stated in this License.
|
|
130
|
+
|
|
131
|
+
5. Submission of Contributions. Unless You explicitly state otherwise,
|
|
132
|
+
any Contribution intentionally submitted for inclusion in the Work
|
|
133
|
+
by You to the Licensor shall be under the terms and conditions of
|
|
134
|
+
this License, without any additional terms or conditions.
|
|
135
|
+
Notwithstanding the above, nothing herein shall supersede or modify
|
|
136
|
+
the terms of any separate license agreement you may have executed
|
|
137
|
+
with Licensor regarding such Contributions.
|
|
138
|
+
|
|
139
|
+
6. Trademarks. This License does not grant permission to use the trade
|
|
140
|
+
names, trademarks, service marks, or product names of the Licensor,
|
|
141
|
+
except as required for reasonable and customary use in describing the
|
|
142
|
+
origin of the Work and reproducing the content of the NOTICE file.
|
|
143
|
+
|
|
144
|
+
7. Disclaimer of Warranty. Unless required by applicable law or
|
|
145
|
+
agreed to in writing, Licensor provides the Work (and each
|
|
146
|
+
Contributor provides its Contributions) on an "AS IS" BASIS,
|
|
147
|
+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
|
|
148
|
+
implied, including, without limitation, any warranties or conditions
|
|
149
|
+
of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
|
|
150
|
+
PARTICULAR PURPOSE. You are solely responsible for determining the
|
|
151
|
+
appropriateness of using or redistributing the Work and assume any
|
|
152
|
+
risks associated with Your exercise of permissions under this License.
|
|
153
|
+
|
|
154
|
+
8. Limitation of Liability. In no event and under no legal theory,
|
|
155
|
+
whether in tort (including negligence), contract, or otherwise,
|
|
156
|
+
unless required by applicable law (such as deliberate and grossly
|
|
157
|
+
negligent acts) or agreed to in writing, shall any Contributor be
|
|
158
|
+
liable to You for damages, including any direct, indirect, special,
|
|
159
|
+
incidental, or consequential damages of any character arising as a
|
|
160
|
+
result of this License or out of the use or inability to use the
|
|
161
|
+
Work (including but not limited to damages for loss of goodwill,
|
|
162
|
+
work stoppage, computer failure or malfunction, or any and all
|
|
163
|
+
other commercial damages or losses), even if such Contributor
|
|
164
|
+
has been advised of the possibility of such damages.
|
|
165
|
+
|
|
166
|
+
9. Accepting Warranty or Additional Liability. While redistributing
|
|
167
|
+
the Work or Derivative Works thereof, You may choose to offer,
|
|
168
|
+
and charge a fee for, acceptance of support, warranty, indemnity,
|
|
169
|
+
or other liability obligations and/or rights consistent with this
|
|
170
|
+
License. However, in accepting such obligations, You may act only
|
|
171
|
+
on Your own behalf and on Your sole responsibility, not on behalf
|
|
172
|
+
of any other Contributor, and only if You agree to indemnify,
|
|
173
|
+
defend, and hold each Contributor harmless for any liability
|
|
174
|
+
incurred by, or claims asserted against, such Contributor by reason
|
|
175
|
+
of your accepting any such warranty or additional liability.
|
|
176
|
+
|
|
177
|
+
END OF TERMS AND CONDITIONS
|
|
178
|
+
|
|
179
|
+
APPENDIX: How to apply the Apache License to your work.
|
|
180
|
+
|
|
181
|
+
To apply the Apache License to your work, attach the following
|
|
182
|
+
boilerplate notice, with the fields enclosed by brackets "[]"
|
|
183
|
+
replaced with your own identifying information. (Don't include
|
|
184
|
+
the brackets!) The text should be enclosed in the appropriate
|
|
185
|
+
comment syntax for the file format. We also recommend that a
|
|
186
|
+
file or class name and description of purpose be included on the
|
|
187
|
+
same "printed page" as the copyright notice for easier
|
|
188
|
+
identification within third-party archives.
|
|
189
|
+
|
|
190
|
+
Copyright [yyyy] [name of copyright owner]
|
|
191
|
+
|
|
192
|
+
Licensed under the Apache License, Version 2.0 (the "License");
|
|
193
|
+
you may not use this file except in compliance with the License.
|
|
194
|
+
You may obtain a copy of the License at
|
|
195
|
+
|
|
196
|
+
http://www.apache.org/licenses/LICENSE-2.0
|
|
197
|
+
|
|
198
|
+
Unless required by applicable law or agreed to in writing, software
|
|
199
|
+
distributed under the License is distributed on an "AS IS" BASIS,
|
|
200
|
+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
201
|
+
See the License for the specific language governing permissions and
|
|
202
|
+
limitations under the License.
|
package/NOTICE
ADDED
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
@damngamerz/pi-otel
|
|
2
|
+
Copyright (c) 2026 Damngamerz
|
|
3
|
+
|
|
4
|
+
The Grafana dashboard in examples/grafana-lgtm/dashboard.json is adapted from:
|
|
5
|
+
|
|
6
|
+
pi-otel
|
|
7
|
+
https://github.com/NikiforovAll/pi-otel
|
|
8
|
+
Copyright 2026 Oleksii Nikiforov
|
|
9
|
+
Licensed under the Apache License, Version 2.0.
|
|
10
|
+
|
|
11
|
+
The adapted dashboard has been modified for @damngamerz/pi-otel metrics,
|
|
12
|
+
evaluation panels, privacy defaults, and local deployment conventions.
|
|
13
|
+
The complete Apache License 2.0 text is included at LICENSES/Apache-2.0.txt.
|
|
14
|
+
|
|
15
|
+
All original @damngamerz/pi-otel source code is licensed under the MIT License.
|
package/README.md
ADDED
|
@@ -0,0 +1,120 @@
|
|
|
1
|
+
# @damngamerz/pi-otel
|
|
2
|
+
|
|
3
|
+
Privacy-conscious OpenTelemetry traces, metrics, and optional response evaluation for the [Pi coding agent](https://pi.dev).
|
|
4
|
+
|
|
5
|
+
- GenAI-semantic traces for agent, LLM, and tool activity
|
|
6
|
+
- token, cost, latency, error, and tool metrics
|
|
7
|
+
- optional manual, sampled, or always-on LLM evaluation
|
|
8
|
+
- correlated `gen_ai.evaluation.result` events
|
|
9
|
+
- pinned local Grafana LGTM example
|
|
10
|
+
- remote evaluation **off by default**
|
|
11
|
+
|
|
12
|
+
## Privacy first
|
|
13
|
+
|
|
14
|
+
Baseline telemetry never contains prompts, responses, thinking, provider payloads, tool arguments/results, shell commands, paths, cwd, usernames, hostnames, or email addresses.
|
|
15
|
+
|
|
16
|
+
Remote evaluation changes that boundary by sending the latest user request and assistant text to the configured judge model. It is disabled by default, content-limited, deduplicated, and blocked when likely credentials or private keys are detected. See [the privacy model](docs/privacy.md).
|
|
17
|
+
|
|
18
|
+
## Install
|
|
19
|
+
|
|
20
|
+
```bash
|
|
21
|
+
pi install npm:@damngamerz/pi-otel
|
|
22
|
+
```
|
|
23
|
+
|
|
24
|
+
For a pinned install:
|
|
25
|
+
|
|
26
|
+
```bash
|
|
27
|
+
pi install npm:@damngamerz/pi-otel@0.1.0
|
|
28
|
+
```
|
|
29
|
+
|
|
30
|
+
## Local Grafana quick start
|
|
31
|
+
|
|
32
|
+
```bash
|
|
33
|
+
cd examples/grafana-lgtm
|
|
34
|
+
docker compose up -d
|
|
35
|
+
```
|
|
36
|
+
|
|
37
|
+
Open <http://127.0.0.1:33000/d/damngamerz-pi-otel/atdamngamerz-pi-otel>.
|
|
38
|
+
|
|
39
|
+
The extension exports OTLP/HTTP to `http://127.0.0.1:4318` by default.
|
|
40
|
+
|
|
41
|
+
## Configure
|
|
42
|
+
|
|
43
|
+
Add `piOtel` to `~/.pi/agent/settings.json` or a trusted project's `.pi/settings.json`:
|
|
44
|
+
|
|
45
|
+
```jsonc
|
|
46
|
+
{
|
|
47
|
+
"piOtel": {
|
|
48
|
+
"enabled": true,
|
|
49
|
+
"endpoint": "http://127.0.0.1:4318",
|
|
50
|
+
"evaluation": {
|
|
51
|
+
"mode": "off",
|
|
52
|
+
"provider": "openai-codex",
|
|
53
|
+
"model": "gpt-5.4-mini"
|
|
54
|
+
}
|
|
55
|
+
}
|
|
56
|
+
}
|
|
57
|
+
```
|
|
58
|
+
|
|
59
|
+
Evaluation modes:
|
|
60
|
+
|
|
61
|
+
- `off` — no remote evaluation; default
|
|
62
|
+
- `manual` — evaluate through `/otel-eval-last`
|
|
63
|
+
- `sample` — deterministically evaluate a configured fraction
|
|
64
|
+
- `always` — evaluate every settled response
|
|
65
|
+
|
|
66
|
+
See [configuration](docs/configuration.md) for every setting and environment override.
|
|
67
|
+
|
|
68
|
+
## Commands
|
|
69
|
+
|
|
70
|
+
```text
|
|
71
|
+
/otel-status
|
|
72
|
+
/otel-flush
|
|
73
|
+
/otel-eval-last
|
|
74
|
+
```
|
|
75
|
+
|
|
76
|
+
## Telemetry
|
|
77
|
+
|
|
78
|
+
Primary metrics include:
|
|
79
|
+
|
|
80
|
+
- `gen_ai.client.operation.duration`
|
|
81
|
+
- `gen_ai.client.token.usage`
|
|
82
|
+
- `gen_ai.client.tool_calls_per_operation`
|
|
83
|
+
- `gen_ai.client.tool.calls`
|
|
84
|
+
- `gen_ai.evaluation.score`
|
|
85
|
+
- `pi.agent.cost`
|
|
86
|
+
- `pi.agent.time_to_first_token`
|
|
87
|
+
|
|
88
|
+
See [metrics](docs/metrics.md) and [evaluation](docs/evaluation.md).
|
|
89
|
+
|
|
90
|
+
## Security
|
|
91
|
+
|
|
92
|
+
Pi packages execute with the user's full permissions. Review extension source before installation and pin versions in sensitive environments.
|
|
93
|
+
|
|
94
|
+
This package:
|
|
95
|
+
|
|
96
|
+
- has no install or postinstall scripts
|
|
97
|
+
- does not start Docker or modify system services
|
|
98
|
+
- rejects remote OTLP endpoints unless explicitly enabled and protected by HTTPS
|
|
99
|
+
- rejects endpoint URLs containing credentials
|
|
100
|
+
- keeps baseline telemetry content-free
|
|
101
|
+
|
|
102
|
+
Report vulnerabilities privately according to [SECURITY.md](SECURITY.md).
|
|
103
|
+
|
|
104
|
+
## Development
|
|
105
|
+
|
|
106
|
+
```bash
|
|
107
|
+
npm install --ignore-scripts
|
|
108
|
+
npm run check
|
|
109
|
+
npm pack --dry-run
|
|
110
|
+
```
|
|
111
|
+
|
|
112
|
+
## Acknowledgements
|
|
113
|
+
|
|
114
|
+
This project gratefully credits **Oleksii Nikiforov (`NikiforovAll`)** and the original [`NikiforovAll/pi-otel`](https://github.com/NikiforovAll/pi-otel) project. Its work directly inspired this package, and the Grafana dashboard is adapted from that project under Apache-2.0.
|
|
115
|
+
|
|
116
|
+
See [ACKNOWLEDGEMENTS.md](ACKNOWLEDGEMENTS.md), [NOTICE](NOTICE), and [LICENSES/Apache-2.0.txt](LICENSES/Apache-2.0.txt).
|
|
117
|
+
|
|
118
|
+
## License
|
|
119
|
+
|
|
120
|
+
Original package code is MIT licensed. The adapted Grafana dashboard remains subject to its Apache-2.0 attribution and notice.
|
package/SECURITY.md
ADDED
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
# Security policy
|
|
2
|
+
|
|
3
|
+
## Supported versions
|
|
4
|
+
|
|
5
|
+
Security fixes are provided for the latest published minor release.
|
|
6
|
+
|
|
7
|
+
## Reporting a vulnerability
|
|
8
|
+
|
|
9
|
+
Please do not open a public issue for a suspected vulnerability. Use GitHub's private vulnerability reporting for [`damngamerz/pi-otel`](https://github.com/damngamerz/pi-otel/security/advisories/new).
|
|
10
|
+
|
|
11
|
+
Include:
|
|
12
|
+
|
|
13
|
+
- affected version
|
|
14
|
+
- reproduction steps
|
|
15
|
+
- expected impact
|
|
16
|
+
- suggested mitigation, if known
|
|
17
|
+
|
|
18
|
+
Reports will be acknowledged as soon as practical. Please allow time for a coordinated fix before public disclosure.
|
|
19
|
+
|
|
20
|
+
## Security model
|
|
21
|
+
|
|
22
|
+
Pi extensions execute with the user's full system permissions. Review package source before installation and pin versions in sensitive environments.
|
|
23
|
+
|
|
24
|
+
Baseline telemetry intentionally excludes prompts, responses, thinking, tool arguments/results, shell commands, paths, and local identity. Remote evaluation changes that boundary and is disabled by default.
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
import type { ExtensionAPI } from "@earendil-works/pi-coding-agent";
|
|
2
|
+
import type { TelemetryRuntime } from "../telemetry/traces.js";
|
|
3
|
+
export declare function registerFlushCommand(pi: ExtensionAPI, getRuntime: () => TelemetryRuntime | undefined): void;
|
|
4
|
+
//# sourceMappingURL=flush.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"flush.d.ts","sourceRoot":"","sources":["../../src/commands/flush.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,YAAY,EAAE,MAAM,iCAAiC,CAAC;AACpE,OAAO,KAAK,EAAE,gBAAgB,EAAE,MAAM,wBAAwB,CAAC;AAE/D,wBAAgB,oBAAoB,CAAC,EAAE,EAAE,YAAY,EAAE,UAAU,EAAE,MAAM,gBAAgB,GAAG,SAAS,GAAG,IAAI,CAoB3G"}
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
export function registerFlushCommand(pi, getRuntime) {
|
|
2
|
+
pi.registerCommand("otel-flush", {
|
|
3
|
+
description: "Force-flush Pi OpenTelemetry spans and metrics",
|
|
4
|
+
handler: async (_args, ctx) => {
|
|
5
|
+
const runtime = getRuntime();
|
|
6
|
+
if (!runtime) {
|
|
7
|
+
ctx.ui.notify("Pi OTel is not initialized for this session.", "warning");
|
|
8
|
+
return;
|
|
9
|
+
}
|
|
10
|
+
try {
|
|
11
|
+
await runtime.forceFlush();
|
|
12
|
+
ctx.ui.notify("Pi OpenTelemetry buffers flushed.", "info");
|
|
13
|
+
}
|
|
14
|
+
catch (error) {
|
|
15
|
+
ctx.ui.notify(`Pi OpenTelemetry flush failed: ${error instanceof Error ? error.message : String(error)}`, "error");
|
|
16
|
+
}
|
|
17
|
+
},
|
|
18
|
+
});
|
|
19
|
+
}
|
|
20
|
+
//# sourceMappingURL=flush.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"flush.js","sourceRoot":"","sources":["../../src/commands/flush.ts"],"names":[],"mappings":"AAGA,MAAM,UAAU,oBAAoB,CAAC,EAAgB,EAAE,UAA8C;IACpG,EAAE,CAAC,eAAe,CAAC,YAAY,EAAE;QAChC,WAAW,EAAE,gDAAgD;QAC7D,OAAO,EAAE,KAAK,EAAE,KAAK,EAAE,GAAG,EAAE,EAAE;YAC7B,MAAM,OAAO,GAAG,UAAU,EAAE,CAAC;YAC7B,IAAI,CAAC,OAAO,EAAE,CAAC;gBACd,GAAG,CAAC,EAAE,CAAC,MAAM,CAAC,8CAA8C,EAAE,SAAS,CAAC,CAAC;gBACzE,OAAO;YACR,CAAC;YACD,IAAI,CAAC;gBACJ,MAAM,OAAO,CAAC,UAAU,EAAE,CAAC;gBAC3B,GAAG,CAAC,EAAE,CAAC,MAAM,CAAC,mCAAmC,EAAE,MAAM,CAAC,CAAC;YAC5D,CAAC;YAAC,OAAO,KAAK,EAAE,CAAC;gBAChB,GAAG,CAAC,EAAE,CAAC,MAAM,CACZ,kCAAkC,KAAK,YAAY,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,OAAO,CAAC,CAAC,CAAC,MAAM,CAAC,KAAK,CAAC,EAAE,EAC1F,OAAO,CACP,CAAC;YACH,CAAC;QACF,CAAC;KACD,CAAC,CAAC;AACJ,CAAC"}
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
import type { ExtensionAPI } from "@earendil-works/pi-coding-agent";
|
|
2
|
+
import type { PiOtelConfig } from "../config.js";
|
|
3
|
+
import type { TelemetryRuntime } from "../telemetry/traces.js";
|
|
4
|
+
export declare function registerStatusCommand(pi: ExtensionAPI, getConfig: () => PiOtelConfig | undefined, getRuntime: () => TelemetryRuntime | undefined): void;
|
|
5
|
+
//# sourceMappingURL=status.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"status.d.ts","sourceRoot":"","sources":["../../src/commands/status.ts"],"names":[],"mappings":"AACA,OAAO,KAAK,EAAE,YAAY,EAAE,MAAM,iCAAiC,CAAC;AACpE,OAAO,KAAK,EAAE,YAAY,EAAE,MAAM,cAAc,CAAC;AACjD,OAAO,KAAK,EAAE,gBAAgB,EAAE,MAAM,wBAAwB,CAAC;AAqB/D,wBAAgB,qBAAqB,CACpC,EAAE,EAAE,YAAY,EAChB,SAAS,EAAE,MAAM,YAAY,GAAG,SAAS,EACzC,UAAU,EAAE,MAAM,gBAAgB,GAAG,SAAS,GAC5C,IAAI,CA4BN"}
|
|
@@ -0,0 +1,47 @@
|
|
|
1
|
+
import { createConnection } from "node:net";
|
|
2
|
+
function probe(endpoint, timeoutMs = 500) {
|
|
3
|
+
const url = new URL(endpoint);
|
|
4
|
+
const port = url.port ? Number(url.port) : url.protocol === "https:" ? 443 : 80;
|
|
5
|
+
return new Promise((resolve) => {
|
|
6
|
+
const socket = createConnection({ host: url.hostname, port });
|
|
7
|
+
let settled = false;
|
|
8
|
+
const finish = (result) => {
|
|
9
|
+
if (settled)
|
|
10
|
+
return;
|
|
11
|
+
settled = true;
|
|
12
|
+
socket.destroy();
|
|
13
|
+
resolve(result);
|
|
14
|
+
};
|
|
15
|
+
socket.setTimeout(timeoutMs);
|
|
16
|
+
socket.once("connect", () => finish(true));
|
|
17
|
+
socket.once("timeout", () => finish(false));
|
|
18
|
+
socket.once("error", () => finish(false));
|
|
19
|
+
});
|
|
20
|
+
}
|
|
21
|
+
export function registerStatusCommand(pi, getConfig, getRuntime) {
|
|
22
|
+
pi.registerCommand("otel-status", {
|
|
23
|
+
description: "Show @damngamerz/pi-otel status and session counters",
|
|
24
|
+
handler: async (_args, ctx) => {
|
|
25
|
+
const config = getConfig();
|
|
26
|
+
const runtime = getRuntime();
|
|
27
|
+
if (!config || !runtime) {
|
|
28
|
+
ctx.ui.notify("Pi OTel is not initialized for this session.", "warning");
|
|
29
|
+
return;
|
|
30
|
+
}
|
|
31
|
+
const reachable = await probe(config.endpoint);
|
|
32
|
+
const stats = runtime.stats;
|
|
33
|
+
ctx.ui.notify([
|
|
34
|
+
`OTLP: ${config.endpoint} (${reachable ? "reachable" : "unreachable"})`,
|
|
35
|
+
`Evaluation: ${config.evaluation.mode} via ${config.evaluation.provider}/${config.evaluation.model}`,
|
|
36
|
+
"Capture: baseline metadata only; evaluation content follows the configured mode",
|
|
37
|
+
`Prompts: ${stats.prompts}`,
|
|
38
|
+
`Turns: ${stats.turns}`,
|
|
39
|
+
`Tools: ${stats.toolCalls} (${stats.toolErrors} errors)`,
|
|
40
|
+
`Tokens: ${stats.inputTokens} input / ${stats.outputTokens} output`,
|
|
41
|
+
`Agent cost: $${stats.costUsd.toFixed(6)}`,
|
|
42
|
+
`Evaluations: ${stats.evaluationRuns} ($${stats.evaluationCostUsd.toFixed(6)})`,
|
|
43
|
+
].join("\n"), reachable ? "info" : "warning");
|
|
44
|
+
},
|
|
45
|
+
});
|
|
46
|
+
}
|
|
47
|
+
//# sourceMappingURL=status.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"status.js","sourceRoot":"","sources":["../../src/commands/status.ts"],"names":[],"mappings":"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"}
|
package/dist/config.d.ts
ADDED
|
@@ -0,0 +1,41 @@
|
|
|
1
|
+
export type EvaluationMode = "off" | "manual" | "sample" | "always";
|
|
2
|
+
export interface PiOtelConfig {
|
|
3
|
+
enabled: boolean;
|
|
4
|
+
endpoint: string;
|
|
5
|
+
allowRemoteEndpoint: boolean;
|
|
6
|
+
headers: Record<string, string>;
|
|
7
|
+
serviceName: string;
|
|
8
|
+
signals: {
|
|
9
|
+
traces: boolean;
|
|
10
|
+
metrics: boolean;
|
|
11
|
+
};
|
|
12
|
+
evaluation: {
|
|
13
|
+
mode: EvaluationMode;
|
|
14
|
+
sampleRate: number;
|
|
15
|
+
provider: string;
|
|
16
|
+
model: string;
|
|
17
|
+
maxCharsPerField: number;
|
|
18
|
+
blockLikelySecrets: boolean;
|
|
19
|
+
};
|
|
20
|
+
}
|
|
21
|
+
interface PartialPiOtelConfig {
|
|
22
|
+
enabled?: boolean;
|
|
23
|
+
endpoint?: string;
|
|
24
|
+
allowRemoteEndpoint?: boolean;
|
|
25
|
+
headers?: Record<string, string>;
|
|
26
|
+
serviceName?: string;
|
|
27
|
+
signals?: Partial<PiOtelConfig["signals"]>;
|
|
28
|
+
evaluation?: Partial<PiOtelConfig["evaluation"]>;
|
|
29
|
+
}
|
|
30
|
+
export interface SettingsFile {
|
|
31
|
+
piOtel?: PartialPiOtelConfig;
|
|
32
|
+
}
|
|
33
|
+
export declare class ConfigError extends Error {
|
|
34
|
+
constructor(message: string);
|
|
35
|
+
}
|
|
36
|
+
export declare function validateSettingsFile(value: unknown, source?: string): SettingsFile | undefined;
|
|
37
|
+
export declare function validateEndpoint(endpoint: string, allowRemoteEndpoint: boolean): string;
|
|
38
|
+
export declare function resolveConfigFromSources(globalSettingsInput: unknown, projectSettingsInput: unknown, env?: NodeJS.ProcessEnv): PiOtelConfig;
|
|
39
|
+
export declare function resolveConfig(cwd: string, projectTrusted: boolean): PiOtelConfig;
|
|
40
|
+
export {};
|
|
41
|
+
//# sourceMappingURL=config.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"config.d.ts","sourceRoot":"","sources":["../src/config.ts"],"names":[],"mappings":"AAIA,MAAM,MAAM,cAAc,GAAG,KAAK,GAAG,QAAQ,GAAG,QAAQ,GAAG,QAAQ,CAAC;AAEpE,MAAM,WAAW,YAAY;IAC5B,OAAO,EAAE,OAAO,CAAC;IACjB,QAAQ,EAAE,MAAM,CAAC;IACjB,mBAAmB,EAAE,OAAO,CAAC;IAC7B,OAAO,EAAE,MAAM,CAAC,MAAM,EAAE,MAAM,CAAC,CAAC;IAChC,WAAW,EAAE,MAAM,CAAC;IACpB,OAAO,EAAE;QACR,MAAM,EAAE,OAAO,CAAC;QAChB,OAAO,EAAE,OAAO,CAAC;KACjB,CAAC;IACF,UAAU,EAAE;QACX,IAAI,EAAE,cAAc,CAAC;QACrB,UAAU,EAAE,MAAM,CAAC;QACnB,QAAQ,EAAE,MAAM,CAAC;QACjB,KAAK,EAAE,MAAM,CAAC;QACd,gBAAgB,EAAE,MAAM,CAAC;QACzB,kBAAkB,EAAE,OAAO,CAAC;KAC5B,CAAC;CACF;AAED,UAAU,mBAAmB;IAC5B,OAAO,CAAC,EAAE,OAAO,CAAC;IAClB,QAAQ,CAAC,EAAE,MAAM,CAAC;IAClB,mBAAmB,CAAC,EAAE,OAAO,CAAC;IAC9B,OAAO,CAAC,EAAE,MAAM,CAAC,MAAM,EAAE,MAAM,CAAC,CAAC;IACjC,WAAW,CAAC,EAAE,MAAM,CAAC;IACrB,OAAO,CAAC,EAAE,OAAO,CAAC,YAAY,CAAC,SAAS,CAAC,CAAC,CAAC;IAC3C,UAAU,CAAC,EAAE,OAAO,CAAC,YAAY,CAAC,YAAY,CAAC,CAAC,CAAC;CACjD;AAED,MAAM,WAAW,YAAY;IAC5B,MAAM,CAAC,EAAE,mBAAmB,CAAC;CAC7B;AAmBD,qBAAa,WAAY,SAAQ,KAAK;gBACzB,OAAO,EAAE,MAAM;CAI3B;AA2CD,wBAAgB,oBAAoB,CAAC,KAAK,EAAE,OAAO,EAAE,MAAM,SAAa,GAAG,YAAY,GAAG,SAAS,CAkElG;AAyDD,wBAAgB,gBAAgB,CAAC,QAAQ,EAAE,MAAM,EAAE,mBAAmB,EAAE,OAAO,GAAG,MAAM,CAyBvF;AAED,wBAAgB,wBAAwB,CACvC,mBAAmB,EAAE,OAAO,EAC5B,oBAAoB,EAAE,OAAO,EAC7B,GAAG,GAAE,MAAM,CAAC,UAAwB,GAClC,YAAY,CA2Cd;AAED,wBAAgB,aAAa,CAAC,GAAG,EAAE,MAAM,EAAE,cAAc,EAAE,OAAO,GAAG,YAAY,CAIhF"}
|