Project Name | Stars | Downloads | Repos Using This | Packages Using This | Most Recent Commit | Total Releases | Latest Release | Open Issues | License | Language |
---|---|---|---|---|---|---|---|---|---|---|
Grafana | 54,580 | 25 | 24 | 21 hours ago | 3,297 | September 23, 2022 | 3,318 | agpl-3.0 | TypeScript | |
The open and composable observability and data visualization platform. Visualize metrics, logs, and traces from multiple sources like Prometheus, Loki, Elasticsearch, InfluxDB, Postgres and many more. | ||||||||||
Metabase | 31,849 | a day ago | 1 | June 08, 2022 | 2,790 | other | Clojure | |||
The simplest, fastest way to get business intelligence and analytics to everyone in your company :yum: | ||||||||||
Redash | 22,860 | 2 days ago | 2 | May 05, 2020 | 771 | bsd-2-clause | Python | |||
Make Your Company Data Driven. Connect to any data source, easily visualize, dashboard and share your data. | ||||||||||
Directus | 20,738 | 50 | 19 hours ago | 55 | September 22, 2022 | 358 | gpl-3.0 | TypeScript | ||
The Modern Data Stack 🐰 — Directus is an instant REST+GraphQL API and intuitive no-code data collaboration app for any SQL database. | ||||||||||
Pghero | 6,903 | 410 | 3 days ago | 73 | September 13, 2022 | 4 | mit | Ruby | ||
A performance dashboard for Postgres | ||||||||||
Openblocks | 4,407 | a day ago | 104 | agpl-3.0 | TypeScript | |||||
🔥 🔥 🔥 The Open Source Retool Alternative | ||||||||||
Pgwatch2 | 1,487 | 4 days ago | 35 | April 25, 2022 | 2 | bsd-3-clause | PLpgSQL | |||
PostgreSQL metrics monitor/dashboard | ||||||||||
Chartbrew | 1,227 | 2 days ago | 31 | mit | JavaScript | |||||
Open-source web platform used to create live reporting dashboards from APIs, MongoDB, Firestore, MySQL, PostgreSQL, and more 📈📊 | ||||||||||
Pome | 1,083 | 3 years ago | February 27, 2016 | 17 | apache-2.0 | Go | ||||
A Postgres Metrics Dashboard | ||||||||||
Devstats | 451 | 3 days ago | 3 | July 19, 2021 | 3 | apache-2.0 | Shell | |||
📈CNCF-created tool for analyzing and graphing developer contributions |
Open Source, web-based, multi-platform solution for building your own SCADA
(Supervisory Control and Data Acquisition) system inspired by ScadaLTS.
Code released under the GPL license.
The goal of this project is to create a web-based SCADA system that is easy to use, easy to install and easy to maintain.
SCADA (Supervisory Control and Data Acquisition) is a control system architecture that uses computers, networks, and graphical user interfaces to monitor and control a process. A SCADA system collects data from remote field devices, such as sensors and switches, via a communication network and presents the information on operator workstations for monitoring and control.
This project is in the early stages of development. The project is not yet ready for production use.
This stage do not support multiple instances of the application, needs distributed lock for some features
To run the tasks below you need, docker, npm and go instaled
# create api binary
make api
# setup postgres
docker-compose up -d postgres
# Execute aplication
# The default port is 11139
./api
We need this because the production mode all the assets is bundled inside the go binary, so if you can have real time web client change you may need to fallow the steps below.
# Setup api
go run cmd/api/api.go
# Setup web client (with another terminal)
cd scadagobr-client
# Instal the dependencies
yarn
npm run dev