Skip to content

Commit cc2b41c

Browse files
Minor fixes (#4624)
Co-authored-by: Iain Cox <iain@tigerdata.com>
1 parent 86dc387 commit cc2b41c

File tree

7 files changed

+15
-10
lines changed

7 files changed

+15
-10
lines changed

_partials/_devops-mcp-commands.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,6 +39,6 @@ $MCP_LONG exposes the following MCP tools to your AI Assistant:
3939
| | `pooled` | - | Use [connection pooling][Connection pooling]. This is only available if you have already enabled it for the $SERVICE_SHORT. Default: `false`. |
4040

4141
[Connection pooling]: /use-timescale/:currentVersion:/services/connection-pooling/
42-
[cloud-regions]: about/:currentVersion:/supported-platforms#available-regions
42+
[cloud-regions]: /about/:currentVersion:/supported-platforms#available-regions
4343
[create-service]: /getting-started/:currentVersion:/services/
4444
[readreplica]: /use-timescale/:currentVersion:/ha-replicas/read-scaling/

about/changelog.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -626,7 +626,7 @@ pgai vectorizer now supports automatic document vectorization. This makes it dra
626626

627627
Instead of juggling multiple systems and syncing metadata, vectorizer handles the entire process: downloading documents from S3, parsing them, chunking text, and generating vector embeddings stored right in $PG using pgvector. As documents change, embeddings stay up-to-date automatically—keeping your $PG database the single source of truth for both structured and semantic data.
628628

629-
![create a vectorizer](https://assets.timescale.com/docs/images/console-create-a-vectorizer.png )
629+
![create a vectorizer](https://assets.timescale.com/docs/images/console-create-a-vectorizer.png)
630630

631631
### Sample dataset for AI testing
632632

mst/migrate-to-mst.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -108,7 +108,7 @@ machine:
108108
```
109109

110110
1. Connect to your new database and update your table statistics by running
111-
[`ANALYZE`] [analyze] on your entire dataset:
111+
[`ANALYZE`][analyze] on your entire dataset:
112112

113113
```sql
114114
psql -d "$TARGET" defaultdb=> ANALYZE;

tutorials/OLD_analyze-nft-data/nft-schema-ingestion.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -347,5 +347,5 @@ SELECT count(*), MIN(time) AS min_date, MAX(time) AS max_date FROM nft_sales
347347
```
348348
349349
[nft-schema]: https://github.com/timescale/nft-starter-kit/blob/master/schema.sql
350-
[opensea-api-documentation]: https://docs.opensea.io/reference/request-an-api-key
350+
[opensea-api-documentation]: https://docs.opensea.io/reference/api-keys
351351
[sample-data]: https://assets.timescale.com/docs/downloads/nft_sample.zip

use-timescale/extensions/postgis.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ geographic data. It helps in spatial data analysis, the study of patterns,
1515
anomalies, and theories within spatial or geographical data.
1616

1717
For more information about these functions and the options available, see the
18-
[PostGIS documentation] [postgis-docs].
18+
[PostGIS documentation][postgis-docs].
1919

2020
## Use the `postgis` extension to analyze geospatial data
2121

use-timescale/hypertables/improve-query-performance.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -123,7 +123,7 @@ column in each chunk. These ranges are stored in the start (inclusive) and end (
123123
catalog table. TimescaleDB uses these ranges for dynamic chunk exclusion when the `WHERE` clause of an SQL query
124124
specifies ranges on the column.
125125

126-
![Chunk skipping][chunk-skipping]
126+
![Chunk skipping][chunk-skipping-image]
127127

128128
You can enable chunk skipping on hypertables compressed into the columnstore for `smallint`, `int`, `bigint`, `serial`,
129129
`bigserial`, `date`, `timestamp`, or `timestamptz` type columns.
@@ -167,3 +167,4 @@ $PG planner to create the best query plan. For more information about the
167167
[chunks_detailed_size]: /api/:currentVersion:/hypertable/chunks_detailed_size
168168
[our-blog-post]: https://www.tigerdata.com/blog/boost-postgres-performance-by-7x-with-chunk-skipping-indexes
169169
[pg-analyze]: https://www.postgresql.org/docs/current/sql-analyze.html
170+
[chunk-skipping-image]: https://assets.timescale.com/docs/images/hypertable-with-chunk-skipping.png

use-timescale/metrics-logging/monitoring.md

Lines changed: 8 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -103,7 +103,7 @@ Insights help you get a comprehensive understanding of how your queries perform
103103

104104
To view insights, select your $SERVICE_SHORT, then click `Monitoring` > `Insights`. Search or filter queries by type, maximum execution time, and time frame.
105105

106-
![Insights][insights]
106+
![Insights][insights-image]
107107

108108
Insights include `Metrics`, `Current lock contention`, and `Queries`.
109109

@@ -157,7 +157,7 @@ $CLOUD_LONG summarizes all [$JOBs][jobs] set up for your $SERVICE_SHORT along wi
157157

158158
1. To view $JOBs, select your $SERVICE_SHORT in $CONSOLE, then click `Monitoring` > `Jobs`:
159159

160-
![Jobs][jobs]
160+
![Jobs][jobs-image]
161161

162162
1. Click a $JOB ID in the list to view its config and run history:
163163

@@ -175,7 +175,7 @@ $CLOUD_LONG lists current and past connections to your $SERVICE_SHORT. This incl
175175

176176
To view connections, select your $SERVICE_SHORT in $CONSOLE, then click `Monitoring` > `Connections`. Expand the query underneath each connection to see the full SQL.
177177

178-
![Connections][connections]
178+
![Connections][connections-image]
179179

180180
Click the trash icon next to a connection in the list to terminate it. A lock icon means that a connection cannot be terminated; hover over the icon to see the reason.
181181

@@ -185,7 +185,7 @@ $CLOUD_LONG offers specific tips on configuring your $SERVICE_SHORT. This includ
185185

186186
To view recommendations, select your $SERVICE_SHORT in $CONSOLE, then click `Monitoring` > `Recommendations`:
187187

188-
![Recommendations][recommendations]
188+
![Recommendations][recommendations-image]
189189

190190
## Query-level statistics with `pg_stat_statements`
191191

@@ -255,5 +255,9 @@ For more examples and detailed explanations, see the [blog post on identifying p
255255
[queries-drill-down-view]: https://assets.timescale.com/docs/images/tiger-on-azure/query-drill-down-view-tiger-console.png
256256
[queries]: https://assets.timescale.com/docs/images/tiger-cloud-console/tiger-console-query-insights.png
257257
[recommendations]: /use-timescale/:currentVersion:/metrics-logging/monitoring/#recommendations
258+
[recommendations-image]: https://assets.timescale.com/docs/images/tiger-cloud-console/recommendations-tiger-cloud.png
258259
[service-metrics]: https://assets.timescale.com/docs/images/tiger-on-azure/service-metrics-tiger-console.png
259260
[update-job-config]: https://assets.timescale.com/docs/images/tiger-cloud-console/tiger-console-edit-job.png
261+
[insights-image]: https://assets.timescale.com/docs/images/tiger-on-azure/insights-overview-tiger-console.png
262+
[jobs-image]: https://assets.timescale.com/docs/images/tiger-on-azure/tiger-console-jobs.png
263+
[connections-image]: https://assets.timescale.com/docs/images/tiger-on-azure/tiger-console-service-connections.png

0 commit comments

Comments
 (0)