Skip to content

Commit

Permalink
fixes wrong link in alerting docs
Browse files Browse the repository at this point in the history
  • Loading branch information
rudolfix committed Mar 6, 2024
1 parent 2ffcd97 commit 3761335
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions docs/website/docs/running-in-production/alerting.md
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ for package in info.load_packages:
for table_name, table in package.schema_update.items():
# Iterate over each column in the current table
for column_name, column in table["columns"].items():
# Send a message to the Slack channel with the table
# Send a message to the Slack channel with the table
# and column update information
send_slack_message(
hook,
Expand All @@ -66,7 +66,7 @@ for package in info.load_packages:
)
)
```
Refer to this [example](../../docs/examples/chess_production/) for a practical application of the method in a production environment.
Refer to this [example](../examples/chess_production/) for a practical application of the method in a production environment.

Similarly, Slack notifications can be extended to include information on pipeline execution times, loading durations, schema modifications, and more. For comprehensive details on configuring and sending messages to Slack, please read [here](./running#using-slack-to-send-messages).
Similarly, Slack notifications can be extended to include information on pipeline execution times, loading durations, schema modifications, and more. For comprehensive details on configuring and sending messages to Slack, please read [here](./running#using-slack-to-send-messages).

0 comments on commit 3761335

Please sign in to comment.