GithubHelp home page GithubHelp logo

docs's Introduction

README

This is the source for content for docs.timescale.com, starting with release 2.0. All documentation for previous versions is in the deprecated repository called docs.timescale.com-content.

The documentation site is statically generated with Gatsby. The source code is in a separate repository, which pulls in content from this repository on each build.

All files are written in standard markdown.

Contributing

We welcome and appreciate any help the community can provide to make Timescale's documentation better.

You can help either by opening an issue with any suggestions or bug reports, or by forking this repository, making your own contribution, and submitting a pull request.

Before we accept any contributions, Timescale contributors need to sign the Contributor License Agreement (CLA). By signing a CLA, we can ensure that the community is free and confident in its ability to use your contributions.

Docs review

Once a PR has been started for any branch, a GitHub action will attach a unique URL to preview your changes and allow others to more effectively review your updates. The URL will be added as a comment to your PR.

Any new commits to that PR will rebuild and be visible at the same URL.

Main sections and tree navigation

Each major section that is incorporated into docs.timescale.com has a navigation hierarchy governed by the appropriate page-index.js file and underlying directory structure. Depending on the content you are adding or editing, you may have to modify the page-index.js file that exists for that specific sub-project.

For instance, if you are adding a new function to the 'API Reference' section, then you need to modify the page-index.js file inside of api-reference folder, specifically at api-reference/page-index/page-index.js.

Most content is then held within the parent folder as defined by the hierarchy. For instance, the Overview section is a parent to a number of other pages and folders. Therefore, there is a folder in the repo for overview with more Markdown files and folder inside as the hierarchy dictates.

As a general rule, every folder must have an index.md file inside which will have the content and layout for the "landing page" of that parent folder.

page-index.js layout

The format of this file is generally self explanatory, but the following rules should be understood to ensure you get the results you expect.

Key Type Required Description
href string Yes The URL segment to use for the page. If there is a corresponding Markdown file, href must also match the name of the Markdown file, minus the file extension.
title string Yes The title of the page, used as the page name within the navigation tree
type One of [directory, placeholder, redirect-to-child-page] No If no type is specified, the page is built as a default page, turning the corresponding Markdown file into a webpage. If the type is directory, the corresponding file is turned into a webpage, and the page becomes a directory. directory pages are the exception to the rule that the page index matches the file directory structure. Child pages of directory pages sit on the same level as the directory page inside the repository. They only become children during the site build. If the type is placeholder, an entry is made in the navigation tree, but a Markdown file is not converted into a webpage. The Markdown file doesn't even need to exist. Rather, the corresponding page is produced programmatically upon site build. If not produced, the link in the navigation tree returns a 404. If the type is redirect-to-child-page, an entry is made in the navigation tree, no page is built, and the link in the navigation tree goes directly to the first child.
children Array of page entries No Child pages of the current page. If the parent page's type is not directory, the children should be located in a directory with the same name as the parent. The parent is the index.md file in that directory. If the parent page's type is directory, the children should be located in the same directory as the parent.
pageComponents One of [['featured-cards'], ['content-list']] No Any page that has child pages can list its children in either card or list style at the bottom of the page. Specify the desired style with this key.

Example

    href: "overview",
    pageComponents: ["featured-cards"],
    children: [
        {
            title: "What is time-series data?",
            href: "what-is-time-series-data",
        },
        {
            title: "Core concepts",
            href: "core-concepts",
            children : [
                {
                    title: "Hypertables & Chunks",
                    href: "hypertables-and-chunks",
                },
                {
                    title: "Scaling",
                    href: "scaling",
                },
                ...
            ],
        },
    ]

Formatting and content rules

Internal page links

None of the internal page links within these files work on GitHub inside of the raw Markdown files that are being reviewed. Instead, the review link discussed above should be utilized for verifying all internal links.

Internal links do not need to include the domain name, https://docs.timescale.com.

External links:

Input as-is.

Anchor tags

By default, H1, H2, H3, and H4 headings have automatically generated anchor tags. H2 headings also show up in the Table of Contents (on the right side of the screen on wide windows).

Code blocks

Command formatting

When showing commands being entered from a command line, do not include a character for the prompt. Do this:

some_command

instead of this:

some_command

or this:

> some_command

Otherwise the code highlighter may be disrupted.

Syntax highlighting

When using a code block, add the appropriate language identifier after the initial three backticks to provide the appropriate highlighting on the rendered documentation site.

Programming language samples aside, most code blocks are one of: bash, sql, json.

Line numbers and copy button

Code blocks have line numbers and copy buttons by default. To remove line numbers and copy buttons on a case-by-case basis, use the CodeBlock component directly rather than a native Markdown code block.

To remove the copy button, set canCopy to false.

To remove line numbers, set showLineNumbers to false.

<CodeBlock canCopy={false} showLineNumbers={false} children={`
time                   | symbol |    price     | day_volume
-----------------------+--------+--------------+------------
2023-06-07 12:00:04+00 | C      |        47.39 |
2023-06-07 12:00:04+00 | T      |        15.67 |
2023-06-07 12:00:04+00 | SQ     |        66.27 |
2023-06-07 12:00:04+00 | CRM    |        213.1 |
2023-06-07 12:00:04+00 | CVX    |        155.9 |
2023-06-07 12:00:04+00 | BAC    |        29.34 |
...
`} />

Partials

Partials allow you to reuse snippets of content in multiple places. All partials live in the _partials top-level directory. To make a new partial, create a new .mdx file. The filename must start with an underscore.

To insert the partial in another document, put an import statement in the document. The import statement goes before the content and after any frontmatter. For example:

import PartialName from 'versionContent/_partials/_partial-name.mdx';

PartialName can be any CamelCased name, but it is recommended to use the CamelCased filename to prevent name clashes, because partial names are global across all MDX files.

Where you need the partial to display, insert it as a self-closing tag:

<PartialName />

General formatting conventions

To maintain consistency, please follow these general rules.

  • Maintain text editor width for paragraphs at 80 characters. We ask you to do this to assist in reviewing documentation changes. When text is very wide, it is difficult to visually see where text has changed within a paragraph and keeping a narrow width on text assists in making PRs easier to review. Most editors such as Visual Studio Code have settings to do this visually.
  • Most links should be reference-style links where the link address is at the bottom of the page. The two exceptions are:
    • Links within highlight blocks (Note, Important, or Warning). These must be inline links for now
    • Links to anchors on the same page as the link itself.
  • All functions, commands and standalone function arguments (ex. SELECT, time_bucket) should be set as inline code within backticks ("`command`").
  • Functions should not be written with parentheses unless the function is being written with arguments within the parentheses.
  • "PostgreSQL" is the way to write the elephant database name, rather than "Postgres." "TimescaleDB" refers to the database, "Timescale" refers to the company.
  • Use backticks when referring to the object of a user interface action. For example: Click Get started to proceed with the tutorial.

Callout and highlight blocks

To create a callout around a paragraph of text, wrap it with the following custom React component tag. Reminder, any links within the callout text MUST have inline link styles.

The type can currently support a value of "note", "warning", "important", "deprecation" or "cloud"". cloud produces a callout for content specifically referring to hosted Timescale.

<Highlight type="note">
Callout text goes here...

Example link style would [look like this](http://example.com/)
</Highlight>

Tags

You can use tags to indicate links to downloadable files, or to indicate metadata about functions. Available tags:

  • Download tags: <Tag type="download">Markdown link to download</Tag>
  • Experimental tags: <Tag type="experimental" content="Experimental" /> or <Tag type="experimental-toolkit" content="Experimental" />
  • Toolkit tag: <Tag type="toolkit" content="Toolkit" />
  • Community tag: <Tag type="community" content="Community" />

By default, tags have a solid background and gray text. There is also a hollow variant:

<Tag variant="hollow">Text to display in a tag</Tag>

Procedures

Procedures are used to indicate a sequence of steps. For syntax, see the procedure example.

Optional label

Used to indicate an optional step within a procedure. Syntax: <Optional />

Multi-code blocks

Multi-code blocks are code blocks with a language or OS selector. For syntax, see the multi-code-block example.

Tabs

Tabs can be used to display content that differs based on a user selection. The syntax is:

<Tabs label="Description of section, used for accessibility">

<Tab title="Title that is displayed on first tab">

Content goes here

</Tab>

<Tab title="Title that is displayed on second tab">

Content goes here

</Tab>

</Tabs>

Note that spacing is important.

Editing troubleshooting sections

Troubleshooting pages are not written as whole Markdown files, but are programmatically assembled from troubleshooting entries in the _troubleshooting folder. Each entry describes a single troubleshooting case and its solution, and contains the following frontmatter:

Key Type Required Description
title string Yes The title of the troubleshooting entry, displayed as a heading above it
section the literal string troubleshooting Yes Must be troubleshooting, used to identify troubleshooting entries during site build
products or topics array of strings Yes (can have either or both, but must have at least one) The products or topics related to the entry. The entry will show up on the troubleshooting pages for the listed products and topics.
errors object of form {language: string, message: string} No The error, if any, related to the troubleshooting entry. Displayed as a code block right underneath the title. language is the programming language to use for syntax highlighting.
keywords array of strings No These are displayed at the bottom of every troubleshooting page. Each keyword links to a collection of all pages associated with that keyword.
tags array of strings No Concepts, actions, or things associated with the troubleshooting entry. These are not displayed in the UI, but they affect the calculation of related pages.

Beneath the frontmatter, describe the error and its solution in normal Markdown. You can also use any other components allowed within the docs site.

The entry shows up on the troubleshooting pages for its associated products and topics. If the page doesn't already exist, add an entry for it in the page index, setting type to placeholder. For more information, see the section on page index layout.

Editing the API section

There is a specific format for the API section which consists of:

  • Function name with empty parentheses (if function takes arguments). Ex. add_dimension()
  • A brief, specific description of the function
  • Any warnings necessary
  • Required Arguments
    • A table with columns for "Name," "Type," and "Description"
  • Optional Arguments
    • A table with columns for "Name," "Type," and "Description"
  • Any specific instructions about the arguments, including valid types
  • Sample Usage
    • One or two literal examples of the function being used to demonstrate argument syntax.

See the API file to get an idea.

docs's People

Contributors

alejandrodnm avatar antekresic avatar arajkumar avatar billy-the-fish avatar charislam avatar clarkbw avatar dependabot[bot] avatar erimatnor avatar ggodeke avatar harkishen-singh avatar jacobprall avatar jamesguthrie avatar jamessewell avatar jnidzwetzki avatar jonatas avatar konskov avatar loquacity avatar mathisve avatar mfundul avatar mirandaauhl avatar mkindahl avatar rajakavitha1 avatar ramonguiu avatar rtwalker avatar svenklemm avatar syvb avatar tedsczelecki avatar thatzopoulos avatar vineethreddy02 avatar zseta avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

docs's Issues

Self hosted AMI documentation broken link

Hi,

I am attempting to gather info for a self hosted install of TimescaleDB via the AWS ami mentioned in the documentation. There is a link in the docs to information about instance sizing that is going to 404.

https://docs.timescale.com/timescaledb/latest/how-to-guides/install-timescaledb/self-hosted/ami/installation-ubuntu-ami/#installing-from-an-amazon-ami-ubuntu

The link at the bottom to the Instance configuration page that is supposed to have info on selecting an appropriate instance type does not work.

[Change] Clarify how to turn off compression

Isn't obvious to users in the compression section that it's easy to turn off compression:

ALTER TABLE <hypertable> SET (timescaledb.compress=false);

Clarify what this will also do to existing compressed chunks.

[Content Bug] Not-found error in the Grafana tutorial - link to Prometheus tutorial

Describe the bug

The link to "Timescale and Prometheus tutorial" gives a not-found error.

What do the docs say now?

https://docs.timescale.com/timescaledb/latest/tutorials/tutorial-setup-timescale-prometheus/

What should the docs say?

https://docs.timescale.com/timescaledb/latest/tutorials/promscale/

Page affected

https://docs.timescale.com/timescaledb/latest/tutorials/grafana/setup-alerts/#introduction-to-alerts-in-grafana

Version affected

latest

Subject matter expert (SME)

[If known, who is a good person to ask about this topic]

Screenshots

image

Any further info

[Anything else you want to add, or further links]

[Content Bug] The links in the Conclusion section in Tableau tutorial do not work

[Docs RFC] Add content for Real Time Continuous Aggregates

Describe change in content, appearance, or functionality

In fixing #45 I noticed that we have a comprehensive blog post on real time continuous aggregates, but no specific section in the docs. Let's add a new topic in the CA section for real time.

Subject matter expert (SME)

@svenklemm and @mfreed wrote the blog post: https://blog.timescale.com/blog/achieving-the-best-of-both-worlds-ensuring-up-to-date-results-with-real-time-aggregation/

Deadline

[When does this need to be addressed]

Any further info

[Anything else you want to add, or further links]

Postgres JDBC 42.0.0 CopyManager doesn't work with default forge installation. The authentication type 10 is not supported

Steps to reproduce

  • create service at forge
  • use Postgres 42.0.0
 implementation "org.postgresql:postgresql:42.0.0"
  • try to use CopyManager to ingest data, it expects tab separated values in file
import java.sql.DriverManager
val props = new Properties()
props.setProperty("user", username)
props.setProperty("password", password)
val connection = DriverManager.getConnection(jdbcUrl, props)

val copyManager = new CopyManager(connection.asInstanceOf[BaseConnection])
val result = copyManager.copyIn(s"""COPY $tableName FROM STDIN WITH DELIMITER as E'\t' """, bufferedReader)

driver throws exception:

org.postgresql.util.PSQLException: The authentication type 10 is not supported. Check that you have configured the pg_hba.conf file to include the client's IP address or subnet, and that it is using an authentication scheme supported by the driver.
hanged
Now the driver uses SASLprep normalization for SCRAM authentication fixing some issues with spaces in passwords.
Fix: Actually close unclosed results. Previously was not closing the first unclosed result fixes #1903 (#1905) There is a small behaviour change here as a result. If closeOnCompletion is called on an existing statement and the statement is executed a second time it will fail.
  • bump to 42.2.19

the works out of the box.

It would be great to provide minimal required driver version. Users usually blindly copy-paste deps from project to project and don't really look at lib versions.
BTW

  • timescale/timescaledb:2.2.1-pg12
  • 42.0.0
  • CopyManager

work, so it's unexpected that it doesn't work at forge. I tried all stuff locally before going to forge and start to spend money.

Document installation via MacPorts

Relevant system information:

  • OS: [e.g. Ubuntu 16.04, Windows 10 x64, etc]: MacOS

I just added support for installing timescaledb via MacPorts:

port -v install timescaledb +postgresqlXX

where XX is the appropriate variant, e.g. 96, 10, 11, 12.

Can this be added to your docs?

[Content Bug] Alter_job error in the User-defined actions how-to guide

Describe the bug

The link to "alter_job" gives a not-found error.

What do the docs say now?

old link: https://docs.timescale.com/api/latest/actions-and-automation/alter_job/

What should the docs say?

new link: https://docs.timescale.com/api/latest/actions/alter_job/

Page affected

https://docs.timescale.com/timescaledb/latest/how-to-guides/user-defined-actions/alter-and-delete/

Version affected

latest

Subject matter expert (SME)

[If known, who is a good person to ask about this topic]

Screenshots

image

Any further info

[Anything else you want to add, or further links]

[Content Bug] Run_job link does not work in the Compression how-to guide

Describe the bug

The link to "run_job" gives a not found error.

What do the docs say now?

old link: https://docs.timescale.com/api/latest/actions-and-automation/run_job/

What should the docs say?

new link: https://docs.timescale.com/api/latest/actions/run_job/

Page affected

https://docs.timescale.com/timescaledb/latest/how-to-guides/compression/backfill-historical-data/##manually-decompressing-chunks-for-backfill

Version affected

latest

Subject matter expert (SME)

[If known, who is a good person to ask about this topic]

Screenshots

image

Any further info

[Anything else you want to add, or further links]

[Bug/Typo] The :pg_version: entity is not expanding in Installation sections (was: Windows exe link broken)

Add the appropriate label(s) -->

Describe the bug

The Link for downloading the windows version of timescale does not work, the variable substitution seems broken:

https://timescalereleases.blob.core.windows.net/windows/timescaledb-postgresql-:pg_version:_x.y.z-windows-amd64.zip

Location

https://docs.timescale.com/timescaledb/latest/how-to-guides/install-timescaledb/self-hosted/windows/installation-windows/

Screenshots

Device and browser
Desktop

[Content Bug] Link to "upgrade to TimescaleDB 2.0" not found in Changes in TimescaleDB 2.0 release note

Describe the bug

The link to "upgrade Timescale 2.0" gives a not-found error.

What do the docs say now?

https://docs.timescale.com/timescaledb/latest/how-to-guides/update-timescaledb/update-tsdb-2/

What should the docs say?

https://docs.timescale.com/timescaledb/latest/how-to-guides/update-timescaledb/update-timescaledb-2/

Page affected

https://docs.timescale.com/timescaledb/latest/overview/release-notes/changes-in-timescaledb-2/

Version affected

latest

Subject matter expert (SME)

[If known, who is a good person to ask about this topic]

Screenshots

image

Any further info

[Anything else you want to add, or further links]

Add information about what extensions can be installed on forge

Add a new page to show what extensions are allowed on the forge service.

pg_available_extensions by default doesn’t match with what can actually be installed at Forge.

Here is query that can show the allowed extensions:

 select pae.* from current_setting('extwlist.extensions') AS cs(e) cross join regexp_split_to_table(e, ',') as ext(allowed) join pg_available_extensions as pae on (allowed=name) order by 1;

Here is the output from my forge testing instance:

          name          | default_version |                               comment
------------------------+-----------------+----------------------------------------------------------------------
 bloom                  | 1.0             | bloom access method - signature file based index
 btree_gin              | 1.3             | support for indexing common datatypes in GIN
 btree_gist             | 1.5             | support for indexing common datatypes in GiST
 citext                 | 1.6             | data type for case-insensitive character strings
 cube                   | 1.4             | data type for multidimensional cubes
 dict_int               | 1.0             | text search dictionary template for integers
 dict_xsyn              | 1.0             | text search dictionary template for extended synonym processing
 fuzzystrmatch          | 1.1             | determine similarities and distance between strings
 hstore                 | 1.6             | data type for storing sets of (key, value) pairs
 intarray               | 1.2             | functions, operators, and index support for 1-D arrays of integers
 isn                    | 1.2             | data types for international product numbering standards
 lo                     | 1.1             | Large Object maintenance
 ltree                  | 1.1             | data type for hierarchical tree-like structures
 pg_stat_statements     | 1.7             | track execution statistics of all SQL statements executed
 pg_trgm                | 1.4             | text similarity measurement and index searching based on trigrams
 pgcrypto               | 1.3             | cryptographic functions
 pgrouting              | 3.1.0           | pgRouting Extension
 postgis                | 3.1.1           | PostGIS geometry and geography spatial types and functions
 postgis_raster         | 3.1.1           | PostGIS raster types and functions
 postgis_sfcgal         | 3.1.1           | PostGIS SFCGAL functions
 postgis_tiger_geocoder | 3.1.1           | PostGIS tiger geocoder and reverse geocoder
 postgis_topology       | 3.1.1           | PostGIS topology spatial types and functions
 promscale              | 0.1.2           | Promscale support functions
 seg                    | 1.3             | data type for representing line segments or floating-point intervals
 tablefunc              | 1.0             | functions that manipulate whole tables, including crosstab
 tcn                    | 1.0             | Triggered change notifications
 timescale_analytics    | 0.2             | timescale_analytics
 timescaledb            | 2.2.0           | Enables scalable inserts and complex queries for time-series data
 tsm_system_rows        | 1.0             | TABLESAMPLE method which accepts number of rows as a limit
 tsm_system_time        | 1.0             | TABLESAMPLE method which accepts time in milliseconds as a limit
 unaccent               | 1.1             | text search dictionary that removes accents
 uuid-ossp              | 1.1             | generate universally unique identifiers (UUIDs)
(32 rows)

[Content Bug] Run_job error in the User defined-actions how-to guide

Describe the bug

The link to "run_job" gives a not found error.

What do the docs say now?

old link: https://docs.timescale.com/timescaledb/latest/api/#run_job

What should the docs say?

new link: https://docs.timescale.com/api/latest/actions/run_job/

Page affected

https://docs.timescale.com/timescaledb/latest/how-to-guides/user-defined-actions/test-and-debug/

Version affected

latest

Subject matter expert (SME)

[If known, who is a good person to ask about this topic]

Screenshots

image

Any further info

[Anything else you want to add, or further links]

[Content Bug] Missing links where there should be linked text in documentation

Use this template for reporting bugs in the docs.

Describe the bug

missing links where there are brackets in the first sentence under the Compression section on docs. See attached screenshot with highlighted text that needs links.

Page affected

https://docs.timescale.com/api/latest/compression/

Version affected

latest

Subject matter expert (SME)

If known, who is a good person to ask about this topic

Screenshots

Screen Shot 2021-05-24 at 3 48 56 PM

Any further info

I'm not sure what the target URLs are for the two links being blog post and a tutorial or I'd include those on here as well.

[Docs RFC] Forge - Create HA section

Describe change in content, appearance, or functionality

Create a new section for discussing HA on Forge.

Subject matter expert (SME)

[If known, who is a good person to ask about this topic]

Deadline

[When does this need to be addressed]

Any further info

[Anything else you want to add, or further links]

[Content Bug] Broken links with internal references

There are a couple of broken links in the timescale documentation under the "Migrate Existing Data" pages.

https://docs.timescale.com/timescaledb/latest#same-db
https://docs.timescale.com/timescaledb/latest#different-db

Report from the Timescale community Slack.

Links for reference:

timescaledb/getting-started/migrate-data.md
15:data, [follow these instructions][same-db].
36:## Migrate from the Same PostgreSQL Database [](same-db)
256:[same-db]: #same-db

timescaledb/how-to-guides/migrate-data/index.md
16:data, [follow these instructions][same-db].
37:## Migrate from the Same PostgreSQL Database [](same-db)
258:[same-db]: #same-db

It looks like a general issue with the local headers. I was checking the python tutorial, if you try to click on the first link it's also pointing to the main page.

[Content Bug] Delete_job error in the User defined-actions how-to guide

Describe the bug

The link to "delete_job" gives a not found error.

What do the docs say now?

https://docs.timescale.com/api/latest/actions-and-automation/delete_job/

What should the docs say?

https://docs.timescale.com/api/latest/actions/delete_job/

Page affected

https://docs.timescale.com/timescaledb/latest/how-to-guides/user-defined-actions/alter-and-delete/# Version affected

Version affected

latest

Subject matter expert (SME)

[If known, who is a good person to ask about this topic]

Screenshots

image

Any further info

[Anything else you want to add, or further links]

[Site Bug] Issue with the page: /404.html

Use this template for reporting bugs in the docs.

Describe the bug

[Provide as much detail as you can]

What do the docs say now?

What should the docs say?

Page affected

[Provide the URL to the page you noticed the bug on]

Version affected

[Which version of the site you noticed the bug on]

Subject matter expert (SME)

[If known, who is a good person to ask about this topic]

Screenshots

[Attach images of screenshots showing the bug]

Any further info

[Anything else you want to add, or further links]

[Docs RFC] Cloud - Create Security section

Describe change in content, appearance, or functionality

Create a new section with information about securing your Cloud instance.

Subject matter expert (SME)

[If known, who is a good person to ask about this topic]

Deadline

[When does this need to be addressed]

Any further info

[Anything else you want to add, or further links]

[Content Bug] Broken links on docs Tutorial: Time-series forecasting page

Describe the bug

There are multiple broken links on the Tutorial: Time-series forecasting page that results in 404 pages.

I found "Hello Timescale Tutorial" linked text listed twice that lead to 404. Additional linked text "Installed and set up PostGIS in database" leads to 404. See screenshots below for reference.

Page affected

https://docs.timescale.com/timescaledb/latest/tutorials/time-series-forecast/#tutorial-time-series-forecasting

Version affected

latest

Screenshots

Hello Timescale Tutorial link 1

Hello Timescale Tutorial link 2

404 1

404 2

Installed and set up PostGIS in database link 3

404 3 Installed and set up PostGIS in database

Any further info

There are more links on that "Introduction to time-series forecasting" docs page that I believe are not the correct URL destination. I'll create a new ticket following this one to detail those other links I'm referring to.

[Site Bug] Issue with the page: /timescaledb/latest/how-to-guides/continuous-aggregates/drop-raw-data/

Use this template for reporting bugs in the docs.

Describe the bug

Link to Data retention doc is broken
Links to:
https://docs.timescale.com/timescaledb/latest/how-to-guides/data-retention-with-continuous-aggregates/

What do the docs say now?

Screen Shot 2021-06-28 at 8 51 14 PM

What should the docs say?

'data retention documentation' should link to proper page

Page affected

https://docs.timescale.com/timescaledb/latest/how-to-guides/continuous-aggregates/drop-raw-data/

Version affected

[Which version of the site you noticed the bug on]

Subject matter expert (SME)

[If known, who is a good person to ask about this topic]

Screenshots

[Attach images of screenshots showing the bug]

Any further info

[Anything else you want to add, or further links]

[Content Bug] Not-found error in the Grafana tutorial: Set Up Grafana alerts

Describe the bug

The link to "setup Grafana" gives a not-found error.

What do the docs say now?

https://docs.timescale.com/timescaledb/latest/getting-started/installation-grafana/

What should the docs say?

https://docs.timescale.com/timescaledb/latest/tutorials/grafana/installation/

Page affected

https://docs.timescale.com/timescaledb/latest/tutorials/grafana/setup-alerts/#introduction-to-alerts-in-grafana

Version affected

latest

Subject matter expert (SME)

[If known, who is a good person to ask about this topic]

Screenshots

image

Any further info

[Anything else you want to add, or further links]

[Content Bug] Update Forge Screenshots

Describe the bug

Forge screenshots need an update. The compute sizes have changed.

What do the docs say now?

The images show older options.

What should the docs say?

The images should show the current options.

Page affected

https://docs.timescale.com/timescale-forge/latest/create-a-service/#step-create-your-first-service

Version affected

latest

Subject matter expert (SME)

[If known, who is a good person to ask about this topic]

Screenshots

[Attach images of screenshots showing the bug]

Any further info

image

[Content Bug] Not-found error in the Tableau tutorial - Install TimescaleDB

Use this template for reporting bugs in the docs.

Describe the bug

The link to "install TimescaleDB" gives a not-found error.

What do the docs say now?

https://docs.timescale.com/timescaledb/latest/getting-started/installation/

What should the docs say?

https://docs.timescale.com/timescaledb/latest/how-to-guides/install-timescaledb/

Page affected

https://docs.timescale.com/timescaledb/latest/tutorials/visualize-with-tableu/#prerequisites

Version affected

latest

Subject matter expert (SME)

[If known, who is a good person to ask about this topic]

Screenshots

image

Any further info

[Anything else you want to add, or further links]

[Content Bug] Link to "upgrade documentation" not found in Changes in TimescaleDB 2.0 release note

Describe the bug

The link to "upgrade documentation" gives a not found error.

What do the docs say now?

https://docs.timescale.com/timescaledb/latest/v2.0/update-timescaledb/

What should the docs say?

https://docs.timescale.com/timescaledb/latest/how-to-guides/update-timescaledb/

Page affected

https://docs.timescale.com/timescaledb/latest/overview/release-notes/changes-in-timescaledb-2

Version affected

latest

Subject matter expert (SME)

[If known, who is a good person to ask about this topic]

Screenshots

image

Any further info

[Content Bug] H3 headings in Grafana tutorial gives Not found error

Describe the bug

When I click on the H3 heading in the Visualize missing data tutorial and in the Setup alerts tutorial, a new page opens and gives a Not Found error. I think it should not happen. I should stay on the same page.
Tried to explain the bug as much as possible. But not sure if I am making sense :-/

What do the docs say now?

Once I click on the H3 heading, a new page opens and gives a Not Found error.

What should the docs say?

After clicking on the H3 heading, I should stay on the same page and navigate to the section I clicked on.

Page affected

I found the same bug on these two pages:
https://docs.timescale.com/timescaledb/latest/tutorials/grafana/visualize-missing-data/
https://docs.timescale.com/timescaledb/latest/tutorials/grafana/setup-alerts/

Version affected

latest

Subject matter expert (SME)

[If known, who is a good person to ask about this topic]

Screenshots

image

Any further info

[Anything else you want to add, or further links]

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    πŸ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. πŸ“ŠπŸ“ˆπŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❀️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.