Get Elasticsearch Diagnostic Package

Simple steps to easily generate diagnostic files

Quick Start

1. Download Diagnostic Tool

Download the latest version of the support diagnostic tool from the official GitHub repository

wget https://github.com/elastic/support-diagnostics/releases/download/v9.3.1/diagnostics-9.3.1-dist.zip

2. Extract and Run

Extract the downloaded file and run the diagnostic tool

unzip diagnostics-9.3.1-dist.zip
cd diagnostics-*
./diagnostics.sh --host localhost --type local

3. Get Diagnostic File

After the tool completes, it will generate a ZIP format diagnostic file

Generated File Format

local-diagnostics-YYYYMMDD-HHMMSS.zip

Common Parameters

Local Mode

./diagnostics.sh --host localhost --type local

Remote Mode

./diagnostics.sh --host 10.0.0.20 --type remote

With Authentication

./diagnostics.sh --host localhost -u elastic -p --ssl

API Mode

./diagnostics.sh --host localhost --type api

Need More Help?

Check the official documentation for detailed usage instructions and advanced features

Visit Official GitHub Repository