aboutsummaryrefslogtreecommitdiffstats
path: root/crates/typologies/typologies.toml
diff options
context:
space:
mode:
authorrtkay123 <dev@kanjala.com>2025-08-17 20:02:49 +0200
committerGitHub <noreply@github.com>2025-08-17 20:02:49 +0200
commit73d7bab8844bb21c7a9143c30800c2d11d411e42 (patch)
tree955290bd2bded56b534738d6320216fbeeb708cb /crates/typologies/typologies.toml
parent725739985d853b07d73fa7fcd6db1f2f1b0000b6 (diff)
downloadwarden-73d7bab8844bb21c7a9143c30800c2d11d411e42.tar.bz2
warden-73d7bab8844bb21c7a9143c30800c2d11d411e42.zip
feat: typology processor (#8)
Diffstat (limited to 'crates/typologies/typologies.toml')
-rw-r--r--crates/typologies/typologies.toml32
1 files changed, 32 insertions, 0 deletions
diff --git a/crates/typologies/typologies.toml b/crates/typologies/typologies.toml
new file mode 100644
index 0000000..53dfa84
--- /dev/null
+++ b/crates/typologies/typologies.toml
@@ -0,0 +1,32 @@
+[application]
+env = "development"
+
+[monitoring]
+log-level = "warden_typologies=trace,info"
+opentelemetry-endpoint = "http://localhost:4317"
+loki-endpoint = "http://localhost:3100"
+
+[misc]
+config-endpoint = "http://localhost:1304"
+
+[misc.nats]
+stream-name = "typology"
+subjects = ["typology-rule.>"]
+destination-prefix = "tadp"
+max-messages = 10000
+durable-name = "typologies"
+
+[misc.nats.config]
+stream = "configuration"
+reload-subject = "configuration.reload"
+
+[nats]
+hosts = ["nats://localhost:4222"]
+
+[cache]
+dsn = "redis://localhost:6379"
+pooled = true
+type = "non-clustered" # clustered, non-clustered or sentinel
+max-connections = 100
+
+# vim:ft=toml