feat(dashboard): afficher SETTINGS H2 individuels dans la table mismatch
- /api/browser-signatures : top_mismatches inclut désormais les 7 colonnes SETTINGS individuelles (h2_header_table_size, h2_enable_push, h2_max_concurrent_streams, h2_initial_window_size, h2_max_frame_size, h2_max_header_list_size, h2_enable_connect_protocol) - stats : ajout sessions_with_priority (countIf h2_priority_present > 0) - browsers.html : colonne SETTINGS compact dans la table suspects (format '3:100, 4:65536, 2:0' — IDs Akamai avec valeurs non-nulles) - Compteur pseudo-priority utilise la vraie valeur sessions_with_priority au lieu d'afficher '—' Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
This commit is contained in:
@ -1765,7 +1765,8 @@ async def browser_signatures() -> dict[str, Any]:
|
||||
f" countIf(h2_dict_family != '') AS sessions_matched, "
|
||||
f" countIf(tls_h2_family_mismatch > 0) AS sessions_mismatch, "
|
||||
f" round(100.0 * countIf(h2_dict_family != '') / greatest(countIf(h2_settings_known > 0), 1), 1) AS match_rate, "
|
||||
f" round(100.0 * countIf(tls_h2_family_mismatch > 0) / greatest(countIf(h2_settings_known > 0), 1), 1) AS mismatch_rate "
|
||||
f" round(100.0 * countIf(tls_h2_family_mismatch > 0) / greatest(countIf(h2_settings_known > 0), 1), 1) AS mismatch_rate, "
|
||||
f" countIf(h2_priority_present > 0) AS sessions_with_priority "
|
||||
f"FROM {_DB}.view_ai_features_1h"
|
||||
)
|
||||
if stats:
|
||||
@ -1829,7 +1830,14 @@ async def browser_signatures() -> dict[str, Any]:
|
||||
f" h2_window_update_value AS wu_value, "
|
||||
f" hits, "
|
||||
f" h2_pseudo_ord_raw AS pseudo_order, "
|
||||
f" fingerprint_coherence_score AS coherence "
|
||||
f" fingerprint_coherence_score AS coherence, "
|
||||
f" h2_header_table_size, "
|
||||
f" h2_enable_push, "
|
||||
f" h2_max_concurrent_streams, "
|
||||
f" h2_initial_window_size, "
|
||||
f" h2_max_frame_size, "
|
||||
f" h2_max_header_list_size, "
|
||||
f" h2_enable_connect_protocol "
|
||||
f"FROM {_DB}.view_ai_features_1h "
|
||||
f"WHERE tls_h2_family_mismatch > 0 "
|
||||
f"ORDER BY hits DESC "
|
||||
|
||||
Reference in New Issue
Block a user