Skip to content
This repository was archived by the owner on Jun 8, 2024. It is now read-only.

Commit f1b58a0

Browse files
committed
add status badges
1 parent 046d7a4 commit f1b58a0

File tree

9 files changed

+21
-1
lines changed

9 files changed

+21
-1
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# `emit`
22

3-
[![Rust](https://github.com/KodrAus/emit/actions/workflows/rust.yml/badge.svg)](https://github.com/KodrAus/emit/actions/workflows/rust.yml)
3+
[![all](https://github.com/KodrAus/emit/actions/workflows/all.yml/badge.svg)](https://github.com/KodrAus/emit/actions/workflows/all.yml)
44

55
Structured diagnostics for Rust applications.
66

batcher/README.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
11
# `emit_batcher`
22

3+
[![batcher](https://github.com/KodrAus/emit/actions/workflows/batcher.yml/badge.svg)](https://github.com/KodrAus/emit/actions/workflows/batcher.yml)
4+
35
Infrastructure for emitting diagnostic events in the background.

core/README.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
# `emit_core`
22

3+
[![core](https://github.com/KodrAus/emit/actions/workflows/core.yml/badge.svg)](https://github.com/KodrAus/emit/actions/workflows/core.yml)
4+
35
A diagnostic framework for Rust applications.
46

57
This library is the core API of `emit`, defining the fundamental abstractions used by the higher-level `emit` crate.

emitter/file/README.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
11
# `emit_file`
22

3+
[![file](https://github.com/KodrAus/emit/actions/workflows/file.yml/badge.svg)](https://github.com/KodrAus/emit/actions/workflows/file.yml)
4+
35
Emit diagnostic events to rolling files.

emitter/opentelemetry/README.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
# `emit_opentelemetry`
22

3+
[![opentelemetry](https://github.com/KodrAus/emit/actions/workflows/opentelemetry.yml/badge.svg)](https://github.com/KodrAus/emit/actions/workflows/opentelemetry.yml)
4+
35
Integrate `emit` with the OpenTelemetry SDK.
46

57
This library forwards diagnostic events from emit through the OpenTelemetry SDK as log records and spans.

emitter/otlp/README.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
# `emit_otlp`
22

3+
[![otlp](https://github.com/KodrAus/emit/actions/workflows/otlp.yml/badge.svg)](https://github.com/KodrAus/emit/actions/workflows/otlp.yml)
4+
35
Emit diagnostic events via the OpenTelemetry Protocol (OTLP).
46

57
This library sends export requests directly to some remote OTLP receiver. If you need to integrate `emit` with the OpenTelemetry SDK, see `emit-opentelemetry`.

emitter/term/README.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
# `emit_term`
22

3+
[![term](https://github.com/KodrAus/emit/actions/workflows/term.yml/badge.svg)](https://github.com/KodrAus/emit/actions/workflows/term.yml)
4+
35
Emit diagnostic events to the console.
46

57
This library implements a text-based format that's intended for direct end-user consumption, such as in interactive applications.

macros/Cargo.toml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,12 @@
22
name = "emit_macros"
33
version = "0.11.0-alpha.1"
44
authors = ["emit contributors"]
5+
license = "MIT OR Apache-2.0"
6+
readme = "README.md"
7+
repository = "https://github.com/kodraus/emit"
8+
description = "Emit diagnostic events to rolling files."
9+
keywords = ["logging", "tracing", "metrics", "observability"]
10+
categories = ["development-tools::debugging"]
511
edition = "2021"
612
build = "build.rs"
713

macros/README.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
# `emit_macros`
22

3+
[![macros](https://github.com/KodrAus/emit/actions/workflows/macros.yml/badge.svg)](https://github.com/KodrAus/emit/actions/workflows/macros.yml)
4+
35
Implementation details for `emit!` macros.
46

57
This crate is not intended to be consumed directly.

0 commit comments

Comments
 (0)