Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
pmx
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Descartes Research
pmx
Commits
3a8d6958
Commit
3a8d6958
authored
8 years ago
by
Jürgen Walter
Browse files
Options
Downloads
Patches
Plain Diff
minor
parent
dccabbda
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
tools.descartes.pmx/src/tools/descartes/pmx/filter/WorkloadFilter.java
+40
-6
40 additions, 6 deletions
...es.pmx/src/tools/descartes/pmx/filter/WorkloadFilter.java
with
40 additions
and
6 deletions
tools.descartes.pmx/src/tools/descartes/pmx/filter/WorkloadFilter.java
+
40
−
6
View file @
3a8d6958
...
...
@@ -27,9 +27,13 @@
package
tools.descartes.pmx.filter
;
import
java.util.ArrayList
;
import
java.util.Collections
;
import
java.util.Comparator
;
import
java.util.HashMap
;
import
java.util.List
;
import
org.apache.log4j.Logger
;
import
kieker.analysis.IProjectContext
;
import
kieker.analysis.plugin.annotation.InputPort
;
import
kieker.analysis.plugin.annotation.OutputPort
;
...
...
@@ -39,11 +43,6 @@ import kieker.tools.traceAnalysis.filter.AbstractMessageTraceProcessingFilter;
import
kieker.tools.traceAnalysis.systemModel.AbstractMessage
;
import
kieker.tools.traceAnalysis.systemModel.Execution
;
import
kieker.tools.traceAnalysis.systemModel.MessageTrace
;
import
org.apache.log4j.Logger
;
import
tools.descartes.librede.linalg.LinAlg
;
import
tools.descartes.librede.linalg.Vector
;
import
tools.descartes.pmx.builder.ModelBuilder
;
@Plugin
(
name
=
"WorkloadFilter"
,
description
=
"..."
,
outputPorts
=
{
@OutputPort
(
name
=
WorkloadFilter
.
OUTPUT_PORT_NAME_WORKLOAD
,
description
=
"Outputs workload description"
,
eventTypes
=
{
HashMap
.
class
}),
})
...
...
@@ -65,7 +64,7 @@ public class WorkloadFilter extends AbstractMessageTraceProcessingFilter {
@InputPort
(
name
=
AbstractMessageTraceProcessingFilter
.
INPUT_PORT_NAME_MESSAGE_TRACES
,
description
=
"Receives the message traces to be processed"
,
eventTypes
=
{
MessageTrace
.
class
})
public
void
inputMessageTraces
(
final
MessageTrace
mt
)
{
AbstractMessage
startMessage
=
mt
.
getSequenceAsVector
().
get
(
0
);
AbstractMessage
startMessage
=
getStartMessage
(
mt
);
//
mt.getSequenceAsVector().get(0);
Execution
x
=
startMessage
.
getReceivingExecution
();
String
host
=
x
.
getAllocationComponent
().
getExecutionContainer
().
getName
();
String
function
=
x
.
getOperation
().
getSignature
().
getName
();
...
...
@@ -73,6 +72,41 @@ public class WorkloadFilter extends AbstractMessageTraceProcessingFilter {
addTimeStamp
(
host
,
component
,
function
,
x
.
getTin
());
}
private
AbstractMessage
getStartMessage
(
final
MessageTrace
mt
)
{
for
(
AbstractMessage
message
:
mt
.
getSequenceAsVector
())
{
// System.out.println("\t" +
// message.getReceivingExecution().getOperation().getSignature().getName()
// + " "
// + message.getTimestamp() + " " + mt.getStartTimestamp());
if
(
message
.
getTimestamp
()
==
mt
.
getStartTimestamp
())
{
return
message
;
}
}
return
mt
.
getSequenceAsVector
().
get
(
0
);
}
private
void
sortMessageTrace
(
final
MessageTrace
mt
)
{
List
<
AbstractMessage
>
messages
=
mt
.
getSequenceAsVector
();
Comparator
<
AbstractMessage
>
timeComparator
=
new
Comparator
<
AbstractMessage
>()
{
@Override
public
int
compare
(
AbstractMessage
arg0
,
AbstractMessage
arg1
)
{
if
(
arg0
.
getTimestamp
()
>
arg1
.
getTimestamp
())
{
return
1
;
}
else
if
(
arg0
.
getTimestamp
()
<
arg1
.
getTimestamp
())
{
return
-
1
;
}
else
{
return
0
;
}
}
};
Collections
.
sort
(
messages
,
timeComparator
);
// for (AbstractMessage message : messages) {
// System.out.println(
// "" + message.getSendingExecution().getOperation() + " " +
// message.getSendingExecution().getEoi());
// }
}
private
synchronized
void
addTimeStamp
(
String
host
,
String
component
,
String
function
,
double
timestamp
){
List
<
Double
>
timeSeries
;
String
key
=
function
+
ModelBuilder
.
seperatorChar
+
component
+
ModelBuilder
.
seperatorChar
+
host
;
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment