diff --git a/adaptived/doc/internal/list-of-built-in-effects.md b/adaptived/doc/internal/list-of-built-in-effects.md
index fa0cc22..a8fe1db 100644
--- a/adaptived/doc/internal/list-of-built-in-effects.md
+++ b/adaptived/doc/internal/list-of-built-in-effects.md
@@ -14,7 +14,7 @@ Parameters that accept long long or float also support some human-readable forma
| [logger](../../src/effects/logger.c) | Given an array of files, write their contents to "logfile" |
- "logfile" (string) - Output file to store the log data
- "max_file_size" (int - optional) - Maximum amount of data that will be copied from each source file. Defaults to 32kB if not specified
- "files" (array)
- "file" (string) - file to copy
- "separator_prefix" (string - optional) - If specified, this string will be written each time this effect triggers
- "date_format" (string - optional) - If specified, the date will be written in the specified format each time the effect triggers
- "utc" (boolean - optional) - If specified, the date will be recorded in UTC time. Otherwise, the machine's localtime() will be used
- "separator_postfix" (string - optional) - If specified, this string will be written each time this effect triggers
- "file_separator" (string - optional) -If specified, this string will be written between each file being logged
| [ftest 043](../../tests/ftests/043-effect-logger-no-separators.json)
[ftest 044](../../tests/ftests/044-effect-logger-date-format.json) | |
| [print](../../src/effects/print.c) | Print a message to a file | - "message" (string - optional) - message to output
- "file" (string) - file to write to. Currently only supports "stdout" or "stderr"
| [Jimmy Buffett Example](../examples/jimmy-buffett-config.json) | |
| [print_schedstat](../../src/effects/print_schedstat.c) | Print schedstat to a file | - "file" (string) - file to write to. Currently only supports "stdout" or "stderr"
| [ftest 054](../../tests/ftests/054-effect-print_schedstat.json) | |
-| [sd_bus_setting](../../src/effects/sd_bus_setting.c) | Operate on sd_bus properties | - "target" (string) - cgroup slice or scope name
- "setting" (string) - sd_bus property name (e.g. MemoryMax)
- "value" (string, long long, or double) - value to write to the property. If the operator is set to add or subtract, this value will be added/subtracted from the current value of property
- "operator" (string) - add, subtract, or set
- "limit" (string, long long, or double - optional) - if provided, this effect will use the value as an upper or lower limit when the operator is set to add or subtract, respectfully
- "validate" (boolean - optional) - if true, the setting effect will read from the property to ensure the value was properly set
| [ftest 1000](../../tests/ftests/1000-sudo-effect-sd_bus_setting_set_int.json)
[ftest 1001](../../tests/ftests/1001-sudo-effect-sd_bus_setting_add_int.json)
[ftest 1002](../../tests/ftests/1002-sudo-effect-sd_bus_setting_sub_int.json)
[ftest 1003](../../tests/ftests/1003-sudo-effect-sd_bus_setting-CPUQuota.json)
[ftest 1004](../../tests/ftests/1004-sudo-effect-sd_bus_setting_add_int_infinity.json)
[ftest 1005](../../tests/ftests/1005-sudo-effect-sd_bus_setting_sub_infinity.json)
[ftest 1006](../../tests/ftests/1006-sudo-effect-sd_bus_setting_set_int_scope.json)
[ftest 1007](../../tests/ftests/1007-sudo-effect-sd_bus_setting_set_str.json) | Shares a code base with the cgroup effect code |
+| [sd_bus_setting](../../src/effects/sd_bus_setting.c) | Operate on sd_bus properties | - "target" (string) - cgroup slice name or scope name
- "setting" (string) - sd_bus property name (e.g. MemoryMax)
- "value" (string, long long, or double) - value to write to the property. If the operator is set to add or subtract, this value will be added/subtracted from the current value of the property
- "operator" (string) - add, subtract, or set
- "limit" (string, long long, or double - optional) - if provided, this effect will use the value as an upper or lower limit when the operator is set to add or subtract, respectfully
- "validate" (boolean - optional) - if true, the setting effect will read from the property to ensure the value was properly set
- "runtime" (boolean - optional) - if true, make changes only temporarily, so that they are lost on the next reboot.
| [ftest 1000](../../tests/ftests/1000-sudo-effect-sd_bus_setting_set_int.json)
[ftest 1001](../../tests/ftests/1001-sudo-effect-sd_bus_setting_add_int.json)
[ftest 1002](../../tests/ftests/1002-sudo-effect-sd_bus_setting_sub_int.json)
[ftest 1003](../../tests/ftests/1003-sudo-effect-sd_bus_setting-CPUQuota.json)
[ftest 1004](../../tests/ftests/1004-sudo-effect-sd_bus_setting_add_int_infinity.json)
[ftest 1005](../../tests/ftests/1005-sudo-effect-sd_bus_setting_sub_infinity.json)
[ftest 1006](../../tests/ftests/1006-sudo-effect-sd_bus_setting_set_int_scope.json)
[ftest 1007](../../tests/ftests/1007-sudo-effect-sd_bus_setting_set_str.json) | |
| [setting](../../src/effects/cgroup_setting.c) | Write to a setting file | - "setting" (string) - full path to the setting
- "value" (string, long long, or double) - value to write to the setting file. If the operator is set to add or subtract, this value will be added/subtracted from the current value of setting
- "operator" (string) - add, subtract, or set
- "limit" (string, long long, or double - optional) - if provided, this effect will use the value as an upper or lower limit when the operator is set to add or subtract, respectfully
- "validate" (boolean - optional) - if true, the setting effect will read from the setting file to ensure the value was properly set
| [ftest 055](../../tests/ftests/055-effect-setting_set_int.json)
[ftest 056](../../tests/ftests/056-effect-setting_add_int.json)
[ftest 057](../../tests/ftests/057-effect-setting_sub_int.json) | Shares a code base with the cgroup effect code |
| [signal](../../src/effects/kill_processes.c) | Send a signal to the process(es) that match the user-specified process name(s) | - "proc_names" (array)
- "name" (string) - process name (as found in /proc/{pid}/stat)
- "signal" (int - optional) - signal to send to the processes being killed. Curently only supports integers. Default - 10 (i.e. SIGUSR1)
| [ftest_069](../../tests/ftests/069-effect-signal.json) | |
| [snooze](../../src/effects/snooze.c) | Once the cause(s) in a rule have triggered, snooze (i.e. ignore any more triggers) for a specified duration | - "duration" (int) - how long to ignore triggers, in interval milliseconds
| [ftest 010](../../tests/ftests/010-snooze_effect.json) | |