by reilly3000 on 12/30/2020, 9:11:31 AM
Grafana is pretty great. There are a lot of built in connectors, but its ability to query arbitrary REST, JSON, oData etc endpoints along with databases makes it super flexible for what you mentioned.
https://grafana.com/grafana/plugins/simpod-json-datasource
It has a great GUI for building queries, plus solid RBAC, great charting, and a very flexible alert system. Configure in their GUI, then get your dashboard's code in as JSON for deployment. You can also define dashboard in actual code, ie grafanalib in Python and others- which is great for DevOps. https://github.com/weaveworks/grafanalib
They have nice stylesheets ready for TV displays, but it gets really fun when users get their hands on it and can zoom in and drill down on time-series data, filter with dynamic parameters and such.
by meredydd on 12/30/2020, 8:10:38 AM
Take a look at https://anvil.works - it's not just "low code", it's a full web-dev platform so simple that you can build a dashboard with a few lines of Python - front end, back end and drag-n-drop design. (I'm a founder.)
The trouble with "low-code" is that you're stuck on rails - it's very easy to do a few things, but the moment you want something the creators didn't anticipate, prepare for a lot of pain.
Anvil is the opposite approach - it's a dev environment that happens to be simple enough to build a dashboard in minutes, but with a Real Damn Programming Language. It's basically Delphi for the web: It's got a drag-n-drop designer, Python in the browser and on the server, code editor with full-stack autocomplete, etc.
(And unlike "low-code" tools, the runtime engine is open source, so you're not locked in: https://github.com/anvil-works/anvil-runtime)
by jph on 12/30/2020, 7:27:26 AM
Retool is great software and has a great team. (https://retool.com/)
by huy on 12/30/2020, 8:16:32 AM
There are so many such solutions, that It depends on your use cases.
If you're looking for high-level dashboarding/monitoring that connects directly with your sources (REST, 3rd-party apps like Facebook, Adwords, etc), then tools in the realm of Klipfolio, Databox, Grow.com will suit you well. If you're looking for visualization tools that connect to your data-warehouse/SQL database, then BI tools like Holistics, Metabase, Redash, etc will likely work for you. And of course there's tools that can support both kinds of sources, like PowerBI and Google Data Studio.
P/s: This post does a good job at laying down a framework for evaluating these sort of BI tools: https://www.holistics.io/books/setup-analytics/navigating-th...
by mariocesar on 12/30/2020, 1:58:26 PM
Send metrics to AWS Cloudwatch as custom Metrics.
aws cloudwatch put-metric-data
--metric-name registered_users
--namespace MySaaS
--value 241
Visualize/Filter/Add Alerts using all the builtin tools from Amazon Cloudwatch, you will need no servers and no configurations. Just run in a cron job a set of queries every 5minutesby depomoty on 12/30/2020, 9:30:32 AM
You can give https://chartbrew.com/ a try if you wish. You can make the API requests in a Postman-like interface directly on the platform. So you can have live-data coming in as the tool makes the requests automatically for you.
You can also have multiple requests made to different services gathering data on the same chart.
Disclaimer: I'm the creator of the tool, so feel free to ask any questions about it and I'll be happy to answer
by mg on 12/30/2020, 8:54:20 AM
I looked into this recently, when I started writing the software to analyze my selftracking data.
After researching available options for a while and consulting everyone I know in this field, I settled on building on top of the Plotly Javascript library:
https://plotly.com/javascript/
It does nice interactive charts out of the box. All you need to do is throw data at it.
What it lacks are more high level operations like:
- Interactively switch between different chart types (lines, scatter, box plots, bar charts etc)
- Aggregate time series by hour/day/month/week/year
- Extrapolate data to the rest of the current time period
So I built this functionality on top of Plotly and I am happy with the result.
It looks like over time I will turn this into a mix of data studio and jupyter notebooks. But it runs in the browser and is simple and blazingly fast.
by oli5679 on 12/30/2020, 9:29:38 AM
I really like Trevor.io
It has nice gui for data exploration, clean charts and integrates really well with gsheets.
If you save the API calls in a database could use this?
by arey_abhishek on 12/30/2020, 9:47:42 AM
Appsmith would work great! It’s an open source project with cloud hosting and self-hosting options. You can query any REST endpoint and use JS to aggregate the outputs to connect it to charts, tables or text components. Also use JS to change the query params when you use date or search filters. (I’m a founder).
https://github.com/appsmithorg/appsmith www.appsmith.com
by marshallbananas on 12/30/2020, 9:15:39 AM
I'm currently working on my own little dashboard SaaS - https://statsout.com/
It doesn't have the functionality to perform custom REST calls yet but it's definitely on the list. For now you can get the basic metrics from Google Analytics, Search Console, Facebook Pages, Instagram, and Stripe. It's still very much in beta but you're welcome to try it.
by everling on 12/30/2020, 8:23:39 AM
If your dashboarding needs are as rudimentary as you describe, then Streamlit! https://www.streamlit.io/
I use it for my dashboards. It's super simple to prototype apps and it's under rapid development.
by qapla on 12/30/2020, 10:44:39 AM
I'm currently working on a SaaS like this: https://www.rationalbi.com/
It's meant to be a modern take on BI/Analytics, and sort of a blend between dashboards, scheduled reporting and notebook analytics (like Observable/Jupyter).
You can just drop in data files of any kind, syndicate data from your cloud drives, connect to remote databases, upload via the API, and it has 80k+ open datasets available for analysis and benchmarking.
It also has a full SQL database running in the browser, so if you build dynamic notebooks/dashboards with business logic, you can do really fast SQL without any network latencies.
Disclaimer: I'm the creator/founder of Rational BI.
by Twisell on 12/30/2020, 9:05:35 AM
Had investigated Apache Superset recently but was apparently in a to early stage for production https://superset.apache.org/
Definitely on my watch list though!
by thingsilearned on 12/30/2020, 7:34:53 AM
We don't work with rest calls - just directly with databases and SQL, but do take a look at chartio.com! We aim to make it as fast and agile as possible to make and collaborate on charts and dashboards with your team.
by sixhobbits on 12/30/2020, 8:14:31 AM
metabase.com is amazing if you're dumping the data into Postgres or similar.
by cosbgn on 12/30/2020, 9:49:49 AM
I'm working on a tool to build any sort of dashboard by just a couple of lines of JS. This is our YC application video https://www.youtube.com/watch?v=0XfCwXCPLcU&feature=youtu.be
We didn't get in (this time), but we are about to launch a beta soon. If someone is interested please send me an email at <username>@gmail.com - Thanks
by benjaminjosephw on 12/30/2020, 10:34:36 AM
Really looking forward to seeing the progress of causal[0]. Looks to me like they have a shot to become the best in class for interactive "dashboarding" in 2021. Imagine being able to do some on the fly scenario planning working from live data. Could be a game changer.
[0] - https://www.causal.app/
by joshdance on 12/31/2020, 12:06:55 AM
Grow.com is a great low-code / no-code option.
Anyone can use the graphical transforms to 'write' SQL and you can pull all the data into the provided data warehouse so don't have to set that up.
Is is not cheap, but it is powerful. I work there, happy to answer any questions.
by merqurio on 12/30/2020, 9:31:38 AM
I recently evaluated a bunch and https://github.com/appsmithorg/appsmith covered our needs. For building internal tools seems like a great alternative.
by lumberjack24 on 12/30/2020, 10:49:05 AM
Forest Admin, if we're talking about more than dashboards/charts and you need to dig record deep to perform CRUD operations - https://www.forestadmin.com
by denster on 12/30/2020, 8:12:40 AM
I'd recommend MintData (https://mintdata.com)
It lets you define your dashboard logic in a spreadsheet & then drag/drop the dashboard UI and publish it for end-user consumption.
by ecesena on 12/30/2020, 5:36:13 PM
Check out Superset. https://github.com/apache/incubator-superset
It’s modern, easy to extend. From the same author of apache airflow.
by gui77aume on 12/31/2020, 7:34:06 AM
We used SumoLogic at my last job, really nice for dashboards IMHO, much easier than Grafana, it's log oriented but works with any structured data you throw at it. I think it was expensive though.
by brunovcosta on 12/30/2020, 1:57:48 PM
If you want something more “hackable” (making changes on data, or use SSO), I recommend going with Abstra (https://abstra.app)
by Havoc on 12/30/2020, 1:41:07 PM
What does the output look like?
I've recently had good luck streaming stuff from python into InfluxDB 2.0 - and that has built in basic charting / dashboard. Not grafana level fancy, but not bad either
by motyar on 12/30/2020, 10:08:14 AM
If you thinking anything related to images, Try Bruzu.com
by chimen on 12/30/2020, 8:54:25 AM
Forrestadmin looks good also. Haven’t tried it though
by saargrin on 12/30/2020, 8:58:08 AM
Sisense is pretty cool and you could connect up a bunch of different datasources
by zubairq on 12/30/2020, 9:04:39 AM
Visual JavaScript is low code and has been used to build dashboards yazz.con
by ghan-zeeve on 12/30/2020, 10:53:26 AM
We are working on a Blockchain SaaS (Zeeve - https://www.zeeve.io) to automate the complete DevOps and SecOps approach. Also to add up integrations with grafana, promethius etc for monitoring and analytic.
by the_arun on 12/30/2020, 8:37:06 AM
Zapier/IFTTT with Google sheets & apis you want monitor?
by dmje on 12/30/2020, 7:59:51 AM
It'll be an unpopular answer but.. Google Data Studio...?
by leoplct on 12/30/2020, 9:52:00 AM
- Grafana
- Rails Blazer gem (if you are using rails)
by dalacv on 12/30/2020, 9:33:38 AM
Bubble.io
by topicseed on 12/30/2020, 8:28:03 AM
Google Data Studio?
by tracer4201 on 12/30/2020, 7:46:43 AM
I personally used Redash in the past, and found it very easy to create dashboards and even customize our instance. Not sure how it’s evolved though since being bought out by Databricks.
I‘d like to aggregate the output of a few REST calls visually. What options do I have nowadays? Thanks!