Skip to content

Commit d949de8

Browse files
authored
Merge branch 'dev' into tninesling/subgraph-typestate
2 parents e686af2 + a5f2673 commit d949de8

File tree

9 files changed

+86
-86
lines changed

9 files changed

+86
-86
lines changed

Cargo.lock

+63-63
Large diffs are not rendered by default.

apollo-router/src/plugins/cache/invalidation.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -187,7 +187,7 @@ impl Invalidation {
187187

188188
f64_histogram!(
189189
"apollo.router.cache.invalidation.duration",
190-
"Duration of the invalidation event execution.",
190+
"Duration of the invalidation event execution, in seconds.",
191191
start.elapsed().as_secs_f64()
192192
);
193193
res

apollo-router/src/query_planner/query_planner_service.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -437,7 +437,7 @@ impl Service<QueryPlannerRequest> for QueryPlannerService {
437437

438438
f64_histogram!(
439439
"apollo.router.query_planning.total.duration",
440-
"Duration of the time the router waited for a query plan, including both the queue time and planning time.",
440+
"Duration of the time the router waited for a query plan, including both the queue time and planning time, in seconds.",
441441
start.elapsed().as_secs_f64()
442442
);
443443

@@ -593,7 +593,7 @@ pub(crate) struct QueryPlanResult {
593593
pub(crate) fn metric_query_planning_plan_duration(planner: &'static str, elapsed: f64) {
594594
f64_histogram!(
595595
"apollo.router.query_planning.plan.duration",
596-
"Duration of the query planning.",
596+
"Duration of the query planning, in seconds.",
597597
elapsed,
598598
"planner" = planner
599599
);

apollo-router/src/spec/schema.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -148,7 +148,7 @@ impl Schema {
148148

149149
f64_histogram!(
150150
"apollo.router.schema.load.duration",
151-
"Time spent loading the supergraph schema.",
151+
"Time spent loading the supergraph schema, in seconds.",
152152
start.elapsed().as_secs_f64()
153153
);
154154

dockerfiles/tracing/datadog-subgraph/package-lock.json

+4-4
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dockerfiles/tracing/datadog-subgraph/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,6 @@
1818
"graphql": "^16.5.0"
1919
},
2020
"devDependencies": {
21-
"typescript": "5.8.2"
21+
"typescript": "5.8.3"
2222
}
2323
}

dockerfiles/tracing/zipkin-subgraph/package-lock.json

+7-7
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dockerfiles/tracing/zipkin-subgraph/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,6 @@
2020
"zipkin-javascript-opentracing": "^3.0.0"
2121
},
2222
"devDependencies": {
23-
"typescript": "5.8.2"
23+
"typescript": "5.8.3"
2424
}
2525
}

xtask/Cargo.lock

+6-6
Original file line numberDiff line numberDiff line change
@@ -240,19 +240,19 @@ dependencies = [
240240

241241
[[package]]
242242
name = "clap"
243-
version = "4.5.32"
243+
version = "4.5.35"
244244
source = "registry+https://github.com/rust-lang/crates.io-index"
245-
checksum = "6088f3ae8c3608d19260cd7445411865a485688711b78b5be70d78cd96136f83"
245+
checksum = "d8aa86934b44c19c50f87cc2790e19f54f7a67aedb64101c2e1a2e5ecfb73944"
246246
dependencies = [
247247
"clap_builder",
248248
"clap_derive",
249249
]
250250

251251
[[package]]
252252
name = "clap_builder"
253-
version = "4.5.32"
253+
version = "4.5.35"
254254
source = "registry+https://github.com/rust-lang/crates.io-index"
255-
checksum = "22a7ef7f676155edfb82daa97f99441f3ebf4a58d5e32f295a56259f1b6facc8"
255+
checksum = "2414dbb2dd0695280da6ea9261e327479e9d37b0630f6b53ba2a11c60c679fd9"
256256
dependencies = [
257257
"anstream",
258258
"anstyle",
@@ -1662,9 +1662,9 @@ checksum = "1f3ccbac311fea05f86f61904b462b55fb3df8837a366dfc601a0161d0532f20"
16621662

16631663
[[package]]
16641664
name = "tokio"
1665-
version = "1.43.0"
1665+
version = "1.43.1"
16661666
source = "registry+https://github.com/rust-lang/crates.io-index"
1667-
checksum = "3d61fa4ffa3de412bfea335c6ecff681de2b609ba3c77ef3e00e521813a9ed9e"
1667+
checksum = "492a604e2fd7f814268a378409e6c92b5525d747d10db9a229723f55a417958c"
16681668
dependencies = [
16691669
"backtrace",
16701670
"bytes",

0 commit comments

Comments
 (0)