-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* feat: add sparse array stats grid fix: live object check in heap index * fix: navigation on single page with auto data refresh * feat: add ProgressContainer - change defaults theme * refactor: use ProgressContainer on home page * refactor: use ProgressContainer on segments page * refactor: use ProgressContainer on modules page * refactor: use ProgressContainer on roots page * refactor: use ProgressContainer on arrays page * refactor: rename TraversingHeapModes to ObjectGCStatus * refactor: use ProgressContainer on string page * refactor: use ProgressContainer on object instances page * refactor: use ProgressContainer on string duplicates page * refactor: use ProgressContainer on sparse arrays stat page * fix: ProgressContainer infinitive data refresh
- Loading branch information
Showing
87 changed files
with
2,169 additions
and
1,566 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
$ErrorActionPreference = "Stop" | ||
|
||
try | ||
{ | ||
dotnet tool uninstall -g Heartbeat | ||
dotnet tool install --global Heartbeat | ||
} | ||
catch { | ||
Write-Host 'Install global tool - FAILED!' -ForegroundColor Red | ||
throw | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
8 changes: 8 additions & 0 deletions
8
src/Heartbeat.Runtime/Analyzers/Interfaces/IWithObjectGCStatus.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
using Heartbeat.Runtime.Domain; | ||
|
||
namespace Heartbeat.Runtime.Analyzers.Interfaces; | ||
|
||
public interface IWithObjectGCStatus | ||
{ | ||
ObjectGCStatus? ObjectGcStatus { get; set; } | ||
} |
6 changes: 0 additions & 6 deletions
6
src/Heartbeat.Runtime/Analyzers/Interfaces/IWithTraversingHeapMode.cs
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
namespace Heartbeat.Runtime.Domain; | ||
|
||
[Flags] | ||
public enum ObjectGCStatus | ||
{ | ||
Live, | ||
Dead | ||
} |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.