diff options
Diffstat (limited to 'ot_stats.c')
-rw-r--r-- | ot_stats.c | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -48,6 +48,7 @@ static unsigned long long ot_overall_tcp_successfulannounces = 0; | |||
48 | static unsigned long long ot_overall_udp_successfulannounces = 0; | 48 | static unsigned long long ot_overall_udp_successfulannounces = 0; |
49 | static unsigned long long ot_overall_tcp_successfulscrapes = 0; | 49 | static unsigned long long ot_overall_tcp_successfulscrapes = 0; |
50 | static unsigned long long ot_overall_udp_successfulscrapes = 0; | 50 | static unsigned long long ot_overall_udp_successfulscrapes = 0; |
51 | static unsigned long long ot_overall_udp_connectionidmissmatches = 0; | ||
51 | static unsigned long long ot_overall_tcp_connects = 0; | 52 | static unsigned long long ot_overall_tcp_connects = 0; |
52 | static unsigned long long ot_overall_udp_connects = 0; | 53 | static unsigned long long ot_overall_udp_connects = 0; |
53 | static unsigned long long ot_overall_completed = 0; | 54 | static unsigned long long ot_overall_completed = 0; |
@@ -59,7 +60,6 @@ static char * ot_failed_request_names[] = { "302 Redirect", "400 Par | |||
59 | static unsigned long long ot_renewed[OT_PEER_TIMEOUT]; | 60 | static unsigned long long ot_renewed[OT_PEER_TIMEOUT]; |
60 | static unsigned long long ot_overall_sync_count; | 61 | static unsigned long long ot_overall_sync_count; |
61 | static unsigned long long ot_overall_stall_count; | 62 | static unsigned long long ot_overall_stall_count; |
62 | static unsigned long long g_stats_connid_missmatches; | ||
63 | 63 | ||
64 | static time_t ot_start_time; | 64 | static time_t ot_start_time; |
65 | 65 | ||
@@ -539,7 +539,7 @@ static size_t stats_return_everything( char * reply ) { | |||
539 | r += sprintf( r, " <completed>\n <count>%llu</count>\n </completed>\n", ot_overall_completed ); | 539 | r += sprintf( r, " <completed>\n <count>%llu</count>\n </completed>\n", ot_overall_completed ); |
540 | r += sprintf( r, " <connections>\n" ); | 540 | r += sprintf( r, " <connections>\n" ); |
541 | r += sprintf( r, " <tcp>\n <accept>%llu</accept>\n <announce>%llu</announce>\n <scrape>%llu</scrape>\n </tcp>\n", ot_overall_tcp_connections, ot_overall_tcp_successfulannounces, ot_overall_udp_successfulscrapes ); | 541 | r += sprintf( r, " <tcp>\n <accept>%llu</accept>\n <announce>%llu</announce>\n <scrape>%llu</scrape>\n </tcp>\n", ot_overall_tcp_connections, ot_overall_tcp_successfulannounces, ot_overall_udp_successfulscrapes ); |
542 | r += sprintf( r, " <udp>\n <overall>%llu</overall>\n <connect>%llu</connect>\n <announce>%llu</announce>\n <scrape>%llu</scrape>\n </udp>\n", ot_overall_udp_connections, ot_overall_udp_connects, ot_overall_udp_successfulannounces, ot_overall_udp_successfulscrapes ); | 542 | r += sprintf( r, " <udp>\n <overall>%llu</overall>\n <connect>%llu</connect>\n <announce>%llu</announce>\n <scrape>%llu</scrape>\n <missmatch>%llu</missmatch>\n </udp>\n", ot_overall_udp_connections, ot_overall_udp_connects, ot_overall_udp_successfulannounces, ot_overall_udp_successfulscrapes, ot_overall_udp_connectionidmissmatches ); |
543 | r += sprintf( r, " <livesync>\n <count>%llu</count>\n </livesync>\n", ot_overall_sync_count ); | 543 | r += sprintf( r, " <livesync>\n <count>%llu</count>\n </livesync>\n", ot_overall_sync_count ); |
544 | r += sprintf( r, " </connections>\n" ); | 544 | r += sprintf( r, " </connections>\n" ); |
545 | r += sprintf( r, " <debug>\n" ); | 545 | r += sprintf( r, " <debug>\n" ); |
@@ -725,7 +725,7 @@ void stats_issue_event( ot_status_event event, PROTO_FLAG proto, uintptr_t event | |||
725 | break; | 725 | break; |
726 | #endif | 726 | #endif |
727 | case EVENT_CONNID_MISSMATCH: | 727 | case EVENT_CONNID_MISSMATCH: |
728 | ++g_stats_connid_missmatches; | 728 | ++ot_overall_udp_connectionidmissmatches; |
729 | default: | 729 | default: |
730 | break; | 730 | break; |
731 | } | 731 | } |