blob: fe453cfde00f4a1f1df2a42dc71d799c179fe87f [file] [log] [blame]
<?php
require_once($_SERVER['DOCUMENT_ROOT'] . "/eclipse.org-common/system/app.class.php");
require_once($_SERVER['DOCUMENT_ROOT'] . "/eclipse.org-common/system/nav.class.php");
require_once($_SERVER['DOCUMENT_ROOT'] . "/eclipse.org-common/system/menu.class.php");
if (is_file($_SERVER['DOCUMENT_ROOT'] . "/projects/common/project-info.class.php"))
{
require_once($_SERVER['DOCUMENT_ROOT'] . "/projects/common/project-info.class.php");
}
$App = new App(); $Nav = new Nav(); $Menu = new Menu();
if (class_exists("ProjectInfo"))
{
$projectInfo = new ProjectInfo("technology.mat");
$projectInfo->generate_common_nav( $Nav );
}
include($App->getProjectCommon());
#*****************************************************************************
# Memory Analyzer Home Page
#****************************************************************************
$pageTitle = "Eclipse Memory Analyzer Open Source Project";
$pageKeywords = "Heap Dump, HPROF, DTFJ, Retained Size, Garbage Collection Root, Leak Suspect";
$pageAuthor = "Andreas Buchen";
$html = <<<EOHTML
<div id="maincontent">
<div id="midcolumn">
<h1>Memory Analyzer (MAT)</h1>
<table>
<tr>
<td valign="top"><p>The Eclipse Memory Analyzer is a fast and feature-rich <b>Java heap analyzer</b> that helps you
find memory leaks and reduce memory consumption.</p>
<p>Use the Memory Analyzer to analyze productive heap dumps with hundreds of millions
of objects, quickly calculate the retained sizes of objects, see who is preventing the Garbage
Collector from collecting objects, run a report to automatically extract leak suspects.</p>
</td>
<td align="right" valign="top"><img src="/mat/home/mat_thumb.png" alt="Memory Analyzer Screenshot" width="250" height="282">
</td>
</tr>
</table>
<div class = "homeitem3col">
<h3>Links</h3>
<ul>
<li><a href="/mat/downloads.php">Download</a> the latest version as RCP application.</li>
<li>Read our <a href="http://dev.eclipse.org/blogs/memoryanalyzer">Blog</a> for background information.</li>
<li>Post your questions to the <a href="http://www.eclipse.org/forums/eclipse.memory-analyzer">Forum</a>.</li>
</ul>
</div>
<div class = "homeitem3col">
<h3>News</h3>
<ul class="midlist">
<li>22 June 2011, <a href="/mat/downloads.php">Memory Analyzer Released Version 1.1.0</a>
<blockquote></blockquote>
Memory Analyzer 1.1.0 Release is now available for <a href="/mat/downloads.php">download</a>. This version is
part of the Indigo simultaneous release. Have a look at the <a href="/mat/1.1/noteworthy.html">New and Noteworthy</a> document.
</li>
</ul>
<ul class="midlist">
<li>April 2010, Memory Analyzer Graduated and Moved to Tools
<blockquote></blockquote>
In April 2010 the Memory Analyzer project had a successful graduation review and is not any longer in the Incubation phase.
After graduation the project moved from the Technology top-level project into the Tools top-level project.
</li>
</ul>
<ul class="midlist">
<li><a href="http://wiki.eclipse.org/index.php/MemoryAnalyzer#System_Dumps_and_Heap_Dumps_from_IBM_Virtual_Machines">Memory Analyzer now supports IBM System Dumps and Portable Heap Dumps</a>
<blockquote></blockquote>
Memory Analyzer 0.8 includes a Diagnostic Tool Framework for Java (DTFJ) adapter, which together with a DTFJ
feature from IBM, enables the Memory Analyzer to read DTFJ formatted system dumps and Portable Heap Dumps.
Supported are dumps from <strong>IBM JDK 1.4.2 SR12, 5.0 SR8a and 6.0 SR2</strong> and greater.
</li>
</ul>
</div>
<div class="homeitem3col">
<h3>Webinars</h3>
<ul class="midlist">
<li><a href="http://live.eclipse.org/node/939">Memory Analyzer 1.0 - Not Only New, but Noteworthy</a><blockquote>
</blockquote>Krum Tsvetkov and Andrew Johnson recorded this Webinar on 08 Sep 2010.
Listen in to see how to diagnose problems given a heap dump and using the new features in the tool together with the best from the &quot;old&quot; features.</li>
</ul>
<ul class="midlist">
<li><a href="http://live.eclipse.org/node/520">Memory Analyzer Webinar</a><blockquote>
</blockquote>Krum Tsvetkov and Andreas Buchen recorded this Webinar on 29 May 2008.
Listen in to get an overview over the most important features.</li>
</ul>
</div>
</div>
<div id="rightcolumn">
$sidebar
</div>
</div>
EOHTML;
# Generate the web page
$App->generatePage($theme, $Menu, $Nav, $pageAuthor, $pageKeywords, $pageTitle, $html);
?>