TE
科技回声
首页24小时热榜最新最佳问答展示工作
GitHubTwitter
首页

科技回声

基于 Next.js 构建的科技新闻平台,提供全球科技新闻和讨论内容。

GitHubTwitter

首页

首页最新最佳问答展示工作

资源链接

HackerNews API原版 HackerNewsNext.js

© 2025 科技回声. 版权所有。

Ask HN: What low-code “dashboarding“ SaaS would you recommend in 2021?

139 点作者 timothep超过 4 年前
I‘d like to aggregate the output of a few REST calls visually. What options do I have nowadays? Thanks!

36 条评论

reilly3000超过 4 年前
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.<p><a href="https:&#x2F;&#x2F;grafana.com&#x2F;grafana&#x2F;plugins&#x2F;simpod-json-datasource" rel="nofollow">https:&#x2F;&#x2F;grafana.com&#x2F;grafana&#x2F;plugins&#x2F;simpod-json-datasource</a><p>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&#x27;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. <a href="https:&#x2F;&#x2F;github.com&#x2F;weaveworks&#x2F;grafanalib" rel="nofollow">https:&#x2F;&#x2F;github.com&#x2F;weaveworks&#x2F;grafanalib</a><p>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.
评论 #25582711 未加载
评论 #25584105 未加载
评论 #25580443 未加载
评论 #25580828 未加载
meredydd超过 4 年前
Take a look at <a href="https:&#x2F;&#x2F;anvil.works" rel="nofollow">https:&#x2F;&#x2F;anvil.works</a> - it&#x27;s not just &quot;low code&quot;, it&#x27;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&#x27;m a founder.)<p>The trouble with &quot;low-code&quot; is that you&#x27;re stuck on rails - it&#x27;s very easy to do a few things, but the moment you want something the creators didn&#x27;t anticipate, prepare for a lot of pain.<p>Anvil is the opposite approach - it&#x27;s a <i>dev environment</i> that happens to be simple enough to build a dashboard in minutes, but with a Real Damn Programming Language. It&#x27;s basically Delphi for the web: It&#x27;s got a drag-n-drop designer, Python in the browser and on the server, code editor with full-stack autocomplete, etc.<p>(And unlike &quot;low-code&quot; tools, the runtime engine is open source, so you&#x27;re not locked in: <a href="https:&#x2F;&#x2F;github.com&#x2F;anvil-works&#x2F;anvil-runtime" rel="nofollow">https:&#x2F;&#x2F;github.com&#x2F;anvil-works&#x2F;anvil-runtime</a>)
评论 #25579937 未加载
评论 #25583267 未加载
评论 #25592435 未加载
jph超过 4 年前
Retool is great software and has a great team. (<a href="https:&#x2F;&#x2F;retool.com&#x2F;" rel="nofollow">https:&#x2F;&#x2F;retool.com&#x2F;</a>)
评论 #25580269 未加载
评论 #25580074 未加载
评论 #25579854 未加载
评论 #25579512 未加载
评论 #25579559 未加载
huy超过 4 年前
There are so many such solutions, that It depends on your use cases.<p>If you&#x27;re looking for high-level dashboarding&#x2F;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&#x27;re looking for visualization tools that connect to your data-warehouse&#x2F;SQL database, then BI tools like Holistics, Metabase, Redash, etc will likely work for you. And of course there&#x27;s tools that can support both kinds of sources, like PowerBI and Google Data Studio.<p>P&#x2F;s: This post does a good job at laying down a framework for evaluating these sort of BI tools: <a href="https:&#x2F;&#x2F;www.holistics.io&#x2F;books&#x2F;setup-analytics&#x2F;navigating-the-business-intelligence-tool-space&#x2F;" rel="nofollow">https:&#x2F;&#x2F;www.holistics.io&#x2F;books&#x2F;setup-analytics&#x2F;navigating-th...</a>
评论 #25580183 未加载
评论 #25587910 未加载
mariocesar超过 4 年前
Send metrics to AWS Cloudwatch as custom Metrics.<p><pre><code> aws cloudwatch put-metric-data --metric-name registered_users --namespace MySaaS --value 241 </code></pre> Visualize&#x2F;Filter&#x2F;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 5minutes
评论 #25587947 未加载
depomoty超过 4 年前
You can give <a href="https:&#x2F;&#x2F;chartbrew.com&#x2F;" rel="nofollow">https:&#x2F;&#x2F;chartbrew.com&#x2F;</a> 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.<p>You can also have multiple requests made to different services gathering data on the same chart.<p>Disclaimer: I&#x27;m the creator of the tool, so feel free to ask any questions about it and I&#x27;ll be happy to answer
mg超过 4 年前
I looked into this recently, when I started writing the software to analyze my selftracking data.<p>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:<p><a href="https:&#x2F;&#x2F;plotly.com&#x2F;javascript&#x2F;" rel="nofollow">https:&#x2F;&#x2F;plotly.com&#x2F;javascript&#x2F;</a><p>It does nice interactive charts out of the box. All you need to do is throw data at it.<p>What it lacks are more high level operations like:<p>- Interactively switch between different chart types (lines, scatter, box plots, bar charts etc)<p>- Aggregate time series by hour&#x2F;day&#x2F;month&#x2F;week&#x2F;year<p>- Extrapolate data to the rest of the current time period<p>So I built this functionality on top of Plotly and I am happy with the result.<p>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.
评论 #25580203 未加载
oli5679超过 4 年前
I really like Trevor.io<p><a href="https:&#x2F;&#x2F;trevor.io&#x2F;" rel="nofollow">https:&#x2F;&#x2F;trevor.io&#x2F;</a><p>It has nice gui for data exploration, clean charts and integrates really well with gsheets.<p>If you save the API calls in a database could use this?
arey_abhishek超过 4 年前
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).<p><a href="https:&#x2F;&#x2F;github.com&#x2F;appsmithorg&#x2F;appsmith" rel="nofollow">https:&#x2F;&#x2F;github.com&#x2F;appsmithorg&#x2F;appsmith</a> www.appsmith.com
marshallbananas超过 4 年前
I&#x27;m currently working on my own little dashboard SaaS - <a href="https:&#x2F;&#x2F;statsout.com&#x2F;" rel="nofollow">https:&#x2F;&#x2F;statsout.com&#x2F;</a><p>It doesn&#x27;t have the functionality to perform custom REST calls yet but it&#x27;s definitely on the list. For now you can get the basic metrics from Google Analytics, Search Console, Facebook Pages, Instagram, and Stripe. It&#x27;s still very much in beta but you&#x27;re welcome to try it.
everling超过 4 年前
If your dashboarding needs are as rudimentary as you describe, then Streamlit! <a href="https:&#x2F;&#x2F;www.streamlit.io&#x2F;" rel="nofollow">https:&#x2F;&#x2F;www.streamlit.io&#x2F;</a><p>I use it for my dashboards. It&#x27;s super simple to prototype apps and it&#x27;s under rapid development.
评论 #25580599 未加载
qapla超过 4 年前
I&#x27;m currently working on a SaaS like this: <a href="https:&#x2F;&#x2F;www.rationalbi.com&#x2F;" rel="nofollow">https:&#x2F;&#x2F;www.rationalbi.com&#x2F;</a><p>It&#x27;s meant to be a modern take on BI&#x2F;Analytics, and sort of a blend between dashboards, scheduled reporting and notebook analytics (like Observable&#x2F;Jupyter).<p>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.<p>It also has a full SQL database running in the browser, so if you build dynamic notebooks&#x2F;dashboards with business logic, you can do really fast SQL without any network latencies.<p>Disclaimer: I&#x27;m the creator&#x2F;founder of Rational BI.
Twisell超过 4 年前
Had investigated Apache Superset recently but was apparently in a to early stage for production <a href="https:&#x2F;&#x2F;superset.apache.org&#x2F;" rel="nofollow">https:&#x2F;&#x2F;superset.apache.org&#x2F;</a><p>Definitely on my watch list though!
thingsilearned超过 4 年前
We don&#x27;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.
sixhobbits超过 4 年前
metabase.com is amazing if you&#x27;re dumping the data into Postgres or similar.
评论 #25579717 未加载
cosbgn超过 4 年前
I&#x27;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 <a href="https:&#x2F;&#x2F;www.youtube.com&#x2F;watch?v=0XfCwXCPLcU&amp;feature=youtu.be" rel="nofollow">https:&#x2F;&#x2F;www.youtube.com&#x2F;watch?v=0XfCwXCPLcU&amp;feature=youtu.be</a><p>We didn&#x27;t get in (this time), but we are about to launch a beta soon. If someone is interested please send me an email at &lt;username&gt;@gmail.com - Thanks
benjaminjosephw超过 4 年前
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 &quot;dashboarding&quot; in 2021. Imagine being able to do some on the fly scenario planning working from live data. Could be a game changer.<p>[0] - <a href="https:&#x2F;&#x2F;www.causal.app&#x2F;" rel="nofollow">https:&#x2F;&#x2F;www.causal.app&#x2F;</a>
评论 #25580554 未加载
joshdance超过 4 年前
Grow.com is a great low-code &#x2F; no-code option.<p>Anyone can use the graphical transforms to &#x27;write&#x27; SQL and you can pull all the data into the provided data warehouse so don&#x27;t have to set that up.<p>Is is not cheap, but it is powerful. I work there, happy to answer any questions.
merqurio超过 4 年前
I recently evaluated a bunch and <a href="https:&#x2F;&#x2F;github.com&#x2F;appsmithorg&#x2F;appsmith" rel="nofollow">https:&#x2F;&#x2F;github.com&#x2F;appsmithorg&#x2F;appsmith</a> covered our needs. For building internal tools seems like a great alternative.
评论 #25580242 未加载
lumberjack24超过 4 年前
<i></i>Forest Admin<i></i>, if we&#x27;re talking about more than dashboards&#x2F;charts and you need to dig record deep to perform CRUD operations - <a href="https:&#x2F;&#x2F;www.forestadmin.com" rel="nofollow">https:&#x2F;&#x2F;www.forestadmin.com</a>
denster超过 4 年前
I&#x27;d recommend MintData (<a href="https:&#x2F;&#x2F;mintdata.com" rel="nofollow">https:&#x2F;&#x2F;mintdata.com</a>)<p>It lets you define your dashboard logic in a spreadsheet &amp; then drag&#x2F;drop the dashboard UI and publish it for end-user consumption.
ecesena超过 4 年前
Check out Superset. <a href="https:&#x2F;&#x2F;github.com&#x2F;apache&#x2F;incubator-superset" rel="nofollow">https:&#x2F;&#x2F;github.com&#x2F;apache&#x2F;incubator-superset</a><p>It’s modern, easy to extend. From the same author of apache airflow.
gui77aume超过 4 年前
We used SumoLogic at my last job, really nice for dashboards IMHO, much easier than Grafana, it&#x27;s log oriented but works with any structured data you throw at it. I think it was expensive though.
brunovcosta超过 4 年前
If you want something more “hackable” (making changes on data, or use SSO), I recommend going with Abstra (<a href="https:&#x2F;&#x2F;abstra.app" rel="nofollow">https:&#x2F;&#x2F;abstra.app</a>)
评论 #25581696 未加载
Havoc超过 4 年前
What does the output look like?<p>I&#x27;ve recently had good luck streaming stuff from python into InfluxDB 2.0 - and that has built in basic charting &#x2F; dashboard. Not grafana level fancy, but not bad either
motyar超过 4 年前
If you thinking anything related to images, Try Bruzu.com
chimen超过 4 年前
Forrestadmin looks good also. Haven’t tried it though
saargrin超过 4 年前
Sisense is pretty cool and you could connect up a bunch of different datasources
zubairq超过 4 年前
Visual JavaScript is low code and has been used to build dashboards yazz.con
ghan-zeeve超过 4 年前
We are working on a Blockchain SaaS (Zeeve - <a href="https:&#x2F;&#x2F;www.zeeve.io" rel="nofollow">https:&#x2F;&#x2F;www.zeeve.io</a>) to automate the complete DevOps and SecOps approach. Also to add up integrations with grafana, promethius etc for monitoring and analytic.
the_arun超过 4 年前
Zapier&#x2F;IFTTT with Google sheets &amp; apis you want monitor?
dmje超过 4 年前
It&#x27;ll be an unpopular answer but.. Google Data Studio...?
leoplct超过 4 年前
- Grafana<p>- Rails Blazer gem (if you are using rails)
dalacv超过 4 年前
Bubble.io
评论 #25580951 未加载
topicseed超过 4 年前
Google Data Studio?
tracer4201超过 4 年前
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.