Skip to content

Commit 0967537

Browse files
authored
Merge pull request #398 from demml/trace-genai-dashboard
Trace genai dashboard
2 parents 48840ec + 418dac6 commit 0967537

74 files changed

Lines changed: 7756 additions & 1673 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

Cargo.lock

Lines changed: 560 additions & 384 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -74,6 +74,7 @@ gcloud-storage = { version = "1.*", features = ["auth"] }
7474
gcloud-auth = { version = "1.*" }
7575
headers = { version = "0.*" }
7676
hkdf = "0.12.*"
77+
hostname = "0.4"
7778
jsonwebtoken = "9.*"
7879
metrics = { version = "0.*", default-features = false }
7980
metrics-exporter-prometheus = { version = "0.*", default-features = false }
@@ -97,7 +98,7 @@ rpassword = "7.*"
9798
rusty-logging = "0.*"
9899
pythonize = { version = "0.*" }
99100
# we cant use crates.io because scouter relies on a fork of linfa at the moment
100-
scouter-client = { git = "https://github.com/demml/scouter", branch = "agents-by-service" }
101+
scouter-client = { git = "https://github.com/demml/scouter", branch = "main" }
101102
sha2 = "0.10.*"
102103
hex = "0.4.*"
103104
semver = "1.*"

crates/opsml_app/Cargo.toml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ repository = { workspace = true }
88
doctest = false
99

1010
[dependencies]
11-
opsml-cards = { workspace = true }
11+
opsml-cards = { workspace = true, features = ["python"] }
1212
opsml-cli = { workspace = true }
1313
opsml-registry = { workspace = true }
1414
opsml-toml = { workspace = true }
@@ -18,6 +18,7 @@ opsml-storage = { workspace = true }
1818
opsml-types = { workspace = true }
1919
chrono = { workspace = true }
2020
cron = { workspace = true }
21+
hostname = { workspace = true }
2122
pyo3 = { workspace = true }
2223
scouter-client = { workspace = true }
2324
serde = { workspace = true }
@@ -31,3 +32,5 @@ tracing = { workspace = true }
3132
[features]
3233
default = []
3334

35+
[dev-dependencies]
36+
tempfile = { workspace = true }

0 commit comments

Comments
 (0)