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
2 changes: 1 addition & 1 deletion .release-please-manifest.json
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
{
".": "0.98.0"
".": "0.99.0"
}
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# Changelog

## [0.99.0](https://github.com/kernel/kernel-node-sdk/compare/v0.98.0...v0.99.0) (2026-09-03)


### Features

* Expose OTLP destination delivery health ([c393d37](https://github.com/kernel/kernel-node-sdk/commit/c393d37d72171e841f1ebf8ce0a9720f5ae271d8))

## [0.98.0](https://github.com/kernel/kernel-node-sdk/compare/v0.97.0...v0.98.0) (2026-09-02)


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": "@onkernel/sdk",
"version": "0.98.0",
"version": "0.99.0",
"description": "The official TypeScript library for the Kernel API",
"author": "Kernel <>",
"types": "dist/index.d.ts",
Expand Down
27 changes: 27 additions & 0 deletions src/resources/telemetry/destinations.ts
Original file line number Diff line number Diff line change
Expand Up @@ -92,6 +92,13 @@ export type OtlpDestinationsOffsetPagination = OffsetPagination<OtlpDestination>
export interface OtlpDestination {
id: string;

/**
* Failed deliveries since the last success, as observed by the relay process that
* wrote the latest outcome. Zero means the most recently recorded outcome
* succeeded.
*/
consecutive_failures: number;

created_at: string;

/**
Expand All @@ -116,6 +123,26 @@ export interface OtlpDestination {
updated_at: string;

description?: string;

/**
* Sanitized class of the delivery failure recorded at `last_error_at`. It is
* retained after a later success, so its presence does not mean the destination is
* currently failing. Response bodies, endpoint URLs, credentials, and raw
* transport errors are never returned.
*/
last_error?: string;

/**
* Timestamp of the most recent failed delivery. It is retained after a later
* success, so it can predate `last_export_at`. Read `consecutive_failures` to tell
* whether the destination is currently failing.
*/
last_error_at?: string;

/**
* Timestamp of the most recent successful delivery. Moves only on success.
*/
last_export_at?: string;
}

export interface DestinationCreateParams {
Expand Down
2 changes: 1 addition & 1 deletion src/version.ts
Original file line number Diff line number Diff line change
@@ -1 +1 @@
export const VERSION = '0.98.0'; // x-release-please-version
export const VERSION = '0.99.0'; // x-release-please-version
Loading