{
readonly node: "node"
readonly lineage: "hyperlink-ts/lineage"
readonly lineId: "hyperlink-ts/lineId"
}Standard annotation key names on LogEntry.annotations.
| Property | Annotation key (field name) | Value is |
|----------|----------------------------|----------|
| node | "node" | node log key (Node.Tag.key) |
| lineage | "hyperlink-ts/lineage" | JSON array of lineage segment keys |
| lineId | "hyperlink-ts/lineId" | Stable id for one published relay line (memo / dedupe) |
Package: hyperlink-ts/LogContext · Source: src/LogContext.ts · See docs/LOGS.md.
export const const LogAnnotationKeys: {
readonly node: "node"
readonly lineage: "hyperlink-ts/lineage"
readonly lineId: "hyperlink-ts/lineId"
}
Standard annotation key names on
LogEntry.annotations
.
| Property | Annotation key (field name) | Value is |
|----------|----------------------------|----------|
| node | "node" | node log key (Node.Tag.key) |
| lineage | "hyperlink-ts/lineage" | JSON array of lineage segment keys |
| lineId | "hyperlink-ts/lineId" | Stable id for one published relay line (memo / dedupe) |
Package: hyperlink-ts/LogContext · Source: src/LogContext.ts · See docs/LOGS.md.
LogAnnotationKeys = {
/** Annotation key whose value is the **node log key**. */
node: "node"Annotation key whose value is the node log key.
node: "node",
/** Annotation key whose value is JSON **lineage segment keys**. */
lineage: "hyperlink-ts/lineage"Annotation key whose value is JSON lineage segment keys.
lineage: "hyperlink-ts/lineage",
/** Annotation key whose value is the stable **line id** stamped at relay publish. */
lineId: "hyperlink-ts/lineId"Annotation key whose value is the stable line id stamped at relay publish.
lineId: "hyperlink-ts/lineId",
} as type const = {
readonly node: "node";
readonly lineage: "hyperlink-ts/lineage";
readonly lineId: "hyperlink-ts/lineId";
}
const;