microsoft/gctoolkit

Public

mirrored from https://github.com/microsoft/gctoolkitAvailable

CodeCommitsIssuesPull requestsActionsInsightsSecurity
c577cf20fac793c2a5523f7c49c57010eb202304

Branches

Tags

  • No tags available.
0Branches0Tags
Go to file
Add file
Code

Clone

HTTPS

Download ZIP

parser/src/main/java/module-info.java

43lines · modeblame

3ce8e8bbKirk Pepperdine4 years ago1// Copyright (c) Microsoft Corporation.
2// Licensed under the MIT License.
3
4/**
5509b357Kirk Pepperdine4 years ago5* Contains the GCToolKit GC log parser. The parser is an internal module.
3ce8e8bbKirk Pepperdine4 years ago6*/
8b6201adChristian Stein4 years ago7module com.microsoft.gctoolkit.parser {
d96119e6kabutz4 years ago8requires com.microsoft.gctoolkit.api;
9requires java.logging;
10
5509b357Kirk Pepperdine4 years ago11exports com.microsoft.gctoolkit.parser to
e74e68d3Kirk Pepperdine3 years ago12com.microsoft.gctoolkit.api;
3ce8e8bbKirk Pepperdine4 years ago13
5509b357Kirk Pepperdine4 years ago14exports com.microsoft.gctoolkit.parser.io to
e74e68d3Kirk Pepperdine3 years ago15com.microsoft.gctoolkit.api;
3ce8e8bbKirk Pepperdine4 years ago16
5509b357Kirk Pepperdine4 years ago17exports com.microsoft.gctoolkit.parser.jvm to
e74e68d3Kirk Pepperdine3 years ago18com.microsoft.gctoolkit.api;
3ce8e8bbKirk Pepperdine4 years ago19
5509b357Kirk Pepperdine4 years ago20exports com.microsoft.gctoolkit.parser.unified to
e74e68d3Kirk Pepperdine3 years ago21com.microsoft.gctoolkit.api;
3ce8e8bbKirk Pepperdine4 years ago22
5509b357Kirk Pepperdine4 years ago23exports com.microsoft.gctoolkit.parser.vmops to
e74e68d3Kirk Pepperdine3 years ago24com.microsoft.gctoolkit.api;
49a86dfbKirk Pepperdine4 years ago25
26provides com.microsoft.gctoolkit.jvm.Diarizer with
27com.microsoft.gctoolkit.parser.jvm.PreUnifiedDiarizer,
28com.microsoft.gctoolkit.parser.jvm.UnifiedDiarizer;
e74e68d3Kirk Pepperdine3 years ago29
30provides com.microsoft.gctoolkit.message.DataSourceParser with
31com.microsoft.gctoolkit.parser.JVMEventParser,
32com.microsoft.gctoolkit.parser.UnifiedJVMEventParser,
33com.microsoft.gctoolkit.parser.vmops.SafepointParser,
34com.microsoft.gctoolkit.parser.SurvivorMemoryPoolParser,
35com.microsoft.gctoolkit.parser.UnifiedSurvivorMemoryPoolParser,
36com.microsoft.gctoolkit.parser.CMSTenuredPoolParser,
37com.microsoft.gctoolkit.parser.GenerationalHeapParser,
38com.microsoft.gctoolkit.parser.UnifiedGenerationalParser,
39com.microsoft.gctoolkit.parser.PreUnifiedG1GCParser,
40com.microsoft.gctoolkit.parser.UnifiedG1GCParser,
41com.microsoft.gctoolkit.parser.ShenandoahParser,
42com.microsoft.gctoolkit.parser.ZGCParser;
3ce8e8bbKirk Pepperdine4 years ago43}