]> git.ipfire.org Git - thirdparty/tor.git/commitdiff
Fixed new arguments for metrics_store_add
authorfriendly73 <friendly73@x.x>
Tue, 21 Mar 2023 14:42:17 +0000 (14:42 +0000)
committerDavid Goulet <dgoulet@torproject.org>
Thu, 25 May 2023 15:03:35 +0000 (11:03 -0400)
src/feature/relay/relay_metrics.c

index 2bed40c33d342b8e6fe317f53a7d81caec7ea455..95367d82cdd655ce0f53862c77d4e6263d99abb5 100644 (file)
@@ -1080,8 +1080,8 @@ fill_est_intro_cells(void)
   static const size_t num_actions = ARRAY_LENGTH(actions);
 
   for (size_t i = 0; i < num_actions; ++i) {
-    sentry =
-        metrics_store_add(the_store, rentry->type, rentry->name, rentry->help);
+    sentry = metrics_store_add(the_store, rentry->type, rentry->name,
+                               rentry->help, 0, NULL);
     metrics_store_entry_add_label(
         sentry, metrics_format_label("action", actions[i].name));
     metrics_store_entry_update(sentry,
@@ -1118,8 +1118,8 @@ fill_est_rend_cells(void)
   static const size_t num_actions = ARRAY_LENGTH(actions);
 
   for (size_t i = 0; i < num_actions; ++i) {
-    sentry =
-        metrics_store_add(the_store, rentry->type, rentry->name, rentry->help);
+    sentry = metrics_store_add(the_store, rentry->type, rentry->name,
+                               rentry->help, 0, NULL);
     metrics_store_entry_add_label(
         sentry, metrics_format_label("action", actions[i].name));
     metrics_store_entry_update(sentry, (long)est_rend_actions[actions[i].key]);
@@ -1156,8 +1156,8 @@ fill_intro1_cells(void)
   static const size_t num_actions = ARRAY_LENGTH(actions);
 
   for (size_t i = 0; i < num_actions; ++i) {
-    sentry =
-        metrics_store_add(the_store, rentry->type, rentry->name, rentry->help);
+    sentry = metrics_store_add(the_store, rentry->type, rentry->name,
+                               rentry->help, 0, NULL);
     metrics_store_entry_add_label(
         sentry, metrics_format_label("action", actions[i].name));
     metrics_store_entry_update(sentry, (long)intro1_actions[actions[i].key]);
@@ -1192,8 +1192,8 @@ fill_rend1_cells(void)
   static const size_t num_actions = ARRAY_LENGTH(actions);
 
   for (size_t i = 0; i < num_actions; ++i) {
-    sentry =
-        metrics_store_add(the_store, rentry->type, rentry->name, rentry->help);
+    sentry = metrics_store_add(the_store, rentry->type, rentry->name,
+                               rentry->help, 0, NULL);
     metrics_store_entry_add_label(
         sentry, metrics_format_label("action", actions[i].name));
     metrics_store_entry_update(sentry, (long)rend1_actions[actions[i].key]);