Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/timescale/tobs
tobs - The Observability Stack for Kubernetes. Easy install of a full observability stack into a k8s cluster with Helm charts.
https://github.com/timescale/tobs
hacktoberfest kube-prometheus kubernetes kubernetes-monitoring metrics monitoring observability opentelemetry opentelemetry-collector opentelemetry-operator prometheus prometheus-operator
Last synced: about 1 month ago
JSON representation
tobs - The Observability Stack for Kubernetes. Easy install of a full observability stack into a k8s cluster with Helm charts.
- Host: GitHub
- URL: https://github.com/timescale/tobs
- Owner: timescale
- License: apache-2.0
- Created: 2020-03-30T10:46:58.000Z (over 4 years ago)
- Default Branch: main
- Last Pushed: 2024-09-26T18:49:27.000Z (about 1 month ago)
- Last Synced: 2024-09-27T07:01:12.551Z (about 1 month ago)
- Topics: hacktoberfest, kube-prometheus, kubernetes, kubernetes-monitoring, metrics, monitoring, observability, opentelemetry, opentelemetry-collector, opentelemetry-operator, prometheus, prometheus-operator
- Language: Shell
- Homepage:
- Size: 72.4 MB
- Stars: 561
- Watchers: 17
- Forks: 61
- Open Issues: 19
-
Metadata Files:
- Readme: README.md
- License: LICENSE
- Codeowners: .github/CODEOWNERS
Awesome Lists containing this project
- awesome-repositories - timescale/tobs - tobs - The Observability Stack for Kubernetes. Easy install of a full observability stack into a k8s cluster with Helm charts. (Shell)
- awesome-starred - timescale/tobs - tobs - The Observability Stack for Kubernetes. Easy install of a full observability stack into a k8s cluster with Helm charts. (monitoring)
README
> **Warning**
>
> Tobs has been discontinued and is deprecated.
>
> The code in this repository is no longer maintained.
>
> [Learn more](https://github.com/timescale/promscale/issues/1836).[![Security Audit](https://github.com/timescale/tobs/actions/workflows/sec-audit.yml/badge.svg)](https://github.com/timescale/tobs/actions/workflows/sec-audit.yml)
[![Test Helm Charts](https://github.com/timescale/tobs/actions/workflows/tests.yml/badge.svg)](https://github.com/timescale/tobs/actions/workflows/tests.yml)
[![Version](https://img.shields.io/github/v/release/timescale/tobs)](https://github.com/timescale/tobs/releases)
[![Commit activity](https://img.shields.io/github/commit-activity/m/timescale/tobs)](https://github.com/timescale/tobs/pulse/monthly)
[![License](https://img.shields.io/github/license/timescale/tobs)](https://github.com/timescale/tobs/blob/main/LICENSE)
[![Slack](https://img.shields.io/badge/chat-join%20slack-brightgreen.svg)](https://timescaledb.slack.com/)# tobs - The Observability Stack for Kubernetes
Tobs is a tool that aims to make it as easy as possible to install a full observability
stack into a Kubernetes cluster. Currently this stack includes:* [Kube-Prometheus](https://github.com/prometheus-operator/kube-prometheus#kube-prometheus) the Kubernetes monitoring stack
* [Prometheus](https://github.com/prometheus/prometheus) to collect metrics
* [AlertManager](https://github.com/prometheus/alertmanager#alertmanager-) to fire the alerts
* [Grafana](https://github.com/grafana/grafana) to visualize what's going on
* [Node-Exporter](https://github.com/prometheus/node_exporter) to export metrics from the nodes
* [Kube-State-Metrics](https://github.com/kubernetes/kube-state-metrics) to get metrics from kubernetes api-server
* [Prometheus-Operator](https://github.com/prometheus-operator/prometheus-operator#prometheus-operator) to manage the life-cycle of Prometheus and AlertManager custom resource definitions (CRDs)
* [Promscale](https://github.com/timescale/promscale) ([design doc](https://tsdb.co/prom-design-doc)) to store metrics for the long-term and allow analysis with both PromQL and SQL.
* [TimescaleDB](https://github.com/timescale/timescaledb) for long term storage of metrics and provides ability to query metrics data using SQL.
* [Postgres-Exporter](https://github.com/prometheus-community/postgres_exporter) to get metrics from PostgreSQL server
* [Opentelemetry-Operator](https://github.com/open-telemetry/opentelemetry-operator#opentelemetry-operator-for-kubernetes) to manage the lifecycle of OpenTelemetryCollector Custom Resource Definition (CRDs)We plan to expand this stack over time and welcome contributions.
Tobs provides a helm chart to make deployment and operations easier. It can be used directly or as a sub-chart for other projects.
# Quick start
## Prerequisites
Using tobs to install full observability stack with openTelemetry support currently requires installation of cert-manager.
To do install it please follow [cert-manager documentation](https://cert-manager.io/docs/installation/).*Note*: cert-manager is not required when using tobs with opentelemetry support disabled.
## Installing the helm chart
The following command will install Kube-Prometheus, OpenTelemetry Operator, TimescaleDB, and Promscale
into your Kubernetes cluster:```
helm repo add timescale https://charts.timescale.com/
helm repo update
helm install --wait timescale/tobs
```*Note*: `--wait` flag is necessary for successfull installation as tobs helm chart can create opentelemetry Custom Resources only after opentelemetry-operator is up and running. This flag can be omitted when using tobs without opentelemetry support.
For detailed configuration and usage instructions, take a look at the [helm chart's README](/chart/README.md).
# Configuring the stack
All configuration for all components happens through the helm values.yaml file.
You can view the self-documenting [default values.yaml](chart/values.yaml) in the repo.
We also have additional documentation about individual configuration settings in our
[Helm chart docs](chart/README.md#configuring-helm-chart).# Compatibility matrix
## Tobs vs. Kubernetes
| Tobs Version | Kubernetes Version |
|--------------|--------------------|
| 12.0.x | v1.23 to v1.24 |
| 0.11.x | v1.23 to v1.24 |
| 0.10.x | v1.21 to v1.23 |
| 0.9.x | v1.21 to v1.23 |
| 0.8.x | v1.21 to v1.23 |
| 0.7.x | v1.19 to v1.21 |# Contributing
We welcome contributions to tobs, which is
licensed and released under the open-source Apache License, Version 2. The
same [Contributor's
Agreement](https://github.com/timescale/timescaledb/blob/master/CONTRIBUTING.md)
applies as in TimescaleDB; please sign the [Contributor License
Agreement](https://cla-assistant.io/timescale/tobs) (CLA) if
you're a new contributor.