Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Fix run_prometheus signature
  • Loading branch information
emschwartz committed May 26, 2023
commit 05071e9a28dee6223baaa34f476cc32c0db70353
2 changes: 1 addition & 1 deletion examples/full-api/src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ mod util;
async fn main() {
// Run Prometheus and generate random traffic for the app
// (You would not actually do this in production, but it makes it easier to see the example in action)
let _promehtheus = run_prometheus();
let _promehtheus = run_prometheus(false);
tokio::spawn(generate_random_traffic());

// Set up the exporter to collect metrics
Expand Down