Skip to content

Commit 8e5aa7d

Browse files
committed
Documentation for patches stuff
1 parent f994689 commit 8e5aa7d

File tree

2 files changed

+41
-13
lines changed

2 files changed

+41
-13
lines changed

patches/README.md

+21-3
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,26 @@
11
# Self-Hosted Sentry Patches
22

33
Other than the default self-hosted Sentry installation, sometimes users can leverage their existing infrastructure to help them
4-
with limited resources. "Patches", or you might call this like a "plugin system", is a bunch of bash scripts that can be used
4+
with limited resources. "Patches", or you might call this like a "plugin system", is a collection of bash scripts that can be used
55
to modify the existing configuration to achieve the desired goal.
66

7-
Beware that this is very experimental and might not work as expected.
8-
Use it at your own risk.
7+
> [!WARNING]
8+
> Beware that this is very experimental and might not work as expected.
9+
>
10+
> **Use it at your own risk!**
11+
12+
## How to use patches
13+
14+
The patches are designed mostly to help modify the existing configuration files. You will need to run the `install.sh` script afterwards.
15+
They should be run from the root directory. For example, the `external-kafka.sh` patch should be run as:
16+
```bash
17+
./patches/external-kafka.sh
18+
```
19+
20+
Some patches might require additional steps to be taken, like providing credentials or additional TLS certificates.
21+
22+
## Official support
23+
24+
Sentry employees are not obliged to provide dedicated support for patches, but they can help by providing information to move us forward. We encourage the community to contribute for any bug fixes or improvements.
25+
26+
See the [support policy for self-hosted Sentry](https://develop.sentry.dev/self-hosted/support/) for more information.

patches/external-kafka.sh

+20-10
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,7 @@ source patches/_lib.sh
2222

2323
# If `sentry/sentry.conf.py` exists, we'll modify it.
2424
# Otherwise, we'll use `sentry/sentry.conf.example.py`.
25+
# This kind of conditional logic will be used with other files.
2526
SENTRY_CONFIG_PY="sentry/sentry.conf.py"
2627
if [[ ! -f "$SENTRY_CONFIG_PY" ]]; then
2728
SENTRY_CONFIG_PY="sentry/sentry.conf.example.py"
@@ -37,6 +38,8 @@ if [[ ! -f "$RELAY_CONFIG_YML" ]]; then
3738
RELAY_CONFIG_YML="relay/config.example.yml"
3839
fi
3940

41+
## XXX(aldy505): Create the diff by running `diff -u sentry/sentry.conf.py sentry/sentry.conf.example.py`.
42+
## But you'll need to have your own `sentry/sentry.conf.py` file with the changes already set.
4043
patch -p1 $SENTRY_CONFIG_PY <<"EOF"
4144
@@ -136,9 +136,17 @@
4245
SENTRY_CACHE = "sentry.cache.redis.RedisCache"
@@ -60,7 +63,11 @@ patch -p1 $SENTRY_CONFIG_PY <<"EOF"
6063
EOF
6164

6265
# Add additional Kafka options to the ENV_FILE
63-
cat <<EOF >>"$ENV_FILE"
66+
# Only patch this when "KAFKA_BOOTSTRAP_SERVERS" is not set.
67+
if [[ grep -q "KAFKA_BOOTSTRAP_SERVERS" "${ENV_FILE}" ]]; then
68+
echo "🚨 Skipping patching of ${ENV_FILE}"
69+
else
70+
cat <<EOF >>"$ENV_FILE"
6471
6572
################################################################################
6673
## Additional External Kafka options
@@ -78,6 +85,7 @@ KAFKA_SECURITY_PROTOCOL=PLAINTEXT
7885
# KAFKA_SSL_CERTIFICATE_LOCATION=/kafka-certificates/client.pem
7986
# KAFKA_SSL_KEY_LOCATION=/kafka-certificates/client.key
8087
EOF
88+
fi
8189

8290
patch -p1 $RELAY_CONFIG_YML <<"EOF"
8391
@@ -7,8 +7,15 @@
@@ -88,12 +96,12 @@ patch -p1 $RELAY_CONFIG_YML <<"EOF"
8896
+ - {name: "bootstrap.servers", value: "kafka-node1:9092,kafka-node2:9092,kafka-node3:9092"}
8997
- {name: "message.max.bytes", value: 50000000} # 50MB
9098
+ - {name: "security.protocol", value: "PLAINTEXT"}
91-
+ - {name: "sasl.mechanism", value: "PLAIN"}
92-
+ - {name: "sasl.username", value: "username"}
93-
+ - {name: "sasl.password", value: "password"}
94-
+ - {name: "ssl.ca.location", value: "/kafka-certificates/ca.pem"}
95-
+ - {name: "ssl.certificate.location", value: "/kafka-certificates/client.pem"}
96-
+ - {name: "ssl.key.location", value: "/kafka-certificates/client.key"}
99+
+ - {name: "sasl.mechanism", value: "PLAIN"} # Remove or comment this line if SASL is not used.
100+
+ - {name: "sasl.username", value: "username"} # Remove or comment this line if SASL is not used.
101+
+ - {name: "sasl.password", value: "password"} # Remove or comment this line if SASL is not used.
102+
+ - {name: "ssl.ca.location", value: "/kafka-certificates/ca.pem"} # Remove or comment this line if SSL is not used.
103+
+ - {name: "ssl.certificate.location", value: "/kafka-certificates/client.pem"} # Remove or comment this line if SSL is not used.
104+
+ - {name: "ssl.key.location", value: "/kafka-certificates/client.key"} # Remove or comment this line if SSL is not used.
97105
redis: redis://redis:6379
98106
geoip_path: "/geoip/GeoLite2-City.mmdb"
99107
EOF
@@ -244,7 +252,9 @@ echo ""
244252
echo ""
245253
echo "------------------------------------------------------------------------"
246254
echo "- Finished patching external-kafka.sh. Some things you'll need to do:"
247-
echo "- Modify the Kafka credentials on your $ENV_FILE file."
248-
echo "- Modify the Kafka credentials on your $RELAY_CONFIG_YML file."
249-
echo "- Then, run ./install.sh"
255+
echo "- 1. Modify the Kafka credentials on your $ENV_FILE file."
256+
echo "- 2. Modify the Kafka credentials on your $RELAY_CONFIG_YML file."
257+
echo "- 3. Run ./install.sh"
258+
echo "-"
259+
echo "- NOTE: Remove or comment the corresponding line if you don't use it."
250260
echo "------------------------------------------------------------------------"

0 commit comments

Comments
 (0)