diff --git a/content/docs/databases/mysql.md b/content/docs/databases/mysql.md index 12f334d94..1bac4915e 100644 --- a/content/docs/databases/mysql.md +++ b/content/docs/databases/mysql.md @@ -53,7 +53,7 @@ Especially for production environments, performing regular backups and monitorin - **Observability**: Implement monitoring for insights into performance and health of your databases. If you're not already running an observability stack, check out these templates to help you get started building one: - [Prometheus](https://railway.com/deploy/KmJatA) - - [Grafana](https://railway.com/deploy/anURAt) + - [Grafana](https://railway.com/deploy/grafana-open-source-observability-platform--grafana-monitoring-dashboard) ## Additional resources diff --git a/content/docs/databases/postgresql.md b/content/docs/databases/postgresql.md index ed0e122b0..12b86ed18 100644 --- a/content/docs/databases/postgresql.md +++ b/content/docs/databases/postgresql.md @@ -58,7 +58,7 @@ Especially for production environments, performing regular backups and monitorin - **Observability**: Implement monitoring for insights into performance and health of your databases. If you're not already running an observability stack, check out these templates to help you get started building one: - [Prometheus](https://railway.com/deploy/KmJatA) - - [Grafana](https://railway.com/deploy/anURAt) + - [Grafana](https://railway.com/deploy/grafana-open-source-observability-platform--grafana-monitoring-dashboard) - [PostgreSQL Exporter](https://railway.com/deploy/gDzHrM) ## Extensions diff --git a/content/guides/deploy-node-express-api-with-auto-scaling-secrets-and-zero-downtime.md b/content/guides/deploy-node-express-api-with-auto-scaling-secrets-and-zero-downtime.md index 98fedd4e8..458cef011 100644 --- a/content/guides/deploy-node-express-api-with-auto-scaling-secrets-and-zero-downtime.md +++ b/content/guides/deploy-node-express-api-with-auto-scaling-secrets-and-zero-downtime.md @@ -53,7 +53,7 @@ npm install -D typescript @types/node @types/express tsx - [Express](https://expressjs.com/) - Web framework for Node.js - [dotenv](https://www.npmjs.com/package/dotenv) - Loads environment variables from `.env` files - [TypeScript](https://www.typescriptlang.org/) - Typed superset of JavaScript -- [tsx](https://tsx.is/) - TypeScript execution engine +- [tsx](https://tsx.hirok.io/) - TypeScript execution engine ### Configure TypeScript @@ -172,7 +172,7 @@ Update your `package.json` to include the necessary scripts. Learn more about [n ### Run the development server -Now you can run your TypeScript application using [tsx](https://tsx.is/), which provides seamless TypeScript execution without worrying about configuration: +Now you can run your TypeScript application using [tsx](https://tsx.hirok.io/), which provides seamless TypeScript execution without worrying about configuration: ```bash npm run dev