Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 0 additions & 15 deletions .changeset/nine-gorillas-happen.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/tricky-kids-look.md

This file was deleted.

19 changes: 19 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,24 @@
# workers-tracing

## 0.1.4

### Patch Changes

- [#10](https://github.com/BlobDevelopment/workers-tracing/pull/10) [`502e7c1`](https://github.com/BlobDevelopment/workers-tracing/commit/502e7c1383db35e36dc781547ca5e3153f228d9e) Thanks [@WalshyDev](https://github.com/WalshyDev)! - Added a span builder, this will allow for a more friendly experience.

Example usage:

```
const span = trace.buildSpan(SPAN_NAME.KV_GET)
.addAttribute('Index', i)
.addAttribute(ATTRIBUTE_NAME.KV_KEY, `id:${i}`)
.addLink(forLoopSpan);

span.end();
```

- [#11](https://github.com/BlobDevelopment/workers-tracing/pull/11) [`778c605`](https://github.com/BlobDevelopment/workers-tracing/commit/778c6052d99fe2beb4bdbe2cb5ef7dfcf4c10ffe) Thanks [@WalshyDev](https://github.com/WalshyDev)! - Fixed #9 - if `navigator` is not defined (old compat date) it will now default to "Unknown" for the runtime name.

## 0.1.3

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "workers-tracing",
"version": "0.1.3",
"version": "0.1.4",
"description": "Enable tracing within Workers with this simple package! Simply trace and send to a collector with a compatible export format",
"author": "Daniel Walsh (@WalshyDev)",
"license": "MIT",
Expand Down