Skip to content

Commit 3c39ba0

Browse files
authored
update brand names (#77)
1 parent f63795f commit 3c39ba0

File tree

8 files changed

+11
-14
lines changed

8 files changed

+11
-14
lines changed

README.md

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,7 @@
99
<a href="https://logfire.pydantic.dev/docs/join-slack/"><img src="https://img.shields.io/badge/Slack-Join%20Slack-4A154B?logo=slack" alt="Join Slack" /></a>
1010
</p>
1111

12-
From the team behind Pydantic, **Logfire** is an observability platform built on the same belief as our
13-
open source library — that the most powerful tools can be easy to use.
12+
From the team behind Pydantic Validation, **Pydantic Logfire** is an observability platform built on the same belief as our open source library — that the most powerful tools can be easy to use.
1413

1514
What sets Logfire apart:
1615

src/bridges/tracing.rs

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -12,10 +12,8 @@ use tracing_subscriber::{Layer, registry::LookupSpan};
1212

1313
use crate::{__macros_impl::LogfireValue, LogfireTracer};
1414

15-
/// A `tracing` layer that bridges `tracing` spans to OpenTelemetry spans using the Logfire tracer.
16-
///
17-
/// This layer is a wrapper around `tracing_opentelemetry::OpenTelemetryLayer` that adds additional
18-
/// Logfire-specific metadata.
15+
/// A `tracing` layer that bridges `tracing` spans to OpenTelemetry spans using the Pydantic Logfire tracer.
16+
/// Pydantic Logfire-specific metadata.
1917
///
2018
/// See [`ShutdownHandler::tracing_layer`][crate::ShutdownHandler::tracing_layer] for how to use
2119
/// this layer.

src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55

66
//! # Rust SDK for Pydantic Logfire
77
//!
8-
//! This SDK provides a first-class experience instrumenting Rust code for the Pydantic Logfire platform.
8+
//! From the team behind Pydantic Validation, **Pydantic Logfire** is an observability platform built on the same belief as our open source library — that the most powerful tools can be easy to use.
99
//!
1010
//! The most important API is [`logfire::configure()`][configure], which is used to set up
1111
//! integrations with `tracing` and `log`, as well as exporters for `opentelemetry`. Code

src/macros/mod.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ pub mod __macros_impl;
66
/// a smaller set of possible arguments and syntaxes.
77
///
88
/// In exchange, the macro automatically adds metadata which leads the span and its fields
9-
/// to present nicely in the Logfire UI.
9+
/// to present nicely in the Pydantic Logfire UI.
1010
///
1111
/// # Syntax
1212
///

src/metrics.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ static METER: LazyLock<Meter> = LazyLock::new(|| opentelemetry::global::meter("l
1313
macro_rules! make_metric_doc {
1414
($method: ident, $ty:ty, $var_name:literal, $usage:literal) => {
1515
concat!(
16-
"Wrapper for [`Meter::", stringify!($method), "`] using logfire's global meter.
16+
"Wrapper for [`Meter::", stringify!($method), "`] using Pydantic Logfire's global meter.
1717
1818
# Examples
1919
@@ -31,7 +31,7 @@ static ", $var_name, ": LazyLock<opentelemetry::metrics::", stringify!($ty), ">
3131
});
3232
3333
fn main() -> Result<(), Box<dyn std::error::Error>> {
34-
// ensure logfire is configured before accessing the metric for the first time
34+
// ensure Pydantic Logfire is configured before accessing the metric for the first time
3535
let shutdown_handler = logfire::configure()
3636
# .send_to_logfire(logfire::config::SendToLogfire::IfTokenPresent)
3737
.finish()?;

src/usage/examples.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
//! # Examples of using the `logfire` SDK
22
//!
33
//! These are complete code examples which show how to use the `logfire` SDK
4-
//! with various frameworks and libraries.
4+
//! with various frameworks and libraries, instrumented for Pydantic Logfire.
55
//!
66
//! These can also be found in the [`examples/`](https://github.com/pydantic/logfire-rust/tree/main/examples)
77
//! directory of the repository.

src/usage/metrics.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
//! # Exporting OpenTelemetry Metrics from Rust to Logfire
1+
//! # Exporting OpenTelemetry Metrics from Rust to Pydantic Logfire
22
//!
3-
//! This guide shows how to export OpenTelemetry metrics from Rust applications to Logfire and use them for creating dashboards and monitoring.
3+
//! This guide shows how to export OpenTelemetry metrics from Rust applications to Pydantic Logfire and use them for creating dashboards and monitoring.
44
//!
55
//! ## Overview
66
//!

src/usage/mod.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
//! # Usage Guide
22
//!
33
//! This section of the document is dedicated to guide material which shows how to
4-
//! use the Logfire Rust SDK to instrument applications.
4+
//! use the Pydantic Logfire Rust SDK to instrument applications.
55
//!
66
//! # Architecture
77
//!

0 commit comments

Comments
 (0)