Everyone,
Some customers don't upload AutoSupport to NetApp. And need a tool to decode the compressed file.
Here is the tool
Notice, it may work on any logs, but due to use javascript to highlight keywords in logs, it may hang the web browser.
It supports
- Full Auto Support compressed with 7z format
- Single file, includes XML, log, txt, EMS, etc
- Highlight keywords in logs
Deploy your own docker container on any kind of platform
- Install docker
Docker Desktop for Windows: https://docs.docker.com/docker-for-windows/install/
Docker Desktop for Mac: https://docs.docker.com/docker-for-mac/install/
Docker CE for Linux, for example, CentOS: https://docs.docker.com/install/linux/docker-ce/centos/
2. Pull the image from cloud.dock.com
Run the command: docker pull jerry2605/lvt021
3. Deploy the container from the image
Run the command: docker run -d --name lvt021 -p 80:80 jerry2605/lvt021
notice:
The option -p 80:80, first 80 is the port you want the webserver run on your machine, the second 80 is the internal port. For example, if you want to run on port 8080, the option should be -p 8080:80
Have fun!