Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/portnov/hpview
GHC's .hp files viewer
https://github.com/portnov/hpview
ghc gtk3 haskell profiling
Last synced: 25 days ago
JSON representation
GHC's .hp files viewer
- Host: GitHub
- URL: https://github.com/portnov/hpview
- Owner: portnov
- License: bsd-3-clause
- Created: 2019-08-11T06:59:25.000Z (about 5 years ago)
- Default Branch: master
- Last Pushed: 2023-10-29T09:32:33.000Z (about 1 year ago)
- Last Synced: 2023-10-29T10:24:58.032Z (about 1 year ago)
- Topics: ghc, gtk3, haskell, profiling
- Language: Haskell
- Size: 149 KB
- Stars: 3
- Watchers: 1
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Changelog: ChangeLog.md
- License: LICENSE
Awesome Lists containing this project
README
hpview README
=============[![Build Status](https://travis-ci.org/portnov/hpview.svg?branch=master)](https://travis-ci.org/portnov/hpview)
`hpview` is a GHC's `.hp` (heap profile) files viewer, implemented in Haskell + Gtk3.
![Screenshot](https://user-images.githubusercontent.com/284644/63450688-f7cd3680-c45b-11e9-900a-245bfa9cb444.png)
It may be nicer than use of [hp2pretty][1] because of the follwing features:
* No need to convert `.hp` to `.svg` and then open `.svg` with another program,
just run `hpview file.hp`.
* Areas on plot are higlighted interactively (on mouse-over), and name of
selected area is displayed in the statusbar. Statusbar also displays the
timestamp pointed by cursor and amount of memory consumed by highlighted item
at that moment. Grow ratio of the item being highlited is displayed also;
grow ratio is calculated based on time period that is currently shown.
* Interactive filtering by item name, module or package name (module and
package filtering works for `-hc` mode; for all other modes, only name
filtering is useful).
* Interactive filtering by grow rate. It is possible to ask to show, for example,
items that grow faster than 15 KiB/s, or slower than 1 MiB/s. Grow ratio is
calculated based on time period that is currently shown.
* Interactive zoom:
* Select time interval by dragging mouse with left button held pressed;
* Zoom selected part of the chart by clicking "Zoom In" button in the bottom
right corner;
* Return to previous zoom level by clicking "Zoom Out" button in the bottom
right corner;
* Return to original zoom level (to fit the whole chart into the window) by
clicking "Reset Zoom" button in the bottom right corner.
* Displaying of "trace elements", i.e. items that occupy very small amounts of
memory. Such items are merged into one band called `(trace elements)`, as
`hp2pretty` does. There are several options for such elements:
* To show or not to show trace elements at all
* Number of biggest items to show (10 by default)
* Two modes of trace elements detection:
* either select items that occupy less than N percents of memory in total, or
* select items, each of which occupies less than N percents of memory.
* Percentage of memory for trace elements is configurable.
* Legend may be enabled (by default) or disabled in preferences dialog;
preferences dialog is called with a button in right bottom corner of the
window.
* Highlighting of the area under mouse cursor may be disabled in preferences dialog.
* Optional downsampling. Downsampling algorithm is very simple (it just takes
each N'ths item) and thus not very precise; but downsampling can make the
resulting chart much cleaner and more readable, and also it helps with
performance. Number of samples to use is specified in the preferences window.
By default, downsampling to 500 samples is used; it means that `hpview` will
draw not more than 500 samples along time axis on the screen. You may use
interactive zooming on the area of interest if you wish to see more details.
* It is possible to save currently displayed chart (with current filter, zoom
and so on) as PNG or SVG file - see the "save as" button in the top right corner
of the window, next to "filter" button.Other features may be added later.
Performance: it takes about 25 seconds to display a `.hp` file of 181 Mb in
size on my machine (i5 2.8GHz), from start to displayed chart, without
downsampling. With downsampling to 500 samples, it takes about 17 seconds. In
my practice, usually smaller files give even more insight into what's going on
than bigger ones; so I am not going to invest a lot of time into this matter.
But PRs are welcome.Installation
------------Install it by stack:
```
$ sudo apt-get install stack
$ git clone https://github.com/portnov/hpview.git
$ cd hpview/
$ stack install
```Note: `hpview` currently depends on master branch of [haskell-chart][2] and on
master branch of [formattable][3] packages; but `stack` will take care of that.[1]: http://hackage.haskell.org/package/hp2pretty
[2]: https://github.com/timbod7/haskell-chart
[3]: https://github.com/portnov/formattable