autotel-devtools 27.2.0 → 27.2.2
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/NOTICE +9 -0
- package/README.md +7 -0
- package/dist/cli.cjs +2 -2
- package/dist/cli.js +2 -2
- package/dist/fullpage.global.js +2 -2
- package/dist/{grpc-CejDNrpg.js → grpc-BhGs5AGf.js} +1 -1
- package/dist/{grpc-D-PgIW-i.cjs → grpc-DB8OLUPR.cjs} +1 -1
- package/dist/{http-KCnGSZXe.js → http-CHt5okyc.js} +2 -2
- package/dist/{http-C6eqJu9T.cjs → http-DD3SVQJp.cjs} +2 -2
- package/dist/index.cjs +1 -1
- package/dist/index.js +1 -1
- package/dist/{parse-BRlosZft.cjs → parse-BDF92kdK.cjs} +5 -0
- package/dist/{parse-D_RmPPQs.js → parse-CCZIhG-D.js} +5 -0
- package/dist/query/index.cjs +1 -1
- package/dist/query/index.js +1 -1
- package/dist/server/index.cjs +2 -2
- package/dist/server/index.js +2 -2
- package/dist/widget.global.js +1 -1
- package/package.json +6 -4
package/NOTICE
ADDED
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
autotel
|
|
2
|
+
Copyright 2026 Jag Reehal
|
|
3
|
+
|
|
4
|
+
This product is licensed under the Apache License, Version 2.0.
|
|
5
|
+
See the LICENSE file for the full license text.
|
|
6
|
+
|
|
7
|
+
"autotel" is a trademark of Jag Reehal. The Apache License, Version 2.0
|
|
8
|
+
does not grant rights to use the "autotel" name. See TRADEMARKS.md for
|
|
9
|
+
the trademark policy.
|
package/README.md
CHANGED
|
@@ -248,6 +248,7 @@ severity_number >= 17 # logs: error and above
|
|
|
248
248
|
parent_span_id = NULL # root spans only
|
|
249
249
|
"user id" = "u-42" # quote a key a bare word can't spell
|
|
250
250
|
checkout # bare words are free text
|
|
251
|
+
SAVE20 # ...including attribute *values*
|
|
251
252
|
```
|
|
252
253
|
|
|
253
254
|
**Fields.** Traces: `service`, `name`, `kind`, `duration`, `status`, `trace_id`,
|
|
@@ -255,6 +256,12 @@ checkout # bare words are free text
|
|
|
255
256
|
`trace_id`, `span_id`, `body`. **Anything else is looked up as an attribute**, so
|
|
256
257
|
every attribute your services emit is queryable without being declared.
|
|
257
258
|
|
|
259
|
+
**Free text** matches those first-class fields _and every attribute value_ — so
|
|
260
|
+
the order id or coupon code you set with `ctx.setAttribute` finds its span when
|
|
261
|
+
you type it on its own. Attribute **keys** are not matched: every span carries
|
|
262
|
+
resource keys like `host.name` and `process.command`, so matching keys would
|
|
263
|
+
make ordinary words match everything. Search by key with `key = value`.
|
|
264
|
+
|
|
258
265
|
`severity` and `severity_number` both exist on purpose: the text is what you
|
|
259
266
|
read, but "error and above" is a numeric comparison and string ordering cannot
|
|
260
267
|
express it.
|
package/dist/cli.cjs
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
#!/usr/bin/env node
|
|
2
|
-
const require_http = require('./http-
|
|
2
|
+
const require_http = require('./http-DD3SVQJp.cjs');
|
|
3
3
|
const require_listen = require('./listen-l09RRHht.cjs');
|
|
4
|
-
const require_grpc = require('./grpc-
|
|
4
|
+
const require_grpc = require('./grpc-DB8OLUPR.cjs');
|
|
5
5
|
let node_http = require("node:http");
|
|
6
6
|
let node_fs = require("node:fs");
|
|
7
7
|
let node_path = require("node:path");
|
package/dist/cli.js
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
#!/usr/bin/env node
|
|
2
|
-
import { a as probePortHolder, g as hostHeaderIsLoopback, l as DevtoolsServer, r as resolveSourceRoot, t as attachDevtoolsRoutes } from "./http-
|
|
2
|
+
import { a as probePortHolder, g as hostHeaderIsLoopback, l as DevtoolsServer, r as resolveSourceRoot, t as attachDevtoolsRoutes } from "./http-CHt5okyc.js";
|
|
3
3
|
import { t as listenLoopbackDualStack } from "./listen-D-lLgfro.js";
|
|
4
|
-
import { t as startOtlpGrpcReceiver } from "./grpc-
|
|
4
|
+
import { t as startOtlpGrpcReceiver } from "./grpc-BhGs5AGf.js";
|
|
5
5
|
import { createServer } from "node:http";
|
|
6
6
|
import { readFileSync } from "node:fs";
|
|
7
7
|
import { dirname, resolve } from "node:path";
|