Skip to content

Commit

Permalink
Oximeter producer kind parameter is now required (#573)
Browse files Browse the repository at this point in the history
  • Loading branch information
bnaecker authored Nov 30, 2023
1 parent 6f3f597 commit 76c845d
Show file tree
Hide file tree
Showing 3 changed files with 25 additions and 25 deletions.
44 changes: 22 additions & 22 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -78,8 +78,8 @@ oximeter-producer = { git = "https://github.com/oxidecomputer/omicron", branch =
oximeter = { git = "https://github.com/oxidecomputer/omicron", branch = "main" }

# Crucible
crucible = { git = "https://github.com/oxidecomputer/crucible", rev = "945f040d259ca8013d3fb26f510453da7cd7b1a6" }
crucible-client-types = { git = "https://github.com/oxidecomputer/crucible", rev = "945f040d259ca8013d3fb26f510453da7cd7b1a6" }
crucible = { git = "https://github.com/oxidecomputer/crucible", rev = "2e02507fb1625ee392ca9a0063a4a62793597648" }
crucible-client-types = { git = "https://github.com/oxidecomputer/crucible", rev = "2e02507fb1625ee392ca9a0063a4a62793597648" }

# External dependencies
anyhow = "1.0"
Expand Down
2 changes: 1 addition & 1 deletion bin/propolis-server/src/lib/stats.rs
Original file line number Diff line number Diff line change
Expand Up @@ -126,7 +126,7 @@ pub async fn start_oximeter_server(

let server_info = ProducerEndpoint {
id,
kind: Some(ProducerKind::Instance),
kind: ProducerKind::Instance,
address: my_address,
base_route: "/collect".to_string(),
interval: OXIMETER_STAT_INTERVAL,
Expand Down

0 comments on commit 76c845d

Please sign in to comment.