Skip to content

Commit

Permalink
Include index and improve reports (#15)
Browse files Browse the repository at this point in the history
* fix instalation paths

* include version and fix CI

* fix validation

* fix validation

* This fixes #13

* include index, remove dependency, improve report

* fix validation

* remove deprecate text in docs
  • Loading branch information
jeanbez authored Aug 23, 2022
1 parent e560b19 commit 4483717
Show file tree
Hide file tree
Showing 7 changed files with 341 additions and 152 deletions.
10 changes: 8 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,12 @@ RUN DEBIAN_FRONTEND=noninteractive apt-get install -y \
wget \
libssl-dev \
libcurl4-openssl-dev \
r-base
r-base \
r-cran-curl \
r-cran-openssl \
r-cran-httr \
r-cran-plotly \
r-cran-cairo
RUN rm -rf /var/lib/apt/lists/*

RUN wget ftp://ftp.mcs.anl.gov/pub/darshan/releases/darshan-3.3.1.tar.gz
Expand All @@ -29,5 +34,6 @@ WORKDIR /dxt-explorer
RUN pip install --upgrade pip
RUN pip install -r requirements.txt
RUN Rscript install-r-libraries.R
RUN pip install .

ENTRYPOINT ["python3", "explore.py"]
ENTRYPOINT ["dxt-explorer"]
3 changes: 2 additions & 1 deletion MANIFEST.in
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,5 @@ include requirements.txt
include dxt-explorer.png
include explorer/*.*
include explorer/plots/*.R
include explorer/plots/*.png
include explorer/plots/*.png
include explorer/plots/*.html
8 changes: 0 additions & 8 deletions docs/source/exploring.rst
Original file line number Diff line number Diff line change
Expand Up @@ -42,11 +42,3 @@ DXT Explorer will generate by default a ``explore.html`` file with an interactiv
2021-10-05 03:21:54,657 explore - INFO - SUCCESS
You can find a couple of interactive examples of DXT traces collected from FLASH, E2E, and OpenPMD in the `companion repository <https://jeanbez.gitlab.io/pdsw-2021>`_ for our PDSW'21 paper.

.. note::

If you do not want to install DXT Explorer but rather prefer to run it as a standalone script, you can use the following command to launch it. However, remember that you are still required to install all dependencies.

.. code-block:: bash
python3 explore/dxt.py YOUR-DXT-TRACE.darshan
Loading

0 comments on commit 4483717

Please sign in to comment.