@@ -30,7 +30,7 @@ defmodule FunWithFlags.Telemetry do
30
30
event is always emitted every time a flag is queried.
31
31
32
32
Metadata:
33
- * `flag_name` (string ), the name of the flag being read.
33
+ * `flag_name` (atom ), the name of the flag being read.
34
34
35
35
* `[:fun_with_flags, :persistence, :read_all_flags]`, emitted when all flags
36
36
are read from the DB. No extra metadata.
@@ -43,20 +43,20 @@ defmodule FunWithFlags.Telemetry do
43
43
is always upserted.
44
44
45
45
Metadata:
46
- * `flag_name` (string ), the name of the flag being written.
46
+ * `flag_name` (atom ), the name of the flag being written.
47
47
* `gate` (`FunWithFlags.Gate`), the gate being upserted.
48
48
49
49
* `[:fun_with_flags, :persistence, :delete_flag]`, emitted when an entire flag
50
50
is deleted from the DB.
51
51
52
52
Metadata:
53
- * `flag_name` (string ), the name of the flag being deleted.
53
+ * `flag_name` (atom ), the name of the flag being deleted.
54
54
55
55
* `[:fun_with_flags, :persistence, :delete_gate]`, emitted when one of the flag's
56
56
gates is deleted from the DB.
57
57
58
58
Metadata:
59
- * `flag_name` (string ), the name of the flag whose gate is being deleted.
59
+ * `flag_name` (atom ), the name of the flag whose gate is being deleted.
60
60
* `gate` (`FunWithFlags.Gate`), the gate being deleted.
61
61
62
62
* `[:fun_with_flags, :persistence, :reload]`, emitted when a flag is reloaded
@@ -65,7 +65,7 @@ defmodule FunWithFlags.Telemetry do
65
65
the flag being reloaded from the DB.
66
66
67
67
Metadata:
68
- * `flag_name` (string ), the name of the flag being reloaded.
68
+ * `flag_name` (atom ), the name of the flag being reloaded.
69
69
70
70
* `[:fun_with_flags, :persistence, :error]`, emitted for erorrs in any of the
71
71
above operations.
@@ -75,7 +75,7 @@ defmodule FunWithFlags.Telemetry do
75
75
appropriate error term returned by the underlying persistence adapters.
76
76
* `original_event` (atom), the name of the original event that failed, e.g.
77
77
`:read`, `:write`, `:delete_gate`, etc.
78
- * `flag_name` (string ), the name of the flag being operated on, if supported
78
+ * `flag_name` (atom ), the name of the flag being operated on, if supported
79
79
by the original event.
80
80
* `gate` (`FunWithFlags.Gate`), the gate being operated on, if supported by
81
81
the original event.
0 commit comments