Crates.io | newrelic-unofficial |
lib.rs | newrelic-unofficial |
version | 0.1.3 |
source | src |
created_at | 2020-08-08 09:53:43.936706 |
updated_at | 2020-08-16 02:07:39.10161 |
description | New Relic instrumentation in pure Rust |
homepage | |
repository | https://github.com/qnighy/newrelic-unofficial-rust |
max_upload_size | |
id | 274327 |
size | 123,644 |
It's an unofficial port of the New Relic Go agent to Rust.
Unlike the one based on the C sdk, it is completely thread-safe and works alone.
The library reports itself as Go because the New Relic server (of course) doesn't have a support for Rust.
Application setup:
// Set up NewRelic in-process daemon (newrelic_unofficial::Daemon).
// Generate Daemon at application startup and keep it until application shutdown.
let license = std::env::var("NEW_RELIC_LICENSE_KEY").unwrap();
let daemon = Daemon::new("rust-test", &license).unwrap();
// Get application handle (newrelic_unofficial::Application) from the daemon.
// Pass it around to record application events.
let app = daemon.application().clone();
Transaction:
// Start a new (non-web) transaction.
// The end of the transaction is automatically recorded on drop.
let txn = app.start_transaction("SomeBackgroundJob");
// Or you can start a web transaction.
let txn = app.start_web_transaction("/upload", http_request);
Segment: not yet implemented
I consider it a port of the New Relic Go agent, therefore (perhaps) inheriting copyrights from the original source code.
Licensed under Apache-2.0