-
Notifications
You must be signed in to change notification settings - Fork 14
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Loading status checks…
add gc segment analysis
Signed-off-by: Matthew Khouzam <matthew.khouzam@ericsson.com> Change-Id: Ibceade792bb73027bd4c7c398459beabc2490d7f
1 parent
c6a089f
commit 9f1e708
Showing
3 changed files
with
44 additions
and
0 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
37 changes: 37 additions & 0 deletions
37
...org/eclipse/tracecompass/incubator/internal/syslog/core/gclog/xmlanalysis/gc_analysis.xml
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,37 @@ | ||
|
||
<tmfxml xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" | ||
xsi:noNamespaceSchemaLocation="xmlDefinition.xsd"> | ||
<!-- *************************************************************************** | ||
* Copyright (c) 2024 Ericsson * * All rights reserved. This program and the | ||
accompanying materials are * made available under the terms of the Eclipse | ||
Public License 2.0 which * accompanies this distribution, and is available | ||
at * https://www.eclipse.org/legal/epl-2.0/ * * SPDX-License-Identifier: | ||
EPL-2.0 *************************************************************************** --> | ||
<pattern version="1" id="system.gc.duration"> | ||
<head> | ||
<label value="GC Segments" /> | ||
</head> | ||
<patternHandler> | ||
<action id="segment_create"> | ||
<segment> | ||
<segType> | ||
<segName> | ||
<stateValue type="eventField" value="Cause" /> | ||
</segName> | ||
</segType> | ||
<segTime> | ||
<begin type="eventField" value="timestamp" /> | ||
<duration type="eventField" value="Pause" /> | ||
</segTime> | ||
</segment> | ||
</action> | ||
<fsm id="gcs" multiple="true"> | ||
<state id="start"> | ||
<transition event="*" target="duration" | ||
action="segment_create" /> | ||
</state> | ||
<final id="duration" /> | ||
</fsm> | ||
</patternHandler> | ||
</pattern> | ||
</tmfxml> |