diff options
author | rtkay123 <dev@kanjala.com> | 2025-08-15 19:36:22 +0200 |
---|---|---|
committer | rtkay123 <dev@kanjala.com> | 2025-08-15 19:36:22 +0200 |
commit | 1968002d656383069a386bd874c9f0cc83e3116e (patch) | |
tree | 3f37092facf20b1176313428ee6269878529278f /crates/rule-executor/rule-executor.toml | |
parent | f5ba1a25cad80bff8c6e01f8d956e212be097ae7 (diff) | |
download | warden-1968002d656383069a386bd874c9f0cc83e3116e.tar.bz2 warden-1968002d656383069a386bd874c9f0cc83e3116e.zip |
feat(rule-exec): receive messages
Diffstat (limited to 'crates/rule-executor/rule-executor.toml')
-rw-r--r-- | crates/rule-executor/rule-executor.toml | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/crates/rule-executor/rule-executor.toml b/crates/rule-executor/rule-executor.toml new file mode 100644 index 0000000..dd64828 --- /dev/null +++ b/crates/rule-executor/rule-executor.toml @@ -0,0 +1,33 @@ +[application] +env = "development" + +[monitoring] +log-level = "warden_rule=trace,info" +opentelemetry-endpoint = "http://localhost:4317" +loki-endpoint = "http://localhost:3100" + +[misc] +config-endpoint = "http://localhost:1304" + +[misc.nats] +stream-name = "rules" +subjects = ["rule.>"] +durable-name = "rules" +destination-prefix = "typology-rule" + +[misc.nats.config] +stream = "configuration" +reload-subject = "configuration.reload" + +[database] +pool_size = 100 +port = 5432 +name = "pseudonyms" +host = "localhost" +password = "password" +user = "postgres" + +[nats] +hosts = ["nats://localhost:4222"] + +# vim:ft=toml |