(state: &State<KmsState>)
| 79 | |
| 80 | #[rocket::get("/metrics")] |
| 81 | fn metrics(state: &State<KmsState>) -> RawText<String> { |
| 82 | RawText(state.metrics().render_prometheus()) |
| 83 | } |
| 84 | |
| 85 | // Count only RPCs whose primary job is to verify caller/app attestation. |
| 86 | // Recording in a response fairing also catches failures that happen before |
nothing calls this directly
no test coverage detected