aboutsummaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorJin Wang <jnwang@lab126.com>2021-10-19 10:45:26 +0100
committerAndy Green <andy@warmcat.com>2021-10-19 10:51:23 +0100
commite9c92ec161b4069e4f47a88f6a37f8ce84b3ea87 (patch)
treeecb1082ea6ff34e277e946e903f74b05efc3fca5 /lib
parent6c7798eef44446b3bc9a1bf6663affbf934a1e75 (diff)
downloadlibwebsockets-e9c92ec161b4069e4f47a88f6a37f8ce84b3ea87.tar.gz
metrics: ss: skip tagging if no ss streamtypename
Diffstat (limited to 'lib')
-rw-r--r--lib/secure-streams/secure-streams.c7
1 files changed, 4 insertions, 3 deletions
diff --git a/lib/secure-streams/secure-streams.c b/lib/secure-streams/secure-streams.c
index 4f56bcdc..53cdce00 100644
--- a/lib/secure-streams/secure-streams.c
+++ b/lib/secure-streams/secure-streams.c
@@ -863,11 +863,12 @@ _lws_ss_client_connect(lws_ss_handle_t *h, int is_retry, void *conn_if_sspc_onw)
#if defined(LWS_WITH_SYS_METRICS)
/* possibly already hanging connect retry... */
- if (!h->cal_txn.mt) {
+ if (!h->cal_txn.mt)
lws_metrics_caliper_bind(h->cal_txn, h->context->mth_ss_conn);
- }
- lws_metrics_tag_add(&h->cal_txn.mtags_owner, "ss", h->policy->streamtype);
+ if (h->policy->streamtype)
+ lws_metrics_tag_add(&h->cal_txn.mtags_owner, "ss",
+ h->policy->streamtype);
#endif
h->txn_ok = 0;