fnegrini
Hello,
I’m looking for performance and analysis tools for my Erlang program which can give me real time information such as:
- Memory usage
- CPU usage (Percentage per core)
- Processes count per core
- Others…
Sugestions?
Thanks!
Trending in Questions
I’m working on a project that simulates the bumbl example in the programming phoenix book. It acts almost like an email client. We have a...
New
Hello!
Could someone please give me a help/sample code, how to delete a file from s3 using waffle/waffle_ecto from Phoenix app.
I creat...
New
I’m seeing that a list inside a Kino.DataTable will be interpreted as a charlist, even if the Kino.configure() is set to charlists: :as_l...
New
So my question is quite simple and i have found no conclusive answer on forum, google or AI.
Should we use :erlang.float for Integer to ...
New
Hi, I’ve just set up an application with ash_authentication. There is only magic link strategy for now, so there is no confirmation add o...
New
If a change or preparation module uses Ash.Changeset.get_argument/2 or Ash.Query.get_argument/2 (or any of the other get_argument functio...
New
apply_graft/2 doesn’t rewrite an add_many sub-workflow’s deps on an add step. Grafted jobs cancel with “upstream job was deleted”
Version...
New
Other Trending Topics
I am happy to introduce the very α version of the new programming language compiled to BEAM.
Welcome Cure.
It has literally three kille...
New
Hobbes is a low-level distributed database for the Elixir programming language.
Hobbes provides a simple, safe, and scalable storage lay...
New
Hi there! We created Gust: A task orchestrator inspired by Airflow.
For those who have never heard about Aiflow, it’s a Python-based wor...
New
Beam Bots (or just BB for short) is a framework for building fault-tolerant robotics applications in Elixir using familiar OTP patterns. ...
New
Xamal is a deployment tool for Elixir apps that deploys native releases to bare metal servers over SSH. It’s a port of GitHub - basecamp/...
New
Hello everyone. After busy few months I am happy to announce v0.1.0 of Emerge & Solve.
They are GUI (Emerge) and State management (S...
New
Categories:
Sub Categories:
Forums
Popular Tags
- #ecto
- #liveview
- #troubleshooting
- #learning-elixir
- #library
- #deployment
- #erlang
- #testing
- #genserver
- #mix
- #absinthe
- #remote-other
- #otp
- #plug
- #how-to-question
- #macros
- #postgres
- #elixirconf
- #channels
- #exunit
- #discussion
- #code-sync
- #podcasts
- #javascript
- #onsite
- #dialyzer
- #docker
- #authentication
- #umbrella
- #full-time-contract
- #podcasts-by-brainlid
- #ecto-query
- #elixirconf-us
- #blog-post
- #ai
- #elixir-ls
- #phoenix_html
- #iex
- #graphql
- #genstage
- #websockets
- #supervisor
- #advent-of-code
- #distillery
- #processes
- #api
- #forms
- #hex
- #security
- #metaprogramming










Showing Posts 1 to 8- Show Best Posts
- Show All (oldest first)
- Show All (newest first)
axelson
Benchee is the most popular benchmarking tool: GitHub - bencheeorg/benchee: Easy and extensible benchmarking in Elixir providing you with lots of statistics! · GitHub and I think it will get you most of what you want.
jola
As you’ve asked for real time information, such as process count per core, I’m assuming you’re asking for monitoring tools rather than benchmarking. Erlang comes with some built in tools, there’s also some you can add through hex.
etop
Command:
:etop.startStarts an in terminal UI similar to the unix
topcommand. Does for processes in the VM what top does for processes in eg a linux system.observer
Command:
:observer.startStarts a windowed application that displays a huge amount of information on the running VM, including memory, processes, load, process trees, and lots of other stuff.
observer-cli
An upgraded version of
etopwith lots of information, can be installed through hex. Possible to run remotely.https://github.com/zhongwencool/observer_cli
recon
This is a collection of tools used to get more information on your system, useful for debugging problematic systems.
https://github.com/ferd/recon
cmkarlsson
You also have the builtin erlang profiling tools mentioned here: Profiling — Erlang System Documentation v29.0.2
I’ve used
fproftogether witherlgrindon many erlang projects but I think they should be usable in elixir as wellPragTob
So yes benchee is more for measuring performance before something goes live or for testing out multiple approaches locally, from what I understand you want to have more of an introspection into the running system. @jola offered multiple great solutions there.
Adopting Elixir, which is great, has a chapter about Metrics and instrumenting your system.
Other projects they mention as being used in the wild:
I like whole Application Performance Monitoring Solutions in the SaaS space such as:
And for even more options you could take a look at some of our previous threads on the subject:
hauleth
There also is OpenCensus for Erlang that has few integrations already and is provider agnostic.
Telemetry.Metricsprovides OC-inspired set of metrics as well.And please, could we stop promoting that abomination of library called
exometer? It sends shivers down my spine on just mention. Not only it was hellhole to compile it with Mix it also is highly outdated (really, no metric tags in 2019?). There are much better and simpler solutions already available (for examplevmstatsandstatixfor the example). And with raise of thetelemetrytracking metrics will be even easier.PragTob
I’ve never used exometer so I couldn’t tell, but calling a library an “abomination” isn’t the right way to go or talk about open source libraries. People took care and time to build it offering it to you for free - nobody forces you to use it. You could even improve it. You have your reasons for not using it, that’s fine but you don’t have to resort to insults. That’s what contributes to burnout for maintainers & others. Also that’s really not something I want to see as a tone in the community as it also keeps people away from open source, as they are often afraid of that exact thing happening to them.
Never mind that the library is mentioned positively in a book (again Adopting Elixir) written by people respected by lots of us which was published about a year ago and where one of the authors is a lead developer at a big elixir company (bleacher report) using exometer apparently happily (otherwise I doubt he’d have included it in the book). Might not work for you, but might work for others.
binaryseed
NewRelic does have an Elixir agent..
https://github.com/newrelic/elixir_agent/
PragTob
Interesting, I didn’t know and always wondered why they didn’t have one
Thanks for letting us know!