Skip to content

utilitywarehouse/rust-ops

Repository files navigation

Ops

Build Status Latest Version Latest Docs

Rust implementation of operational-endpoints-spec making it easy to add the standard endpoints to your application.

Usage

use ops::{StatusBuilder, server};

#[tokio::main]
async fn main() {
    let status = StatusBuilder::always("my app", "a description");

    let server = server("0.0.0.0:3000".parse().unwrap(), status);

    server.await.unwrap();
}

Examples

See the examples folder for runnable examples.

License

Licensed under either of:

at your option.

About

Provides standard endpoints for monitoring the health of your application.

Resources

License

Apache-2.0, MIT licenses found

Licenses found

Apache-2.0
LICENSE-APACHE
MIT
LICENSE-MIT

Stars

Watchers

Forks

Packages

No packages published

Contributors 2

  •  
  •  

Languages