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

Commit

Permalink
add status badges
Browse files Browse the repository at this point in the history
  • Loading branch information
KodrAus committed Jun 6, 2024
1 parent 046d7a4 commit f1b58a0
Show file tree
Hide file tree
Showing 9 changed files with 21 additions and 1 deletion.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# `emit`

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

Structured diagnostics for Rust applications.

Expand Down
2 changes: 2 additions & 0 deletions batcher/README.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
# `emit_batcher`

[![batcher](https://github.com/KodrAus/emit/actions/workflows/batcher.yml/badge.svg)](https://github.com/KodrAus/emit/actions/workflows/batcher.yml)

Infrastructure for emitting diagnostic events in the background.
2 changes: 2 additions & 0 deletions core/README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
# `emit_core`

[![core](https://github.com/KodrAus/emit/actions/workflows/core.yml/badge.svg)](https://github.com/KodrAus/emit/actions/workflows/core.yml)

A diagnostic framework for Rust applications.

This library is the core API of `emit`, defining the fundamental abstractions used by the higher-level `emit` crate.
2 changes: 2 additions & 0 deletions emitter/file/README.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
# `emit_file`

[![file](https://github.com/KodrAus/emit/actions/workflows/file.yml/badge.svg)](https://github.com/KodrAus/emit/actions/workflows/file.yml)

Emit diagnostic events to rolling files.
2 changes: 2 additions & 0 deletions emitter/opentelemetry/README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
# `emit_opentelemetry`

[![opentelemetry](https://github.com/KodrAus/emit/actions/workflows/opentelemetry.yml/badge.svg)](https://github.com/KodrAus/emit/actions/workflows/opentelemetry.yml)

Integrate `emit` with the OpenTelemetry SDK.

This library forwards diagnostic events from emit through the OpenTelemetry SDK as log records and spans.
2 changes: 2 additions & 0 deletions emitter/otlp/README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
# `emit_otlp`

[![otlp](https://github.com/KodrAus/emit/actions/workflows/otlp.yml/badge.svg)](https://github.com/KodrAus/emit/actions/workflows/otlp.yml)

Emit diagnostic events via the OpenTelemetry Protocol (OTLP).

This library sends export requests directly to some remote OTLP receiver. If you need to integrate `emit` with the OpenTelemetry SDK, see `emit-opentelemetry`.
2 changes: 2 additions & 0 deletions emitter/term/README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
# `emit_term`

[![term](https://github.com/KodrAus/emit/actions/workflows/term.yml/badge.svg)](https://github.com/KodrAus/emit/actions/workflows/term.yml)

Emit diagnostic events to the console.

This library implements a text-based format that's intended for direct end-user consumption, such as in interactive applications.
6 changes: 6 additions & 0 deletions macros/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,12 @@
name = "emit_macros"
version = "0.11.0-alpha.1"
authors = ["emit contributors"]
license = "MIT OR Apache-2.0"
readme = "README.md"
repository = "https://github.com/kodraus/emit"
description = "Emit diagnostic events to rolling files."
keywords = ["logging", "tracing", "metrics", "observability"]
categories = ["development-tools::debugging"]
edition = "2021"
build = "build.rs"

Expand Down
2 changes: 2 additions & 0 deletions macros/README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
# `emit_macros`

[![macros](https://github.com/KodrAus/emit/actions/workflows/macros.yml/badge.svg)](https://github.com/KodrAus/emit/actions/workflows/macros.yml)

Implementation details for `emit!` macros.

This crate is not intended to be consumed directly.

0 comments on commit f1b58a0

Please sign in to comment.