Skip to content

Commit c822bd5

Browse files
committed
refactor: organize cloud1-note shortcode into influxdb directory
Move the Cloud 1 note shortcode from influxdb-cloud1-note.html to influxdb/cloud1-note.html to follow the existing organizational pattern in layouts/shortcodes/influxdb/. This change also applies the Cloud 1 content updates from PR #6729 using the new organized shortcode path: {{< influxdb/cloud1-note >}} closes #6729
1 parent 925a26e commit c822bd5

File tree

3 files changed

+69
-14
lines changed

3 files changed

+69
-14
lines changed

content/enterprise_influxdb/v1/_index.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@ weight: 1
1212

1313
InfluxDB Enterprise provides a time series database designed to handle high write and query loads and offers highly scalable clusters on your infrastructure with a management UI. Use for DevOps monitoring, IoT sensor data, and real-time analytics. Check out the key features that make InfluxDB Enterprise a great choice for working with time series data.
1414

15+
{{< influxdb/cloud1-note >}}
1516

1617
## Key features
1718

content/influxdb/v1/_index.md

Lines changed: 26 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -8,24 +8,36 @@ weight: 1
88
---
99

1010
InfluxDB is a [time series database](https://www.influxdata.com/time-series-database/) designed to handle high write and query loads.
11-
It is an integral component of the
11+
InfluxDB OSS v1 is purpose-built to handle any use case involving large amounts
12+
of timestamped data and is an integral component of the
1213
[TICK stack](https://influxdata.com/time-series-platform/).
13-
InfluxDB is meant to be used as a backing store for any use case involving large amounts of timestamped data, including DevOps monitoring, application metrics, IoT sensor data, and real-time analytics.
14+
15+
Common use cases include:
16+
17+
- Infrastructure and DevOps monitoring
18+
- Application metrics and performance monitoring
19+
- IoT sensor data collection
20+
- Real-time analytics
21+
- Events handling
22+
23+
{{< influxdb/cloud1-note type="oss" >}}
1424

1525
## Key features
1626

17-
Here are some of the features that InfluxDB currently supports that make it a great choice for working with time series data.
27+
InfluxDB v{{< current-version >}} supports the following features for working with time series data.
1828

19-
* Custom high performance datastore written specifically for time series data.
29+
- Custom high performance datastore written specifically for time series data.
2030
The TSM engine allows for high ingest speed and data compression
21-
* Written entirely in Go.
31+
- Written entirely in Go.
2232
It compiles into a single binary with no external dependencies.
23-
* Simple, high performing write and query HTTP APIs.
24-
* Plugins support for other data ingestion protocols such as Graphite, collectd, and OpenTSDB.
25-
* Expressive SQL-like query language tailored to easily query aggregated data.
26-
* Tags allow series to be indexed for fast and efficient queries.
27-
* Retention policies efficiently auto-expire stale data.
28-
* Continuous queries automatically compute aggregate data to make frequent queries more efficient.
29-
30-
The open source edition of InfluxDB runs on a single node.
31-
If you require high availability to eliminate a single point of failure, consider the [InfluxDB Enterprise Edition](/enterprise_influxdb/v1/).
33+
- Simple, high performing write and query HTTP APIs.
34+
- Plugins support for other data ingestion protocols such as Graphite, collectd, and OpenTSDB.
35+
- Expressive SQL-like query language tailored to easily query aggregated data.
36+
- Tags allow series to be indexed for fast and efficient queries.
37+
- Retention policies efficiently auto-expire stale data.
38+
- Continuous queries automatically compute aggregate data to make frequent queries more efficient.
39+
40+
InfluxDB OSS v1 runs on a single node.
41+
If you require high availability to eliminate a single point of failure, consider [InfluxDB 3 Enterprise](/influxdb3/enterprise/),
42+
InfluxDB's next generation that supports multi-node clustering, allows infinite series cardinality without impact on overall database performance, and
43+
brings native SQL support and improved InfluxQL performance.
Lines changed: 42 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,42 @@
1+
{{ $_hugo_config := `{ "version": 1 }` }}
2+
{{ $type := .Get "type" | default "enterprise" }}
3+
4+
<div class="note block">
5+
<h4>InfluxDB Cloud 1 users</h4>
6+
{{ if eq $type "oss" }}
7+
<p>
8+
<strong>InfluxDB Cloud 1</strong> (InfluxCloud 1.x) is based on InfluxDB
9+
Enterprise v1. Use the
10+
<a href="/enterprise_influxdb/v1/">Enterprise v1 documentation</a> instead.
11+
</p>
12+
<ul>
13+
<li>
14+
<strong>InfluxDB Cloud 1 Support</strong>:
15+
<a href="https://help.influxcloud.net">help.influxcloud.net</a>
16+
</li>
17+
<li>
18+
<strong>Migrate</strong>: Consider
19+
<a href="/platform/#migration-to-influxdb-3">migrating to InfluxDB 3</a>
20+
(Enterprise, Cloud Serverless, or Cloud Dedicated) with v1 API
21+
compatibility
22+
</li>
23+
</ul>
24+
{{ else }}
25+
<p>
26+
<strong>InfluxDB Cloud 1</strong> (InfluxCloud 1.x) is based on InfluxDB
27+
Enterprise v1. This is the correct documentation.
28+
</p>
29+
<ul>
30+
<li>
31+
<strong>InfluxDB Cloud 1 Support</strong>:
32+
<a href="https://help.influxcloud.net">help.influxcloud.net</a>
33+
</li>
34+
<li>
35+
<strong>Migrate</strong>: Consider
36+
<a href="/platform/#migration-to-influxdb-3">migrating to InfluxDB 3</a>
37+
(Enterprise, Cloud Serverless, or Cloud Dedicated) with v1 API
38+
compatibility
39+
</li>
40+
</ul>
41+
{{ end }}
42+
</div>

0 commit comments

Comments
 (0)