# How can I use the output of Canton health dump?

**URL:** https://forum.canton.network/t/how-can-i-use-the-output-of-canton-health-dump/6905
**Category:** App Development
**Tags:** canton
**Created:** [October 27, 2023, 11:30am UTC](https://forum.canton.network/t/how-can-i-use-the-output-of-canton-health-dump/6905 "2023-10-27T11:30:54Z")
**Posts on this page:** 3
**Page:** 1

<div class="post-metadata">

### Author: ![gyorgybalazsi](https://yyz2.discourse-cdn.com/flex034/user_avatar/forum.canton.network/gyorgybalazsi/32/684_2.png) [@gyorgybalazsi](https://forum.canton.network/u/gyorgybalazsi)
#### Post date: [October 27, 2023, 11:30am UTC](https://forum.canton.network/t/how-can-i-use-the-output-of-canton-health-dump/6905/1 "2023-10-27T11:30:54Z")

</div>

The `health.dump()` command on the Canton console produces a zip file, as described here: [Monitoring — Daml SDK 2.7.4 documentation](https://docs.daml.com/canton/usermanual/monitoring.html#health-dumps)

According to the docs, the zip contains the following information:

- The configuration you are using, with all sensitive data stripped from it (no passwords).
- An extract of the log file. Sensitive data is not logged into log files.
- A current snapshot on Canton metrics.
- A stacktrace for each running thread.

How can I use this zip file? If I unzip it, I get a file without extension, like `local-13183906135862358075`.

It’s not a text file, how can I extract the information from it?

---

<div class="post-metadata">

### Author: ![cocreature](https://yyz2.discourse-cdn.com/flex034/user_avatar/forum.canton.network/cocreature/32/36_2.png) [@cocreature](https://forum.canton.network/u/cocreature)
#### Post date: [October 27, 2023, 3:29pm UTC](https://forum.canton.network/t/how-can-i-use-the-output-of-canton-health-dump/6905/2 "2023-10-27T15:29:39Z")

</div>

It seems to be another zip file. If you unzip that you then get some readable stuff like log files (`file` is pretty useful on unix to figure out this kind of stuff).

Not quite sure why it zips things twice. That said, this is also not really intended as a format used internally but just as a convenient way to produce the info you should include when you report issues.

---

<div class="post-metadata">

### Author: ![gyorgybalazsi](https://yyz2.discourse-cdn.com/flex034/user_avatar/forum.canton.network/gyorgybalazsi/32/684_2.png) [@gyorgybalazsi](https://forum.canton.network/u/gyorgybalazsi)
#### Post date: [October 27, 2023, 3:50pm UTC](https://forum.canton.network/t/how-can-i-use-the-output-of-canton-health-dump/6905/3 "2023-10-27T15:50:23Z")

</div>

Yes, thank you!
