Skip to content

Commit 2fcbb8c

Browse files
authored
Fix broken links (#387)
1 parent 5114070 commit 2fcbb8c

File tree

3 files changed

+16
-14
lines changed

3 files changed

+16
-14
lines changed

docs/integrate/cluvio/usage.md

Lines changed: 9 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -8,17 +8,19 @@ dashboards.
88

99
## Prerequisites
1010

11-
* [CrateDB Cloud cluster up and running](https://crate.io/docs/cloud/en/latest/tutorials/cluster-deployment/index.html)
1211
* [Cluvio account](https://www.cluvio.com/)
1312

1413

1514
## Set up CrateDB
1615

17-
Deploying a CrateDB cloud cluster has never been easier, simply follow our tutorial [here](https://crate.io/docs/cloud/en/latest/tutorials/cluster-deployment/stripe.html#cluster-deployment-stripe) and you can have a cluster up and running within minutes. We offer a CRFREE plan which offers up to 2 vCPUs, 2 GiB of memory, and 8 GiB of storage completely for free. Ideal for small-scale testing and evaluation purposes.
16+
Deploying a CrateDB cloud cluster has never been easier, set up a [CrateDB Cloud]
17+
cluster within minutes. We offer a free plan with up to 2 vCPUs, 2 GiB of memory,
18+
and 8 GiB of storage.
1819

1920
### Load data into CrateDB
2021

21-
In this usage guide, you use two tables—[flights](http://stat-computing.org/dataexpo/2009) and [airports](https://openflights.org/data.php)—from January 2008.
22+
In this usage guide, you use two tables—[flights](http://stat-computing.org/dataexpo/2009)
23+
and [airports](https://openflights.org/data.php)—from January 2008.
2224

2325
#### Create tables
2426

@@ -72,7 +74,7 @@ CREATE TABLE flights (
7274
);
7375
```
7476

75-
This creates 2 empty tables in your database. `flights` and `airports`, with the correct data types of the columns.
77+
This creates 2 empty tables in your database. `flights` and `airports`, with the correct data types of the columns.
7678

7779
#### Import data
7880

@@ -135,7 +137,7 @@ SELECT
135137
AVG(arr_delay) AS "Average Arrival Delay"
136138
FROM doc.flights
137139
ORDER BY 1
138-
```
140+
```
139141
This is a pretty simple query that counts the number of rows in the `flights` as the number of flights, and averages values in the `dep_delay` and `arr_delay` for the departure delays and arrival delays respectively.
140142

141143
![Number of flights and delays|690x117](https://us1.discourse-cdn.com/flex020/uploads/crate/original/2X/4/4841404a21b56cb1e5b92736af8b79656b0912ec.png){width=800px}
@@ -160,12 +162,12 @@ In this one, it's suitable to use pie chart to better see the distribution. We a
160162

161163
## Filters
162164

163-
[Filters](https://app.cluvio.com/settings/filters) offer a great way to quickly specify the condition under which you want to display your data.
165+
[Filters](https://app.cluvio.com/settings/filters) offer a great way to quickly specify the condition under which you want to display your data.
164166

165167
In the `flights` table in `day_of_week` column 1 represents Monday, 2 means Tuesday, etc. Using that, we can create a filter to display data for a specific day of the week without changing the SQL in our reports.
166168

167169
```sql
168-
VALUES
170+
VALUES
169171
(1, 'Monday'),
170172
(2, 'Tuesday'),
171173
(3, 'Wednesday'),

docs/integrate/grafana/tutorial.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,9 +8,8 @@ to CrateDB, which is purpose-built for monitoring large volumes of machine
88
data in real-time.
99

1010
For the purposes of this guide, it is assumed that you
11-
have a cluster up and running and can access the Console. If not, please refer
12-
to the {ref}`tutorial on how to deploy a cluster for the first time
13-
<cluster-deployment>`.
11+
have a CrateDB cluster up and running and can access the Console. If not, please
12+
set up a free [CrateDB Cloud cluster].
1413

1514
(grafana-load-dataset)=
1615

@@ -222,3 +221,4 @@ out more, refer to the [Grafana documentation].
222221
[grafana]: https://www.grafana.com/
223222
[grafana documentation]: https://grafana.com/docs/grafana/latest/?pg=oss-graf&plcmt=quick-links
224223
[grafana panels]: https://grafana.com/docs/grafana/latest/panels/
224+
[CrateDB Cloud cluster]: https://console.cratedb.cloud

docs/integrate/metabase/usage.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,7 @@ tool that unlocks the full potential of your data.
1010
## Prerequisites
1111

1212
First, you will need a running cluster. You can use Metabase with both
13-
CrateDB self-managed and its managed offering
14-
{ref}`CrateDB Cloud <cluster-deployment-stripe>`.
13+
CrateDB self-managed and its managed [CrateDB Cloud] offering.
1514

1615
To use Metabase, you must have an existing data set in your CrateDB cluster.
1716
Feel free to use the sample dataset available in the [Cloud Console] or
@@ -100,10 +99,11 @@ interactive dashboards, automated reporting, and more.
10099
If you'd like to see how the other questions were configured, feel free to
101100
check out the [video tutorial] on this topic.
102101

103-
If this integration could benefit you, feel free to head to [Cloud Console]
102+
If this integration could benefit you, feel free to head to [CrateDB Cloud]
104103
and get started!
105104

106-
[cloud console]: https://console.cratedb.cloud/
105+
[Cloud console]: https://console.cratedb.cloud/
106+
[CrateDB Cloud]: https://console.cratedb.cloud/
107107
[in this how-to]: https://community.cratedb.com/t/importing-data-to-cratedb-cloud-clusters/1467
108108
[metabase]: https://www.metabase.com/
109109
[video tutorial]: https://www.youtube.com/watch?v=veuR_76njCo

0 commit comments

Comments
 (0)