summary refs log tree commit diff
path: root/develop/usage
diff options
context:
space:
mode:
authorerikjohnston <erikjohnston@users.noreply.github.com>2023-12-12 16:06:01 +0000
committererikjohnston <erikjohnston@users.noreply.github.com>2023-12-12 16:06:01 +0000
commitf54456c1f4ccaeefa01c67054009f32f8a32daaf (patch)
tree0e199c53648baae4c26622efb10196573589c8c4 /develop/usage
parentdeploy: 15733b0931ceaa72cf4175c44fe58128fa273bac (diff)
downloadsynapse-f54456c1f4ccaeefa01c67054009f32f8a32daaf.tar.xz
deploy: e108cde669fcc0a9f1def9d8771f962c9b0b312f
Diffstat (limited to 'develop/usage')
-rw-r--r--develop/usage/configuration/config_documentation.html6
1 files changed, 5 insertions, 1 deletions
diff --git a/develop/usage/configuration/config_documentation.html b/develop/usage/configuration/config_documentation.html
index 1a5fbed497..2104a41c96 100644
--- a/develop/usage/configuration/config_documentation.html
+++ b/develop/usage/configuration/config_documentation.html
@@ -2445,7 +2445,10 @@ Defaults to false.</p>
 <hr />
 <h3 id="sentry"><a class="header" href="#sentry"><code>sentry</code></a></h3>
 <p>Use this option to enable sentry integration. Provide the DSN assigned to you by sentry
-with the <code>dsn</code> setting.</p>
+with the <code>dsn</code> setting. </p>
+<p>An optional <code>environment</code> field can be used to specify an environment. This allows
+for log maintenance based on different environments, ensuring better organization
+and analysis..</p>
 <p>NOTE: While attempts are made to ensure that the logs don't contain
 any sensitive information, this cannot be guaranteed. By enabling
 this option the sentry server may therefore receive sensitive
@@ -2453,6 +2456,7 @@ information, and it in turn may then disseminate sensitive information
 through insecure notification channels if so configured.</p>
 <p>Example configuration:</p>
 <pre><code class="language-yaml">sentry:
+    environment: &quot;production&quot;
     dsn: &quot;...&quot;
 </code></pre>
 <hr />