Skip to content

Commit 3a37e7f

Browse files
sshaderConvex, Inc.
authored and
Convex, Inc.
committedMar 18, 2025·
Update metrics on deploy key usage (#35518)
We eventually want to fully deprecate legacy deploy keys. This metric previously grouped together system keys (which other Convex services use to talk to backends) with the legacy keys, so now these are split out. GitOrigin-RevId: 138866704b6a74e74578d1dadc3a01d24b6f25fa
1 parent 0c85d74 commit 3a37e7f

File tree

2 files changed

+19
-3
lines changed

2 files changed

+19
-3
lines changed
 

‎crates/authentication/src/application_auth.rs

+15-3
Original file line numberDiff line numberDiff line change
@@ -40,13 +40,25 @@ impl ApplicationAuth {
4040
.is_encrypted_admin_key(&admin_key_or_access_token)
4141
{
4242
// assume this is a legacy Deploy Key
43-
log_deploy_key_use(DeployKeyType::Legacy);
44-
self.key_broker
43+
let result = self
44+
.key_broker
4545
.check_admin_key(&admin_key_or_access_token)
4646
.context(ErrorMetadata::unauthenticated(
4747
"BadAdminKey",
4848
"The provided admin key was invalid for this instance",
49-
))
49+
));
50+
match &result {
51+
Ok(Identity::InstanceAdmin(_)) => {
52+
log_deploy_key_use(DeployKeyType::Legacy);
53+
},
54+
Ok(Identity::System(_)) => {
55+
log_deploy_key_use(DeployKeyType::System);
56+
},
57+
_ => {
58+
log_deploy_key_use(DeployKeyType::Unknown);
59+
},
60+
}
61+
result
5062
} else {
5163
// assume this is an Access Token
5264
// Access Tokens are base64 encoded strings

‎crates/authentication/src/metrics.rs

+4
Original file line numberDiff line numberDiff line change
@@ -8,13 +8,17 @@ register_convex_counter!(pub DEPLOY_KEY_USE_TOTAL, "Count of deploy key uses", &
88

99
pub enum DeployKeyType {
1010
Legacy,
11+
System,
12+
Unknown,
1113
AccessToken,
1214
}
1315

1416
pub fn log_deploy_key_use(key_type: DeployKeyType) {
1517
let key_type_label = match key_type {
1618
DeployKeyType::Legacy => "legacy",
19+
DeployKeyType::System => "system",
1720
DeployKeyType::AccessToken => "access_token",
21+
DeployKeyType::Unknown => "unknown",
1822
};
1923
log_counter_with_labels(
2024
&DEPLOY_KEY_USE_TOTAL,

0 commit comments

Comments
 (0)
Please sign in to comment.