You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Apr 2, 2024. It is now read-only.
***Analysis in PromQL and SQL** get the ability to analyze data in both query languages. Use PromQL for monitoring and alerting and
130
-
SQL for deeper analytics and compatibility with a huge ecosystem of data visualization, analysis, and AI/ML tools.
131
-
***Rock-solid stability** due to being built on top of PostgreSQL, with 30+ years of development work.
132
-
***Support for backfilling** to ingest data from the past.
133
-
***Native support for Multi-Tenancy**. Ingest data from multiple tenants and write queries across [more than one tenant](docs/multi_tenancy.md)
134
-
easily, using PromQL or SQL.
135
-
***High-Availability** support for [Prometheus HA deployments](docs/high-availability/prometheus-HA.md) as well as
136
-
high-availability deployments of [TimescaleDB itself](https://blog.timescale.com/blog/high-availability-timescaledb-postgresql-patroni-a4572264a831/).
137
-
***Simple architecture**. Unlike some other long-term stores, our architecture consists of only three components: Prometheus, Promscale, and TimescaleDB.
138
-
***ACID compliance** to ensure consistency of your data.
139
-
***Horizontal scalability** using [multinode support](https://blog.timescale.com/blog/timescaledb-2-0-a-multi-node-petabyte-scale-completely-free-relational-database-for-time-series/) with TimescaleDB version 2.0.
140
-
***Operationally mature**. Built on top of Postgres, data written via Promscale is safe, reliable and offers
141
-
all of the advantages of an operationally mature platform.
142
-
143
-
## 🔧 Choose your own (installation) adventure
144
-
145
-
We have four main ways to set up Promscale:
146
-
147
-
#### tobs (recommended for Kubernetes environments)
148
-
149
-
[The Observability Suite for Kubernetes](https://github.com/timescale/tobs) is a
150
-
CLI tool and Helm chart that makes installing a full observability suite into your
151
-
Kubernetes cluster really easy. Tobs includes Prometheus, TimescaleDB,
152
-
Promscale Connector, and Grafana.
153
-
154
-
To get started, run the following in your terminal, then follow the on-screen instructions.
Or visit the [tobs GitHub repo](https://github.com/timescale/tobs) for more information and instructions
161
-
on advanced configuration.
162
-
163
-
#### 🐳 Docker
164
-
165
-
We provide [docker images](https://github.com/timescale/promscale/releases) with every release.
166
-
167
-
Instructions on how to use our docker images are available [here](docs/docker.md).
62
+
You may also want to check [tobs](https://github.com/timescale/tobs) which makes it very easy to deploy a complete
63
+
observability stack built on Prometheus, OpenTelemetry and Promscale in Kubernetes via cli or helm.
168
64
169
-
#### 🔟 Binaries
170
-
171
-
We have [pre-packaged binaries](https://github.com/timescale/promscale/releases) available for MacOS and Linux on both the x86_64 and i386 architectures.
172
-
Instructions on how to use our prepackaged binaries are available [here](docs/binary.md).
173
-
174
-
You can also [build binaries from source](docs/binary.md#-building-from-source).
175
-
176
-
#### ⎈ Helm (sub)chart for Promscale Connector only
177
-
178
-
A Helm chart for only the Promscale Connector is available in
179
-
the [helm-chart directory](deploy/helm-chart/README.md) of this repository.
180
-
181
-
This is used as a Helm dependency from the `tobs`
182
-
[Helm chart](https://github.com/timescale/tobs/tree/master/chart) and can be used as a dependency in your own custom Helm chart as well.
183
-
184
-
## 🔍 Analyzing the data using SQL
185
-
186
-
We describe how to use our pre-defined views and functions to work with the prometheus data in [the SQL schema doc](docs/sql_schema.md).
187
-
188
-
A Reference for our SQL API is [available here](docs/sql_api.md).
189
-
190
-
## 💡 Quick tips
191
-
192
-
### Configuring Data Retention
193
-
194
-
By default, data is stored for 90 days and then deleted. This
195
-
default can be changed globally or overridden for individual
196
-
metrics.
197
-
198
-
If using tobs, these settings can be changed using the
199
-
`tobs metrics retention` command (use
200
-
`tobs metrics retention -h` to see all options).
201
-
202
-
These setting can also be changed using the appropriate
0 commit comments