From 1bac89dd7ccef3199a9201fc12f623f1b23dd32f Mon Sep 17 00:00:00 2001 From: BenjaminArp <101420246+BenjaminArp@users.noreply.github.com> Date: Tue, 27 Jan 2026 18:28:41 +0100 Subject: [PATCH 1/4] move DSL to own utils bundle --- bundles/dev.arcovia.mitigation.ilp/.project | 28 +++++++++++++++++++ .../META-INF/MANIFEST.MF | 3 +- .../dev.arcovia.mitigation.utils/.classpath | 7 +++++ bundles/dev.arcovia.mitigation.utils/.project | 28 +++++++++++++++++++ .../.settings/org.eclipse.jdt.core.prefs | 9 ++++++ .../META-INF/MANIFEST.MF | 13 +++++++++ .../build.properties | 4 +++ .../mitigation/utils}/dsl/BaseFormula.java | 10 +++---- .../mitigation/utils}/dsl/CNFTranslation.java | 17 +++++------ .../utils}/dsl/nodes/BranchNode.java | 2 +- .../utils}/dsl/nodes/ConjunctionNode.java | 2 +- .../utils}/dsl/nodes/DisjunctionNode.java | 2 +- .../utils}/dsl/nodes/LiteralNode.java | 2 +- .../utils}/dsl/nodes/LogicNode.java | 2 +- .../DynamicConditionalSelector.java | 6 ++-- ...cEmptySetOperationConditionalSelector.java | 7 +++-- .../conditional/DynamicIntersection.java | 17 +++++------ .../conditional/DynamicSetOperation.java | 6 ++-- .../DynamicVariableConditionalSelector.java | 7 +++-- ...onstantDataCharacteristicListSelector.java | 9 +++--- .../ConstantDataCharacteristicSelector.java | 7 +++-- .../constant/ConstantDataSelector.java | 4 +-- ...stantVertexCharacteristicListSelector.java | 9 +++--- .../ConstantVertexCharacteristicSelector.java | 7 +++-- .../DynamicDataCharacteristicSelector.java | 7 +++-- .../dynamic/DynamicDataSelector.java | 4 +-- .../DynamicVertexCharacteristicSelector.java | 7 +++-- .../dev.arcovia.mitigation.ilp.tests/.project | 28 +++++++++++++++++++ .../meassurement_results.txt | 17 +++++++++++ .../META-INF/MANIFEST.MF | 7 +++-- .../.classpath | 11 ++++++++ .../.project | 28 +++++++++++++++++++ .../.settings/org.eclipse.jdt.core.prefs | 9 ++++++ .../META-INF/MANIFEST.MF | 21 ++++++++++++++ .../build.properties | 4 +++ .../mitigation/utils}/dsl/tests/DemoTest.java | 12 ++++---- .../utils}/dsl/tests/PerformanceTest.java | 7 +++-- .../utils}/dsl/tests/StructureTest.java | 9 +++--- .../utils}/dsl/tests/TUHHTestDSL.java | 7 +++-- .../utils}/dsl/tests/VerificationTest.java | 7 +++-- .../utils}/dsl/tests/dummy/DInData.java | 4 +-- .../utils}/dsl/tests/dummy/DNode.java | 4 +-- .../utils}/dsl/tests/dummy/DOutData.java | 4 +-- .../dsl/tests/unit/ConjunctionTest.java | 11 ++++---- .../dsl/tests/unit/DisjunctionTest.java | 11 ++++---- .../utils}/dsl/tests/unit/VariableTest.java | 11 ++++---- .../utils}/dsl/tests/utility/CNFUtil.java | 7 +++-- .../utils}/dsl/tests/utility/DataLoader.java | 2 +- .../tests/utility/ReadabilityTestResult.java | 2 +- tests/pom.xml | 1 + 50 files changed, 338 insertions(+), 112 deletions(-) create mode 100644 bundles/dev.arcovia.mitigation.ilp/.project create mode 100644 bundles/dev.arcovia.mitigation.utils/.classpath create mode 100644 bundles/dev.arcovia.mitigation.utils/.project create mode 100644 bundles/dev.arcovia.mitigation.utils/.settings/org.eclipse.jdt.core.prefs create mode 100644 bundles/dev.arcovia.mitigation.utils/META-INF/MANIFEST.MF create mode 100644 bundles/dev.arcovia.mitigation.utils/build.properties rename bundles/{dev.arcovia.mitigation.sat/src/dev/arcovia/mitigation/sat => dev.arcovia.mitigation.utils/src/dev/arcovia/mitigation/utils}/dsl/BaseFormula.java (91%) rename bundles/{dev.arcovia.mitigation.sat/src/dev/arcovia/mitigation/sat => dev.arcovia.mitigation.utils/src/dev/arcovia/mitigation/utils}/dsl/CNFTranslation.java (94%) rename bundles/{dev.arcovia.mitigation.sat/src/dev/arcovia/mitigation/sat => dev.arcovia.mitigation.utils/src/dev/arcovia/mitigation/utils}/dsl/nodes/BranchNode.java (89%) rename bundles/{dev.arcovia.mitigation.sat/src/dev/arcovia/mitigation/sat => dev.arcovia.mitigation.utils/src/dev/arcovia/mitigation/utils}/dsl/nodes/ConjunctionNode.java (98%) rename bundles/{dev.arcovia.mitigation.sat/src/dev/arcovia/mitigation/sat => dev.arcovia.mitigation.utils/src/dev/arcovia/mitigation/utils}/dsl/nodes/DisjunctionNode.java (98%) rename bundles/{dev.arcovia.mitigation.sat/src/dev/arcovia/mitigation/sat => dev.arcovia.mitigation.utils/src/dev/arcovia/mitigation/utils}/dsl/nodes/LiteralNode.java (97%) rename bundles/{dev.arcovia.mitigation.sat/src/dev/arcovia/mitigation/sat => dev.arcovia.mitigation.utils/src/dev/arcovia/mitigation/utils}/dsl/nodes/LogicNode.java (89%) rename bundles/{dev.arcovia.mitigation.sat/src/dev/arcovia/mitigation/sat => dev.arcovia.mitigation.utils/src/dev/arcovia/mitigation/utils}/dsl/selectors/conditional/DynamicConditionalSelector.java (73%) rename bundles/{dev.arcovia.mitigation.sat/src/dev/arcovia/mitigation/sat => dev.arcovia.mitigation.utils/src/dev/arcovia/mitigation/utils}/dsl/selectors/conditional/DynamicEmptySetOperationConditionalSelector.java (92%) rename bundles/{dev.arcovia.mitigation.sat/src/dev/arcovia/mitigation/sat => dev.arcovia.mitigation.utils/src/dev/arcovia/mitigation/utils}/dsl/selectors/conditional/DynamicIntersection.java (88%) rename bundles/{dev.arcovia.mitigation.sat/src/dev/arcovia/mitigation/sat => dev.arcovia.mitigation.utils/src/dev/arcovia/mitigation/utils}/dsl/selectors/conditional/DynamicSetOperation.java (77%) rename bundles/{dev.arcovia.mitigation.sat/src/dev/arcovia/mitigation/sat => dev.arcovia.mitigation.utils/src/dev/arcovia/mitigation/utils}/dsl/selectors/conditional/DynamicVariableConditionalSelector.java (91%) rename bundles/{dev.arcovia.mitigation.sat/src/dev/arcovia/mitigation/sat => dev.arcovia.mitigation.utils/src/dev/arcovia/mitigation/utils}/dsl/selectors/constant/ConstantDataCharacteristicListSelector.java (88%) rename bundles/{dev.arcovia.mitigation.sat/src/dev/arcovia/mitigation/sat => dev.arcovia.mitigation.utils/src/dev/arcovia/mitigation/utils}/dsl/selectors/constant/ConstantDataCharacteristicSelector.java (92%) rename bundles/{dev.arcovia.mitigation.sat/src/dev/arcovia/mitigation/sat => dev.arcovia.mitigation.utils/src/dev/arcovia/mitigation/utils}/dsl/selectors/constant/ConstantDataSelector.java (79%) rename bundles/{dev.arcovia.mitigation.sat/src/dev/arcovia/mitigation/sat => dev.arcovia.mitigation.utils/src/dev/arcovia/mitigation/utils}/dsl/selectors/constant/ConstantVertexCharacteristicListSelector.java (87%) rename bundles/{dev.arcovia.mitigation.sat/src/dev/arcovia/mitigation/sat => dev.arcovia.mitigation.utils/src/dev/arcovia/mitigation/utils}/dsl/selectors/constant/ConstantVertexCharacteristicSelector.java (92%) rename bundles/{dev.arcovia.mitigation.sat/src/dev/arcovia/mitigation/sat => dev.arcovia.mitigation.utils/src/dev/arcovia/mitigation/utils}/dsl/selectors/dynamic/DynamicDataCharacteristicSelector.java (94%) rename bundles/{dev.arcovia.mitigation.sat/src/dev/arcovia/mitigation/sat => dev.arcovia.mitigation.utils/src/dev/arcovia/mitigation/utils}/dsl/selectors/dynamic/DynamicDataSelector.java (88%) rename bundles/{dev.arcovia.mitigation.sat/src/dev/arcovia/mitigation/sat => dev.arcovia.mitigation.utils/src/dev/arcovia/mitigation/utils}/dsl/selectors/dynamic/DynamicVertexCharacteristicSelector.java (94%) create mode 100644 tests/dev.arcovia.mitigation.ilp.tests/.project create mode 100644 tests/dev.arcovia.mitigation.utils.tests/.classpath create mode 100644 tests/dev.arcovia.mitigation.utils.tests/.project create mode 100644 tests/dev.arcovia.mitigation.utils.tests/.settings/org.eclipse.jdt.core.prefs create mode 100644 tests/dev.arcovia.mitigation.utils.tests/META-INF/MANIFEST.MF create mode 100644 tests/dev.arcovia.mitigation.utils.tests/build.properties rename tests/{dev.arcovia.mitigation.sat.tests/src/dev/arcovia/mitigation/sat => dev.arcovia.mitigation.utils.tests/src/dev/arcovia/mitigation/utils}/dsl/tests/DemoTest.java (95%) rename tests/{dev.arcovia.mitigation.sat.tests/src/dev/arcovia/mitigation/sat => dev.arcovia.mitigation.utils.tests/src/dev/arcovia/mitigation/utils}/dsl/tests/PerformanceTest.java (95%) rename tests/{dev.arcovia.mitigation.sat.tests/src/dev/arcovia/mitigation/sat => dev.arcovia.mitigation.utils.tests/src/dev/arcovia/mitigation/utils}/dsl/tests/StructureTest.java (96%) rename tests/{dev.arcovia.mitigation.sat.tests/src/dev/arcovia/mitigation/sat => dev.arcovia.mitigation.utils.tests/src/dev/arcovia/mitigation/utils}/dsl/tests/TUHHTestDSL.java (95%) rename tests/{dev.arcovia.mitigation.sat.tests/src/dev/arcovia/mitigation/sat => dev.arcovia.mitigation.utils.tests/src/dev/arcovia/mitigation/utils}/dsl/tests/VerificationTest.java (97%) rename tests/{dev.arcovia.mitigation.sat.tests/src/dev/arcovia/mitigation/sat => dev.arcovia.mitigation.utils.tests/src/dev/arcovia/mitigation/utils}/dsl/tests/dummy/DInData.java (85%) rename tests/{dev.arcovia.mitigation.sat.tests/src/dev/arcovia/mitigation/sat => dev.arcovia.mitigation.utils.tests/src/dev/arcovia/mitigation/utils}/dsl/tests/dummy/DNode.java (84%) rename tests/{dev.arcovia.mitigation.sat.tests/src/dev/arcovia/mitigation/sat => dev.arcovia.mitigation.utils.tests/src/dev/arcovia/mitigation/utils}/dsl/tests/dummy/DOutData.java (69%) rename tests/{dev.arcovia.mitigation.sat.tests/src/dev/arcovia/mitigation/sat => dev.arcovia.mitigation.utils.tests/src/dev/arcovia/mitigation/utils}/dsl/tests/unit/ConjunctionTest.java (95%) rename tests/{dev.arcovia.mitigation.sat.tests/src/dev/arcovia/mitigation/sat => dev.arcovia.mitigation.utils.tests/src/dev/arcovia/mitigation/utils}/dsl/tests/unit/DisjunctionTest.java (95%) rename tests/{dev.arcovia.mitigation.sat.tests/src/dev/arcovia/mitigation/sat => dev.arcovia.mitigation.utils.tests/src/dev/arcovia/mitigation/utils}/dsl/tests/unit/VariableTest.java (96%) rename tests/{dev.arcovia.mitigation.sat.tests/src/dev/arcovia/mitigation/sat => dev.arcovia.mitigation.utils.tests/src/dev/arcovia/mitigation/utils}/dsl/tests/utility/CNFUtil.java (96%) rename tests/{dev.arcovia.mitigation.sat.tests/src/dev/arcovia/mitigation/sat => dev.arcovia.mitigation.utils.tests/src/dev/arcovia/mitigation/utils}/dsl/tests/utility/DataLoader.java (98%) rename tests/{dev.arcovia.mitigation.sat.tests/src/dev/arcovia/mitigation/sat => dev.arcovia.mitigation.utils.tests/src/dev/arcovia/mitigation/utils}/dsl/tests/utility/ReadabilityTestResult.java (89%) diff --git a/bundles/dev.arcovia.mitigation.ilp/.project b/bundles/dev.arcovia.mitigation.ilp/.project new file mode 100644 index 00000000..1f57b761 --- /dev/null +++ b/bundles/dev.arcovia.mitigation.ilp/.project @@ -0,0 +1,28 @@ + + + dev.arcovia.mitigation.ilp + + + + + + org.eclipse.jdt.core.javabuilder + + + + + org.eclipse.pde.ManifestBuilder + + + + + org.eclipse.pde.SchemaBuilder + + + + + + org.eclipse.pde.PluginNature + org.eclipse.jdt.core.javanature + + diff --git a/bundles/dev.arcovia.mitigation.sat/META-INF/MANIFEST.MF b/bundles/dev.arcovia.mitigation.sat/META-INF/MANIFEST.MF index 1bd4770f..5a3c18ad 100644 --- a/bundles/dev.arcovia.mitigation.sat/META-INF/MANIFEST.MF +++ b/bundles/dev.arcovia.mitigation.sat/META-INF/MANIFEST.MF @@ -4,8 +4,7 @@ Bundle-Name: Sat Bundle-SymbolicName: dev.arcovia.mitigation.sat Bundle-Version: 1.0.0.qualifier Export-Package: - dev.arcovia.mitigation.sat, - dev.arcovia.mitigation.sat.dsl + dev.arcovia.mitigation.sat Require-Bundle: org.sat4j.core;bundle-version="2.3.6", org.dataflowanalysis.converter, diff --git a/bundles/dev.arcovia.mitigation.utils/.classpath b/bundles/dev.arcovia.mitigation.utils/.classpath new file mode 100644 index 00000000..81fe078c --- /dev/null +++ b/bundles/dev.arcovia.mitigation.utils/.classpath @@ -0,0 +1,7 @@ + + + + + + + diff --git a/bundles/dev.arcovia.mitigation.utils/.project b/bundles/dev.arcovia.mitigation.utils/.project new file mode 100644 index 00000000..6f7fd7ab --- /dev/null +++ b/bundles/dev.arcovia.mitigation.utils/.project @@ -0,0 +1,28 @@ + + + dev.arcovia.mitigation.utils + + + + + + org.eclipse.jdt.core.javabuilder + + + + + org.eclipse.pde.ManifestBuilder + + + + + org.eclipse.pde.SchemaBuilder + + + + + + org.eclipse.pde.PluginNature + org.eclipse.jdt.core.javanature + + diff --git a/bundles/dev.arcovia.mitigation.utils/.settings/org.eclipse.jdt.core.prefs b/bundles/dev.arcovia.mitigation.utils/.settings/org.eclipse.jdt.core.prefs new file mode 100644 index 00000000..62ef3488 --- /dev/null +++ b/bundles/dev.arcovia.mitigation.utils/.settings/org.eclipse.jdt.core.prefs @@ -0,0 +1,9 @@ +eclipse.preferences.version=1 +org.eclipse.jdt.core.compiler.codegen.targetPlatform=17 +org.eclipse.jdt.core.compiler.compliance=17 +org.eclipse.jdt.core.compiler.problem.assertIdentifier=error +org.eclipse.jdt.core.compiler.problem.enablePreviewFeatures=disabled +org.eclipse.jdt.core.compiler.problem.enumIdentifier=error +org.eclipse.jdt.core.compiler.problem.reportPreviewFeatures=warning +org.eclipse.jdt.core.compiler.release=enabled +org.eclipse.jdt.core.compiler.source=17 diff --git a/bundles/dev.arcovia.mitigation.utils/META-INF/MANIFEST.MF b/bundles/dev.arcovia.mitigation.utils/META-INF/MANIFEST.MF new file mode 100644 index 00000000..3d26e15b --- /dev/null +++ b/bundles/dev.arcovia.mitigation.utils/META-INF/MANIFEST.MF @@ -0,0 +1,13 @@ +Manifest-Version: 1.0 +Bundle-ManifestVersion: 2 +Bundle-Name: Utils +Bundle-SymbolicName: dev.arcovia.mitigation.utils +Bundle-Version: 1.0.0.qualifier +Automatic-Module-Name: dev.arcovia.mitigation.utils +Bundle-RequiredExecutionEnvironment: JavaSE-17 +Export-Package: dev.arcovia.mitigation.utils.dsl +Require-Bundle: dev.arcovia.mitigation.sat;bundle-version="1.0.0", + org.dataflowanalysis.analysis;bundle-version="4.0.0", + org.dataflowanalysis.converter;bundle-version="4.0.0", + org.dataflowanalysis.analysis.dfd;bundle-version="4.0.0", + org.dataflowanalysis.dfd.datadictionary;bundle-version="4.0.0" diff --git a/bundles/dev.arcovia.mitigation.utils/build.properties b/bundles/dev.arcovia.mitigation.utils/build.properties new file mode 100644 index 00000000..34d2e4d2 --- /dev/null +++ b/bundles/dev.arcovia.mitigation.utils/build.properties @@ -0,0 +1,4 @@ +source.. = src/ +output.. = bin/ +bin.includes = META-INF/,\ + . diff --git a/bundles/dev.arcovia.mitigation.sat/src/dev/arcovia/mitigation/sat/dsl/BaseFormula.java b/bundles/dev.arcovia.mitigation.utils/src/dev/arcovia/mitigation/utils/dsl/BaseFormula.java similarity index 91% rename from bundles/dev.arcovia.mitigation.sat/src/dev/arcovia/mitigation/sat/dsl/BaseFormula.java rename to bundles/dev.arcovia.mitigation.utils/src/dev/arcovia/mitigation/utils/dsl/BaseFormula.java index 6fdf6b85..59088cb7 100644 --- a/bundles/dev.arcovia.mitigation.sat/src/dev/arcovia/mitigation/sat/dsl/BaseFormula.java +++ b/bundles/dev.arcovia.mitigation.utils/src/dev/arcovia/mitigation/utils/dsl/BaseFormula.java @@ -1,11 +1,11 @@ -package dev.arcovia.mitigation.sat.dsl; +package dev.arcovia.mitigation.utils.dsl; import dev.arcovia.mitigation.sat.Constraint; import dev.arcovia.mitigation.sat.Literal; -import dev.arcovia.mitigation.sat.dsl.nodes.BranchNode; -import dev.arcovia.mitigation.sat.dsl.nodes.ConjunctionNode; -import dev.arcovia.mitigation.sat.dsl.nodes.DisjunctionNode; -import dev.arcovia.mitigation.sat.dsl.nodes.LiteralNode; +import dev.arcovia.mitigation.utils.dsl.nodes.BranchNode; +import dev.arcovia.mitigation.utils.dsl.nodes.ConjunctionNode; +import dev.arcovia.mitigation.utils.dsl.nodes.DisjunctionNode; +import dev.arcovia.mitigation.utils.dsl.nodes.LiteralNode; import java.util.ArrayList; import java.util.Collections; diff --git a/bundles/dev.arcovia.mitigation.sat/src/dev/arcovia/mitigation/sat/dsl/CNFTranslation.java b/bundles/dev.arcovia.mitigation.utils/src/dev/arcovia/mitigation/utils/dsl/CNFTranslation.java similarity index 94% rename from bundles/dev.arcovia.mitigation.sat/src/dev/arcovia/mitigation/sat/dsl/CNFTranslation.java rename to bundles/dev.arcovia.mitigation.utils/src/dev/arcovia/mitigation/utils/dsl/CNFTranslation.java index 554ba08f..d45de24b 100644 --- a/bundles/dev.arcovia.mitigation.sat/src/dev/arcovia/mitigation/sat/dsl/CNFTranslation.java +++ b/bundles/dev.arcovia.mitigation.utils/src/dev/arcovia/mitigation/utils/dsl/CNFTranslation.java @@ -1,15 +1,16 @@ -package dev.arcovia.mitigation.sat.dsl; +package dev.arcovia.mitigation.utils.dsl; import java.util.*; import dev.arcovia.mitigation.sat.*; -import dev.arcovia.mitigation.sat.dsl.selectors.conditional.DynamicConditionalSelector; -import dev.arcovia.mitigation.sat.dsl.selectors.conditional.DynamicEmptySetOperationConditionalSelector; -import dev.arcovia.mitigation.sat.dsl.selectors.conditional.DynamicVariableConditionalSelector; -import dev.arcovia.mitigation.sat.dsl.selectors.constant.*; -import dev.arcovia.mitigation.sat.dsl.selectors.dynamic.DynamicDataCharacteristicSelector; -import dev.arcovia.mitigation.sat.dsl.selectors.dynamic.DynamicDataSelector; -import dev.arcovia.mitigation.sat.dsl.selectors.dynamic.DynamicVertexCharacteristicSelector; +import dev.arcovia.mitigation.utils.dsl.selectors.conditional.DynamicConditionalSelector; +import dev.arcovia.mitigation.utils.dsl.selectors.conditional.DynamicEmptySetOperationConditionalSelector; +import dev.arcovia.mitigation.utils.dsl.selectors.conditional.DynamicVariableConditionalSelector; +import dev.arcovia.mitigation.utils.dsl.selectors.constant.*; +import dev.arcovia.mitigation.utils.dsl.selectors.dynamic.DynamicDataCharacteristicSelector; +import dev.arcovia.mitigation.utils.dsl.selectors.dynamic.DynamicDataSelector; +import dev.arcovia.mitigation.utils.dsl.selectors.dynamic.DynamicVertexCharacteristicSelector; + import org.dataflowanalysis.analysis.dsl.AnalysisConstraint; import org.dataflowanalysis.analysis.dsl.selectors.*; diff --git a/bundles/dev.arcovia.mitigation.sat/src/dev/arcovia/mitigation/sat/dsl/nodes/BranchNode.java b/bundles/dev.arcovia.mitigation.utils/src/dev/arcovia/mitigation/utils/dsl/nodes/BranchNode.java similarity index 89% rename from bundles/dev.arcovia.mitigation.sat/src/dev/arcovia/mitigation/sat/dsl/nodes/BranchNode.java rename to bundles/dev.arcovia.mitigation.utils/src/dev/arcovia/mitigation/utils/dsl/nodes/BranchNode.java index 282761c6..5d21ab26 100644 --- a/bundles/dev.arcovia.mitigation.sat/src/dev/arcovia/mitigation/sat/dsl/nodes/BranchNode.java +++ b/bundles/dev.arcovia.mitigation.utils/src/dev/arcovia/mitigation/utils/dsl/nodes/BranchNode.java @@ -1,4 +1,4 @@ -package dev.arcovia.mitigation.sat.dsl.nodes; +package dev.arcovia.mitigation.utils.dsl.nodes; /** * Represents a logical branch node in a formula tree, such as a conjunction or disjunction node. diff --git a/bundles/dev.arcovia.mitigation.sat/src/dev/arcovia/mitigation/sat/dsl/nodes/ConjunctionNode.java b/bundles/dev.arcovia.mitigation.utils/src/dev/arcovia/mitigation/utils/dsl/nodes/ConjunctionNode.java similarity index 98% rename from bundles/dev.arcovia.mitigation.sat/src/dev/arcovia/mitigation/sat/dsl/nodes/ConjunctionNode.java rename to bundles/dev.arcovia.mitigation.utils/src/dev/arcovia/mitigation/utils/dsl/nodes/ConjunctionNode.java index 6e3337e5..78b7c23f 100644 --- a/bundles/dev.arcovia.mitigation.sat/src/dev/arcovia/mitigation/sat/dsl/nodes/ConjunctionNode.java +++ b/bundles/dev.arcovia.mitigation.utils/src/dev/arcovia/mitigation/utils/dsl/nodes/ConjunctionNode.java @@ -1,4 +1,4 @@ -package dev.arcovia.mitigation.sat.dsl.nodes; +package dev.arcovia.mitigation.utils.dsl.nodes; import java.util.ArrayList; import java.util.List; diff --git a/bundles/dev.arcovia.mitigation.sat/src/dev/arcovia/mitigation/sat/dsl/nodes/DisjunctionNode.java b/bundles/dev.arcovia.mitigation.utils/src/dev/arcovia/mitigation/utils/dsl/nodes/DisjunctionNode.java similarity index 98% rename from bundles/dev.arcovia.mitigation.sat/src/dev/arcovia/mitigation/sat/dsl/nodes/DisjunctionNode.java rename to bundles/dev.arcovia.mitigation.utils/src/dev/arcovia/mitigation/utils/dsl/nodes/DisjunctionNode.java index 1936f027..e86be98c 100644 --- a/bundles/dev.arcovia.mitigation.sat/src/dev/arcovia/mitigation/sat/dsl/nodes/DisjunctionNode.java +++ b/bundles/dev.arcovia.mitigation.utils/src/dev/arcovia/mitigation/utils/dsl/nodes/DisjunctionNode.java @@ -1,4 +1,4 @@ -package dev.arcovia.mitigation.sat.dsl.nodes; +package dev.arcovia.mitigation.utils.dsl.nodes; import java.util.ArrayList; import java.util.List; diff --git a/bundles/dev.arcovia.mitigation.sat/src/dev/arcovia/mitigation/sat/dsl/nodes/LiteralNode.java b/bundles/dev.arcovia.mitigation.utils/src/dev/arcovia/mitigation/utils/dsl/nodes/LiteralNode.java similarity index 97% rename from bundles/dev.arcovia.mitigation.sat/src/dev/arcovia/mitigation/sat/dsl/nodes/LiteralNode.java rename to bundles/dev.arcovia.mitigation.utils/src/dev/arcovia/mitigation/utils/dsl/nodes/LiteralNode.java index b0f04016..5b798ac4 100644 --- a/bundles/dev.arcovia.mitigation.sat/src/dev/arcovia/mitigation/sat/dsl/nodes/LiteralNode.java +++ b/bundles/dev.arcovia.mitigation.utils/src/dev/arcovia/mitigation/utils/dsl/nodes/LiteralNode.java @@ -1,4 +1,4 @@ -package dev.arcovia.mitigation.sat.dsl.nodes; +package dev.arcovia.mitigation.utils.dsl.nodes; import java.util.List; diff --git a/bundles/dev.arcovia.mitigation.sat/src/dev/arcovia/mitigation/sat/dsl/nodes/LogicNode.java b/bundles/dev.arcovia.mitigation.utils/src/dev/arcovia/mitigation/utils/dsl/nodes/LogicNode.java similarity index 89% rename from bundles/dev.arcovia.mitigation.sat/src/dev/arcovia/mitigation/sat/dsl/nodes/LogicNode.java rename to bundles/dev.arcovia.mitigation.utils/src/dev/arcovia/mitigation/utils/dsl/nodes/LogicNode.java index 69c02fed..b7bfa5a4 100644 --- a/bundles/dev.arcovia.mitigation.sat/src/dev/arcovia/mitigation/sat/dsl/nodes/LogicNode.java +++ b/bundles/dev.arcovia.mitigation.utils/src/dev/arcovia/mitigation/utils/dsl/nodes/LogicNode.java @@ -1,4 +1,4 @@ -package dev.arcovia.mitigation.sat.dsl.nodes; +package dev.arcovia.mitigation.utils.dsl.nodes; import java.util.List; diff --git a/bundles/dev.arcovia.mitigation.sat/src/dev/arcovia/mitigation/sat/dsl/selectors/conditional/DynamicConditionalSelector.java b/bundles/dev.arcovia.mitigation.utils/src/dev/arcovia/mitigation/utils/dsl/selectors/conditional/DynamicConditionalSelector.java similarity index 73% rename from bundles/dev.arcovia.mitigation.sat/src/dev/arcovia/mitigation/sat/dsl/selectors/conditional/DynamicConditionalSelector.java rename to bundles/dev.arcovia.mitigation.utils/src/dev/arcovia/mitigation/utils/dsl/selectors/conditional/DynamicConditionalSelector.java index e2cf800c..85995cbe 100644 --- a/bundles/dev.arcovia.mitigation.sat/src/dev/arcovia/mitigation/sat/dsl/selectors/conditional/DynamicConditionalSelector.java +++ b/bundles/dev.arcovia.mitigation.utils/src/dev/arcovia/mitigation/utils/dsl/selectors/conditional/DynamicConditionalSelector.java @@ -1,7 +1,7 @@ -package dev.arcovia.mitigation.sat.dsl.selectors.conditional; +package dev.arcovia.mitigation.utils.dsl.selectors.conditional; -import dev.arcovia.mitigation.sat.dsl.nodes.BranchNode; -import dev.arcovia.mitigation.sat.dsl.selectors.dynamic.DynamicDataSelector; +import dev.arcovia.mitigation.utils.dsl.nodes.BranchNode; +import dev.arcovia.mitigation.utils.dsl.selectors.dynamic.DynamicDataSelector; import java.util.List; import java.util.Map; diff --git a/bundles/dev.arcovia.mitigation.sat/src/dev/arcovia/mitigation/sat/dsl/selectors/conditional/DynamicEmptySetOperationConditionalSelector.java b/bundles/dev.arcovia.mitigation.utils/src/dev/arcovia/mitigation/utils/dsl/selectors/conditional/DynamicEmptySetOperationConditionalSelector.java similarity index 92% rename from bundles/dev.arcovia.mitigation.sat/src/dev/arcovia/mitigation/sat/dsl/selectors/conditional/DynamicEmptySetOperationConditionalSelector.java rename to bundles/dev.arcovia.mitigation.utils/src/dev/arcovia/mitigation/utils/dsl/selectors/conditional/DynamicEmptySetOperationConditionalSelector.java index 458bdfe9..6eb98ce4 100644 --- a/bundles/dev.arcovia.mitigation.sat/src/dev/arcovia/mitigation/sat/dsl/selectors/conditional/DynamicEmptySetOperationConditionalSelector.java +++ b/bundles/dev.arcovia.mitigation.utils/src/dev/arcovia/mitigation/utils/dsl/selectors/conditional/DynamicEmptySetOperationConditionalSelector.java @@ -1,7 +1,8 @@ -package dev.arcovia.mitigation.sat.dsl.selectors.conditional; +package dev.arcovia.mitigation.utils.dsl.selectors.conditional; + +import dev.arcovia.mitigation.utils.dsl.nodes.BranchNode; +import dev.arcovia.mitigation.utils.dsl.selectors.dynamic.DynamicDataSelector; -import dev.arcovia.mitigation.sat.dsl.nodes.BranchNode; -import dev.arcovia.mitigation.sat.dsl.selectors.dynamic.DynamicDataSelector; import org.dataflowanalysis.analysis.dsl.selectors.EmptySetOperationConditionalSelector; import org.dataflowanalysis.analysis.dsl.selectors.Intersection; diff --git a/bundles/dev.arcovia.mitigation.sat/src/dev/arcovia/mitigation/sat/dsl/selectors/conditional/DynamicIntersection.java b/bundles/dev.arcovia.mitigation.utils/src/dev/arcovia/mitigation/utils/dsl/selectors/conditional/DynamicIntersection.java similarity index 88% rename from bundles/dev.arcovia.mitigation.sat/src/dev/arcovia/mitigation/sat/dsl/selectors/conditional/DynamicIntersection.java rename to bundles/dev.arcovia.mitigation.utils/src/dev/arcovia/mitigation/utils/dsl/selectors/conditional/DynamicIntersection.java index 897e99fc..3a32f138 100644 --- a/bundles/dev.arcovia.mitigation.sat/src/dev/arcovia/mitigation/sat/dsl/selectors/conditional/DynamicIntersection.java +++ b/bundles/dev.arcovia.mitigation.utils/src/dev/arcovia/mitigation/utils/dsl/selectors/conditional/DynamicIntersection.java @@ -1,15 +1,16 @@ -package dev.arcovia.mitigation.sat.dsl.selectors.conditional; +package dev.arcovia.mitigation.utils.dsl.selectors.conditional; import dev.arcovia.mitigation.sat.IncomingDataLabel; import dev.arcovia.mitigation.sat.Label; import dev.arcovia.mitigation.sat.NodeLabel; -import dev.arcovia.mitigation.sat.dsl.nodes.BranchNode; -import dev.arcovia.mitigation.sat.dsl.nodes.ConjunctionNode; -import dev.arcovia.mitigation.sat.dsl.nodes.DisjunctionNode; -import dev.arcovia.mitigation.sat.dsl.nodes.LiteralNode; -import dev.arcovia.mitigation.sat.dsl.selectors.dynamic.DynamicDataCharacteristicSelector; -import dev.arcovia.mitigation.sat.dsl.selectors.dynamic.DynamicDataSelector; -import dev.arcovia.mitigation.sat.dsl.selectors.dynamic.DynamicVertexCharacteristicSelector; +import dev.arcovia.mitigation.utils.dsl.nodes.BranchNode; +import dev.arcovia.mitigation.utils.dsl.nodes.ConjunctionNode; +import dev.arcovia.mitigation.utils.dsl.nodes.DisjunctionNode; +import dev.arcovia.mitigation.utils.dsl.nodes.LiteralNode; +import dev.arcovia.mitigation.utils.dsl.selectors.dynamic.DynamicDataCharacteristicSelector; +import dev.arcovia.mitigation.utils.dsl.selectors.dynamic.DynamicDataSelector; +import dev.arcovia.mitigation.utils.dsl.selectors.dynamic.DynamicVertexCharacteristicSelector; + import org.dataflowanalysis.analysis.dsl.selectors.Intersection; import java.util.HashMap; diff --git a/bundles/dev.arcovia.mitigation.sat/src/dev/arcovia/mitigation/sat/dsl/selectors/conditional/DynamicSetOperation.java b/bundles/dev.arcovia.mitigation.utils/src/dev/arcovia/mitigation/utils/dsl/selectors/conditional/DynamicSetOperation.java similarity index 77% rename from bundles/dev.arcovia.mitigation.sat/src/dev/arcovia/mitigation/sat/dsl/selectors/conditional/DynamicSetOperation.java rename to bundles/dev.arcovia.mitigation.utils/src/dev/arcovia/mitigation/utils/dsl/selectors/conditional/DynamicSetOperation.java index 632963d9..5a47ef67 100644 --- a/bundles/dev.arcovia.mitigation.sat/src/dev/arcovia/mitigation/sat/dsl/selectors/conditional/DynamicSetOperation.java +++ b/bundles/dev.arcovia.mitigation.utils/src/dev/arcovia/mitigation/utils/dsl/selectors/conditional/DynamicSetOperation.java @@ -1,7 +1,7 @@ -package dev.arcovia.mitigation.sat.dsl.selectors.conditional; +package dev.arcovia.mitigation.utils.dsl.selectors.conditional; -import dev.arcovia.mitigation.sat.dsl.nodes.BranchNode; -import dev.arcovia.mitigation.sat.dsl.selectors.dynamic.DynamicDataSelector; +import dev.arcovia.mitigation.utils.dsl.nodes.BranchNode; +import dev.arcovia.mitigation.utils.dsl.selectors.dynamic.DynamicDataSelector; import java.util.List; import java.util.Map; diff --git a/bundles/dev.arcovia.mitigation.sat/src/dev/arcovia/mitigation/sat/dsl/selectors/conditional/DynamicVariableConditionalSelector.java b/bundles/dev.arcovia.mitigation.utils/src/dev/arcovia/mitigation/utils/dsl/selectors/conditional/DynamicVariableConditionalSelector.java similarity index 91% rename from bundles/dev.arcovia.mitigation.sat/src/dev/arcovia/mitigation/sat/dsl/selectors/conditional/DynamicVariableConditionalSelector.java rename to bundles/dev.arcovia.mitigation.utils/src/dev/arcovia/mitigation/utils/dsl/selectors/conditional/DynamicVariableConditionalSelector.java index a4a28394..e37abf94 100644 --- a/bundles/dev.arcovia.mitigation.sat/src/dev/arcovia/mitigation/sat/dsl/selectors/conditional/DynamicVariableConditionalSelector.java +++ b/bundles/dev.arcovia.mitigation.utils/src/dev/arcovia/mitigation/utils/dsl/selectors/conditional/DynamicVariableConditionalSelector.java @@ -1,7 +1,8 @@ -package dev.arcovia.mitigation.sat.dsl.selectors.conditional; +package dev.arcovia.mitigation.utils.dsl.selectors.conditional; + +import dev.arcovia.mitigation.utils.dsl.nodes.BranchNode; +import dev.arcovia.mitigation.utils.dsl.selectors.dynamic.DynamicDataSelector; -import dev.arcovia.mitigation.sat.dsl.nodes.BranchNode; -import dev.arcovia.mitigation.sat.dsl.selectors.dynamic.DynamicDataSelector; import org.dataflowanalysis.analysis.dsl.selectors.VariableConditionalSelector; import java.util.List; diff --git a/bundles/dev.arcovia.mitigation.sat/src/dev/arcovia/mitigation/sat/dsl/selectors/constant/ConstantDataCharacteristicListSelector.java b/bundles/dev.arcovia.mitigation.utils/src/dev/arcovia/mitigation/utils/dsl/selectors/constant/ConstantDataCharacteristicListSelector.java similarity index 88% rename from bundles/dev.arcovia.mitigation.sat/src/dev/arcovia/mitigation/sat/dsl/selectors/constant/ConstantDataCharacteristicListSelector.java rename to bundles/dev.arcovia.mitigation.utils/src/dev/arcovia/mitigation/utils/dsl/selectors/constant/ConstantDataCharacteristicListSelector.java index 1d0b1894..0e24c478 100644 --- a/bundles/dev.arcovia.mitigation.sat/src/dev/arcovia/mitigation/sat/dsl/selectors/constant/ConstantDataCharacteristicListSelector.java +++ b/bundles/dev.arcovia.mitigation.utils/src/dev/arcovia/mitigation/utils/dsl/selectors/constant/ConstantDataCharacteristicListSelector.java @@ -1,11 +1,12 @@ -package dev.arcovia.mitigation.sat.dsl.selectors.constant; +package dev.arcovia.mitigation.utils.dsl.selectors.constant; -import dev.arcovia.mitigation.sat.dsl.nodes.BranchNode; -import dev.arcovia.mitigation.sat.dsl.nodes.ConjunctionNode; -import dev.arcovia.mitigation.sat.dsl.nodes.DisjunctionNode; import org.dataflowanalysis.analysis.dsl.selectors.DataCharacteristicListSelector; import org.dataflowanalysis.analysis.dsl.selectors.DataCharacteristicsSelector; +import dev.arcovia.mitigation.utils.dsl.nodes.BranchNode; +import dev.arcovia.mitigation.utils.dsl.nodes.ConjunctionNode; +import dev.arcovia.mitigation.utils.dsl.nodes.DisjunctionNode; + /** * Wraps a {@link DataCharacteristicListSelector} to add constant data characteristic literals to a {@link BranchNode}. * Handles inversion by creating conjunction or disjunction nodes and recursively adding literals for each data diff --git a/bundles/dev.arcovia.mitigation.sat/src/dev/arcovia/mitigation/sat/dsl/selectors/constant/ConstantDataCharacteristicSelector.java b/bundles/dev.arcovia.mitigation.utils/src/dev/arcovia/mitigation/utils/dsl/selectors/constant/ConstantDataCharacteristicSelector.java similarity index 92% rename from bundles/dev.arcovia.mitigation.sat/src/dev/arcovia/mitigation/sat/dsl/selectors/constant/ConstantDataCharacteristicSelector.java rename to bundles/dev.arcovia.mitigation.utils/src/dev/arcovia/mitigation/utils/dsl/selectors/constant/ConstantDataCharacteristicSelector.java index f300a59b..0f80656b 100644 --- a/bundles/dev.arcovia.mitigation.sat/src/dev/arcovia/mitigation/sat/dsl/selectors/constant/ConstantDataCharacteristicSelector.java +++ b/bundles/dev.arcovia.mitigation.utils/src/dev/arcovia/mitigation/utils/dsl/selectors/constant/ConstantDataCharacteristicSelector.java @@ -1,9 +1,10 @@ -package dev.arcovia.mitigation.sat.dsl.selectors.constant; +package dev.arcovia.mitigation.utils.dsl.selectors.constant; import dev.arcovia.mitigation.sat.IncomingDataLabel; import dev.arcovia.mitigation.sat.Label; -import dev.arcovia.mitigation.sat.dsl.nodes.BranchNode; -import dev.arcovia.mitigation.sat.dsl.nodes.LiteralNode; +import dev.arcovia.mitigation.utils.dsl.nodes.BranchNode; +import dev.arcovia.mitigation.utils.dsl.nodes.LiteralNode; + import org.dataflowanalysis.analysis.dsl.selectors.DataCharacteristicsSelector; /** diff --git a/bundles/dev.arcovia.mitigation.sat/src/dev/arcovia/mitigation/sat/dsl/selectors/constant/ConstantDataSelector.java b/bundles/dev.arcovia.mitigation.utils/src/dev/arcovia/mitigation/utils/dsl/selectors/constant/ConstantDataSelector.java similarity index 79% rename from bundles/dev.arcovia.mitigation.sat/src/dev/arcovia/mitigation/sat/dsl/selectors/constant/ConstantDataSelector.java rename to bundles/dev.arcovia.mitigation.utils/src/dev/arcovia/mitigation/utils/dsl/selectors/constant/ConstantDataSelector.java index c31d873c..7776cc66 100644 --- a/bundles/dev.arcovia.mitigation.sat/src/dev/arcovia/mitigation/sat/dsl/selectors/constant/ConstantDataSelector.java +++ b/bundles/dev.arcovia.mitigation.utils/src/dev/arcovia/mitigation/utils/dsl/selectors/constant/ConstantDataSelector.java @@ -1,6 +1,6 @@ -package dev.arcovia.mitigation.sat.dsl.selectors.constant; +package dev.arcovia.mitigation.utils.dsl.selectors.constant; -import dev.arcovia.mitigation.sat.dsl.nodes.BranchNode; +import dev.arcovia.mitigation.utils.dsl.nodes.BranchNode; /** * Represents a selector that adds constant data literals to a logical formula tree. diff --git a/bundles/dev.arcovia.mitigation.sat/src/dev/arcovia/mitigation/sat/dsl/selectors/constant/ConstantVertexCharacteristicListSelector.java b/bundles/dev.arcovia.mitigation.utils/src/dev/arcovia/mitigation/utils/dsl/selectors/constant/ConstantVertexCharacteristicListSelector.java similarity index 87% rename from bundles/dev.arcovia.mitigation.sat/src/dev/arcovia/mitigation/sat/dsl/selectors/constant/ConstantVertexCharacteristicListSelector.java rename to bundles/dev.arcovia.mitigation.utils/src/dev/arcovia/mitigation/utils/dsl/selectors/constant/ConstantVertexCharacteristicListSelector.java index 2cfc026a..535fb063 100644 --- a/bundles/dev.arcovia.mitigation.sat/src/dev/arcovia/mitigation/sat/dsl/selectors/constant/ConstantVertexCharacteristicListSelector.java +++ b/bundles/dev.arcovia.mitigation.utils/src/dev/arcovia/mitigation/utils/dsl/selectors/constant/ConstantVertexCharacteristicListSelector.java @@ -1,11 +1,12 @@ -package dev.arcovia.mitigation.sat.dsl.selectors.constant; +package dev.arcovia.mitigation.utils.dsl.selectors.constant; -import dev.arcovia.mitigation.sat.dsl.nodes.BranchNode; -import dev.arcovia.mitigation.sat.dsl.nodes.ConjunctionNode; -import dev.arcovia.mitigation.sat.dsl.nodes.DisjunctionNode; import org.dataflowanalysis.analysis.dsl.selectors.VertexCharacteristicsListSelector; import org.dataflowanalysis.analysis.dsl.selectors.VertexCharacteristicsSelector; +import dev.arcovia.mitigation.utils.dsl.nodes.BranchNode; +import dev.arcovia.mitigation.utils.dsl.nodes.ConjunctionNode; +import dev.arcovia.mitigation.utils.dsl.nodes.DisjunctionNode; + /** * Wraps a {@link VertexCharacteristicsListSelector} to add constant vertex characteristic literals to a * {@link BranchNode}. Handles inversion by creating conjunction or disjunction nodes and recursively adding literals diff --git a/bundles/dev.arcovia.mitigation.sat/src/dev/arcovia/mitigation/sat/dsl/selectors/constant/ConstantVertexCharacteristicSelector.java b/bundles/dev.arcovia.mitigation.utils/src/dev/arcovia/mitigation/utils/dsl/selectors/constant/ConstantVertexCharacteristicSelector.java similarity index 92% rename from bundles/dev.arcovia.mitigation.sat/src/dev/arcovia/mitigation/sat/dsl/selectors/constant/ConstantVertexCharacteristicSelector.java rename to bundles/dev.arcovia.mitigation.utils/src/dev/arcovia/mitigation/utils/dsl/selectors/constant/ConstantVertexCharacteristicSelector.java index 54f5cee6..870d33b0 100644 --- a/bundles/dev.arcovia.mitigation.sat/src/dev/arcovia/mitigation/sat/dsl/selectors/constant/ConstantVertexCharacteristicSelector.java +++ b/bundles/dev.arcovia.mitigation.utils/src/dev/arcovia/mitigation/utils/dsl/selectors/constant/ConstantVertexCharacteristicSelector.java @@ -1,9 +1,10 @@ -package dev.arcovia.mitigation.sat.dsl.selectors.constant; +package dev.arcovia.mitigation.utils.dsl.selectors.constant; import dev.arcovia.mitigation.sat.Label; import dev.arcovia.mitigation.sat.NodeLabel; -import dev.arcovia.mitigation.sat.dsl.nodes.BranchNode; -import dev.arcovia.mitigation.sat.dsl.nodes.LiteralNode; +import dev.arcovia.mitigation.utils.dsl.nodes.BranchNode; +import dev.arcovia.mitigation.utils.dsl.nodes.LiteralNode; + import org.dataflowanalysis.analysis.dsl.selectors.VertexCharacteristicsSelector; /** diff --git a/bundles/dev.arcovia.mitigation.sat/src/dev/arcovia/mitigation/sat/dsl/selectors/dynamic/DynamicDataCharacteristicSelector.java b/bundles/dev.arcovia.mitigation.utils/src/dev/arcovia/mitigation/utils/dsl/selectors/dynamic/DynamicDataCharacteristicSelector.java similarity index 94% rename from bundles/dev.arcovia.mitigation.sat/src/dev/arcovia/mitigation/sat/dsl/selectors/dynamic/DynamicDataCharacteristicSelector.java rename to bundles/dev.arcovia.mitigation.utils/src/dev/arcovia/mitigation/utils/dsl/selectors/dynamic/DynamicDataCharacteristicSelector.java index d541fd7a..58d90a7b 100644 --- a/bundles/dev.arcovia.mitigation.sat/src/dev/arcovia/mitigation/sat/dsl/selectors/dynamic/DynamicDataCharacteristicSelector.java +++ b/bundles/dev.arcovia.mitigation.utils/src/dev/arcovia/mitigation/utils/dsl/selectors/dynamic/DynamicDataCharacteristicSelector.java @@ -1,8 +1,9 @@ -package dev.arcovia.mitigation.sat.dsl.selectors.dynamic; +package dev.arcovia.mitigation.utils.dsl.selectors.dynamic; import dev.arcovia.mitigation.sat.Label; -import dev.arcovia.mitigation.sat.dsl.nodes.BranchNode; -import dev.arcovia.mitigation.sat.dsl.selectors.constant.ConstantDataCharacteristicListSelector; +import dev.arcovia.mitigation.utils.dsl.nodes.BranchNode; +import dev.arcovia.mitigation.utils.dsl.selectors.constant.ConstantDataCharacteristicListSelector; + import org.dataflowanalysis.analysis.dsl.selectors.CharacteristicsSelectorData; import org.dataflowanalysis.analysis.dsl.selectors.DataCharacteristicListSelector; import org.dataflowanalysis.analysis.dsl.selectors.DataCharacteristicsSelector; diff --git a/bundles/dev.arcovia.mitigation.sat/src/dev/arcovia/mitigation/sat/dsl/selectors/dynamic/DynamicDataSelector.java b/bundles/dev.arcovia.mitigation.utils/src/dev/arcovia/mitigation/utils/dsl/selectors/dynamic/DynamicDataSelector.java similarity index 88% rename from bundles/dev.arcovia.mitigation.sat/src/dev/arcovia/mitigation/sat/dsl/selectors/dynamic/DynamicDataSelector.java rename to bundles/dev.arcovia.mitigation.utils/src/dev/arcovia/mitigation/utils/dsl/selectors/dynamic/DynamicDataSelector.java index 3339fdc7..3f3d887e 100644 --- a/bundles/dev.arcovia.mitigation.sat/src/dev/arcovia/mitigation/sat/dsl/selectors/dynamic/DynamicDataSelector.java +++ b/bundles/dev.arcovia.mitigation.utils/src/dev/arcovia/mitigation/utils/dsl/selectors/dynamic/DynamicDataSelector.java @@ -1,7 +1,7 @@ -package dev.arcovia.mitigation.sat.dsl.selectors.dynamic; +package dev.arcovia.mitigation.utils.dsl.selectors.dynamic; import dev.arcovia.mitigation.sat.Label; -import dev.arcovia.mitigation.sat.dsl.nodes.BranchNode; +import dev.arcovia.mitigation.utils.dsl.nodes.BranchNode; import java.util.List; import java.util.Map; diff --git a/bundles/dev.arcovia.mitigation.sat/src/dev/arcovia/mitigation/sat/dsl/selectors/dynamic/DynamicVertexCharacteristicSelector.java b/bundles/dev.arcovia.mitigation.utils/src/dev/arcovia/mitigation/utils/dsl/selectors/dynamic/DynamicVertexCharacteristicSelector.java similarity index 94% rename from bundles/dev.arcovia.mitigation.sat/src/dev/arcovia/mitigation/sat/dsl/selectors/dynamic/DynamicVertexCharacteristicSelector.java rename to bundles/dev.arcovia.mitigation.utils/src/dev/arcovia/mitigation/utils/dsl/selectors/dynamic/DynamicVertexCharacteristicSelector.java index 9ea9b46a..a1462166 100644 --- a/bundles/dev.arcovia.mitigation.sat/src/dev/arcovia/mitigation/sat/dsl/selectors/dynamic/DynamicVertexCharacteristicSelector.java +++ b/bundles/dev.arcovia.mitigation.utils/src/dev/arcovia/mitigation/utils/dsl/selectors/dynamic/DynamicVertexCharacteristicSelector.java @@ -1,8 +1,9 @@ -package dev.arcovia.mitigation.sat.dsl.selectors.dynamic; +package dev.arcovia.mitigation.utils.dsl.selectors.dynamic; import dev.arcovia.mitigation.sat.Label; -import dev.arcovia.mitigation.sat.dsl.nodes.BranchNode; -import dev.arcovia.mitigation.sat.dsl.selectors.constant.ConstantVertexCharacteristicListSelector; +import dev.arcovia.mitigation.utils.dsl.nodes.BranchNode; +import dev.arcovia.mitigation.utils.dsl.selectors.constant.ConstantVertexCharacteristicListSelector; + import org.dataflowanalysis.analysis.dsl.selectors.CharacteristicsSelectorData; import org.dataflowanalysis.analysis.dsl.selectors.VertexCharacteristicsListSelector; import org.dataflowanalysis.analysis.dsl.selectors.VertexCharacteristicsSelector; diff --git a/tests/dev.arcovia.mitigation.ilp.tests/.project b/tests/dev.arcovia.mitigation.ilp.tests/.project new file mode 100644 index 00000000..aff8145c --- /dev/null +++ b/tests/dev.arcovia.mitigation.ilp.tests/.project @@ -0,0 +1,28 @@ + + + dev.arcovia.mitigation.ilp.tests + + + + + + org.eclipse.jdt.core.javabuilder + + + + + org.eclipse.pde.ManifestBuilder + + + + + org.eclipse.pde.SchemaBuilder + + + + + + org.eclipse.jdt.core.javanature + org.eclipse.pde.PluginNature + + diff --git a/tests/dev.arcovia.mitigation.ranking.tests/meassurement_results.txt b/tests/dev.arcovia.mitigation.ranking.tests/meassurement_results.txt index 45776ae3..9263a60a 100644 --- a/tests/dev.arcovia.mitigation.ranking.tests/meassurement_results.txt +++ b/tests/dev.arcovia.mitigation.ranking.tests/meassurement_results.txt @@ -2026,3 +2026,20 @@ RAW: 1215.0 RAW: 1348.0 RAW: 1144.0 jferrater_INCREASING: 1279.375 +RAW: 742.0 +RAW: 123.0 +RAW: 100.0 +RAW: 101.0 +RAW: 98.0 +RAW: 111.0 +RAW: 101.0 +RAW: 90.0 +RAW: 96.0 +RAW: 85.0 +RAW: 86.0 +RAW: 88.0 +RAW: 179818.0 +RAW: 574417.0 +RAW: 915690.0 +RAW: 1246313.0 +RAW: 1638897.0 diff --git a/tests/dev.arcovia.mitigation.sat.tests/META-INF/MANIFEST.MF b/tests/dev.arcovia.mitigation.sat.tests/META-INF/MANIFEST.MF index 35152f93..6885e981 100644 --- a/tests/dev.arcovia.mitigation.sat.tests/META-INF/MANIFEST.MF +++ b/tests/dev.arcovia.mitigation.sat.tests/META-INF/MANIFEST.MF @@ -3,15 +3,16 @@ Bundle-ManifestVersion: 2 Bundle-Name: SatTests Bundle-SymbolicName: dev.arcovia.mitigation.sat.tests Bundle-Version: 1.0.0.qualifier +Export-Package: dev.arcovia.mitigation.sat.tests Import-Package: org.junit.jupiter.api;version="5.8.1", org.junit.jupiter.api.function;version="5.8.1", org.junit.jupiter.params;version="5.8.1", org.junit.jupiter.params.provider;version="5.8.1" Require-Bundle: org.dataflowanalysis.converter, org.sat4j.core;bundle-version="2.3.6", - org.dataflowanalysis.dfd.datadictionary;bundle-version="2.0.0", - org.dataflowanalysis.dfd.dataflowdiagram;bundle-version="2.0.0", - dev.arcovia.mitigation.sat;bundle-version="1.0.0", + org.dataflowanalysis.dfd.datadictionary, + org.dataflowanalysis.dfd.dataflowdiagram, + dev.arcovia.mitigation.sat, org.dataflowanalysis.examplemodels, org.dataflowanalysis.analysis, org.apache.log4j, diff --git a/tests/dev.arcovia.mitigation.utils.tests/.classpath b/tests/dev.arcovia.mitigation.utils.tests/.classpath new file mode 100644 index 00000000..675a5e29 --- /dev/null +++ b/tests/dev.arcovia.mitigation.utils.tests/.classpath @@ -0,0 +1,11 @@ + + + + + + + + + + + diff --git a/tests/dev.arcovia.mitigation.utils.tests/.project b/tests/dev.arcovia.mitigation.utils.tests/.project new file mode 100644 index 00000000..3e78a696 --- /dev/null +++ b/tests/dev.arcovia.mitigation.utils.tests/.project @@ -0,0 +1,28 @@ + + + dev.arcovia.mitigation.utils.tests + + + + + + org.eclipse.jdt.core.javabuilder + + + + + org.eclipse.pde.ManifestBuilder + + + + + org.eclipse.pde.SchemaBuilder + + + + + + org.eclipse.pde.PluginNature + org.eclipse.jdt.core.javanature + + diff --git a/tests/dev.arcovia.mitigation.utils.tests/.settings/org.eclipse.jdt.core.prefs b/tests/dev.arcovia.mitigation.utils.tests/.settings/org.eclipse.jdt.core.prefs new file mode 100644 index 00000000..62ef3488 --- /dev/null +++ b/tests/dev.arcovia.mitigation.utils.tests/.settings/org.eclipse.jdt.core.prefs @@ -0,0 +1,9 @@ +eclipse.preferences.version=1 +org.eclipse.jdt.core.compiler.codegen.targetPlatform=17 +org.eclipse.jdt.core.compiler.compliance=17 +org.eclipse.jdt.core.compiler.problem.assertIdentifier=error +org.eclipse.jdt.core.compiler.problem.enablePreviewFeatures=disabled +org.eclipse.jdt.core.compiler.problem.enumIdentifier=error +org.eclipse.jdt.core.compiler.problem.reportPreviewFeatures=warning +org.eclipse.jdt.core.compiler.release=enabled +org.eclipse.jdt.core.compiler.source=17 diff --git a/tests/dev.arcovia.mitigation.utils.tests/META-INF/MANIFEST.MF b/tests/dev.arcovia.mitigation.utils.tests/META-INF/MANIFEST.MF new file mode 100644 index 00000000..294826c3 --- /dev/null +++ b/tests/dev.arcovia.mitigation.utils.tests/META-INF/MANIFEST.MF @@ -0,0 +1,21 @@ +Manifest-Version: 1.0 +Bundle-ManifestVersion: 2 +Bundle-Name: Tests +Bundle-SymbolicName: dev.arcovia.mitigation.utils.tests +Bundle-Version: 1.0.0.qualifier +Import-Package: org.apache.log4j;version="1.2.24", + org.junit.jupiter.api;version="5.9.1", + org.junit.jupiter.params;version="5.9.2", + org.junit.jupiter.params.provider;version="5.9.2" +Require-Bundle: dev.arcovia.mitigation.sat;bundle-version="1.0.0", + dev.arcovia.mitigation.utils;bundle-version="1.0.0", + org.dataflowanalysis.analysis;bundle-version="4.0.0", + org.dataflowanalysis.converter;bundle-version="4.0.0", + tools.mdsd.library.standalone.initialization, + org.dataflowanalysis.examplemodels;bundle-version="4.0.0", + org.dataflowanalysis.dfd.datadictionary;bundle-version="4.0.0", + org.dataflowanalysis.analysis.dfd;bundle-version="4.0.0", + org.dataflowanalysis.dfd.dataflowdiagram;bundle-version="4.0.0", + dev.arcovia.mitigation.sat.tests;bundle-version="1.0.0" +Automatic-Module-Name: dev.arcovia.mitigation.utils.tests +Bundle-RequiredExecutionEnvironment: JavaSE-17 diff --git a/tests/dev.arcovia.mitigation.utils.tests/build.properties b/tests/dev.arcovia.mitigation.utils.tests/build.properties new file mode 100644 index 00000000..34d2e4d2 --- /dev/null +++ b/tests/dev.arcovia.mitigation.utils.tests/build.properties @@ -0,0 +1,4 @@ +source.. = src/ +output.. = bin/ +bin.includes = META-INF/,\ + . diff --git a/tests/dev.arcovia.mitigation.sat.tests/src/dev/arcovia/mitigation/sat/dsl/tests/DemoTest.java b/tests/dev.arcovia.mitigation.utils.tests/src/dev/arcovia/mitigation/utils/dsl/tests/DemoTest.java similarity index 95% rename from tests/dev.arcovia.mitigation.sat.tests/src/dev/arcovia/mitigation/sat/dsl/tests/DemoTest.java rename to tests/dev.arcovia.mitigation.utils.tests/src/dev/arcovia/mitigation/utils/dsl/tests/DemoTest.java index ea507a68..eb5ac61b 100644 --- a/tests/dev.arcovia.mitigation.sat.tests/src/dev/arcovia/mitigation/sat/dsl/tests/DemoTest.java +++ b/tests/dev.arcovia.mitigation.utils.tests/src/dev/arcovia/mitigation/utils/dsl/tests/DemoTest.java @@ -1,20 +1,20 @@ -package dev.arcovia.mitigation.sat.dsl.tests; +package dev.arcovia.mitigation.utils.dsl.tests; import dev.arcovia.mitigation.sat.Label; import dev.arcovia.mitigation.sat.Literal; import dev.arcovia.mitigation.sat.NodeLabel; -import dev.arcovia.mitigation.sat.dsl.BaseFormula; -import dev.arcovia.mitigation.sat.dsl.CNFTranslation; -import dev.arcovia.mitigation.sat.dsl.tests.utility.CNFUtil; +import dev.arcovia.mitigation.utils.dsl.BaseFormula; +import dev.arcovia.mitigation.utils.dsl.CNFTranslation; +import dev.arcovia.mitigation.utils.dsl.tests.utility.CNFUtil; +import dev.arcovia.mitigation.utils.dsl.tests.utility.DataLoader; + import org.dataflowanalysis.analysis.dsl.AnalysisConstraint; import org.dataflowanalysis.analysis.dsl.constraint.ConstraintDSL; import org.dataflowanalysis.analysis.dsl.selectors.Intersection; import org.dataflowanalysis.analysis.dsl.variable.ConstraintVariable; import org.dataflowanalysis.converter.dfd2web.DataFlowDiagramAndDictionary; import org.junit.jupiter.api.Test; -import dev.arcovia.mitigation.sat.dsl.tests.utility.DataLoader; import tools.mdsd.library.standalone.initialization.StandaloneInitializationException; - import org.apache.log4j.Logger; import java.nio.file.Paths; diff --git a/tests/dev.arcovia.mitigation.sat.tests/src/dev/arcovia/mitigation/sat/dsl/tests/PerformanceTest.java b/tests/dev.arcovia.mitigation.utils.tests/src/dev/arcovia/mitigation/utils/dsl/tests/PerformanceTest.java similarity index 95% rename from tests/dev.arcovia.mitigation.sat.tests/src/dev/arcovia/mitigation/sat/dsl/tests/PerformanceTest.java rename to tests/dev.arcovia.mitigation.utils.tests/src/dev/arcovia/mitigation/utils/dsl/tests/PerformanceTest.java index e331eda7..b5fac5e4 100644 --- a/tests/dev.arcovia.mitigation.sat.tests/src/dev/arcovia/mitigation/sat/dsl/tests/PerformanceTest.java +++ b/tests/dev.arcovia.mitigation.utils.tests/src/dev/arcovia/mitigation/utils/dsl/tests/PerformanceTest.java @@ -1,7 +1,8 @@ -package dev.arcovia.mitigation.sat.dsl.tests; +package dev.arcovia.mitigation.utils.dsl.tests; + +import dev.arcovia.mitigation.utils.dsl.CNFTranslation; +import dev.arcovia.mitigation.utils.dsl.tests.utility.DataLoader; -import dev.arcovia.mitigation.sat.dsl.CNFTranslation; -import dev.arcovia.mitigation.sat.dsl.tests.utility.DataLoader; import org.apache.log4j.Logger; import org.dataflowanalysis.analysis.dsl.AnalysisConstraint; import org.dataflowanalysis.analysis.dsl.constraint.ConstraintDSL; diff --git a/tests/dev.arcovia.mitigation.sat.tests/src/dev/arcovia/mitigation/sat/dsl/tests/StructureTest.java b/tests/dev.arcovia.mitigation.utils.tests/src/dev/arcovia/mitigation/utils/dsl/tests/StructureTest.java similarity index 96% rename from tests/dev.arcovia.mitigation.sat.tests/src/dev/arcovia/mitigation/sat/dsl/tests/StructureTest.java rename to tests/dev.arcovia.mitigation.utils.tests/src/dev/arcovia/mitigation/utils/dsl/tests/StructureTest.java index 0fc11924..a584bda4 100644 --- a/tests/dev.arcovia.mitigation.sat.tests/src/dev/arcovia/mitigation/sat/dsl/tests/StructureTest.java +++ b/tests/dev.arcovia.mitigation.utils.tests/src/dev/arcovia/mitigation/utils/dsl/tests/StructureTest.java @@ -1,8 +1,9 @@ -package dev.arcovia.mitigation.sat.dsl.tests; +package dev.arcovia.mitigation.utils.dsl.tests; + +import dev.arcovia.mitigation.utils.dsl.CNFTranslation; +import dev.arcovia.mitigation.utils.dsl.tests.utility.DataLoader; +import dev.arcovia.mitigation.utils.dsl.tests.utility.ReadabilityTestResult; -import dev.arcovia.mitigation.sat.dsl.CNFTranslation; -import dev.arcovia.mitigation.sat.dsl.tests.utility.DataLoader; -import dev.arcovia.mitigation.sat.dsl.tests.utility.ReadabilityTestResult; import org.apache.log4j.Logger; import org.dataflowanalysis.analysis.dsl.AnalysisConstraint; import org.dataflowanalysis.analysis.dsl.constraint.ConstraintDSL; diff --git a/tests/dev.arcovia.mitigation.sat.tests/src/dev/arcovia/mitigation/sat/dsl/tests/TUHHTestDSL.java b/tests/dev.arcovia.mitigation.utils.tests/src/dev/arcovia/mitigation/utils/dsl/tests/TUHHTestDSL.java similarity index 95% rename from tests/dev.arcovia.mitigation.sat.tests/src/dev/arcovia/mitigation/sat/dsl/tests/TUHHTestDSL.java rename to tests/dev.arcovia.mitigation.utils.tests/src/dev/arcovia/mitigation/utils/dsl/tests/TUHHTestDSL.java index 5dc42c76..cb40f022 100644 --- a/tests/dev.arcovia.mitigation.sat.tests/src/dev/arcovia/mitigation/sat/dsl/tests/TUHHTestDSL.java +++ b/tests/dev.arcovia.mitigation.utils.tests/src/dev/arcovia/mitigation/utils/dsl/tests/TUHHTestDSL.java @@ -1,9 +1,10 @@ -package dev.arcovia.mitigation.sat.dsl.tests; +package dev.arcovia.mitigation.utils.dsl.tests; import dev.arcovia.mitigation.sat.*; -import dev.arcovia.mitigation.sat.dsl.CNFTranslation; -import dev.arcovia.mitigation.sat.dsl.tests.utility.CNFUtil; +import dev.arcovia.mitigation.utils.dsl.CNFTranslation; import dev.arcovia.mitigation.sat.tests.TUHHTest; +import dev.arcovia.mitigation.utils.dsl.tests.utility.CNFUtil; + import org.apache.log4j.Logger; import org.dataflowanalysis.analysis.dsl.AnalysisConstraint; import org.dataflowanalysis.analysis.dsl.constraint.ConstraintDSL; diff --git a/tests/dev.arcovia.mitigation.sat.tests/src/dev/arcovia/mitigation/sat/dsl/tests/VerificationTest.java b/tests/dev.arcovia.mitigation.utils.tests/src/dev/arcovia/mitigation/utils/dsl/tests/VerificationTest.java similarity index 97% rename from tests/dev.arcovia.mitigation.sat.tests/src/dev/arcovia/mitigation/sat/dsl/tests/VerificationTest.java rename to tests/dev.arcovia.mitigation.utils.tests/src/dev/arcovia/mitigation/utils/dsl/tests/VerificationTest.java index f5c68354..5b67c085 100644 --- a/tests/dev.arcovia.mitigation.sat.tests/src/dev/arcovia/mitigation/sat/dsl/tests/VerificationTest.java +++ b/tests/dev.arcovia.mitigation.utils.tests/src/dev/arcovia/mitigation/utils/dsl/tests/VerificationTest.java @@ -1,8 +1,9 @@ -package dev.arcovia.mitigation.sat.dsl.tests; +package dev.arcovia.mitigation.utils.dsl.tests; import dev.arcovia.mitigation.sat.*; -import dev.arcovia.mitigation.sat.dsl.CNFTranslation; -import dev.arcovia.mitigation.sat.dsl.tests.utility.DataLoader; +import dev.arcovia.mitigation.utils.dsl.CNFTranslation; +import dev.arcovia.mitigation.utils.dsl.tests.utility.DataLoader; + import org.apache.log4j.Logger; import org.dataflowanalysis.analysis.core.AbstractTransposeFlowGraph; import org.dataflowanalysis.examplemodels.results.ExpectedCharacteristic; diff --git a/tests/dev.arcovia.mitigation.sat.tests/src/dev/arcovia/mitigation/sat/dsl/tests/dummy/DInData.java b/tests/dev.arcovia.mitigation.utils.tests/src/dev/arcovia/mitigation/utils/dsl/tests/dummy/DInData.java similarity index 85% rename from tests/dev.arcovia.mitigation.sat.tests/src/dev/arcovia/mitigation/sat/dsl/tests/dummy/DInData.java rename to tests/dev.arcovia.mitigation.utils.tests/src/dev/arcovia/mitigation/utils/dsl/tests/dummy/DInData.java index 10b244d2..35fa215d 100644 --- a/tests/dev.arcovia.mitigation.sat.tests/src/dev/arcovia/mitigation/sat/dsl/tests/dummy/DInData.java +++ b/tests/dev.arcovia.mitigation.utils.tests/src/dev/arcovia/mitigation/utils/dsl/tests/dummy/DInData.java @@ -1,7 +1,7 @@ -package dev.arcovia.mitigation.sat.dsl.tests.dummy; +package dev.arcovia.mitigation.utils.dsl.tests.dummy; import dev.arcovia.mitigation.sat.LabelCategory; -import dev.arcovia.mitigation.sat.dsl.tests.utility.CNFUtil; +import dev.arcovia.mitigation.utils.dsl.tests.utility.CNFUtil; /** * A dummy representation of incoming data for testing CNF generation. diff --git a/tests/dev.arcovia.mitigation.sat.tests/src/dev/arcovia/mitigation/sat/dsl/tests/dummy/DNode.java b/tests/dev.arcovia.mitigation.utils.tests/src/dev/arcovia/mitigation/utils/dsl/tests/dummy/DNode.java similarity index 84% rename from tests/dev.arcovia.mitigation.sat.tests/src/dev/arcovia/mitigation/sat/dsl/tests/dummy/DNode.java rename to tests/dev.arcovia.mitigation.utils.tests/src/dev/arcovia/mitigation/utils/dsl/tests/dummy/DNode.java index bf39dc42..bb79bdfb 100644 --- a/tests/dev.arcovia.mitigation.sat.tests/src/dev/arcovia/mitigation/sat/dsl/tests/dummy/DNode.java +++ b/tests/dev.arcovia.mitigation.utils.tests/src/dev/arcovia/mitigation/utils/dsl/tests/dummy/DNode.java @@ -1,7 +1,7 @@ -package dev.arcovia.mitigation.sat.dsl.tests.dummy; +package dev.arcovia.mitigation.utils.dsl.tests.dummy; import dev.arcovia.mitigation.sat.LabelCategory; -import dev.arcovia.mitigation.sat.dsl.tests.utility.CNFUtil; +import dev.arcovia.mitigation.utils.dsl.tests.utility.CNFUtil; /** * A dummy representation of a node for testing CNF generation. diff --git a/tests/dev.arcovia.mitigation.sat.tests/src/dev/arcovia/mitigation/sat/dsl/tests/dummy/DOutData.java b/tests/dev.arcovia.mitigation.utils.tests/src/dev/arcovia/mitigation/utils/dsl/tests/dummy/DOutData.java similarity index 69% rename from tests/dev.arcovia.mitigation.sat.tests/src/dev/arcovia/mitigation/sat/dsl/tests/dummy/DOutData.java rename to tests/dev.arcovia.mitigation.utils.tests/src/dev/arcovia/mitigation/utils/dsl/tests/dummy/DOutData.java index aeaf911d..30398d7d 100644 --- a/tests/dev.arcovia.mitigation.sat.tests/src/dev/arcovia/mitigation/sat/dsl/tests/dummy/DOutData.java +++ b/tests/dev.arcovia.mitigation.utils.tests/src/dev/arcovia/mitigation/utils/dsl/tests/dummy/DOutData.java @@ -1,7 +1,7 @@ -package dev.arcovia.mitigation.sat.dsl.tests.dummy; +package dev.arcovia.mitigation.utils.dsl.tests.dummy; import dev.arcovia.mitigation.sat.LabelCategory; -import dev.arcovia.mitigation.sat.dsl.tests.utility.CNFUtil; +import dev.arcovia.mitigation.utils.dsl.tests.utility.CNFUtil; public record DOutData(boolean positive, String type, String value) { public DOutData(boolean positive) { diff --git a/tests/dev.arcovia.mitigation.sat.tests/src/dev/arcovia/mitigation/sat/dsl/tests/unit/ConjunctionTest.java b/tests/dev.arcovia.mitigation.utils.tests/src/dev/arcovia/mitigation/utils/dsl/tests/unit/ConjunctionTest.java similarity index 95% rename from tests/dev.arcovia.mitigation.sat.tests/src/dev/arcovia/mitigation/sat/dsl/tests/unit/ConjunctionTest.java rename to tests/dev.arcovia.mitigation.utils.tests/src/dev/arcovia/mitigation/utils/dsl/tests/unit/ConjunctionTest.java index 48165b1b..90d95d66 100644 --- a/tests/dev.arcovia.mitigation.sat.tests/src/dev/arcovia/mitigation/sat/dsl/tests/unit/ConjunctionTest.java +++ b/tests/dev.arcovia.mitigation.utils.tests/src/dev/arcovia/mitigation/utils/dsl/tests/unit/ConjunctionTest.java @@ -1,10 +1,11 @@ -package dev.arcovia.mitigation.sat.dsl.tests.unit; +package dev.arcovia.mitigation.utils.dsl.tests.unit; import dev.arcovia.mitigation.sat.Constraint; -import dev.arcovia.mitigation.sat.dsl.CNFTranslation; -import dev.arcovia.mitigation.sat.dsl.tests.utility.CNFUtil; -import dev.arcovia.mitigation.sat.dsl.tests.dummy.DInData; -import dev.arcovia.mitigation.sat.dsl.tests.dummy.DNode; +import dev.arcovia.mitigation.utils.dsl.CNFTranslation; +import dev.arcovia.mitigation.utils.dsl.tests.dummy.DInData; +import dev.arcovia.mitigation.utils.dsl.tests.dummy.DNode; +import dev.arcovia.mitigation.utils.dsl.tests.utility.CNFUtil; + import org.apache.log4j.Logger; import org.dataflowanalysis.analysis.dsl.AnalysisConstraint; import org.dataflowanalysis.analysis.dsl.constraint.ConstraintDSL; diff --git a/tests/dev.arcovia.mitigation.sat.tests/src/dev/arcovia/mitigation/sat/dsl/tests/unit/DisjunctionTest.java b/tests/dev.arcovia.mitigation.utils.tests/src/dev/arcovia/mitigation/utils/dsl/tests/unit/DisjunctionTest.java similarity index 95% rename from tests/dev.arcovia.mitigation.sat.tests/src/dev/arcovia/mitigation/sat/dsl/tests/unit/DisjunctionTest.java rename to tests/dev.arcovia.mitigation.utils.tests/src/dev/arcovia/mitigation/utils/dsl/tests/unit/DisjunctionTest.java index 61922008..20e4436b 100644 --- a/tests/dev.arcovia.mitigation.sat.tests/src/dev/arcovia/mitigation/sat/dsl/tests/unit/DisjunctionTest.java +++ b/tests/dev.arcovia.mitigation.utils.tests/src/dev/arcovia/mitigation/utils/dsl/tests/unit/DisjunctionTest.java @@ -1,10 +1,11 @@ -package dev.arcovia.mitigation.sat.dsl.tests.unit; +package dev.arcovia.mitigation.utils.dsl.tests.unit; import dev.arcovia.mitigation.sat.Constraint; -import dev.arcovia.mitigation.sat.dsl.CNFTranslation; -import dev.arcovia.mitigation.sat.dsl.tests.utility.CNFUtil; -import dev.arcovia.mitigation.sat.dsl.tests.dummy.DInData; -import dev.arcovia.mitigation.sat.dsl.tests.dummy.DNode; +import dev.arcovia.mitigation.utils.dsl.CNFTranslation; +import dev.arcovia.mitigation.utils.dsl.tests.dummy.DInData; +import dev.arcovia.mitigation.utils.dsl.tests.dummy.DNode; +import dev.arcovia.mitigation.utils.dsl.tests.utility.CNFUtil; + import org.apache.log4j.Logger; import org.dataflowanalysis.analysis.dsl.AnalysisConstraint; import org.dataflowanalysis.analysis.dsl.constraint.ConstraintDSL; diff --git a/tests/dev.arcovia.mitigation.sat.tests/src/dev/arcovia/mitigation/sat/dsl/tests/unit/VariableTest.java b/tests/dev.arcovia.mitigation.utils.tests/src/dev/arcovia/mitigation/utils/dsl/tests/unit/VariableTest.java similarity index 96% rename from tests/dev.arcovia.mitigation.sat.tests/src/dev/arcovia/mitigation/sat/dsl/tests/unit/VariableTest.java rename to tests/dev.arcovia.mitigation.utils.tests/src/dev/arcovia/mitigation/utils/dsl/tests/unit/VariableTest.java index 8492cf5d..1b3a6a88 100644 --- a/tests/dev.arcovia.mitigation.sat.tests/src/dev/arcovia/mitigation/sat/dsl/tests/unit/VariableTest.java +++ b/tests/dev.arcovia.mitigation.utils.tests/src/dev/arcovia/mitigation/utils/dsl/tests/unit/VariableTest.java @@ -1,11 +1,12 @@ -package dev.arcovia.mitigation.sat.dsl.tests.unit; +package dev.arcovia.mitigation.utils.dsl.tests.unit; import dev.arcovia.mitigation.sat.Constraint; import dev.arcovia.mitigation.sat.LabelCategory; -import dev.arcovia.mitigation.sat.dsl.CNFTranslation; -import dev.arcovia.mitigation.sat.dsl.tests.utility.CNFUtil; -import dev.arcovia.mitigation.sat.dsl.tests.dummy.DInData; -import dev.arcovia.mitigation.sat.dsl.tests.dummy.DNode; +import dev.arcovia.mitigation.utils.dsl.CNFTranslation; +import dev.arcovia.mitigation.utils.dsl.tests.dummy.DInData; +import dev.arcovia.mitigation.utils.dsl.tests.dummy.DNode; +import dev.arcovia.mitigation.utils.dsl.tests.utility.CNFUtil; + import org.apache.log4j.Logger; import org.dataflowanalysis.analysis.dsl.AnalysisConstraint; import org.dataflowanalysis.analysis.dsl.constraint.ConstraintDSL; diff --git a/tests/dev.arcovia.mitigation.sat.tests/src/dev/arcovia/mitigation/sat/dsl/tests/utility/CNFUtil.java b/tests/dev.arcovia.mitigation.utils.tests/src/dev/arcovia/mitigation/utils/dsl/tests/utility/CNFUtil.java similarity index 96% rename from tests/dev.arcovia.mitigation.sat.tests/src/dev/arcovia/mitigation/sat/dsl/tests/utility/CNFUtil.java rename to tests/dev.arcovia.mitigation.utils.tests/src/dev/arcovia/mitigation/utils/dsl/tests/utility/CNFUtil.java index 30107048..f64e8b35 100644 --- a/tests/dev.arcovia.mitigation.sat.tests/src/dev/arcovia/mitigation/sat/dsl/tests/utility/CNFUtil.java +++ b/tests/dev.arcovia.mitigation.utils.tests/src/dev/arcovia/mitigation/utils/dsl/tests/utility/CNFUtil.java @@ -1,8 +1,9 @@ -package dev.arcovia.mitigation.sat.dsl.tests.utility; +package dev.arcovia.mitigation.utils.dsl.tests.utility; import dev.arcovia.mitigation.sat.*; -import dev.arcovia.mitigation.sat.dsl.tests.dummy.DInData; -import dev.arcovia.mitigation.sat.dsl.tests.dummy.DNode; +import dev.arcovia.mitigation.utils.dsl.tests.dummy.DInData; +import dev.arcovia.mitigation.utils.dsl.tests.dummy.DNode; + import org.apache.log4j.Logger; import java.util.ArrayList; diff --git a/tests/dev.arcovia.mitigation.sat.tests/src/dev/arcovia/mitigation/sat/dsl/tests/utility/DataLoader.java b/tests/dev.arcovia.mitigation.utils.tests/src/dev/arcovia/mitigation/utils/dsl/tests/utility/DataLoader.java similarity index 98% rename from tests/dev.arcovia.mitigation.sat.tests/src/dev/arcovia/mitigation/sat/dsl/tests/utility/DataLoader.java rename to tests/dev.arcovia.mitigation.utils.tests/src/dev/arcovia/mitigation/utils/dsl/tests/utility/DataLoader.java index 13244c50..23a20f7b 100644 --- a/tests/dev.arcovia.mitigation.sat.tests/src/dev/arcovia/mitigation/sat/dsl/tests/utility/DataLoader.java +++ b/tests/dev.arcovia.mitigation.utils.tests/src/dev/arcovia/mitigation/utils/dsl/tests/utility/DataLoader.java @@ -1,4 +1,4 @@ -package dev.arcovia.mitigation.sat.dsl.tests.utility; +package dev.arcovia.mitigation.utils.dsl.tests.utility; import com.fasterxml.jackson.databind.ObjectMapper; import org.dataflowanalysis.converter.dfd2web.DataFlowDiagramAndDictionary; diff --git a/tests/dev.arcovia.mitigation.sat.tests/src/dev/arcovia/mitigation/sat/dsl/tests/utility/ReadabilityTestResult.java b/tests/dev.arcovia.mitigation.utils.tests/src/dev/arcovia/mitigation/utils/dsl/tests/utility/ReadabilityTestResult.java similarity index 89% rename from tests/dev.arcovia.mitigation.sat.tests/src/dev/arcovia/mitigation/sat/dsl/tests/utility/ReadabilityTestResult.java rename to tests/dev.arcovia.mitigation.utils.tests/src/dev/arcovia/mitigation/utils/dsl/tests/utility/ReadabilityTestResult.java index e450876c..59435358 100644 --- a/tests/dev.arcovia.mitigation.sat.tests/src/dev/arcovia/mitigation/sat/dsl/tests/utility/ReadabilityTestResult.java +++ b/tests/dev.arcovia.mitigation.utils.tests/src/dev/arcovia/mitigation/utils/dsl/tests/utility/ReadabilityTestResult.java @@ -1,4 +1,4 @@ -package dev.arcovia.mitigation.sat.dsl.tests.utility; +package dev.arcovia.mitigation.utils.dsl.tests.utility; /** * Represents the results of a readability test for CNF formulas. diff --git a/tests/pom.xml b/tests/pom.xml index de6e77f7..b17999e6 100644 --- a/tests/pom.xml +++ b/tests/pom.xml @@ -15,6 +15,7 @@ dev.arcovia.mitigation.ranking.tests dev.arcovia.mitigation.sat.tests + dev.arcovia.mitigation.utils.tests From d180c4e572672fff3d83a9582f196722af130492 Mon Sep 17 00:00:00 2001 From: BenjaminArp <101420246+BenjaminArp@users.noreply.github.com> Date: Tue, 27 Jan 2026 18:43:06 +0100 Subject: [PATCH 2/4] Add scaling to Utils bundle --- .../META-INF/MANIFEST.MF | 6 +- .../mitigation/utils/scaler}/DFDScaler.java | 2 +- .../utils/scaler}/tests/ScalerTest.java | 7 +- .../testresults/scaled.json | 38201 ++++++++++++++++ .../testresults/scaledALL.json | 8588 ++++ .../testresults/scaledLabelTypes.json | 3283 ++ .../testresults/scaledLabels.json | 3279 ++ .../testresults/scaledLength.json | 4089 ++ 8 files changed, 57448 insertions(+), 7 deletions(-) rename bundles/{dev.arcovia.mitigation.sat/src/dev/arcovia/mitigation/sat => dev.arcovia.mitigation.utils/src/dev/arcovia/mitigation/utils/scaler}/DFDScaler.java (99%) rename tests/{dev.arcovia.mitigation.sat.tests/src/dev/arcovia/mitigation/sat => dev.arcovia.mitigation.utils.tests/src/dev/arcovia/mitigation/utils/scaler}/tests/ScalerTest.java (97%) create mode 100644 tests/dev.arcovia.mitigation.utils.tests/testresults/scaled.json create mode 100644 tests/dev.arcovia.mitigation.utils.tests/testresults/scaledALL.json create mode 100644 tests/dev.arcovia.mitigation.utils.tests/testresults/scaledLabelTypes.json create mode 100644 tests/dev.arcovia.mitigation.utils.tests/testresults/scaledLabels.json create mode 100644 tests/dev.arcovia.mitigation.utils.tests/testresults/scaledLength.json diff --git a/bundles/dev.arcovia.mitigation.utils/META-INF/MANIFEST.MF b/bundles/dev.arcovia.mitigation.utils/META-INF/MANIFEST.MF index 3d26e15b..28e73c1c 100644 --- a/bundles/dev.arcovia.mitigation.utils/META-INF/MANIFEST.MF +++ b/bundles/dev.arcovia.mitigation.utils/META-INF/MANIFEST.MF @@ -5,9 +5,11 @@ Bundle-SymbolicName: dev.arcovia.mitigation.utils Bundle-Version: 1.0.0.qualifier Automatic-Module-Name: dev.arcovia.mitigation.utils Bundle-RequiredExecutionEnvironment: JavaSE-17 -Export-Package: dev.arcovia.mitigation.utils.dsl +Export-Package: dev.arcovia.mitigation.utils.dsl, + dev.arcovia.mitigation.utils.scaler Require-Bundle: dev.arcovia.mitigation.sat;bundle-version="1.0.0", org.dataflowanalysis.analysis;bundle-version="4.0.0", org.dataflowanalysis.converter;bundle-version="4.0.0", org.dataflowanalysis.analysis.dfd;bundle-version="4.0.0", - org.dataflowanalysis.dfd.datadictionary;bundle-version="4.0.0" + org.dataflowanalysis.dfd.datadictionary;bundle-version="4.0.0", + org.dataflowanalysis.dfd.dataflowdiagram;bundle-version="4.0.0" diff --git a/bundles/dev.arcovia.mitigation.sat/src/dev/arcovia/mitigation/sat/DFDScaler.java b/bundles/dev.arcovia.mitigation.utils/src/dev/arcovia/mitigation/utils/scaler/DFDScaler.java similarity index 99% rename from bundles/dev.arcovia.mitigation.sat/src/dev/arcovia/mitigation/sat/DFDScaler.java rename to bundles/dev.arcovia.mitigation.utils/src/dev/arcovia/mitigation/utils/scaler/DFDScaler.java index bca3cbe8..7e95bbc3 100644 --- a/bundles/dev.arcovia.mitigation.sat/src/dev/arcovia/mitigation/sat/DFDScaler.java +++ b/bundles/dev.arcovia.mitigation.utils/src/dev/arcovia/mitigation/utils/scaler/DFDScaler.java @@ -1,4 +1,4 @@ -package dev.arcovia.mitigation.sat; +package dev.arcovia.mitigation.utils.scaler; import java.util.HashMap; import java.util.Map; diff --git a/tests/dev.arcovia.mitigation.sat.tests/src/dev/arcovia/mitigation/sat/tests/ScalerTest.java b/tests/dev.arcovia.mitigation.utils.tests/src/dev/arcovia/mitigation/utils/scaler/tests/ScalerTest.java similarity index 97% rename from tests/dev.arcovia.mitigation.sat.tests/src/dev/arcovia/mitigation/sat/tests/ScalerTest.java rename to tests/dev.arcovia.mitigation.utils.tests/src/dev/arcovia/mitigation/utils/scaler/tests/ScalerTest.java index 456b76c6..af0ebebd 100644 --- a/tests/dev.arcovia.mitigation.sat.tests/src/dev/arcovia/mitigation/sat/tests/ScalerTest.java +++ b/tests/dev.arcovia.mitigation.utils.tests/src/dev/arcovia/mitigation/utils/scaler/tests/ScalerTest.java @@ -1,4 +1,4 @@ -package dev.arcovia.mitigation.sat.tests; +package dev.arcovia.mitigation.utils.scaler.tests; import static org.junit.jupiter.api.Assertions.assertEquals; import static org.junit.jupiter.api.Assertions.assertTrue; @@ -15,11 +15,10 @@ import org.dataflowanalysis.examplemodels.Activator; import org.junit.jupiter.api.Test; -import dev.arcovia.mitigation.sat.DFDScaler; +import dev.arcovia.mitigation.utils.scaler.DFDScaler; import tools.mdsd.library.standalone.initialization.StandaloneInitializationException; -public class ScalerTest { - public final String MIN_SAT = "models/minsat.json"; +public class ScalerTest { @Test public void scaleDFD() throws StandaloneInitializationException { diff --git a/tests/dev.arcovia.mitigation.utils.tests/testresults/scaled.json b/tests/dev.arcovia.mitigation.utils.tests/testresults/scaled.json new file mode 100644 index 00000000..64ef9f6c --- /dev/null +++ b/tests/dev.arcovia.mitigation.utils.tests/testresults/scaled.json @@ -0,0 +1,38201 @@ +{ + "model" : { + "type" : "graph", + "id" : "root", + "children" : [ { + "text" : "consul2", + "id" : "100", + "type" : "edge:arrow", + "sourceId" : "99", + "targetId" : "98", + "labels" : null, + "ports" : null, + "annotations" : null, + "children" : [ ], + "routingPoints" : [ ] + }, { + "text" : "consul3", + "id" : "103", + "type" : "edge:arrow", + "sourceId" : "102", + "targetId" : "98", + "labels" : null, + "ports" : null, + "annotations" : null, + "children" : [ ], + "routingPoints" : [ ] + }, { + "text" : "consul3", + "id" : "106", + "type" : "edge:arrow", + "sourceId" : "105", + "targetId" : "104", + "labels" : null, + "ports" : null, + "annotations" : null, + "children" : [ ], + "routingPoints" : [ ] + }, { + "text" : "logstash", + "id" : "109", + "type" : "edge:arrow", + "sourceId" : "108", + "targetId" : "107", + "labels" : null, + "ports" : null, + "annotations" : null, + "children" : [ ], + "routingPoints" : [ ] + }, { + "text" : "elasticsearch", + "id" : "112", + "type" : "edge:arrow", + "sourceId" : "111", + "targetId" : "110", + "labels" : null, + "ports" : null, + "annotations" : null, + "children" : [ ], + "routingPoints" : [ ] + }, { + "text" : "consul", + "id" : "115", + "type" : "edge:arrow", + "sourceId" : "114", + "targetId" : "113", + "labels" : null, + "ports" : null, + "annotations" : null, + "children" : [ ], + "routingPoints" : [ ] + }, { + "text" : "service_one", + "id" : "118", + "type" : "edge:arrow", + "sourceId" : "117", + "targetId" : "116", + "labels" : null, + "ports" : null, + "annotations" : null, + "children" : [ ], + "routingPoints" : [ ] + }, { + "text" : "service_one", + "id" : "121", + "type" : "edge:arrow", + "sourceId" : "120", + "targetId" : "119", + "labels" : null, + "ports" : null, + "annotations" : null, + "children" : [ ], + "routingPoints" : [ ] + }, { + "text" : "rabbit", + "id" : "129", + "type" : "edge:arrow", + "sourceId" : "128", + "targetId" : "113", + "labels" : null, + "ports" : null, + "annotations" : null, + "children" : [ ], + "routingPoints" : [ ] + }, { + "text" : "consul", + "id" : "135", + "type" : "edge:arrow", + "sourceId" : "134", + "targetId" : "133", + "labels" : null, + "ports" : null, + "annotations" : null, + "children" : [ ], + "routingPoints" : [ ] + }, { + "text" : "service_two", + "id" : "137", + "type" : "edge:arrow", + "sourceId" : "136", + "targetId" : "116", + "labels" : null, + "ports" : null, + "annotations" : null, + "children" : [ ], + "routingPoints" : [ ] + }, { + "text" : "service_two", + "id" : "139", + "type" : "edge:arrow", + "sourceId" : "138", + "targetId" : "119", + "labels" : null, + "ports" : null, + "annotations" : null, + "children" : [ ], + "routingPoints" : [ ] + }, { + "text" : "rabbit", + "id" : "141", + "type" : "edge:arrow", + "sourceId" : "140", + "targetId" : "133", + "labels" : null, + "ports" : null, + "annotations" : null, + "children" : [ ], + "routingPoints" : [ ] + }, { + "text" : "service_one_db", + "id" : "144", + "type" : "edge:arrow", + "sourceId" : "143", + "targetId" : "113", + "labels" : null, + "ports" : null, + "annotations" : null, + "children" : [ ], + "routingPoints" : [ ] + }, { + "text" : "service_two_db", + "id" : "147", + "type" : "edge:arrow", + "sourceId" : "146", + "targetId" : "133", + "labels" : null, + "ports" : null, + "annotations" : null, + "children" : [ ], + "routingPoints" : [ ] + }, { + "text" : "api_gateway", + "id" : "151", + "type" : "edge:arrow", + "sourceId" : "150", + "targetId" : "113", + "labels" : null, + "ports" : null, + "annotations" : null, + "children" : [ ], + "routingPoints" : [ ] + }, { + "text" : "api_gateway", + "id" : "153", + "type" : "edge:arrow", + "sourceId" : "152", + "targetId" : "133", + "labels" : null, + "ports" : null, + "annotations" : null, + "children" : [ ], + "routingPoints" : [ ] + }, { + "text" : "consul", + "id" : "156", + "type" : "edge:arrow", + "sourceId" : "155", + "targetId" : "154", + "labels" : null, + "ports" : null, + "annotations" : null, + "children" : [ ], + "routingPoints" : [ ] + }, { + "text" : "user", + "id" : "159", + "type" : "edge:arrow", + "sourceId" : "158", + "targetId" : "157", + "labels" : null, + "ports" : null, + "annotations" : null, + "children" : [ ], + "routingPoints" : [ ] + }, { + "text" : "web_application", + "id" : "163", + "type" : "edge:arrow", + "sourceId" : "162", + "targetId" : "161", + "labels" : null, + "ports" : null, + "annotations" : null, + "children" : [ ], + "routingPoints" : [ ] + }, { + "text" : "web_application", + "id" : "165", + "type" : "edge:arrow", + "sourceId" : "164", + "targetId" : "154", + "labels" : null, + "ports" : null, + "annotations" : null, + "children" : [ ], + "routingPoints" : [ ] + }, { + "text" : "api_gateway", + "id" : "168", + "type" : "edge:arrow", + "sourceId" : "167", + "targetId" : "166", + "labels" : null, + "ports" : null, + "annotations" : null, + "children" : [ ], + "routingPoints" : [ ] + }, { + "text" : "service_one", + "id" : "170", + "type" : "edge:arrow", + "sourceId" : "169", + "targetId" : "166", + "labels" : null, + "ports" : null, + "annotations" : null, + "children" : [ ], + "routingPoints" : [ ] + }, { + "text" : "service_one_db", + "id" : "172", + "type" : "edge:arrow", + "sourceId" : "171", + "targetId" : "166", + "labels" : null, + "ports" : null, + "annotations" : null, + "children" : [ ], + "routingPoints" : [ ] + }, { + "text" : "service_two", + "id" : "174", + "type" : "edge:arrow", + "sourceId" : "173", + "targetId" : "166", + "labels" : null, + "ports" : null, + "annotations" : null, + "children" : [ ], + "routingPoints" : [ ] + }, { + "text" : "service_two_db", + "id" : "176", + "type" : "edge:arrow", + "sourceId" : "175", + "targetId" : "166", + "labels" : null, + "ports" : null, + "annotations" : null, + "children" : [ ], + "routingPoints" : [ ] + }, { + "text" : "web_application", + "id" : "178", + "type" : "edge:arrow", + "sourceId" : "177", + "targetId" : "166", + "labels" : null, + "ports" : null, + "annotations" : null, + "children" : [ ], + "routingPoints" : [ ] + }, { + "text" : "rabbit", + "id" : "180", + "type" : "edge:arrow", + "sourceId" : "179", + "targetId" : "166", + "labels" : null, + "ports" : null, + "annotations" : null, + "children" : [ ], + "routingPoints" : [ ] + }, { + "text" : "consul", + "id" : "182", + "type" : "edge:arrow", + "sourceId" : "181", + "targetId" : "166", + "labels" : null, + "ports" : null, + "annotations" : null, + "children" : [ ], + "routingPoints" : [ ] + }, { + "text" : "consul2", + "id" : "184", + "type" : "edge:arrow", + "sourceId" : "183", + "targetId" : "166", + "labels" : null, + "ports" : null, + "annotations" : null, + "children" : [ ], + "routingPoints" : [ ] + }, { + "text" : "consul3", + "id" : "186", + "type" : "edge:arrow", + "sourceId" : "185", + "targetId" : "166", + "labels" : null, + "ports" : null, + "annotations" : null, + "children" : [ ], + "routingPoints" : [ ] + }, { + "text" : "kibana", + "id" : "188", + "type" : "edge:arrow", + "sourceId" : "187", + "targetId" : "166", + "labels" : null, + "ports" : null, + "annotations" : null, + "children" : [ ], + "routingPoints" : [ ] + }, { + "text" : "elasticsearch", + "id" : "190", + "type" : "edge:arrow", + "sourceId" : "189", + "targetId" : "166", + "labels" : null, + "ports" : null, + "annotations" : null, + "children" : [ ], + "routingPoints" : [ ] + }, { + "text" : "logstash", + "id" : "192", + "type" : "edge:arrow", + "sourceId" : "191", + "targetId" : "166", + "labels" : null, + "ports" : null, + "annotations" : null, + "children" : [ ], + "routingPoints" : [ ] + }, { + "text" : "consul2_0", + "id" : "_UWx-dvunEfCYrdfxNyUhUA", + "type" : "edge:arrow", + "sourceId" : "_UWx9V_unEfCYrdfxNyUhUA", + "targetId" : "_UWx9MPunEfCYrdfxNyUhUA", + "labels" : null, + "ports" : null, + "annotations" : null, + "children" : [ ], + "routingPoints" : [ ] + }, { + "text" : "consul2_1", + "id" : "_UWx-d_unEfCYrdfxNyUhUA", + "type" : "edge:arrow", + "sourceId" : "_UWx9YvunEfCYrdfxNyUhUA", + "targetId" : "_UWx9Q_unEfCYrdfxNyUhUA", + "labels" : null, + "ports" : null, + "annotations" : null, + "children" : [ ], + "routingPoints" : [ ] + }, { + "text" : "consul3_0", + "id" : "_UWx-ePunEfCYrdfxNyUhUA", + "type" : "edge:arrow", + "sourceId" : "_UWx9bPunEfCYrdfxNyUhUA", + "targetId" : "_UWx9MPunEfCYrdfxNyUhUA", + "labels" : null, + "ports" : null, + "annotations" : null, + "children" : [ ], + "routingPoints" : [ ] + }, { + "text" : "consul3_1", + "id" : "_UWx-efunEfCYrdfxNyUhUA", + "type" : "edge:arrow", + "sourceId" : "_UWx9d_unEfCYrdfxNyUhUA", + "targetId" : "_UWx9Q_unEfCYrdfxNyUhUA", + "labels" : null, + "ports" : null, + "annotations" : null, + "children" : [ ], + "routingPoints" : [ ] + }, { + "text" : "consul3_0", + "id" : "_UWx-evunEfCYrdfxNyUhUA", + "type" : "edge:arrow", + "sourceId" : "_UWx9bfunEfCYrdfxNyUhUA", + "targetId" : "_UWx9VvunEfCYrdfxNyUhUA", + "labels" : null, + "ports" : null, + "annotations" : null, + "children" : [ ], + "routingPoints" : [ ] + }, { + "text" : "consul3_1", + "id" : "_UWx-e_unEfCYrdfxNyUhUA", + "type" : "edge:arrow", + "sourceId" : "_UWx9ePunEfCYrdfxNyUhUA", + "targetId" : "_UWx9YfunEfCYrdfxNyUhUA", + "labels" : null, + "ports" : null, + "annotations" : null, + "children" : [ ], + "routingPoints" : [ ] + }, { + "text" : "logstash_0", + "id" : "_UWx-fPunEfCYrdfxNyUhUA", + "type" : "edge:arrow", + "sourceId" : "_UWx9mfunEfCYrdfxNyUhUA", + "targetId" : "_UWx9gvunEfCYrdfxNyUhUA", + "labels" : null, + "ports" : null, + "annotations" : null, + "children" : [ ], + "routingPoints" : [ ] + }, { + "text" : "logstash_1", + "id" : "_UWx-ffunEfCYrdfxNyUhUA", + "type" : "edge:arrow", + "sourceId" : "_UWx9pPunEfCYrdfxNyUhUA", + "targetId" : "_UWx9jfunEfCYrdfxNyUhUA", + "labels" : null, + "ports" : null, + "annotations" : null, + "children" : [ ], + "routingPoints" : [ ] + }, { + "text" : "elasticsearch_0", + "id" : "_UWx-fvunEfCYrdfxNyUhUA", + "type" : "edge:arrow", + "sourceId" : "_UWx9g_unEfCYrdfxNyUhUA", + "targetId" : "_UWx9rvunEfCYrdfxNyUhUA", + "labels" : null, + "ports" : null, + "annotations" : null, + "children" : [ ], + "routingPoints" : [ ] + }, { + "text" : "elasticsearch_1", + "id" : "_UWx-f_unEfCYrdfxNyUhUA", + "type" : "edge:arrow", + "sourceId" : "_UWx9jvunEfCYrdfxNyUhUA", + "targetId" : "_UWx9tfunEfCYrdfxNyUhUA", + "labels" : null, + "ports" : null, + "annotations" : null, + "children" : [ ], + "routingPoints" : [ ] + }, { + "text" : "consul_0", + "id" : "_UWx-gPunEfCYrdfxNyUhUA", + "type" : "edge:arrow", + "sourceId" : "_UWx9MfunEfCYrdfxNyUhUA", + "targetId" : "_UWx92vunEfCYrdfxNyUhUA", + "labels" : null, + "ports" : null, + "annotations" : null, + "children" : [ ], + "routingPoints" : [ ] + }, { + "text" : "consul_1", + "id" : "_UWx-gfunEfCYrdfxNyUhUA", + "type" : "edge:arrow", + "sourceId" : "_UWx9RPunEfCYrdfxNyUhUA", + "targetId" : "_UWx96funEfCYrdfxNyUhUA", + "labels" : null, + "ports" : null, + "annotations" : null, + "children" : [ ], + "routingPoints" : [ ] + }, { + "text" : "service_one_0", + "id" : "_UWx-gvunEfCYrdfxNyUhUA", + "type" : "edge:arrow", + "sourceId" : "_UWx92_unEfCYrdfxNyUhUA", + "targetId" : "_UWx9mPunEfCYrdfxNyUhUA", + "labels" : null, + "ports" : null, + "annotations" : null, + "children" : [ ], + "routingPoints" : [ ] + }, { + "text" : "service_one_1", + "id" : "_UWx-g_unEfCYrdfxNyUhUA", + "type" : "edge:arrow", + "sourceId" : "_UWx96vunEfCYrdfxNyUhUA", + "targetId" : "_UWx9o_unEfCYrdfxNyUhUA", + "labels" : null, + "ports" : null, + "annotations" : null, + "children" : [ ], + "routingPoints" : [ ] + }, { + "text" : "service_one_0", + "id" : "_UWx-hPunEfCYrdfxNyUhUA", + "type" : "edge:arrow", + "sourceId" : "_UWx93PunEfCYrdfxNyUhUA", + "targetId" : "_UWx9vPunEfCYrdfxNyUhUA", + "labels" : null, + "ports" : null, + "annotations" : null, + "children" : [ ], + "routingPoints" : [ ] + }, { + "text" : "service_one_1", + "id" : "_UWx-hfunEfCYrdfxNyUhUA", + "type" : "edge:arrow", + "sourceId" : "_UWx96_unEfCYrdfxNyUhUA", + "targetId" : "_UWx9y_unEfCYrdfxNyUhUA", + "labels" : null, + "ports" : null, + "annotations" : null, + "children" : [ ], + "routingPoints" : [ ] + }, { + "text" : "rabbit_0", + "id" : "_UWx-hvunEfCYrdfxNyUhUA", + "type" : "edge:arrow", + "sourceId" : "_UWx9vfunEfCYrdfxNyUhUA", + "targetId" : "_UWx92vunEfCYrdfxNyUhUA", + "labels" : null, + "ports" : null, + "annotations" : null, + "children" : [ ], + "routingPoints" : [ ] + }, { + "text" : "rabbit_1", + "id" : "_UWx-h_unEfCYrdfxNyUhUA", + "type" : "edge:arrow", + "sourceId" : "_UWx9zPunEfCYrdfxNyUhUA", + "targetId" : "_UWx96funEfCYrdfxNyUhUA", + "labels" : null, + "ports" : null, + "annotations" : null, + "children" : [ ], + "routingPoints" : [ ] + }, { + "text" : "consul_0", + "id" : "_UWx-iPunEfCYrdfxNyUhUA", + "type" : "edge:arrow", + "sourceId" : "_UWx9MvunEfCYrdfxNyUhUA", + "targetId" : "_UWx9-PunEfCYrdfxNyUhUA", + "labels" : null, + "ports" : null, + "annotations" : null, + "children" : [ ], + "routingPoints" : [ ] + }, { + "text" : "consul_1", + "id" : "_UWx-ifunEfCYrdfxNyUhUA", + "type" : "edge:arrow", + "sourceId" : "_UWx9RfunEfCYrdfxNyUhUA", + "targetId" : "_UWx-B_unEfCYrdfxNyUhUA", + "labels" : null, + "ports" : null, + "annotations" : null, + "children" : [ ], + "routingPoints" : [ ] + }, { + "text" : "service_two_0", + "id" : "_UWx-ivunEfCYrdfxNyUhUA", + "type" : "edge:arrow", + "sourceId" : "_UWx9-funEfCYrdfxNyUhUA", + "targetId" : "_UWx9mPunEfCYrdfxNyUhUA", + "labels" : null, + "ports" : null, + "annotations" : null, + "children" : [ ], + "routingPoints" : [ ] + }, { + "text" : "service_two_1", + "id" : "_UWx-i_unEfCYrdfxNyUhUA", + "type" : "edge:arrow", + "sourceId" : "_UWx-CPunEfCYrdfxNyUhUA", + "targetId" : "_UWx9o_unEfCYrdfxNyUhUA", + "labels" : null, + "ports" : null, + "annotations" : null, + "children" : [ ], + "routingPoints" : [ ] + }, { + "text" : "service_two_0", + "id" : "_UWx-jPunEfCYrdfxNyUhUA", + "type" : "edge:arrow", + "sourceId" : "_UWx9-vunEfCYrdfxNyUhUA", + "targetId" : "_UWx9vPunEfCYrdfxNyUhUA", + "labels" : null, + "ports" : null, + "annotations" : null, + "children" : [ ], + "routingPoints" : [ ] + }, { + "text" : "service_two_1", + "id" : "_UWx-jfunEfCYrdfxNyUhUA", + "type" : "edge:arrow", + "sourceId" : "_UWx-CfunEfCYrdfxNyUhUA", + "targetId" : "_UWx9y_unEfCYrdfxNyUhUA", + "labels" : null, + "ports" : null, + "annotations" : null, + "children" : [ ], + "routingPoints" : [ ] + }, { + "text" : "rabbit_0", + "id" : "_UWx-jvunEfCYrdfxNyUhUA", + "type" : "edge:arrow", + "sourceId" : "_UWx9vvunEfCYrdfxNyUhUA", + "targetId" : "_UWx9-PunEfCYrdfxNyUhUA", + "labels" : null, + "ports" : null, + "annotations" : null, + "children" : [ ], + "routingPoints" : [ ] + }, { + "text" : "rabbit_1", + "id" : "_UWx-j_unEfCYrdfxNyUhUA", + "type" : "edge:arrow", + "sourceId" : "_UWx9zfunEfCYrdfxNyUhUA", + "targetId" : "_UWx-B_unEfCYrdfxNyUhUA", + "labels" : null, + "ports" : null, + "annotations" : null, + "children" : [ ], + "routingPoints" : [ ] + }, { + "text" : "service_one_db_0", + "id" : "_UWx-kPunEfCYrdfxNyUhUA", + "type" : "edge:arrow", + "sourceId" : "_UWx-FvunEfCYrdfxNyUhUA", + "targetId" : "_UWx92vunEfCYrdfxNyUhUA", + "labels" : null, + "ports" : null, + "annotations" : null, + "children" : [ ], + "routingPoints" : [ ] + }, { + "text" : "service_one_db_1", + "id" : "_UWx-kfunEfCYrdfxNyUhUA", + "type" : "edge:arrow", + "sourceId" : "_UWx-HvunEfCYrdfxNyUhUA", + "targetId" : "_UWx96funEfCYrdfxNyUhUA", + "labels" : null, + "ports" : null, + "annotations" : null, + "children" : [ ], + "routingPoints" : [ ] + }, { + "text" : "service_two_db_0", + "id" : "_UWx-kvunEfCYrdfxNyUhUA", + "type" : "edge:arrow", + "sourceId" : "_UWx-JvunEfCYrdfxNyUhUA", + "targetId" : "_UWx9-PunEfCYrdfxNyUhUA", + "labels" : null, + "ports" : null, + "annotations" : null, + "children" : [ ], + "routingPoints" : [ ] + }, { + "text" : "service_two_db_1", + "id" : "_UWx-k_unEfCYrdfxNyUhUA", + "type" : "edge:arrow", + "sourceId" : "_UWx-LvunEfCYrdfxNyUhUA", + "targetId" : "_UWx-B_unEfCYrdfxNyUhUA", + "labels" : null, + "ports" : null, + "annotations" : null, + "children" : [ ], + "routingPoints" : [ ] + }, { + "text" : "api_gateway_0", + "id" : "_UWx-lPunEfCYrdfxNyUhUA", + "type" : "edge:arrow", + "sourceId" : "_UWx-N_unEfCYrdfxNyUhUA", + "targetId" : "_UWx92vunEfCYrdfxNyUhUA", + "labels" : null, + "ports" : null, + "annotations" : null, + "children" : [ ], + "routingPoints" : [ ] + }, { + "text" : "api_gateway_1", + "id" : "_UWx-lfunEfCYrdfxNyUhUA", + "type" : "edge:arrow", + "sourceId" : "_UWx-RvunEfCYrdfxNyUhUA", + "targetId" : "_UWx96funEfCYrdfxNyUhUA", + "labels" : null, + "ports" : null, + "annotations" : null, + "children" : [ ], + "routingPoints" : [ ] + }, { + "text" : "api_gateway_0", + "id" : "_UWx-lvunEfCYrdfxNyUhUA", + "type" : "edge:arrow", + "sourceId" : "_UWx-OPunEfCYrdfxNyUhUA", + "targetId" : "_UWx9-PunEfCYrdfxNyUhUA", + "labels" : null, + "ports" : null, + "annotations" : null, + "children" : [ ], + "routingPoints" : [ ] + }, { + "text" : "api_gateway_1", + "id" : "_UWx-l_unEfCYrdfxNyUhUA", + "type" : "edge:arrow", + "sourceId" : "_UWx-R_unEfCYrdfxNyUhUA", + "targetId" : "_UWx-B_unEfCYrdfxNyUhUA", + "labels" : null, + "ports" : null, + "annotations" : null, + "children" : [ ], + "routingPoints" : [ ] + }, { + "text" : "consul_0", + "id" : "_UWx-mPunEfCYrdfxNyUhUA", + "type" : "edge:arrow", + "sourceId" : "_UWx9M_unEfCYrdfxNyUhUA", + "targetId" : "_UWx-NvunEfCYrdfxNyUhUA", + "labels" : null, + "ports" : null, + "annotations" : null, + "children" : [ ], + "routingPoints" : [ ] + }, { + "text" : "consul_1", + "id" : "_UWx-mfunEfCYrdfxNyUhUA", + "type" : "edge:arrow", + "sourceId" : "_UWx9RvunEfCYrdfxNyUhUA", + "targetId" : "_UWx-RfunEfCYrdfxNyUhUA", + "labels" : null, + "ports" : null, + "annotations" : null, + "children" : [ ], + "routingPoints" : [ ] + }, { + "text" : "user_0", + "id" : "_UWx-mvunEfCYrdfxNyUhUA", + "type" : "edge:arrow", + "sourceId" : "_UWx9I_unEfCYrdfxNyUhUA", + "targetId" : "_UWx-VPunEfCYrdfxNyUhUA", + "labels" : null, + "ports" : null, + "annotations" : null, + "children" : [ ], + "routingPoints" : [ ] + }, { + "text" : "user_1", + "id" : "_UWx-m_unEfCYrdfxNyUhUA", + "type" : "edge:arrow", + "sourceId" : "_UWx9KvunEfCYrdfxNyUhUA", + "targetId" : "_UWx-Y_unEfCYrdfxNyUhUA", + "labels" : null, + "ports" : null, + "annotations" : null, + "children" : [ ], + "routingPoints" : [ ] + }, { + "text" : "web_application_0", + "id" : "_UWx-nPunEfCYrdfxNyUhUA", + "type" : "edge:arrow", + "sourceId" : "_UWx-VfunEfCYrdfxNyUhUA", + "targetId" : "_UWx9IvunEfCYrdfxNyUhUA", + "labels" : null, + "ports" : null, + "annotations" : null, + "children" : [ ], + "routingPoints" : [ ] + }, { + "text" : "web_application_1", + "id" : "_UWx-nfunEfCYrdfxNyUhUA", + "type" : "edge:arrow", + "sourceId" : "_UWx-ZPunEfCYrdfxNyUhUA", + "targetId" : "_UWx9KfunEfCYrdfxNyUhUA", + "labels" : null, + "ports" : null, + "annotations" : null, + "children" : [ ], + "routingPoints" : [ ] + }, { + "text" : "web_application_0", + "id" : "_UWx-nvunEfCYrdfxNyUhUA", + "type" : "edge:arrow", + "sourceId" : "_UWx-VvunEfCYrdfxNyUhUA", + "targetId" : "_UWx-NvunEfCYrdfxNyUhUA", + "labels" : null, + "ports" : null, + "annotations" : null, + "children" : [ ], + "routingPoints" : [ ] + }, { + "text" : "web_application_1", + "id" : "_UWx-n_unEfCYrdfxNyUhUA", + "type" : "edge:arrow", + "sourceId" : "_UWx-ZfunEfCYrdfxNyUhUA", + "targetId" : "_UWx-RfunEfCYrdfxNyUhUA", + "labels" : null, + "ports" : null, + "annotations" : null, + "children" : [ ], + "routingPoints" : [ ] + }, { + "text" : "api_gateway_0", + "id" : "_UWx-oPunEfCYrdfxNyUhUA", + "type" : "edge:arrow", + "sourceId" : "_UWx-OfunEfCYrdfxNyUhUA", + "targetId" : "_UWx-cvunEfCYrdfxNyUhUA", + "labels" : null, + "ports" : null, + "annotations" : null, + "children" : [ ], + "routingPoints" : [ ] + }, { + "text" : "api_gateway_1", + "id" : "_UWx-ofunEfCYrdfxNyUhUA", + "type" : "edge:arrow", + "sourceId" : "_UWx-SPunEfCYrdfxNyUhUA", + "targetId" : "_UWx-dfunEfCYrdfxNyUhUA", + "labels" : null, + "ports" : null, + "annotations" : null, + "children" : [ ], + "routingPoints" : [ ] + }, { + "text" : "service_one_0", + "id" : "_UWx-ovunEfCYrdfxNyUhUA", + "type" : "edge:arrow", + "sourceId" : "_UWx93funEfCYrdfxNyUhUA", + "targetId" : "_UWx-cvunEfCYrdfxNyUhUA", + "labels" : null, + "ports" : null, + "annotations" : null, + "children" : [ ], + "routingPoints" : [ ] + }, { + "text" : "service_one_1", + "id" : "_UWx-o_unEfCYrdfxNyUhUA", + "type" : "edge:arrow", + "sourceId" : "_UWx97PunEfCYrdfxNyUhUA", + "targetId" : "_UWx-dfunEfCYrdfxNyUhUA", + "labels" : null, + "ports" : null, + "annotations" : null, + "children" : [ ], + "routingPoints" : [ ] + }, { + "text" : "service_one_db_0", + "id" : "_UWx-pPunEfCYrdfxNyUhUA", + "type" : "edge:arrow", + "sourceId" : "_UWx-F_unEfCYrdfxNyUhUA", + "targetId" : "_UWx-cvunEfCYrdfxNyUhUA", + "labels" : null, + "ports" : null, + "annotations" : null, + "children" : [ ], + "routingPoints" : [ ] + }, { + "text" : "service_one_db_1", + "id" : "_UWx-pfunEfCYrdfxNyUhUA", + "type" : "edge:arrow", + "sourceId" : "_UWx-H_unEfCYrdfxNyUhUA", + "targetId" : "_UWx-dfunEfCYrdfxNyUhUA", + "labels" : null, + "ports" : null, + "annotations" : null, + "children" : [ ], + "routingPoints" : [ ] + }, { + "text" : "service_two_0", + "id" : "_UWx-pvunEfCYrdfxNyUhUA", + "type" : "edge:arrow", + "sourceId" : "_UWx9-_unEfCYrdfxNyUhUA", + "targetId" : "_UWx-cvunEfCYrdfxNyUhUA", + "labels" : null, + "ports" : null, + "annotations" : null, + "children" : [ ], + "routingPoints" : [ ] + }, { + "text" : "service_two_1", + "id" : "_UWx-p_unEfCYrdfxNyUhUA", + "type" : "edge:arrow", + "sourceId" : "_UWx-CvunEfCYrdfxNyUhUA", + "targetId" : "_UWx-dfunEfCYrdfxNyUhUA", + "labels" : null, + "ports" : null, + "annotations" : null, + "children" : [ ], + "routingPoints" : [ ] + }, { + "text" : "service_two_db_0", + "id" : "_UWx-qPunEfCYrdfxNyUhUA", + "type" : "edge:arrow", + "sourceId" : "_UWx-J_unEfCYrdfxNyUhUA", + "targetId" : "_UWx-cvunEfCYrdfxNyUhUA", + "labels" : null, + "ports" : null, + "annotations" : null, + "children" : [ ], + "routingPoints" : [ ] + }, { + "text" : "service_two_db_1", + "id" : "_UWx-qfunEfCYrdfxNyUhUA", + "type" : "edge:arrow", + "sourceId" : "_UWx-L_unEfCYrdfxNyUhUA", + "targetId" : "_UWx-dfunEfCYrdfxNyUhUA", + "labels" : null, + "ports" : null, + "annotations" : null, + "children" : [ ], + "routingPoints" : [ ] + }, { + "text" : "web_application_0", + "id" : "_UWx-qvunEfCYrdfxNyUhUA", + "type" : "edge:arrow", + "sourceId" : "_UWx-V_unEfCYrdfxNyUhUA", + "targetId" : "_UWx-cvunEfCYrdfxNyUhUA", + "labels" : null, + "ports" : null, + "annotations" : null, + "children" : [ ], + "routingPoints" : [ ] + }, { + "text" : "web_application_1", + "id" : "_UWx-q_unEfCYrdfxNyUhUA", + "type" : "edge:arrow", + "sourceId" : "_UWx-ZvunEfCYrdfxNyUhUA", + "targetId" : "_UWx-dfunEfCYrdfxNyUhUA", + "labels" : null, + "ports" : null, + "annotations" : null, + "children" : [ ], + "routingPoints" : [ ] + }, { + "text" : "rabbit_0", + "id" : "_UWx-rPunEfCYrdfxNyUhUA", + "type" : "edge:arrow", + "sourceId" : "_UWx9v_unEfCYrdfxNyUhUA", + "targetId" : "_UWx-cvunEfCYrdfxNyUhUA", + "labels" : null, + "ports" : null, + "annotations" : null, + "children" : [ ], + "routingPoints" : [ ] + }, { + "text" : "rabbit_1", + "id" : "_UWx-rfunEfCYrdfxNyUhUA", + "type" : "edge:arrow", + "sourceId" : "_UWx9zvunEfCYrdfxNyUhUA", + "targetId" : "_UWx-dfunEfCYrdfxNyUhUA", + "labels" : null, + "ports" : null, + "annotations" : null, + "children" : [ ], + "routingPoints" : [ ] + }, { + "text" : "consul_0", + "id" : "_UWx-rvunEfCYrdfxNyUhUA", + "type" : "edge:arrow", + "sourceId" : "_UWx9NPunEfCYrdfxNyUhUA", + "targetId" : "_UWx-cvunEfCYrdfxNyUhUA", + "labels" : null, + "ports" : null, + "annotations" : null, + "children" : [ ], + "routingPoints" : [ ] + }, { + "text" : "consul_1", + "id" : "_UWx-r_unEfCYrdfxNyUhUA", + "type" : "edge:arrow", + "sourceId" : "_UWx9R_unEfCYrdfxNyUhUA", + "targetId" : "_UWx-dfunEfCYrdfxNyUhUA", + "labels" : null, + "ports" : null, + "annotations" : null, + "children" : [ ], + "routingPoints" : [ ] + }, { + "text" : "consul2_0", + "id" : "_UWx-sPunEfCYrdfxNyUhUA", + "type" : "edge:arrow", + "sourceId" : "_UWx9WPunEfCYrdfxNyUhUA", + "targetId" : "_UWx-cvunEfCYrdfxNyUhUA", + "labels" : null, + "ports" : null, + "annotations" : null, + "children" : [ ], + "routingPoints" : [ ] + }, { + "text" : "consul2_1", + "id" : "_UWx-sfunEfCYrdfxNyUhUA", + "type" : "edge:arrow", + "sourceId" : "_UWx9Y_unEfCYrdfxNyUhUA", + "targetId" : "_UWx-dfunEfCYrdfxNyUhUA", + "labels" : null, + "ports" : null, + "annotations" : null, + "children" : [ ], + "routingPoints" : [ ] + }, { + "text" : "consul3_0", + "id" : "_UWx-svunEfCYrdfxNyUhUA", + "type" : "edge:arrow", + "sourceId" : "_UWx9bvunEfCYrdfxNyUhUA", + "targetId" : "_UWx-cvunEfCYrdfxNyUhUA", + "labels" : null, + "ports" : null, + "annotations" : null, + "children" : [ ], + "routingPoints" : [ ] + }, { + "text" : "consul3_1", + "id" : "_UWx-s_unEfCYrdfxNyUhUA", + "type" : "edge:arrow", + "sourceId" : "_UWx9efunEfCYrdfxNyUhUA", + "targetId" : "_UWx-dfunEfCYrdfxNyUhUA", + "labels" : null, + "ports" : null, + "annotations" : null, + "children" : [ ], + "routingPoints" : [ ] + }, { + "text" : "kibana_0", + "id" : "_UWx-tPunEfCYrdfxNyUhUA", + "type" : "edge:arrow", + "sourceId" : "_UWx9r_unEfCYrdfxNyUhUA", + "targetId" : "_UWx-cvunEfCYrdfxNyUhUA", + "labels" : null, + "ports" : null, + "annotations" : null, + "children" : [ ], + "routingPoints" : [ ] + }, { + "text" : "kibana_1", + "id" : "_UWx-tfunEfCYrdfxNyUhUA", + "type" : "edge:arrow", + "sourceId" : "_UWx9tvunEfCYrdfxNyUhUA", + "targetId" : "_UWx-dfunEfCYrdfxNyUhUA", + "labels" : null, + "ports" : null, + "annotations" : null, + "children" : [ ], + "routingPoints" : [ ] + }, { + "text" : "elasticsearch_0", + "id" : "_UWx-tvunEfCYrdfxNyUhUA", + "type" : "edge:arrow", + "sourceId" : "_UWx9hPunEfCYrdfxNyUhUA", + "targetId" : "_UWx-cvunEfCYrdfxNyUhUA", + "labels" : null, + "ports" : null, + "annotations" : null, + "children" : [ ], + "routingPoints" : [ ] + }, { + "text" : "elasticsearch_1", + "id" : "_UWx-t_unEfCYrdfxNyUhUA", + "type" : "edge:arrow", + "sourceId" : "_UWx9j_unEfCYrdfxNyUhUA", + "targetId" : "_UWx-dfunEfCYrdfxNyUhUA", + "labels" : null, + "ports" : null, + "annotations" : null, + "children" : [ ], + "routingPoints" : [ ] + }, { + "text" : "logstash_0", + "id" : "_UWx-uPunEfCYrdfxNyUhUA", + "type" : "edge:arrow", + "sourceId" : "_UWx9mvunEfCYrdfxNyUhUA", + "targetId" : "_UWx-cvunEfCYrdfxNyUhUA", + "labels" : null, + "ports" : null, + "annotations" : null, + "children" : [ ], + "routingPoints" : [ ] + }, { + "text" : "logstash_1", + "id" : "_UWx-ufunEfCYrdfxNyUhUA", + "type" : "edge:arrow", + "sourceId" : "_UWx9pfunEfCYrdfxNyUhUA", + "targetId" : "_UWx-dfunEfCYrdfxNyUhUA", + "labels" : null, + "ports" : null, + "annotations" : null, + "children" : [ ], + "routingPoints" : [ ] + }, { + "text" : "consul2-0", + "id" : "_UWx-uvunEfCYrdfxNyUhUA", + "type" : "edge:arrow", + "sourceId" : "_UWx-u_unEfCYrdfxNyUhUA", + "targetId" : "98", + "labels" : null, + "ports" : null, + "annotations" : null, + "children" : [ ], + "routingPoints" : [ ] + }, { + "text" : "consul3-0", + "id" : "_UWx-vPunEfCYrdfxNyUhUA", + "type" : "edge:arrow", + "sourceId" : "_UWx-vfunEfCYrdfxNyUhUA", + "targetId" : "98", + "labels" : null, + "ports" : null, + "annotations" : null, + "children" : [ ], + "routingPoints" : [ ] + }, { + "text" : "consul3-0", + "id" : "_UWx-vvunEfCYrdfxNyUhUA", + "type" : "edge:arrow", + "sourceId" : "_UWx-v_unEfCYrdfxNyUhUA", + "targetId" : "104", + "labels" : null, + "ports" : null, + "annotations" : null, + "children" : [ ], + "routingPoints" : [ ] + }, { + "text" : "logstash-0", + "id" : "_UWx-wPunEfCYrdfxNyUhUA", + "type" : "edge:arrow", + "sourceId" : "_UWx-wfunEfCYrdfxNyUhUA", + "targetId" : "107", + "labels" : null, + "ports" : null, + "annotations" : null, + "children" : [ ], + "routingPoints" : [ ] + }, { + "text" : "elasticsearch-0", + "id" : "_UWx-wvunEfCYrdfxNyUhUA", + "type" : "edge:arrow", + "sourceId" : "_UWx-w_unEfCYrdfxNyUhUA", + "targetId" : "110", + "labels" : null, + "ports" : null, + "annotations" : null, + "children" : [ ], + "routingPoints" : [ ] + }, { + "text" : "consul-0", + "id" : "_UWx-xPunEfCYrdfxNyUhUA", + "type" : "edge:arrow", + "sourceId" : "_UWx-xfunEfCYrdfxNyUhUA", + "targetId" : "113", + "labels" : null, + "ports" : null, + "annotations" : null, + "children" : [ ], + "routingPoints" : [ ] + }, { + "text" : "service_one-0", + "id" : "_UWx-xvunEfCYrdfxNyUhUA", + "type" : "edge:arrow", + "sourceId" : "_UWx-x_unEfCYrdfxNyUhUA", + "targetId" : "116", + "labels" : null, + "ports" : null, + "annotations" : null, + "children" : [ ], + "routingPoints" : [ ] + }, { + "text" : "service_one-0", + "id" : "_UWx-yPunEfCYrdfxNyUhUA", + "type" : "edge:arrow", + "sourceId" : "_UWx-yfunEfCYrdfxNyUhUA", + "targetId" : "119", + "labels" : null, + "ports" : null, + "annotations" : null, + "children" : [ ], + "routingPoints" : [ ] + }, { + "text" : "rabbit-0", + "id" : "_UWx-yvunEfCYrdfxNyUhUA", + "type" : "edge:arrow", + "sourceId" : "_UWx-y_unEfCYrdfxNyUhUA", + "targetId" : "113", + "labels" : null, + "ports" : null, + "annotations" : null, + "children" : [ ], + "routingPoints" : [ ] + }, { + "text" : "consul-0", + "id" : "_UWx-zPunEfCYrdfxNyUhUA", + "type" : "edge:arrow", + "sourceId" : "_UWx-zfunEfCYrdfxNyUhUA", + "targetId" : "133", + "labels" : null, + "ports" : null, + "annotations" : null, + "children" : [ ], + "routingPoints" : [ ] + }, { + "text" : "service_two-0", + "id" : "_UWx-zvunEfCYrdfxNyUhUA", + "type" : "edge:arrow", + "sourceId" : "_UWx-z_unEfCYrdfxNyUhUA", + "targetId" : "116", + "labels" : null, + "ports" : null, + "annotations" : null, + "children" : [ ], + "routingPoints" : [ ] + }, { + "text" : "service_two-0", + "id" : "_UWx-0PunEfCYrdfxNyUhUA", + "type" : "edge:arrow", + "sourceId" : "_UWx-0funEfCYrdfxNyUhUA", + "targetId" : "119", + "labels" : null, + "ports" : null, + "annotations" : null, + "children" : [ ], + "routingPoints" : [ ] + }, { + "text" : "rabbit-0", + "id" : "_UWx-0vunEfCYrdfxNyUhUA", + "type" : "edge:arrow", + "sourceId" : "_UWx-0_unEfCYrdfxNyUhUA", + "targetId" : "133", + "labels" : null, + "ports" : null, + "annotations" : null, + "children" : [ ], + "routingPoints" : [ ] + }, { + "text" : "service_one_db-0", + "id" : "_UWx-1PunEfCYrdfxNyUhUA", + "type" : "edge:arrow", + "sourceId" : "_UWx-1funEfCYrdfxNyUhUA", + "targetId" : "113", + "labels" : null, + "ports" : null, + "annotations" : null, + "children" : [ ], + "routingPoints" : [ ] + }, { + "text" : "service_two_db-0", + "id" : "_UWx-1vunEfCYrdfxNyUhUA", + "type" : "edge:arrow", + "sourceId" : "_UWx-1_unEfCYrdfxNyUhUA", + "targetId" : "133", + "labels" : null, + "ports" : null, + "annotations" : null, + "children" : [ ], + "routingPoints" : [ ] + }, { + "text" : "api_gateway-0", + "id" : "_UWx-2PunEfCYrdfxNyUhUA", + "type" : "edge:arrow", + "sourceId" : "_UWx-2funEfCYrdfxNyUhUA", + "targetId" : "113", + "labels" : null, + "ports" : null, + "annotations" : null, + "children" : [ ], + "routingPoints" : [ ] + }, { + "text" : "api_gateway-0", + "id" : "_UWx-2vunEfCYrdfxNyUhUA", + "type" : "edge:arrow", + "sourceId" : "_UWx-2_unEfCYrdfxNyUhUA", + "targetId" : "133", + "labels" : null, + "ports" : null, + "annotations" : null, + "children" : [ ], + "routingPoints" : [ ] + }, { + "text" : "consul-0", + "id" : "_UWx-3PunEfCYrdfxNyUhUA", + "type" : "edge:arrow", + "sourceId" : "_UWx-3funEfCYrdfxNyUhUA", + "targetId" : "154", + "labels" : null, + "ports" : null, + "annotations" : null, + "children" : [ ], + "routingPoints" : [ ] + }, { + "text" : "user-0", + "id" : "_UWx-3vunEfCYrdfxNyUhUA", + "type" : "edge:arrow", + "sourceId" : "_UWx-3_unEfCYrdfxNyUhUA", + "targetId" : "157", + "labels" : null, + "ports" : null, + "annotations" : null, + "children" : [ ], + "routingPoints" : [ ] + }, { + "text" : "web_application-0", + "id" : "_UWx-4PunEfCYrdfxNyUhUA", + "type" : "edge:arrow", + "sourceId" : "_UWx-4funEfCYrdfxNyUhUA", + "targetId" : "161", + "labels" : null, + "ports" : null, + "annotations" : null, + "children" : [ ], + "routingPoints" : [ ] + }, { + "text" : "web_application-0", + "id" : "_UWx-4vunEfCYrdfxNyUhUA", + "type" : "edge:arrow", + "sourceId" : "_UWx-4_unEfCYrdfxNyUhUA", + "targetId" : "154", + "labels" : null, + "ports" : null, + "annotations" : null, + "children" : [ ], + "routingPoints" : [ ] + }, { + "text" : "api_gateway-0", + "id" : "_UWx-5PunEfCYrdfxNyUhUA", + "type" : "edge:arrow", + "sourceId" : "_UWx-5funEfCYrdfxNyUhUA", + "targetId" : "166", + "labels" : null, + "ports" : null, + "annotations" : null, + "children" : [ ], + "routingPoints" : [ ] + }, { + "text" : "service_one-0", + "id" : "_UWx-5vunEfCYrdfxNyUhUA", + "type" : "edge:arrow", + "sourceId" : "_UWx-5_unEfCYrdfxNyUhUA", + "targetId" : "166", + "labels" : null, + "ports" : null, + "annotations" : null, + "children" : [ ], + "routingPoints" : [ ] + }, { + "text" : "service_one_db-0", + "id" : "_UWx-6PunEfCYrdfxNyUhUA", + "type" : "edge:arrow", + "sourceId" : "_UWx-6funEfCYrdfxNyUhUA", + "targetId" : "166", + "labels" : null, + "ports" : null, + "annotations" : null, + "children" : [ ], + "routingPoints" : [ ] + }, { + "text" : "service_two-0", + "id" : "_UWx-6vunEfCYrdfxNyUhUA", + "type" : "edge:arrow", + "sourceId" : "_UWx-6_unEfCYrdfxNyUhUA", + "targetId" : "166", + "labels" : null, + "ports" : null, + "annotations" : null, + "children" : [ ], + "routingPoints" : [ ] + }, { + "text" : "service_two_db-0", + "id" : "_UWx-7PunEfCYrdfxNyUhUA", + "type" : "edge:arrow", + "sourceId" : "_UWx-7funEfCYrdfxNyUhUA", + "targetId" : "166", + "labels" : null, + "ports" : null, + "annotations" : null, + "children" : [ ], + "routingPoints" : [ ] + }, { + "text" : "web_application-0", + "id" : "_UWx-7vunEfCYrdfxNyUhUA", + "type" : "edge:arrow", + "sourceId" : "_UWx-7_unEfCYrdfxNyUhUA", + "targetId" : "166", + "labels" : null, + "ports" : null, + "annotations" : null, + "children" : [ ], + "routingPoints" : [ ] + }, { + "text" : "rabbit-0", + "id" : "_UWx-8PunEfCYrdfxNyUhUA", + "type" : "edge:arrow", + "sourceId" : "_UWx-8funEfCYrdfxNyUhUA", + "targetId" : "166", + "labels" : null, + "ports" : null, + "annotations" : null, + "children" : [ ], + "routingPoints" : [ ] + }, { + "text" : "consul-0", + "id" : "_UWx-8vunEfCYrdfxNyUhUA", + "type" : "edge:arrow", + "sourceId" : "_UWx-8_unEfCYrdfxNyUhUA", + "targetId" : "166", + "labels" : null, + "ports" : null, + "annotations" : null, + "children" : [ ], + "routingPoints" : [ ] + }, { + "text" : "consul2-0", + "id" : "_UWx-9PunEfCYrdfxNyUhUA", + "type" : "edge:arrow", + "sourceId" : "_UWx-9funEfCYrdfxNyUhUA", + "targetId" : "166", + "labels" : null, + "ports" : null, + "annotations" : null, + "children" : [ ], + "routingPoints" : [ ] + }, { + "text" : "consul3-0", + "id" : "_UWx-9vunEfCYrdfxNyUhUA", + "type" : "edge:arrow", + "sourceId" : "_UWx-9_unEfCYrdfxNyUhUA", + "targetId" : "166", + "labels" : null, + "ports" : null, + "annotations" : null, + "children" : [ ], + "routingPoints" : [ ] + }, { + "text" : "kibana-0", + "id" : "_UWx--PunEfCYrdfxNyUhUA", + "type" : "edge:arrow", + "sourceId" : "_UWx--funEfCYrdfxNyUhUA", + "targetId" : "166", + "labels" : null, + "ports" : null, + "annotations" : null, + "children" : [ ], + "routingPoints" : [ ] + }, { + "text" : "elasticsearch-0", + "id" : "_UWx--vunEfCYrdfxNyUhUA", + "type" : "edge:arrow", + "sourceId" : "_UWx--_unEfCYrdfxNyUhUA", + "targetId" : "166", + "labels" : null, + "ports" : null, + "annotations" : null, + "children" : [ ], + "routingPoints" : [ ] + }, { + "text" : "logstash-0", + "id" : "_UWx-_PunEfCYrdfxNyUhUA", + "type" : "edge:arrow", + "sourceId" : "_UWx-_funEfCYrdfxNyUhUA", + "targetId" : "166", + "labels" : null, + "ports" : null, + "annotations" : null, + "children" : [ ], + "routingPoints" : [ ] + }, { + "text" : "consul2_0-0", + "id" : "_UWx-_vunEfCYrdfxNyUhUA", + "type" : "edge:arrow", + "sourceId" : "_UWx-__unEfCYrdfxNyUhUA", + "targetId" : "_UWx9MPunEfCYrdfxNyUhUA", + "labels" : null, + "ports" : null, + "annotations" : null, + "children" : [ ], + "routingPoints" : [ ] + }, { + "text" : "consul2_1-0", + "id" : "_UWx_APunEfCYrdfxNyUhUA", + "type" : "edge:arrow", + "sourceId" : "_UWx_AfunEfCYrdfxNyUhUA", + "targetId" : "_UWx9Q_unEfCYrdfxNyUhUA", + "labels" : null, + "ports" : null, + "annotations" : null, + "children" : [ ], + "routingPoints" : [ ] + }, { + "text" : "consul3_0-0", + "id" : "_UWx_AvunEfCYrdfxNyUhUA", + "type" : "edge:arrow", + "sourceId" : "_UWx_A_unEfCYrdfxNyUhUA", + "targetId" : "_UWx9MPunEfCYrdfxNyUhUA", + "labels" : null, + "ports" : null, + "annotations" : null, + "children" : [ ], + "routingPoints" : [ ] + }, { + "text" : "consul3_1-0", + "id" : "_UWx_BPunEfCYrdfxNyUhUA", + "type" : "edge:arrow", + "sourceId" : "_UWx_BfunEfCYrdfxNyUhUA", + "targetId" : "_UWx9Q_unEfCYrdfxNyUhUA", + "labels" : null, + "ports" : null, + "annotations" : null, + "children" : [ ], + "routingPoints" : [ ] + }, { + "text" : "consul3_0-0", + "id" : "_UWx_BvunEfCYrdfxNyUhUA", + "type" : "edge:arrow", + "sourceId" : "_UWx_B_unEfCYrdfxNyUhUA", + "targetId" : "_UWx9VvunEfCYrdfxNyUhUA", + "labels" : null, + "ports" : null, + "annotations" : null, + "children" : [ ], + "routingPoints" : [ ] + }, { + "text" : "consul3_1-0", + "id" : "_UWx_CPunEfCYrdfxNyUhUA", + "type" : "edge:arrow", + "sourceId" : "_UWx_CfunEfCYrdfxNyUhUA", + "targetId" : "_UWx9YfunEfCYrdfxNyUhUA", + "labels" : null, + "ports" : null, + "annotations" : null, + "children" : [ ], + "routingPoints" : [ ] + }, { + "text" : "logstash_0-0", + "id" : "_UWx_CvunEfCYrdfxNyUhUA", + "type" : "edge:arrow", + "sourceId" : "_UWx_C_unEfCYrdfxNyUhUA", + "targetId" : "_UWx9gvunEfCYrdfxNyUhUA", + "labels" : null, + "ports" : null, + "annotations" : null, + "children" : [ ], + "routingPoints" : [ ] + }, { + "text" : "logstash_1-0", + "id" : "_UWx_DPunEfCYrdfxNyUhUA", + "type" : "edge:arrow", + "sourceId" : "_UWx_DfunEfCYrdfxNyUhUA", + "targetId" : "_UWx9jfunEfCYrdfxNyUhUA", + "labels" : null, + "ports" : null, + "annotations" : null, + "children" : [ ], + "routingPoints" : [ ] + }, { + "text" : "elasticsearch_0-0", + "id" : "_UWx_DvunEfCYrdfxNyUhUA", + "type" : "edge:arrow", + "sourceId" : "_UWx_D_unEfCYrdfxNyUhUA", + "targetId" : "_UWx9rvunEfCYrdfxNyUhUA", + "labels" : null, + "ports" : null, + "annotations" : null, + "children" : [ ], + "routingPoints" : [ ] + }, { + "text" : "elasticsearch_1-0", + "id" : "_UWx_EPunEfCYrdfxNyUhUA", + "type" : "edge:arrow", + "sourceId" : "_UWx_EfunEfCYrdfxNyUhUA", + "targetId" : "_UWx9tfunEfCYrdfxNyUhUA", + "labels" : null, + "ports" : null, + "annotations" : null, + "children" : [ ], + "routingPoints" : [ ] + }, { + "text" : "consul_0-0", + "id" : "_UWx_EvunEfCYrdfxNyUhUA", + "type" : "edge:arrow", + "sourceId" : "_UWx_E_unEfCYrdfxNyUhUA", + "targetId" : "_UWx92vunEfCYrdfxNyUhUA", + "labels" : null, + "ports" : null, + "annotations" : null, + "children" : [ ], + "routingPoints" : [ ] + }, { + "text" : "consul_1-0", + "id" : "_UWx_FPunEfCYrdfxNyUhUA", + "type" : "edge:arrow", + "sourceId" : "_UWx_FfunEfCYrdfxNyUhUA", + "targetId" : "_UWx96funEfCYrdfxNyUhUA", + "labels" : null, + "ports" : null, + "annotations" : null, + "children" : [ ], + "routingPoints" : [ ] + }, { + "text" : "service_one_0-0", + "id" : "_UWx_FvunEfCYrdfxNyUhUA", + "type" : "edge:arrow", + "sourceId" : "_UWx_F_unEfCYrdfxNyUhUA", + "targetId" : "_UWx9mPunEfCYrdfxNyUhUA", + "labels" : null, + "ports" : null, + "annotations" : null, + "children" : [ ], + "routingPoints" : [ ] + }, { + "text" : "service_one_1-0", + "id" : "_UWx_GPunEfCYrdfxNyUhUA", + "type" : "edge:arrow", + "sourceId" : "_UWx_GfunEfCYrdfxNyUhUA", + "targetId" : "_UWx9o_unEfCYrdfxNyUhUA", + "labels" : null, + "ports" : null, + "annotations" : null, + "children" : [ ], + "routingPoints" : [ ] + }, { + "text" : "service_one_0-0", + "id" : "_UWx_GvunEfCYrdfxNyUhUA", + "type" : "edge:arrow", + "sourceId" : "_UWx_G_unEfCYrdfxNyUhUA", + "targetId" : "_UWx9vPunEfCYrdfxNyUhUA", + "labels" : null, + "ports" : null, + "annotations" : null, + "children" : [ ], + "routingPoints" : [ ] + }, { + "text" : "service_one_1-0", + "id" : "_UWx_HPunEfCYrdfxNyUhUA", + "type" : "edge:arrow", + "sourceId" : "_UWx_HfunEfCYrdfxNyUhUA", + "targetId" : "_UWx9y_unEfCYrdfxNyUhUA", + "labels" : null, + "ports" : null, + "annotations" : null, + "children" : [ ], + "routingPoints" : [ ] + }, { + "text" : "rabbit_0-0", + "id" : "_UWx_HvunEfCYrdfxNyUhUA", + "type" : "edge:arrow", + "sourceId" : "_UWx_H_unEfCYrdfxNyUhUA", + "targetId" : "_UWx92vunEfCYrdfxNyUhUA", + "labels" : null, + "ports" : null, + "annotations" : null, + "children" : [ ], + "routingPoints" : [ ] + }, { + "text" : "rabbit_1-0", + "id" : "_UWx_IPunEfCYrdfxNyUhUA", + "type" : "edge:arrow", + "sourceId" : "_UWx_IfunEfCYrdfxNyUhUA", + "targetId" : "_UWx96funEfCYrdfxNyUhUA", + "labels" : null, + "ports" : null, + "annotations" : null, + "children" : [ ], + "routingPoints" : [ ] + }, { + "text" : "consul_0-0", + "id" : "_UWx_IvunEfCYrdfxNyUhUA", + "type" : "edge:arrow", + "sourceId" : "_UWx_I_unEfCYrdfxNyUhUA", + "targetId" : "_UWx9-PunEfCYrdfxNyUhUA", + "labels" : null, + "ports" : null, + "annotations" : null, + "children" : [ ], + "routingPoints" : [ ] + }, { + "text" : "consul_1-0", + "id" : "_UWx_JPunEfCYrdfxNyUhUA", + "type" : "edge:arrow", + "sourceId" : "_UWx_JfunEfCYrdfxNyUhUA", + "targetId" : "_UWx-B_unEfCYrdfxNyUhUA", + "labels" : null, + "ports" : null, + "annotations" : null, + "children" : [ ], + "routingPoints" : [ ] + }, { + "text" : "service_two_0-0", + "id" : "_UWx_JvunEfCYrdfxNyUhUA", + "type" : "edge:arrow", + "sourceId" : "_UWx_J_unEfCYrdfxNyUhUA", + "targetId" : "_UWx9mPunEfCYrdfxNyUhUA", + "labels" : null, + "ports" : null, + "annotations" : null, + "children" : [ ], + "routingPoints" : [ ] + }, { + "text" : "service_two_1-0", + "id" : "_UWx_KPunEfCYrdfxNyUhUA", + "type" : "edge:arrow", + "sourceId" : "_UWx_KfunEfCYrdfxNyUhUA", + "targetId" : "_UWx9o_unEfCYrdfxNyUhUA", + "labels" : null, + "ports" : null, + "annotations" : null, + "children" : [ ], + "routingPoints" : [ ] + }, { + "text" : "service_two_0-0", + "id" : "_UWx_KvunEfCYrdfxNyUhUA", + "type" : "edge:arrow", + "sourceId" : "_UWx_K_unEfCYrdfxNyUhUA", + "targetId" : "_UWx9vPunEfCYrdfxNyUhUA", + "labels" : null, + "ports" : null, + "annotations" : null, + "children" : [ ], + "routingPoints" : [ ] + }, { + "text" : "service_two_1-0", + "id" : "_UWx_LPunEfCYrdfxNyUhUA", + "type" : "edge:arrow", + "sourceId" : "_UWx_LfunEfCYrdfxNyUhUA", + "targetId" : "_UWx9y_unEfCYrdfxNyUhUA", + "labels" : null, + "ports" : null, + "annotations" : null, + "children" : [ ], + "routingPoints" : [ ] + }, { + "text" : "rabbit_0-0", + "id" : "_UWx_LvunEfCYrdfxNyUhUA", + "type" : "edge:arrow", + "sourceId" : "_UWx_L_unEfCYrdfxNyUhUA", + "targetId" : "_UWx9-PunEfCYrdfxNyUhUA", + "labels" : null, + "ports" : null, + "annotations" : null, + "children" : [ ], + "routingPoints" : [ ] + }, { + "text" : "rabbit_1-0", + "id" : "_UWx_MPunEfCYrdfxNyUhUA", + "type" : "edge:arrow", + "sourceId" : "_UWx_MfunEfCYrdfxNyUhUA", + "targetId" : "_UWx-B_unEfCYrdfxNyUhUA", + "labels" : null, + "ports" : null, + "annotations" : null, + "children" : [ ], + "routingPoints" : [ ] + }, { + "text" : "service_one_db_0-0", + "id" : "_UWx_MvunEfCYrdfxNyUhUA", + "type" : "edge:arrow", + "sourceId" : "_UWx_M_unEfCYrdfxNyUhUA", + "targetId" : "_UWx92vunEfCYrdfxNyUhUA", + "labels" : null, + "ports" : null, + "annotations" : null, + "children" : [ ], + "routingPoints" : [ ] + }, { + "text" : "service_one_db_1-0", + "id" : "_UWx_NPunEfCYrdfxNyUhUA", + "type" : "edge:arrow", + "sourceId" : "_UWx_NfunEfCYrdfxNyUhUA", + "targetId" : "_UWx96funEfCYrdfxNyUhUA", + "labels" : null, + "ports" : null, + "annotations" : null, + "children" : [ ], + "routingPoints" : [ ] + }, { + "text" : "service_two_db_0-0", + "id" : "_UWx_NvunEfCYrdfxNyUhUA", + "type" : "edge:arrow", + "sourceId" : "_UWx_N_unEfCYrdfxNyUhUA", + "targetId" : "_UWx9-PunEfCYrdfxNyUhUA", + "labels" : null, + "ports" : null, + "annotations" : null, + "children" : [ ], + "routingPoints" : [ ] + }, { + "text" : "service_two_db_1-0", + "id" : "_UWx_OPunEfCYrdfxNyUhUA", + "type" : "edge:arrow", + "sourceId" : "_UWx_OfunEfCYrdfxNyUhUA", + "targetId" : "_UWx-B_unEfCYrdfxNyUhUA", + "labels" : null, + "ports" : null, + "annotations" : null, + "children" : [ ], + "routingPoints" : [ ] + }, { + "text" : "api_gateway_0-0", + "id" : "_UWx_OvunEfCYrdfxNyUhUA", + "type" : "edge:arrow", + "sourceId" : "_UWx_O_unEfCYrdfxNyUhUA", + "targetId" : "_UWx92vunEfCYrdfxNyUhUA", + "labels" : null, + "ports" : null, + "annotations" : null, + "children" : [ ], + "routingPoints" : [ ] + }, { + "text" : "api_gateway_1-0", + "id" : "_UWx_PPunEfCYrdfxNyUhUA", + "type" : "edge:arrow", + "sourceId" : "_UWx_PfunEfCYrdfxNyUhUA", + "targetId" : "_UWx96funEfCYrdfxNyUhUA", + "labels" : null, + "ports" : null, + "annotations" : null, + "children" : [ ], + "routingPoints" : [ ] + }, { + "text" : "api_gateway_0-0", + "id" : "_UWx_PvunEfCYrdfxNyUhUA", + "type" : "edge:arrow", + "sourceId" : "_UWx_P_unEfCYrdfxNyUhUA", + "targetId" : "_UWx9-PunEfCYrdfxNyUhUA", + "labels" : null, + "ports" : null, + "annotations" : null, + "children" : [ ], + "routingPoints" : [ ] + }, { + "text" : "api_gateway_1-0", + "id" : "_UWx_QPunEfCYrdfxNyUhUA", + "type" : "edge:arrow", + "sourceId" : "_UWx_QfunEfCYrdfxNyUhUA", + "targetId" : "_UWx-B_unEfCYrdfxNyUhUA", + "labels" : null, + "ports" : null, + "annotations" : null, + "children" : [ ], + "routingPoints" : [ ] + }, { + "text" : "consul_0-0", + "id" : "_UWx_QvunEfCYrdfxNyUhUA", + "type" : "edge:arrow", + "sourceId" : "_UWx_Q_unEfCYrdfxNyUhUA", + "targetId" : "_UWx-NvunEfCYrdfxNyUhUA", + "labels" : null, + "ports" : null, + "annotations" : null, + "children" : [ ], + "routingPoints" : [ ] + }, { + "text" : "consul_1-0", + "id" : "_UWx_RPunEfCYrdfxNyUhUA", + "type" : "edge:arrow", + "sourceId" : "_UWx_RfunEfCYrdfxNyUhUA", + "targetId" : "_UWx-RfunEfCYrdfxNyUhUA", + "labels" : null, + "ports" : null, + "annotations" : null, + "children" : [ ], + "routingPoints" : [ ] + }, { + "text" : "user_0-0", + "id" : "_UWx_RvunEfCYrdfxNyUhUA", + "type" : "edge:arrow", + "sourceId" : "_UWx_R_unEfCYrdfxNyUhUA", + "targetId" : "_UWx-VPunEfCYrdfxNyUhUA", + "labels" : null, + "ports" : null, + "annotations" : null, + "children" : [ ], + "routingPoints" : [ ] + }, { + "text" : "user_1-0", + "id" : "_UWx_SPunEfCYrdfxNyUhUA", + "type" : "edge:arrow", + "sourceId" : "_UWx_SfunEfCYrdfxNyUhUA", + "targetId" : "_UWx-Y_unEfCYrdfxNyUhUA", + "labels" : null, + "ports" : null, + "annotations" : null, + "children" : [ ], + "routingPoints" : [ ] + }, { + "text" : "web_application_0-0", + "id" : "_UWx_SvunEfCYrdfxNyUhUA", + "type" : "edge:arrow", + "sourceId" : "_UWx_S_unEfCYrdfxNyUhUA", + "targetId" : "_UWx9IvunEfCYrdfxNyUhUA", + "labels" : null, + "ports" : null, + "annotations" : null, + "children" : [ ], + "routingPoints" : [ ] + }, { + "text" : "web_application_1-0", + "id" : "_UWx_TPunEfCYrdfxNyUhUA", + "type" : "edge:arrow", + "sourceId" : "_UWx_TfunEfCYrdfxNyUhUA", + "targetId" : "_UWx9KfunEfCYrdfxNyUhUA", + "labels" : null, + "ports" : null, + "annotations" : null, + "children" : [ ], + "routingPoints" : [ ] + }, { + "text" : "web_application_0-0", + "id" : "_UWx_TvunEfCYrdfxNyUhUA", + "type" : "edge:arrow", + "sourceId" : "_UWx_T_unEfCYrdfxNyUhUA", + "targetId" : "_UWx-NvunEfCYrdfxNyUhUA", + "labels" : null, + "ports" : null, + "annotations" : null, + "children" : [ ], + "routingPoints" : [ ] + }, { + "text" : "web_application_1-0", + "id" : "_UWx_UPunEfCYrdfxNyUhUA", + "type" : "edge:arrow", + "sourceId" : "_UWx_UfunEfCYrdfxNyUhUA", + "targetId" : "_UWx-RfunEfCYrdfxNyUhUA", + "labels" : null, + "ports" : null, + "annotations" : null, + "children" : [ ], + "routingPoints" : [ ] + }, { + "text" : "api_gateway_0-0", + "id" : "_UWx_UvunEfCYrdfxNyUhUA", + "type" : "edge:arrow", + "sourceId" : "_UWx_U_unEfCYrdfxNyUhUA", + "targetId" : "_UWx-cvunEfCYrdfxNyUhUA", + "labels" : null, + "ports" : null, + "annotations" : null, + "children" : [ ], + "routingPoints" : [ ] + }, { + "text" : "api_gateway_1-0", + "id" : "_UWx_VPunEfCYrdfxNyUhUA", + "type" : "edge:arrow", + "sourceId" : "_UWx_VfunEfCYrdfxNyUhUA", + "targetId" : "_UWx-dfunEfCYrdfxNyUhUA", + "labels" : null, + "ports" : null, + "annotations" : null, + "children" : [ ], + "routingPoints" : [ ] + }, { + "text" : "service_one_0-0", + "id" : "_UWx_VvunEfCYrdfxNyUhUA", + "type" : "edge:arrow", + "sourceId" : "_UWx_V_unEfCYrdfxNyUhUA", + "targetId" : "_UWx-cvunEfCYrdfxNyUhUA", + "labels" : null, + "ports" : null, + "annotations" : null, + "children" : [ ], + "routingPoints" : [ ] + }, { + "text" : "service_one_1-0", + "id" : "_UWx_WPunEfCYrdfxNyUhUA", + "type" : "edge:arrow", + "sourceId" : "_UWx_WfunEfCYrdfxNyUhUA", + "targetId" : "_UWx-dfunEfCYrdfxNyUhUA", + "labels" : null, + "ports" : null, + "annotations" : null, + "children" : [ ], + "routingPoints" : [ ] + }, { + "text" : "service_one_db_0-0", + "id" : "_UWx_WvunEfCYrdfxNyUhUA", + "type" : "edge:arrow", + "sourceId" : "_UWx_W_unEfCYrdfxNyUhUA", + "targetId" : "_UWx-cvunEfCYrdfxNyUhUA", + "labels" : null, + "ports" : null, + "annotations" : null, + "children" : [ ], + "routingPoints" : [ ] + }, { + "text" : "service_one_db_1-0", + "id" : "_UWx_XPunEfCYrdfxNyUhUA", + "type" : "edge:arrow", + "sourceId" : "_UWx_XfunEfCYrdfxNyUhUA", + "targetId" : "_UWx-dfunEfCYrdfxNyUhUA", + "labels" : null, + "ports" : null, + "annotations" : null, + "children" : [ ], + "routingPoints" : [ ] + }, { + "text" : "service_two_0-0", + "id" : "_UWx_XvunEfCYrdfxNyUhUA", + "type" : "edge:arrow", + "sourceId" : "_UWx_X_unEfCYrdfxNyUhUA", + "targetId" : "_UWx-cvunEfCYrdfxNyUhUA", + "labels" : null, + "ports" : null, + "annotations" : null, + "children" : [ ], + "routingPoints" : [ ] + }, { + "text" : "service_two_1-0", + "id" : "_UWx_YPunEfCYrdfxNyUhUA", + "type" : "edge:arrow", + "sourceId" : "_UWx_YfunEfCYrdfxNyUhUA", + "targetId" : "_UWx-dfunEfCYrdfxNyUhUA", + "labels" : null, + "ports" : null, + "annotations" : null, + "children" : [ ], + "routingPoints" : [ ] + }, { + "text" : "service_two_db_0-0", + "id" : "_UWx_YvunEfCYrdfxNyUhUA", + "type" : "edge:arrow", + "sourceId" : "_UWx_Y_unEfCYrdfxNyUhUA", + "targetId" : "_UWx-cvunEfCYrdfxNyUhUA", + "labels" : null, + "ports" : null, + "annotations" : null, + "children" : [ ], + "routingPoints" : [ ] + }, { + "text" : "service_two_db_1-0", + "id" : "_UWx_ZPunEfCYrdfxNyUhUA", + "type" : "edge:arrow", + "sourceId" : "_UWx_ZfunEfCYrdfxNyUhUA", + "targetId" : "_UWx-dfunEfCYrdfxNyUhUA", + "labels" : null, + "ports" : null, + "annotations" : null, + "children" : [ ], + "routingPoints" : [ ] + }, { + "text" : "web_application_0-0", + "id" : "_UWx_ZvunEfCYrdfxNyUhUA", + "type" : "edge:arrow", + "sourceId" : "_UWx_Z_unEfCYrdfxNyUhUA", + "targetId" : "_UWx-cvunEfCYrdfxNyUhUA", + "labels" : null, + "ports" : null, + "annotations" : null, + "children" : [ ], + "routingPoints" : [ ] + }, { + "text" : "web_application_1-0", + "id" : "_UWx_aPunEfCYrdfxNyUhUA", + "type" : "edge:arrow", + "sourceId" : "_UWx_afunEfCYrdfxNyUhUA", + "targetId" : "_UWx-dfunEfCYrdfxNyUhUA", + "labels" : null, + "ports" : null, + "annotations" : null, + "children" : [ ], + "routingPoints" : [ ] + }, { + "text" : "rabbit_0-0", + "id" : "_UWx_avunEfCYrdfxNyUhUA", + "type" : "edge:arrow", + "sourceId" : "_UWx_a_unEfCYrdfxNyUhUA", + "targetId" : "_UWx-cvunEfCYrdfxNyUhUA", + "labels" : null, + "ports" : null, + "annotations" : null, + "children" : [ ], + "routingPoints" : [ ] + }, { + "text" : "rabbit_1-0", + "id" : "_UWx_bPunEfCYrdfxNyUhUA", + "type" : "edge:arrow", + "sourceId" : "_UWx_bfunEfCYrdfxNyUhUA", + "targetId" : "_UWx-dfunEfCYrdfxNyUhUA", + "labels" : null, + "ports" : null, + "annotations" : null, + "children" : [ ], + "routingPoints" : [ ] + }, { + "text" : "consul_0-0", + "id" : "_UWx_bvunEfCYrdfxNyUhUA", + "type" : "edge:arrow", + "sourceId" : "_UWx_b_unEfCYrdfxNyUhUA", + "targetId" : "_UWx-cvunEfCYrdfxNyUhUA", + "labels" : null, + "ports" : null, + "annotations" : null, + "children" : [ ], + "routingPoints" : [ ] + }, { + "text" : "consul_1-0", + "id" : "_UWx_cPunEfCYrdfxNyUhUA", + "type" : "edge:arrow", + "sourceId" : "_UWx_cfunEfCYrdfxNyUhUA", + "targetId" : "_UWx-dfunEfCYrdfxNyUhUA", + "labels" : null, + "ports" : null, + "annotations" : null, + "children" : [ ], + "routingPoints" : [ ] + }, { + "text" : "consul2_0-0", + "id" : "_UWx_cvunEfCYrdfxNyUhUA", + "type" : "edge:arrow", + "sourceId" : "_UWx_c_unEfCYrdfxNyUhUA", + "targetId" : "_UWx-cvunEfCYrdfxNyUhUA", + "labels" : null, + "ports" : null, + "annotations" : null, + "children" : [ ], + "routingPoints" : [ ] + }, { + "text" : "consul2_1-0", + "id" : "_UWx_dPunEfCYrdfxNyUhUA", + "type" : "edge:arrow", + "sourceId" : "_UWx_dfunEfCYrdfxNyUhUA", + "targetId" : "_UWx-dfunEfCYrdfxNyUhUA", + "labels" : null, + "ports" : null, + "annotations" : null, + "children" : [ ], + "routingPoints" : [ ] + }, { + "text" : "consul3_0-0", + "id" : "_UWx_dvunEfCYrdfxNyUhUA", + "type" : "edge:arrow", + "sourceId" : "_UWx_d_unEfCYrdfxNyUhUA", + "targetId" : "_UWx-cvunEfCYrdfxNyUhUA", + "labels" : null, + "ports" : null, + "annotations" : null, + "children" : [ ], + "routingPoints" : [ ] + }, { + "text" : "consul3_1-0", + "id" : "_UWx_ePunEfCYrdfxNyUhUA", + "type" : "edge:arrow", + "sourceId" : "_UWx_efunEfCYrdfxNyUhUA", + "targetId" : "_UWx-dfunEfCYrdfxNyUhUA", + "labels" : null, + "ports" : null, + "annotations" : null, + "children" : [ ], + "routingPoints" : [ ] + }, { + "text" : "kibana_0-0", + "id" : "_UWx_evunEfCYrdfxNyUhUA", + "type" : "edge:arrow", + "sourceId" : "_UWx_e_unEfCYrdfxNyUhUA", + "targetId" : "_UWx-cvunEfCYrdfxNyUhUA", + "labels" : null, + "ports" : null, + "annotations" : null, + "children" : [ ], + "routingPoints" : [ ] + }, { + "text" : "kibana_1-0", + "id" : "_UWx_fPunEfCYrdfxNyUhUA", + "type" : "edge:arrow", + "sourceId" : "_UWx_ffunEfCYrdfxNyUhUA", + "targetId" : "_UWx-dfunEfCYrdfxNyUhUA", + "labels" : null, + "ports" : null, + "annotations" : null, + "children" : [ ], + "routingPoints" : [ ] + }, { + "text" : "elasticsearch_0-0", + "id" : "_UWx_fvunEfCYrdfxNyUhUA", + "type" : "edge:arrow", + "sourceId" : "_UWx_f_unEfCYrdfxNyUhUA", + "targetId" : "_UWx-cvunEfCYrdfxNyUhUA", + "labels" : null, + "ports" : null, + "annotations" : null, + "children" : [ ], + "routingPoints" : [ ] + }, { + "text" : "elasticsearch_1-0", + "id" : "_UWx_gPunEfCYrdfxNyUhUA", + "type" : "edge:arrow", + "sourceId" : "_UWx_gfunEfCYrdfxNyUhUA", + "targetId" : "_UWx-dfunEfCYrdfxNyUhUA", + "labels" : null, + "ports" : null, + "annotations" : null, + "children" : [ ], + "routingPoints" : [ ] + }, { + "text" : "logstash_0-0", + "id" : "_UWx_gvunEfCYrdfxNyUhUA", + "type" : "edge:arrow", + "sourceId" : "_UWx_g_unEfCYrdfxNyUhUA", + "targetId" : "_UWx-cvunEfCYrdfxNyUhUA", + "labels" : null, + "ports" : null, + "annotations" : null, + "children" : [ ], + "routingPoints" : [ ] + }, { + "text" : "logstash_1-0", + "id" : "_UWx_hPunEfCYrdfxNyUhUA", + "type" : "edge:arrow", + "sourceId" : "_UWx_hfunEfCYrdfxNyUhUA", + "targetId" : "_UWx-dfunEfCYrdfxNyUhUA", + "labels" : null, + "ports" : null, + "annotations" : null, + "children" : [ ], + "routingPoints" : [ ] + }, { + "text" : "user", + "id" : "2", + "type" : "node:input-output", + "labels" : [ { + "labelTypeId" : "17", + "labelTypeValueId" : "93" + }, { + "labelTypeId" : "17", + "labelTypeValueId" : "94" + }, { + "labelTypeId" : "17", + "labelTypeValueId" : "95" + } ], + "ports" : [ { + "id" : "161", + "type" : "port:dfd-input", + "children" : [ ] + }, { + "behavior" : "assign Stereotype.user_stereotype,Stereotype.entrypoint,Stereotype.exitpoint,Stereotype.restful_http,Stereotype.encrypted_connection if TRUE from web_application|web_application-0\nforward web_application|web_application-0", + "id" : "158", + "type" : "port:dfd-output", + "children" : [ ] + }, { + "behavior" : "assign Stereotype.user_stereotype,Stereotype.entrypoint,Stereotype.exitpoint,Stereotype.restful_http,Stereotype.encrypted_connection if TRUE\nforward web_application|web_application-0", + "id" : "_UWx-3_unEfCYrdfxNyUhUA", + "type" : "port:dfd-output", + "children" : [ ] + } ], + "annotations" : [ { + "message" : "Propagated: Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.restful_http, Stereotype.encrypted_connection, Stereotype.web_application, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 540315736 + }, { + "message" : "Incoming: Stereotype.web_application, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.encrypted_connection", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 540315736 + }, { + "message" : "Propagated: Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.restful_http, Stereotype.encrypted_connection, Stereotype.web_application, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 540315736 + }, { + "message" : "Incoming: Stereotype.web_application, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.encrypted_connection, Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 540315736 + }, { + "message" : "Propagated: Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.restful_http, Stereotype.encrypted_connection, Stereotype.web_application, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1824225917 + }, { + "message" : "Incoming: Stereotype.web_application, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.encrypted_connection", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1824225917 + }, { + "message" : "Propagated: Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.restful_http, Stereotype.encrypted_connection, Stereotype.web_application, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 215694469 + }, { + "message" : "Incoming: Stereotype.web_application, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.encrypted_connection", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 215694469 + }, { + "message" : "Propagated: Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.restful_http, Stereotype.encrypted_connection, Stereotype.web_application, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1707889234 + }, { + "message" : "Incoming: Stereotype.web_application, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.encrypted_connection", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1707889234 + }, { + "message" : "Propagated: Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.restful_http, Stereotype.encrypted_connection, Stereotype.web_application, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1707889234 + }, { + "message" : "Incoming: Stereotype.web_application, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.encrypted_connection, Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1707889234 + }, { + "message" : "Propagated: Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.restful_http, Stereotype.encrypted_connection, Stereotype.web_application, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1119955774 + }, { + "message" : "Incoming: Stereotype.web_application, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.encrypted_connection", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1119955774 + }, { + "message" : "Propagated: Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.restful_http, Stereotype.encrypted_connection, Stereotype.web_application, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1962049725 + }, { + "message" : "Incoming: Stereotype.web_application, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.encrypted_connection", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1962049725 + }, { + "message" : "Propagated: Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.restful_http, Stereotype.encrypted_connection, Stereotype.web_application, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1962049725 + }, { + "message" : "Incoming: Stereotype.web_application, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.encrypted_connection, Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1962049725 + }, { + "message" : "Propagated: Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.restful_http, Stereotype.encrypted_connection, Stereotype.web_application, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 875010954 + }, { + "message" : "Incoming: Stereotype.web_application, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.encrypted_connection", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 875010954 + }, { + "message" : "Propagated: Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.restful_http, Stereotype.encrypted_connection, Stereotype.web_application, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 875010954 + }, { + "message" : "Incoming: Stereotype.web_application, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.encrypted_connection, Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 875010954 + }, { + "message" : "Propagated: Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.restful_http, Stereotype.encrypted_connection, Stereotype.web_application, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 816576412 + }, { + "message" : "Incoming: Stereotype.web_application, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.encrypted_connection", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 816576412 + }, { + "message" : "Propagated: Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.restful_http, Stereotype.encrypted_connection, Stereotype.web_application, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 816576412 + }, { + "message" : "Incoming: Stereotype.web_application, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.encrypted_connection, Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 816576412 + }, { + "message" : "Propagated: Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.restful_http, Stereotype.encrypted_connection, Stereotype.web_application, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1745904086 + }, { + "message" : "Incoming: Stereotype.web_application, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.encrypted_connection", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1745904086 + }, { + "message" : "Propagated: Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.restful_http, Stereotype.encrypted_connection, Stereotype.web_application, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1745904086 + }, { + "message" : "Incoming: Stereotype.web_application, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.encrypted_connection, Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1745904086 + }, { + "message" : "Propagated: Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.restful_http, Stereotype.encrypted_connection, Stereotype.web_application, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 38914319 + }, { + "message" : "Incoming: Stereotype.web_application, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.encrypted_connection", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 38914319 + }, { + "message" : "Propagated: Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.restful_http, Stereotype.encrypted_connection, Stereotype.web_application, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 38914319 + }, { + "message" : "Incoming: Stereotype.web_application, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.encrypted_connection, Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 38914319 + }, { + "message" : "Propagated: Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.restful_http, Stereotype.encrypted_connection, Stereotype.web_application, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 768702707 + }, { + "message" : "Incoming: Stereotype.web_application, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.encrypted_connection", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 768702707 + }, { + "message" : "Propagated: Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.restful_http, Stereotype.encrypted_connection, Stereotype.web_application, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 768702707 + }, { + "message" : "Incoming: Stereotype.web_application, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.encrypted_connection, Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 768702707 + }, { + "message" : "Propagated: Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.restful_http, Stereotype.encrypted_connection, Stereotype.web_application, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1662312252 + }, { + "message" : "Incoming: Stereotype.web_application, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.encrypted_connection", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1662312252 + }, { + "message" : "Propagated: Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.restful_http, Stereotype.encrypted_connection, Stereotype.web_application, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1662312252 + }, { + "message" : "Incoming: Stereotype.web_application, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.encrypted_connection, Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1662312252 + }, { + "message" : "Propagated: Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.restful_http, Stereotype.encrypted_connection, Stereotype.web_application, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 280541440 + }, { + "message" : "Incoming: Stereotype.web_application, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.encrypted_connection", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 280541440 + }, { + "message" : "Propagated: Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.restful_http, Stereotype.encrypted_connection, Stereotype.web_application, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 280541440 + }, { + "message" : "Incoming: Stereotype.web_application, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.encrypted_connection, Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 280541440 + }, { + "message" : "Propagated: Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.restful_http, Stereotype.encrypted_connection, Stereotype.web_application, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1198513669 + }, { + "message" : "Incoming: Stereotype.web_application, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.encrypted_connection", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1198513669 + }, { + "message" : "Propagated: Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.restful_http, Stereotype.encrypted_connection, Stereotype.web_application, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1198513669 + }, { + "message" : "Incoming: Stereotype.web_application, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.encrypted_connection, Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1198513669 + }, { + "message" : "Propagated: Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.restful_http, Stereotype.encrypted_connection, Stereotype.web_application, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1360125564 + }, { + "message" : "Incoming: Stereotype.web_application, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.encrypted_connection", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1360125564 + }, { + "message" : "Propagated: Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.restful_http, Stereotype.encrypted_connection, Stereotype.web_application, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 683211146 + }, { + "message" : "Incoming: Stereotype.web_application, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.encrypted_connection", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 683211146 + }, { + "message" : "Propagated: Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.restful_http, Stereotype.encrypted_connection, Stereotype.web_application, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 683211146 + }, { + "message" : "Incoming: Stereotype.web_application, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.encrypted_connection, Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 683211146 + }, { + "message" : "Propagated: Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.restful_http, Stereotype.encrypted_connection, Stereotype.web_application, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 583744857 + }, { + "message" : "Incoming: Stereotype.web_application, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.encrypted_connection", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 583744857 + }, { + "message" : "Propagated: Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.restful_http, Stereotype.encrypted_connection, Stereotype.web_application, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 583744857 + }, { + "message" : "Incoming: Stereotype.web_application, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.encrypted_connection, Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 583744857 + }, { + "message" : "Propagated: Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.restful_http, Stereotype.encrypted_connection, Stereotype.web_application, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 881280045 + }, { + "message" : "Incoming: Stereotype.web_application, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.encrypted_connection", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 881280045 + }, { + "message" : "Propagated: Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.restful_http, Stereotype.encrypted_connection, Stereotype.web_application, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 881280045 + }, { + "message" : "Incoming: Stereotype.web_application, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.encrypted_connection, Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 881280045 + }, { + "message" : "Propagated: Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.restful_http, Stereotype.encrypted_connection, Stereotype.web_application, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1393484427 + }, { + "message" : "Incoming: Stereotype.web_application, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.encrypted_connection", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1393484427 + } ], + "children" : [ ], + "position" : { + "x" : 0.0, + "y" : 0.0 + }, + "size" : null + }, { + "text" : "consul", + "id" : "3", + "type" : "node:function", + "labels" : [ { + "labelTypeId" : "17", + "labelTypeValueId" : "52" + }, { + "labelTypeId" : "17", + "labelTypeValueId" : "27" + }, { + "labelTypeId" : "22", + "labelTypeValueId" : "53" + }, { + "labelTypeId" : "54", + "labelTypeValueId" : "55" + } ], + "ports" : [ { + "id" : "98", + "type" : "port:dfd-input", + "children" : [ ] + }, { + "behavior" : "assign Stereotype.service_discovery,Stereotype.infrastructural,Stereotype.restful_http if TRUE from consul2|consul2-0|consul3|consul3-0\nforward consul2|consul2-0|consul3|consul3-0", + "id" : "114", + "type" : "port:dfd-output", + "children" : [ ] + }, { + "behavior" : "assign Stereotype.service_discovery,Stereotype.infrastructural,Stereotype.restful_http if TRUE from consul2|consul2-0|consul3|consul3-0\nforward consul2|consul2-0|consul3|consul3-0", + "id" : "134", + "type" : "port:dfd-output", + "children" : [ ] + }, { + "behavior" : "assign Stereotype.service_discovery,Stereotype.infrastructural,Stereotype.restful_http if TRUE from consul2|consul2-0|consul3|consul3-0\nforward consul2|consul2-0|consul3|consul3-0", + "id" : "155", + "type" : "port:dfd-output", + "children" : [ ] + }, { + "behavior" : "assign Stereotype.service_discovery,Stereotype.infrastructural,Stereotype.restful_http if TRUE from consul2|consul2-0|consul3|consul3-0\nforward consul2|consul2-0|consul3|consul3-0", + "id" : "181", + "type" : "port:dfd-output", + "children" : [ ] + }, { + "behavior" : "assign Stereotype.service_discovery,Stereotype.infrastructural,Stereotype.restful_http if TRUE\nforward consul2|consul2-0|consul3|consul3-0", + "id" : "_UWx-xfunEfCYrdfxNyUhUA", + "type" : "port:dfd-output", + "children" : [ ] + }, { + "behavior" : "assign Stereotype.service_discovery,Stereotype.infrastructural,Stereotype.restful_http if TRUE\nforward consul2|consul2-0|consul3|consul3-0", + "id" : "_UWx-zfunEfCYrdfxNyUhUA", + "type" : "port:dfd-output", + "children" : [ ] + }, { + "behavior" : "assign Stereotype.service_discovery,Stereotype.infrastructural,Stereotype.restful_http if TRUE\nforward consul2|consul2-0|consul3|consul3-0", + "id" : "_UWx-3funEfCYrdfxNyUhUA", + "type" : "port:dfd-output", + "children" : [ ] + }, { + "behavior" : "assign Stereotype.service_discovery,Stereotype.infrastructural,Stereotype.restful_http if TRUE\nforward consul2|consul2-0|consul3|consul3-0", + "id" : "_UWx-8_unEfCYrdfxNyUhUA", + "type" : "port:dfd-output", + "children" : [ ] + } ], + "annotations" : [ { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 588503940 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 588503940 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 560165559 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 560165559 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 347354124 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 347354124 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 313249054 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 313249054 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 802814772 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 802814772 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 362140338 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 362140338 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 929066990 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 929066990 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 869437194 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 869437194 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 76379039 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 76379039 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1374115999 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1374115999 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 767535474 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 767535474 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1190608890 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1190608890 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1101970356 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1101970356 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 184410212 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 184410212 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1515793520 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1515793520 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 300526628 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 300526628 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1734023423 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1734023423 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1752402342 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1752402342 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 140778365 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 140778365 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 935818862 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 935818862 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1068781783 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1068781783 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1266602046 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1266602046 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1667859935 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1667859935 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1871838170 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1871838170 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1916681239 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1916681239 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1341975886 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1341975886 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 12302064 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 12302064 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 65465460 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 65465460 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1836765429 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1836765429 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 77215921 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 77215921 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1406593369 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1406593369 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1772358460 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1772358460 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1713988669 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1713988669 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1684368286 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1684368286 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1752223660 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1752223660 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1163216403 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1163216403 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1675999402 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1675999402 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 747833043 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 747833043 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 771359425 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 771359425 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1468393491 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1468393491 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 671187578 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 671187578 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1354510873 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1354510873 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 93974967 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 93974967 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 105860882 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 105860882 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 936544568 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 936544568 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 2097992252 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 2097992252 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1796154990 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1796154990 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1211627902 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1211627902 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1395740534 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1395740534 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1655072591 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1655072591 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 117701189 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 117701189 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1586519852 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1586519852 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 266196910 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 266196910 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 656787973 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 656787973 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 445726857 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 445726857 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1138190994 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1138190994 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 889398176 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 889398176 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 621197441 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 621197441 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1568527689 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1568527689 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1683617002 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1683617002 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 2059701776 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 2059701776 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1379222018 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1379222018 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1796415927 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1796415927 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 875487383 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 875487383 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1791253516 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1791253516 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 303638020 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 303638020 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1618326377 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1618326377 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 589094312 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 589094312 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 940938116 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 940938116 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1434940020 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1434940020 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 7162498 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 7162498 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 351297720 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 351297720 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 2047521920 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 2047521920 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 319618119 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 319618119 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 82750270 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 82750270 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 728740247 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 728740247 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1512759723 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1512759723 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 736888459 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 736888459 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 2103044456 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 2103044456 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1478269879 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1478269879 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 328140385 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 328140385 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 556773329 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 556773329 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 2021230836 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 2021230836 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 321795476 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 321795476 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1327714567 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1327714567 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 475871799 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 475871799 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 2117938877 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 2117938877 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 725873428 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 725873428 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1328764608 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1328764608 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1483522397 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1483522397 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1820545559 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1820545559 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1367900185 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1367900185 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1867568476 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1867568476 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 431300939 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 431300939 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1605570842 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1605570842 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1252969149 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1252969149 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 599592065 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 599592065 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 322100932 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 322100932 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1414411897 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1414411897 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1753871727 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1753871727 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 588985851 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 588985851 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 651828130 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 651828130 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 58854654 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 58854654 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 604480364 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 604480364 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1590292218 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1590292218 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 995030431 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 995030431 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 870627780 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 870627780 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1560244891 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1560244891 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1804292128 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1804292128 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 2100817420 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 2100817420 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1518022811 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1518022811 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 2000267972 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 2000267972 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 918584437 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 918584437 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1733354369 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1733354369 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 184690001 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 184690001 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1041552272 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1041552272 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1589146424 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1589146424 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 833298023 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 833298023 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 977245867 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 977245867 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1307540790 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1307540790 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1137180298 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1137180298 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1744389827 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1744389827 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 565517913 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 565517913 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 394645908 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 394645908 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1800031808 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1800031808 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1185465012 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1185465012 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1340769295 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1340769295 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 850300711 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 850300711 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1978141335 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1978141335 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 5998675 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 5998675 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 462073515 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 462073515 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1562107210 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1562107210 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1746061516 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1746061516 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 878169229 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 878169229 + } ], + "children" : [ ], + "position" : { + "x" : 0.0, + "y" : 0.0 + }, + "size" : null + }, { + "text" : "consul2", + "id" : "4", + "type" : "node:function", + "labels" : [ { + "labelTypeId" : "17", + "labelTypeValueId" : "52" + }, { + "labelTypeId" : "17", + "labelTypeValueId" : "27" + }, { + "labelTypeId" : "22", + "labelTypeValueId" : "53" + }, { + "labelTypeId" : "54", + "labelTypeValueId" : "55" + } ], + "ports" : [ { + "id" : "104", + "type" : "port:dfd-input", + "children" : [ ] + }, { + "behavior" : "assign Stereotype.service_discovery,Stereotype.infrastructural,Stereotype.restful_http if TRUE from consul3|consul3-0\nforward consul3|consul3-0", + "id" : "99", + "type" : "port:dfd-output", + "children" : [ ] + }, { + "behavior" : "assign Stereotype.service_discovery,Stereotype.infrastructural,Stereotype.restful_http if TRUE from consul3|consul3-0\nforward consul3|consul3-0", + "id" : "183", + "type" : "port:dfd-output", + "children" : [ ] + }, { + "behavior" : "assign Stereotype.service_discovery,Stereotype.infrastructural,Stereotype.restful_http if TRUE\nforward consul3|consul3-0", + "id" : "_UWx-u_unEfCYrdfxNyUhUA", + "type" : "port:dfd-output", + "children" : [ ] + }, { + "behavior" : "assign Stereotype.service_discovery,Stereotype.infrastructural,Stereotype.restful_http if TRUE\nforward consul3|consul3-0", + "id" : "_UWx-9funEfCYrdfxNyUhUA", + "type" : "port:dfd-output", + "children" : [ ] + } ], + "annotations" : [ { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 588503940 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 588503940 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 560165559 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 560165559 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 313249054 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 313249054 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 802814772 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 802814772 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 929066990 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 929066990 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 76379039 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 76379039 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 767535474 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 767535474 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1101970356 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1101970356 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1515793520 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1515793520 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 300526628 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 300526628 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1734023423 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1734023423 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1752402342 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1752402342 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 935818862 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 935818862 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1266602046 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1266602046 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1871838170 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1871838170 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1341975886 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1341975886 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 12302064 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 12302064 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 65465460 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 65465460 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1836765429 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1836765429 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 77215921 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 77215921 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1406593369 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1406593369 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1772358460 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1772358460 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1713988669 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1713988669 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1684368286 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1684368286 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1163216403 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1163216403 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 747833043 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 747833043 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 771359425 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 771359425 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1468393491 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1468393491 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 671187578 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 671187578 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1354510873 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1354510873 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 93974967 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 93974967 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 105860882 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 105860882 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 936544568 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 936544568 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 2097992252 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 2097992252 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1796154990 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1796154990 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1211627902 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1211627902 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1395740534 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1395740534 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1655072591 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1655072591 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 117701189 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 117701189 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1586519852 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1586519852 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 266196910 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 266196910 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 656787973 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 656787973 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 445726857 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 445726857 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1138190994 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1138190994 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 889398176 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 889398176 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 621197441 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 621197441 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1568527689 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1568527689 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1683617002 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1683617002 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 2059701776 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 2059701776 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1379222018 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1379222018 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1796415927 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1796415927 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 875487383 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 875487383 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1791253516 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1791253516 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1618326377 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1618326377 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1802555899 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1802555899 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 805495703 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 805495703 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 940938116 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 940938116 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1434940020 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1434940020 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 7162498 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 7162498 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 351297720 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 351297720 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 2047521920 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 2047521920 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 319618119 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 319618119 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 82750270 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 82750270 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 728740247 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 728740247 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1512759723 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1512759723 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 736888459 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 736888459 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 2103044456 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 2103044456 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1478269879 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1478269879 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 328140385 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 328140385 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 556773329 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 556773329 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 2021230836 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 2021230836 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 321795476 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 321795476 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1327714567 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1327714567 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 475871799 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 475871799 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 2117938877 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 2117938877 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 725873428 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 725873428 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1328764608 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1328764608 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1483522397 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1483522397 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1820545559 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1820545559 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1367900185 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1367900185 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1867568476 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1867568476 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 431300939 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 431300939 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1605570842 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1605570842 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1252969149 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1252969149 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 599592065 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 599592065 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 322100932 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 322100932 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1414411897 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1414411897 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1753871727 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1753871727 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 588985851 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 588985851 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 651828130 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 651828130 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 58854654 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 58854654 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 604480364 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 604480364 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1590292218 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1590292218 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 995030431 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 995030431 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 870627780 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 870627780 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1560244891 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1560244891 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1804292128 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1804292128 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 2100817420 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 2100817420 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1518022811 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1518022811 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 2000267972 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 2000267972 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 918584437 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 918584437 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1733354369 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1733354369 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 184690001 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 184690001 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1041552272 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1041552272 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1589146424 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1589146424 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 833298023 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 833298023 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 977245867 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 977245867 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1307540790 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1307540790 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1137180298 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1137180298 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1744389827 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1744389827 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 565517913 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 565517913 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1800031808 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1800031808 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1332104174 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1332104174 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1985362663 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1985362663 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1340769295 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1340769295 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 850300711 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 850300711 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1978141335 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1978141335 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 5998675 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 5998675 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 462073515 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 462073515 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1562107210 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1562107210 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1746061516 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1746061516 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 878169229 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 878169229 + } ], + "children" : [ ], + "position" : { + "x" : 0.0, + "y" : 0.0 + }, + "size" : null + }, { + "text" : "consul3", + "id" : "5", + "type" : "node:function", + "labels" : [ { + "labelTypeId" : "17", + "labelTypeValueId" : "52" + }, { + "labelTypeId" : "17", + "labelTypeValueId" : "27" + }, { + "labelTypeId" : "22", + "labelTypeValueId" : "53" + }, { + "labelTypeId" : "54", + "labelTypeValueId" : "55" + } ], + "ports" : [ { + "behavior" : "assign Stereotype.service_discovery,Stereotype.infrastructural,Stereotype.restful_http if TRUE", + "id" : "102", + "type" : "port:dfd-output", + "children" : [ ] + }, { + "behavior" : "assign Stereotype.service_discovery,Stereotype.infrastructural,Stereotype.restful_http if TRUE", + "id" : "105", + "type" : "port:dfd-output", + "children" : [ ] + }, { + "behavior" : "assign Stereotype.service_discovery,Stereotype.infrastructural,Stereotype.restful_http if TRUE", + "id" : "185", + "type" : "port:dfd-output", + "children" : [ ] + }, { + "behavior" : "assign Stereotype.service_discovery,Stereotype.infrastructural,Stereotype.restful_http if TRUE", + "id" : "_UWx-vfunEfCYrdfxNyUhUA", + "type" : "port:dfd-output", + "children" : [ ] + }, { + "behavior" : "assign Stereotype.service_discovery,Stereotype.infrastructural,Stereotype.restful_http if TRUE", + "id" : "_UWx-v_unEfCYrdfxNyUhUA", + "type" : "port:dfd-output", + "children" : [ ] + }, { + "behavior" : "assign Stereotype.service_discovery,Stereotype.infrastructural,Stereotype.restful_http if TRUE", + "id" : "_UWx-9_unEfCYrdfxNyUhUA", + "type" : "port:dfd-output", + "children" : [ ] + } ], + "annotations" : [ { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 588503940 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 560165559 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 347354124 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 313249054 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 802814772 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 362140338 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 929066990 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 869437194 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 76379039 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1374115999 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 767535474 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1190608890 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1101970356 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 184410212 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1515793520 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 300526628 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1734023423 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1752402342 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 140778365 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 935818862 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1068781783 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1266602046 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1667859935 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1871838170 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1916681239 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1341975886 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 12302064 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 65465460 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1836765429 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 77215921 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1406593369 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1772358460 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1713988669 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1684368286 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1752223660 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1163216403 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1675999402 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 747833043 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 771359425 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1468393491 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 671187578 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1354510873 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 93974967 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 105860882 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 936544568 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 2097992252 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1796154990 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1211627902 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1395740534 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1655072591 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 117701189 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1586519852 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 266196910 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 656787973 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 445726857 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1138190994 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 889398176 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 621197441 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1568527689 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1683617002 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 2059701776 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1379222018 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1796415927 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 875487383 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1791253516 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 303638020 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1618326377 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 589094312 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1802555899 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 805495703 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 2107760645 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 940938116 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1434940020 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 7162498 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 351297720 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 2047521920 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 319618119 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 82750270 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 728740247 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1512759723 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 736888459 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 2103044456 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1478269879 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 328140385 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 556773329 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 2021230836 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 321795476 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1327714567 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 475871799 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 2117938877 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 725873428 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1328764608 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1483522397 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1820545559 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1367900185 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1867568476 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 431300939 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1605570842 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1252969149 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 599592065 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 322100932 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1414411897 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1753871727 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 588985851 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 651828130 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 58854654 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 604480364 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1590292218 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 995030431 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 870627780 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1560244891 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1804292128 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 2100817420 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1518022811 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 2000267972 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 918584437 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1733354369 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 184690001 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1041552272 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1589146424 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 833298023 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 977245867 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1307540790 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1137180298 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1744389827 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 565517913 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 394645908 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1800031808 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1185465012 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1332104174 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1985362663 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1339507235 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1340769295 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 850300711 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1978141335 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 5998675 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 462073515 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1562107210 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1746061516 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 878169229 + } ], + "children" : [ ], + "position" : { + "x" : 0.0, + "y" : 0.0 + }, + "size" : null + }, { + "text" : "elasticsearch", + "id" : "6", + "type" : "node:function", + "labels" : [ { + "labelTypeId" : "17", + "labelTypeValueId" : "43" + }, { + "labelTypeId" : "17", + "labelTypeValueId" : "27" + }, { + "labelTypeId" : "44", + "labelTypeValueId" : "45" + }, { + "labelTypeId" : "22", + "labelTypeValueId" : "46" + } ], + "ports" : [ { + "id" : "107", + "type" : "port:dfd-input", + "children" : [ ] + }, { + "behavior" : "assign Stereotype.search_engine,Stereotype.infrastructural,Stereotype.restful_http if TRUE from logstash|logstash-0\nforward logstash|logstash-0", + "id" : "111", + "type" : "port:dfd-output", + "children" : [ ] + }, { + "behavior" : "assign Stereotype.search_engine,Stereotype.infrastructural,Stereotype.restful_http if TRUE from logstash|logstash-0\nforward logstash|logstash-0", + "id" : "189", + "type" : "port:dfd-output", + "children" : [ ] + }, { + "behavior" : "assign Stereotype.search_engine,Stereotype.infrastructural,Stereotype.restful_http if TRUE\nforward logstash|logstash-0", + "id" : "_UWx-w_unEfCYrdfxNyUhUA", + "type" : "port:dfd-output", + "children" : [ ] + }, { + "behavior" : "assign Stereotype.search_engine,Stereotype.infrastructural,Stereotype.restful_http if TRUE\nforward logstash|logstash-0", + "id" : "_UWx--_unEfCYrdfxNyUhUA", + "type" : "port:dfd-output", + "children" : [ ] + } ], + "annotations" : [ { + "message" : "Propagated: Stereotype.search_engine, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.logging_server, Stereotype.internal, Stereotype.local_logging, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 940938116 + }, { + "message" : "Incoming: Stereotype.logging_server, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.internal, Stereotype.local_logging, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 940938116 + }, { + "message" : "Propagated: Stereotype.search_engine, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.logging_server, Stereotype.internal, Stereotype.local_logging, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1434940020 + }, { + "message" : "Incoming: Stereotype.logging_server, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.internal, Stereotype.local_logging, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1434940020 + }, { + "message" : "Propagated: Stereotype.search_engine, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.logging_server, Stereotype.internal, Stereotype.local_logging, Stereotype.jdbc", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1916677384 + }, { + "message" : "Incoming: Stereotype.logging_server, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.internal, Stereotype.local_logging, Stereotype.jdbc", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1916677384 + }, { + "message" : "Propagated: Stereotype.search_engine, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.logging_server, Stereotype.internal, Stereotype.local_logging, Stereotype.gateway, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 7162498 + }, { + "message" : "Incoming: Stereotype.logging_server, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.internal, Stereotype.local_logging, Stereotype.gateway, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 7162498 + }, { + "message" : "Propagated: Stereotype.search_engine, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.logging_server, Stereotype.internal, Stereotype.local_logging, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 351297720 + }, { + "message" : "Incoming: Stereotype.logging_server, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.internal, Stereotype.local_logging, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 351297720 + }, { + "message" : "Propagated: Stereotype.search_engine, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.logging_server, Stereotype.internal, Stereotype.local_logging, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 2047521920 + }, { + "message" : "Incoming: Stereotype.logging_server, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.internal, Stereotype.local_logging, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 2047521920 + }, { + "message" : "Propagated: Stereotype.search_engine, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.logging_server, Stereotype.internal, Stereotype.local_logging, Stereotype.jdbc", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 2044690596 + }, { + "message" : "Incoming: Stereotype.logging_server, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.internal, Stereotype.local_logging, Stereotype.jdbc", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 2044690596 + }, { + "message" : "Propagated: Stereotype.search_engine, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.logging_server, Stereotype.internal, Stereotype.local_logging, Stereotype.gateway, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 319618119 + }, { + "message" : "Incoming: Stereotype.logging_server, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.internal, Stereotype.local_logging, Stereotype.gateway, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 319618119 + }, { + "message" : "Propagated: Stereotype.search_engine, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.logging_server, Stereotype.internal, Stereotype.local_logging, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 82750270 + }, { + "message" : "Incoming: Stereotype.logging_server, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.internal, Stereotype.local_logging, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 82750270 + }, { + "message" : "Propagated: Stereotype.search_engine, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.logging_server, Stereotype.internal, Stereotype.local_logging, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleservicetwo, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 728740247 + }, { + "message" : "Incoming: Stereotype.logging_server, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.internal, Stereotype.local_logging, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleservicetwo, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 728740247 + }, { + "message" : "Propagated: Stereotype.search_engine, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.logging_server, Stereotype.internal, Stereotype.local_logging, Stereotype.jdbc, Stereotype.plaintext_credentials_link, Username.servicetwo, Password.servicetwo", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 783339262 + }, { + "message" : "Incoming: Stereotype.logging_server, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.internal, Stereotype.local_logging, Stereotype.jdbc, Stereotype.plaintext_credentials_link, Username.servicetwo, Password.servicetwo", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 783339262 + }, { + "message" : "Propagated: Stereotype.search_engine, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.logging_server, Stereotype.internal, Stereotype.local_logging, Stereotype.gateway, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1512759723 + }, { + "message" : "Incoming: Stereotype.logging_server, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.internal, Stereotype.local_logging, Stereotype.gateway, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1512759723 + }, { + "message" : "Propagated: Stereotype.search_engine, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.logging_server, Stereotype.internal, Stereotype.local_logging, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 736888459 + }, { + "message" : "Incoming: Stereotype.logging_server, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.internal, Stereotype.local_logging, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 736888459 + }, { + "message" : "Propagated: Stereotype.search_engine, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.logging_server, Stereotype.internal, Stereotype.local_logging, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleservicetwo, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 2103044456 + }, { + "message" : "Incoming: Stereotype.logging_server, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.internal, Stereotype.local_logging, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleservicetwo, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 2103044456 + }, { + "message" : "Propagated: Stereotype.search_engine, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.logging_server, Stereotype.internal, Stereotype.local_logging, Stereotype.jdbc, Stereotype.plaintext_credentials_link, Username.servicetwo, Password.servicetwo", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1429610243 + }, { + "message" : "Incoming: Stereotype.logging_server, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.internal, Stereotype.local_logging, Stereotype.jdbc, Stereotype.plaintext_credentials_link, Username.servicetwo, Password.servicetwo", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1429610243 + }, { + "message" : "Propagated: Stereotype.search_engine, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.logging_server, Stereotype.internal, Stereotype.local_logging, Stereotype.gateway, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1478269879 + }, { + "message" : "Incoming: Stereotype.logging_server, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.internal, Stereotype.local_logging, Stereotype.gateway, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1478269879 + }, { + "message" : "Propagated: Stereotype.search_engine, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.logging_server, Stereotype.internal, Stereotype.local_logging, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 328140385 + }, { + "message" : "Incoming: Stereotype.logging_server, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.internal, Stereotype.local_logging, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 328140385 + }, { + "message" : "Propagated: Stereotype.search_engine, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.logging_server, Stereotype.internal, Stereotype.local_logging, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 556773329 + }, { + "message" : "Incoming: Stereotype.logging_server, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.internal, Stereotype.local_logging, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 556773329 + }, { + "message" : "Propagated: Stereotype.search_engine, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.logging_server, Stereotype.internal, Stereotype.local_logging, Stereotype.jdbc", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1149526768 + }, { + "message" : "Incoming: Stereotype.logging_server, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.internal, Stereotype.local_logging, Stereotype.jdbc", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1149526768 + }, { + "message" : "Propagated: Stereotype.search_engine, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.logging_server, Stereotype.internal, Stereotype.local_logging, Stereotype.gateway, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 2021230836 + }, { + "message" : "Incoming: Stereotype.logging_server, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.internal, Stereotype.local_logging, Stereotype.gateway, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 2021230836 + }, { + "message" : "Propagated: Stereotype.search_engine, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.logging_server, Stereotype.internal, Stereotype.local_logging, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 321795476 + }, { + "message" : "Incoming: Stereotype.logging_server, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.internal, Stereotype.local_logging, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 321795476 + }, { + "message" : "Propagated: Stereotype.search_engine, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.logging_server, Stereotype.internal, Stereotype.local_logging, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1327714567 + }, { + "message" : "Incoming: Stereotype.logging_server, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.internal, Stereotype.local_logging, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1327714567 + }, { + "message" : "Propagated: Stereotype.search_engine, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.logging_server, Stereotype.internal, Stereotype.local_logging, Stereotype.jdbc", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 685193713 + }, { + "message" : "Incoming: Stereotype.logging_server, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.internal, Stereotype.local_logging, Stereotype.jdbc", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 685193713 + }, { + "message" : "Propagated: Stereotype.search_engine, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.logging_server, Stereotype.internal, Stereotype.local_logging, Stereotype.gateway, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 475871799 + }, { + "message" : "Incoming: Stereotype.logging_server, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.internal, Stereotype.local_logging, Stereotype.gateway, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 475871799 + }, { + "message" : "Propagated: Stereotype.search_engine, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.logging_server, Stereotype.internal, Stereotype.local_logging, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 2117938877 + }, { + "message" : "Incoming: Stereotype.logging_server, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.internal, Stereotype.local_logging, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 2117938877 + }, { + "message" : "Propagated: Stereotype.search_engine, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.logging_server, Stereotype.internal, Stereotype.local_logging, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleservicetwo, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 725873428 + }, { + "message" : "Incoming: Stereotype.logging_server, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.internal, Stereotype.local_logging, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleservicetwo, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 725873428 + }, { + "message" : "Propagated: Stereotype.search_engine, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.logging_server, Stereotype.internal, Stereotype.local_logging, Stereotype.jdbc, Stereotype.plaintext_credentials_link, Username.servicetwo, Password.servicetwo", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 977952572 + }, { + "message" : "Incoming: Stereotype.logging_server, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.internal, Stereotype.local_logging, Stereotype.jdbc, Stereotype.plaintext_credentials_link, Username.servicetwo, Password.servicetwo", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 977952572 + }, { + "message" : "Propagated: Stereotype.search_engine, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.logging_server, Stereotype.internal, Stereotype.local_logging, Stereotype.gateway, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1328764608 + }, { + "message" : "Incoming: Stereotype.logging_server, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.internal, Stereotype.local_logging, Stereotype.gateway, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1328764608 + }, { + "message" : "Propagated: Stereotype.search_engine, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.logging_server, Stereotype.internal, Stereotype.local_logging, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1483522397 + }, { + "message" : "Incoming: Stereotype.logging_server, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.internal, Stereotype.local_logging, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1483522397 + }, { + "message" : "Propagated: Stereotype.search_engine, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.logging_server, Stereotype.internal, Stereotype.local_logging, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleservicetwo, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1820545559 + }, { + "message" : "Incoming: Stereotype.logging_server, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.internal, Stereotype.local_logging, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleservicetwo, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1820545559 + }, { + "message" : "Propagated: Stereotype.search_engine, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.logging_server, Stereotype.internal, Stereotype.local_logging, Stereotype.jdbc, Stereotype.plaintext_credentials_link, Username.servicetwo, Password.servicetwo", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 72893188 + }, { + "message" : "Incoming: Stereotype.logging_server, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.internal, Stereotype.local_logging, Stereotype.jdbc, Stereotype.plaintext_credentials_link, Username.servicetwo, Password.servicetwo", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 72893188 + }, { + "message" : "Propagated: Stereotype.search_engine, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.logging_server, Stereotype.internal, Stereotype.local_logging, Stereotype.gateway, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1367900185 + }, { + "message" : "Incoming: Stereotype.logging_server, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.internal, Stereotype.local_logging, Stereotype.gateway, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1367900185 + }, { + "message" : "Propagated: Stereotype.search_engine, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.logging_server, Stereotype.internal, Stereotype.local_logging, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1867568476 + }, { + "message" : "Incoming: Stereotype.logging_server, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.internal, Stereotype.local_logging, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1867568476 + }, { + "message" : "Propagated: Stereotype.search_engine, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.logging_server, Stereotype.internal, Stereotype.local_logging, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 431300939 + }, { + "message" : "Incoming: Stereotype.logging_server, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.internal, Stereotype.local_logging, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 431300939 + }, { + "message" : "Propagated: Stereotype.search_engine, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.logging_server, Stereotype.internal, Stereotype.local_logging, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1605570842 + }, { + "message" : "Incoming: Stereotype.logging_server, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.internal, Stereotype.local_logging, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1605570842 + }, { + "message" : "Propagated: Stereotype.search_engine, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.logging_server, Stereotype.internal, Stereotype.local_logging, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1252969149 + }, { + "message" : "Incoming: Stereotype.logging_server, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.internal, Stereotype.local_logging, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1252969149 + }, { + "message" : "Propagated: Stereotype.search_engine, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.logging_server, Stereotype.internal, Stereotype.local_logging, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 599592065 + }, { + "message" : "Incoming: Stereotype.logging_server, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.internal, Stereotype.local_logging, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 599592065 + }, { + "message" : "Propagated: Stereotype.search_engine, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.logging_server, Stereotype.internal, Stereotype.local_logging, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 322100932 + }, { + "message" : "Incoming: Stereotype.logging_server, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.internal, Stereotype.local_logging, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 322100932 + }, { + "message" : "Propagated: Stereotype.search_engine, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.logging_server, Stereotype.internal, Stereotype.local_logging, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1414411897 + }, { + "message" : "Incoming: Stereotype.logging_server, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.internal, Stereotype.local_logging, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1414411897 + }, { + "message" : "Propagated: Stereotype.search_engine, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.logging_server, Stereotype.internal, Stereotype.local_logging, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1753871727 + }, { + "message" : "Incoming: Stereotype.logging_server, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.internal, Stereotype.local_logging, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1753871727 + }, { + "message" : "Propagated: Stereotype.search_engine, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.logging_server, Stereotype.internal, Stereotype.local_logging, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1340769295 + }, { + "message" : "Incoming: Stereotype.logging_server, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.internal, Stereotype.local_logging, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1340769295 + }, { + "message" : "Propagated: Stereotype.search_engine, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.logging_server, Stereotype.internal, Stereotype.local_logging, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 850300711 + }, { + "message" : "Incoming: Stereotype.logging_server, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.internal, Stereotype.local_logging, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 850300711 + }, { + "message" : "Propagated: Stereotype.search_engine, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.logging_server, Stereotype.internal, Stereotype.local_logging, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1978141335 + }, { + "message" : "Incoming: Stereotype.logging_server, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.internal, Stereotype.local_logging, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1978141335 + }, { + "message" : "Propagated: Stereotype.search_engine, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.logging_server, Stereotype.internal, Stereotype.local_logging, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 5998675 + }, { + "message" : "Incoming: Stereotype.logging_server, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.internal, Stereotype.local_logging, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 5998675 + } ], + "children" : [ ], + "position" : { + "x" : 0.0, + "y" : 0.0 + }, + "size" : null + }, { + "text" : "logstash", + "id" : "7", + "type" : "node:function", + "labels" : [ { + "labelTypeId" : "17", + "labelTypeValueId" : "26" + }, { + "labelTypeId" : "17", + "labelTypeValueId" : "27" + }, { + "labelTypeId" : "22", + "labelTypeValueId" : "28" + }, { + "labelTypeId" : "29", + "labelTypeValueId" : "30" + } ], + "ports" : [ { + "id" : "116", + "type" : "port:dfd-input", + "children" : [ ] + }, { + "behavior" : "assign Stereotype.logging_server,Stereotype.infrastructural,Stereotype.restful_http if TRUE from service_one|service_one-0|service_two|service_two-0\nforward service_one|service_one-0|service_two|service_two-0", + "id" : "108", + "type" : "port:dfd-output", + "children" : [ ] + }, { + "behavior" : "assign Stereotype.logging_server,Stereotype.infrastructural,Stereotype.restful_http if TRUE from service_one|service_one-0|service_two|service_two-0\nforward service_one|service_one-0|service_two|service_two-0", + "id" : "191", + "type" : "port:dfd-output", + "children" : [ ] + }, { + "behavior" : "assign Stereotype.logging_server,Stereotype.infrastructural,Stereotype.restful_http if TRUE\nforward service_one|service_one-0|service_two|service_two-0", + "id" : "_UWx-wfunEfCYrdfxNyUhUA", + "type" : "port:dfd-output", + "children" : [ ] + }, { + "behavior" : "assign Stereotype.logging_server,Stereotype.infrastructural,Stereotype.restful_http if TRUE\nforward service_one|service_one-0|service_two|service_two-0", + "id" : "_UWx-_funEfCYrdfxNyUhUA", + "type" : "port:dfd-output", + "children" : [ ] + } ], + "annotations" : [ { + "message" : "Propagated: Stereotype.logging_server, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.internal, Stereotype.local_logging, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 940938116 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.service_discovery, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 940938116 + }, { + "message" : "Propagated: Stereotype.logging_server, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.internal, Stereotype.local_logging, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1434940020 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1434940020 + }, { + "message" : "Propagated: Stereotype.logging_server, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.internal, Stereotype.local_logging, Stereotype.jdbc", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1916677384 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.jdbc", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1916677384 + }, { + "message" : "Propagated: Stereotype.logging_server, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.internal, Stereotype.local_logging, Stereotype.gateway, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 7162498 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 7162498 + }, { + "message" : "Propagated: Stereotype.logging_server, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.internal, Stereotype.local_logging, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 351297720 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.service_discovery, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 351297720 + }, { + "message" : "Propagated: Stereotype.logging_server, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.internal, Stereotype.local_logging, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 2047521920 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 2047521920 + }, { + "message" : "Propagated: Stereotype.logging_server, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.internal, Stereotype.local_logging, Stereotype.jdbc", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 2044690596 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.jdbc", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 2044690596 + }, { + "message" : "Propagated: Stereotype.logging_server, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.internal, Stereotype.local_logging, Stereotype.gateway, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 319618119 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 319618119 + }, { + "message" : "Propagated: Stereotype.logging_server, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.internal, Stereotype.local_logging, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 82750270 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.service_discovery, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 82750270 + }, { + "message" : "Propagated: Stereotype.logging_server, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.internal, Stereotype.local_logging, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleservicetwo, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 728740247 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleservicetwo, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 728740247 + }, { + "message" : "Propagated: Stereotype.logging_server, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.internal, Stereotype.local_logging, Stereotype.jdbc, Stereotype.plaintext_credentials_link, Username.servicetwo, Password.servicetwo", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 783339262 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.jdbc, Stereotype.plaintext_credentials_link, Username.servicetwo, Password.servicetwo", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 783339262 + }, { + "message" : "Propagated: Stereotype.logging_server, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.internal, Stereotype.local_logging, Stereotype.gateway, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1512759723 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1512759723 + }, { + "message" : "Propagated: Stereotype.logging_server, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.internal, Stereotype.local_logging, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 736888459 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.service_discovery, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 736888459 + }, { + "message" : "Propagated: Stereotype.logging_server, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.internal, Stereotype.local_logging, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleservicetwo, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 2103044456 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleservicetwo, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 2103044456 + }, { + "message" : "Propagated: Stereotype.logging_server, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.internal, Stereotype.local_logging, Stereotype.jdbc, Stereotype.plaintext_credentials_link, Username.servicetwo, Password.servicetwo", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1429610243 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.jdbc, Stereotype.plaintext_credentials_link, Username.servicetwo, Password.servicetwo", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1429610243 + }, { + "message" : "Propagated: Stereotype.logging_server, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.internal, Stereotype.local_logging, Stereotype.gateway, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1478269879 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1478269879 + }, { + "message" : "Propagated: Stereotype.logging_server, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.internal, Stereotype.local_logging, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 328140385 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.service_discovery, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 328140385 + }, { + "message" : "Propagated: Stereotype.logging_server, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.internal, Stereotype.local_logging, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 556773329 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 556773329 + }, { + "message" : "Propagated: Stereotype.logging_server, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.internal, Stereotype.local_logging, Stereotype.jdbc", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1149526768 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.jdbc", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1149526768 + }, { + "message" : "Propagated: Stereotype.logging_server, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.internal, Stereotype.local_logging, Stereotype.gateway, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 2021230836 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 2021230836 + }, { + "message" : "Propagated: Stereotype.logging_server, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.internal, Stereotype.local_logging, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 321795476 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.service_discovery, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 321795476 + }, { + "message" : "Propagated: Stereotype.logging_server, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.internal, Stereotype.local_logging, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1327714567 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1327714567 + }, { + "message" : "Propagated: Stereotype.logging_server, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.internal, Stereotype.local_logging, Stereotype.jdbc", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 685193713 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.jdbc", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 685193713 + }, { + "message" : "Propagated: Stereotype.logging_server, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.internal, Stereotype.local_logging, Stereotype.gateway, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 475871799 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 475871799 + }, { + "message" : "Propagated: Stereotype.logging_server, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.internal, Stereotype.local_logging, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 2117938877 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.service_discovery, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 2117938877 + }, { + "message" : "Propagated: Stereotype.logging_server, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.internal, Stereotype.local_logging, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleservicetwo, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 725873428 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleservicetwo, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 725873428 + }, { + "message" : "Propagated: Stereotype.logging_server, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.internal, Stereotype.local_logging, Stereotype.jdbc, Stereotype.plaintext_credentials_link, Username.servicetwo, Password.servicetwo", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 977952572 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.jdbc, Stereotype.plaintext_credentials_link, Username.servicetwo, Password.servicetwo", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 977952572 + }, { + "message" : "Propagated: Stereotype.logging_server, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.internal, Stereotype.local_logging, Stereotype.gateway, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1328764608 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1328764608 + }, { + "message" : "Propagated: Stereotype.logging_server, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.internal, Stereotype.local_logging, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1483522397 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.service_discovery, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1483522397 + }, { + "message" : "Propagated: Stereotype.logging_server, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.internal, Stereotype.local_logging, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleservicetwo, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1820545559 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleservicetwo, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1820545559 + }, { + "message" : "Propagated: Stereotype.logging_server, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.internal, Stereotype.local_logging, Stereotype.jdbc, Stereotype.plaintext_credentials_link, Username.servicetwo, Password.servicetwo", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 72893188 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.jdbc, Stereotype.plaintext_credentials_link, Username.servicetwo, Password.servicetwo", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 72893188 + }, { + "message" : "Propagated: Stereotype.logging_server, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.internal, Stereotype.local_logging, Stereotype.gateway, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1367900185 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1367900185 + }, { + "message" : "Propagated: Stereotype.logging_server, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.internal, Stereotype.local_logging, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1867568476 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.service_discovery, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1867568476 + }, { + "message" : "Propagated: Stereotype.logging_server, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.internal, Stereotype.local_logging, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 431300939 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.service_discovery, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 431300939 + }, { + "message" : "Propagated: Stereotype.logging_server, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.internal, Stereotype.local_logging, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1605570842 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.service_discovery, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1605570842 + }, { + "message" : "Propagated: Stereotype.logging_server, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.internal, Stereotype.local_logging, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1252969149 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.service_discovery, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1252969149 + }, { + "message" : "Propagated: Stereotype.logging_server, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.internal, Stereotype.local_logging, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 599592065 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.service_discovery, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 599592065 + }, { + "message" : "Propagated: Stereotype.logging_server, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.internal, Stereotype.local_logging, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 322100932 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.service_discovery, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 322100932 + }, { + "message" : "Propagated: Stereotype.logging_server, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.internal, Stereotype.local_logging, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1414411897 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.service_discovery, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1414411897 + }, { + "message" : "Propagated: Stereotype.logging_server, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.internal, Stereotype.local_logging, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1753871727 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.service_discovery, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1753871727 + }, { + "message" : "Propagated: Stereotype.logging_server, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.internal, Stereotype.local_logging, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 588985851 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.service_discovery, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 588985851 + }, { + "message" : "Propagated: Stereotype.logging_server, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.internal, Stereotype.local_logging, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 651828130 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.service_discovery, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 651828130 + }, { + "message" : "Propagated: Stereotype.logging_server, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.internal, Stereotype.local_logging, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 58854654 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.service_discovery, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 58854654 + }, { + "message" : "Propagated: Stereotype.logging_server, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.internal, Stereotype.local_logging, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 604480364 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.service_discovery, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 604480364 + }, { + "message" : "Propagated: Stereotype.logging_server, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.internal, Stereotype.local_logging, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1340769295 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.service_discovery, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1340769295 + }, { + "message" : "Propagated: Stereotype.logging_server, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.internal, Stereotype.local_logging, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 850300711 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.service_discovery, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 850300711 + }, { + "message" : "Propagated: Stereotype.logging_server, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.internal, Stereotype.local_logging, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1978141335 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.service_discovery, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1978141335 + }, { + "message" : "Propagated: Stereotype.logging_server, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.internal, Stereotype.local_logging, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 5998675 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.service_discovery, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 5998675 + }, { + "message" : "Propagated: Stereotype.logging_server, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.internal, Stereotype.local_logging, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 462073515 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.service_discovery, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 462073515 + }, { + "message" : "Propagated: Stereotype.logging_server, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.internal, Stereotype.local_logging, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1562107210 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.service_discovery, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1562107210 + }, { + "message" : "Propagated: Stereotype.logging_server, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.internal, Stereotype.local_logging, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1746061516 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.service_discovery, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1746061516 + }, { + "message" : "Propagated: Stereotype.logging_server, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.internal, Stereotype.local_logging, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 878169229 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.service_discovery, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 878169229 + } ], + "children" : [ ], + "position" : { + "x" : 0.0, + "y" : 0.0 + }, + "size" : null + }, { + "text" : "kibana", + "id" : "8", + "type" : "node:function", + "labels" : [ { + "labelTypeId" : "17", + "labelTypeValueId" : "69" + }, { + "labelTypeId" : "17", + "labelTypeValueId" : "27" + }, { + "labelTypeId" : "70", + "labelTypeValueId" : "86" + }, { + "labelTypeId" : "22", + "labelTypeValueId" : "87" + } ], + "ports" : [ { + "id" : "110", + "type" : "port:dfd-input", + "children" : [ ] + }, { + "behavior" : "assign Stereotype.monitoring_dashboard,Stereotype.infrastructural,Stereotype.restful_http if TRUE from elasticsearch|elasticsearch-0\nforward elasticsearch|elasticsearch-0", + "id" : "187", + "type" : "port:dfd-output", + "children" : [ ] + }, { + "behavior" : "assign Stereotype.monitoring_dashboard,Stereotype.infrastructural,Stereotype.restful_http if TRUE\nforward elasticsearch|elasticsearch-0", + "id" : "_UWx--funEfCYrdfxNyUhUA", + "type" : "port:dfd-output", + "children" : [ ] + } ], + "annotations" : [ { + "message" : "Propagated: Stereotype.monitoring_dashboard, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.search_engine, Stereotype.logging_server, Stereotype.internal, Stereotype.local_logging, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 940938116 + }, { + "message" : "Incoming: Stereotype.search_engine, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.logging_server, Stereotype.internal, Stereotype.local_logging, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 940938116 + }, { + "message" : "Propagated: Stereotype.monitoring_dashboard, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.search_engine, Stereotype.logging_server, Stereotype.internal, Stereotype.local_logging, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1434940020 + }, { + "message" : "Incoming: Stereotype.search_engine, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.logging_server, Stereotype.internal, Stereotype.local_logging, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1434940020 + }, { + "message" : "Propagated: Stereotype.monitoring_dashboard, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.search_engine, Stereotype.logging_server, Stereotype.internal, Stereotype.local_logging, Stereotype.jdbc", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1916677384 + }, { + "message" : "Incoming: Stereotype.search_engine, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.logging_server, Stereotype.internal, Stereotype.local_logging, Stereotype.jdbc", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1916677384 + }, { + "message" : "Propagated: Stereotype.monitoring_dashboard, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.search_engine, Stereotype.logging_server, Stereotype.internal, Stereotype.local_logging, Stereotype.gateway, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 7162498 + }, { + "message" : "Incoming: Stereotype.search_engine, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.logging_server, Stereotype.internal, Stereotype.local_logging, Stereotype.gateway, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 7162498 + }, { + "message" : "Propagated: Stereotype.monitoring_dashboard, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.search_engine, Stereotype.logging_server, Stereotype.internal, Stereotype.local_logging, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 351297720 + }, { + "message" : "Incoming: Stereotype.search_engine, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.logging_server, Stereotype.internal, Stereotype.local_logging, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 351297720 + }, { + "message" : "Propagated: Stereotype.monitoring_dashboard, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.search_engine, Stereotype.logging_server, Stereotype.internal, Stereotype.local_logging, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 2047521920 + }, { + "message" : "Incoming: Stereotype.search_engine, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.logging_server, Stereotype.internal, Stereotype.local_logging, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 2047521920 + }, { + "message" : "Propagated: Stereotype.monitoring_dashboard, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.search_engine, Stereotype.logging_server, Stereotype.internal, Stereotype.local_logging, Stereotype.jdbc", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 2044690596 + }, { + "message" : "Incoming: Stereotype.search_engine, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.logging_server, Stereotype.internal, Stereotype.local_logging, Stereotype.jdbc", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 2044690596 + }, { + "message" : "Propagated: Stereotype.monitoring_dashboard, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.search_engine, Stereotype.logging_server, Stereotype.internal, Stereotype.local_logging, Stereotype.gateway, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 319618119 + }, { + "message" : "Incoming: Stereotype.search_engine, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.logging_server, Stereotype.internal, Stereotype.local_logging, Stereotype.gateway, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 319618119 + }, { + "message" : "Propagated: Stereotype.monitoring_dashboard, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.search_engine, Stereotype.logging_server, Stereotype.internal, Stereotype.local_logging, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 82750270 + }, { + "message" : "Incoming: Stereotype.search_engine, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.logging_server, Stereotype.internal, Stereotype.local_logging, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 82750270 + }, { + "message" : "Propagated: Stereotype.monitoring_dashboard, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.search_engine, Stereotype.logging_server, Stereotype.internal, Stereotype.local_logging, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleservicetwo, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 728740247 + }, { + "message" : "Incoming: Stereotype.search_engine, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.logging_server, Stereotype.internal, Stereotype.local_logging, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleservicetwo, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 728740247 + }, { + "message" : "Propagated: Stereotype.monitoring_dashboard, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.search_engine, Stereotype.logging_server, Stereotype.internal, Stereotype.local_logging, Stereotype.jdbc, Stereotype.plaintext_credentials_link, Username.servicetwo, Password.servicetwo", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 783339262 + }, { + "message" : "Incoming: Stereotype.search_engine, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.logging_server, Stereotype.internal, Stereotype.local_logging, Stereotype.jdbc, Stereotype.plaintext_credentials_link, Username.servicetwo, Password.servicetwo", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 783339262 + }, { + "message" : "Propagated: Stereotype.monitoring_dashboard, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.search_engine, Stereotype.logging_server, Stereotype.internal, Stereotype.local_logging, Stereotype.gateway, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1512759723 + }, { + "message" : "Incoming: Stereotype.search_engine, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.logging_server, Stereotype.internal, Stereotype.local_logging, Stereotype.gateway, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1512759723 + }, { + "message" : "Propagated: Stereotype.monitoring_dashboard, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.search_engine, Stereotype.logging_server, Stereotype.internal, Stereotype.local_logging, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 736888459 + }, { + "message" : "Incoming: Stereotype.search_engine, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.logging_server, Stereotype.internal, Stereotype.local_logging, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 736888459 + }, { + "message" : "Propagated: Stereotype.monitoring_dashboard, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.search_engine, Stereotype.logging_server, Stereotype.internal, Stereotype.local_logging, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleservicetwo, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 2103044456 + }, { + "message" : "Incoming: Stereotype.search_engine, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.logging_server, Stereotype.internal, Stereotype.local_logging, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleservicetwo, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 2103044456 + }, { + "message" : "Propagated: Stereotype.monitoring_dashboard, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.search_engine, Stereotype.logging_server, Stereotype.internal, Stereotype.local_logging, Stereotype.jdbc, Stereotype.plaintext_credentials_link, Username.servicetwo, Password.servicetwo", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1429610243 + }, { + "message" : "Incoming: Stereotype.search_engine, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.logging_server, Stereotype.internal, Stereotype.local_logging, Stereotype.jdbc, Stereotype.plaintext_credentials_link, Username.servicetwo, Password.servicetwo", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1429610243 + }, { + "message" : "Propagated: Stereotype.monitoring_dashboard, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.search_engine, Stereotype.logging_server, Stereotype.internal, Stereotype.local_logging, Stereotype.gateway, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1478269879 + }, { + "message" : "Incoming: Stereotype.search_engine, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.logging_server, Stereotype.internal, Stereotype.local_logging, Stereotype.gateway, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1478269879 + }, { + "message" : "Propagated: Stereotype.monitoring_dashboard, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.search_engine, Stereotype.logging_server, Stereotype.internal, Stereotype.local_logging, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 328140385 + }, { + "message" : "Incoming: Stereotype.search_engine, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.logging_server, Stereotype.internal, Stereotype.local_logging, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 328140385 + }, { + "message" : "Propagated: Stereotype.monitoring_dashboard, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.search_engine, Stereotype.logging_server, Stereotype.internal, Stereotype.local_logging, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 556773329 + }, { + "message" : "Incoming: Stereotype.search_engine, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.logging_server, Stereotype.internal, Stereotype.local_logging, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 556773329 + }, { + "message" : "Propagated: Stereotype.monitoring_dashboard, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.search_engine, Stereotype.logging_server, Stereotype.internal, Stereotype.local_logging, Stereotype.jdbc", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1149526768 + }, { + "message" : "Incoming: Stereotype.search_engine, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.logging_server, Stereotype.internal, Stereotype.local_logging, Stereotype.jdbc", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1149526768 + }, { + "message" : "Propagated: Stereotype.monitoring_dashboard, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.search_engine, Stereotype.logging_server, Stereotype.internal, Stereotype.local_logging, Stereotype.gateway, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 2021230836 + }, { + "message" : "Incoming: Stereotype.search_engine, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.logging_server, Stereotype.internal, Stereotype.local_logging, Stereotype.gateway, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 2021230836 + }, { + "message" : "Propagated: Stereotype.monitoring_dashboard, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.search_engine, Stereotype.logging_server, Stereotype.internal, Stereotype.local_logging, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 321795476 + }, { + "message" : "Incoming: Stereotype.search_engine, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.logging_server, Stereotype.internal, Stereotype.local_logging, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 321795476 + }, { + "message" : "Propagated: Stereotype.monitoring_dashboard, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.search_engine, Stereotype.logging_server, Stereotype.internal, Stereotype.local_logging, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1327714567 + }, { + "message" : "Incoming: Stereotype.search_engine, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.logging_server, Stereotype.internal, Stereotype.local_logging, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1327714567 + }, { + "message" : "Propagated: Stereotype.monitoring_dashboard, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.search_engine, Stereotype.logging_server, Stereotype.internal, Stereotype.local_logging, Stereotype.jdbc", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 685193713 + }, { + "message" : "Incoming: Stereotype.search_engine, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.logging_server, Stereotype.internal, Stereotype.local_logging, Stereotype.jdbc", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 685193713 + }, { + "message" : "Propagated: Stereotype.monitoring_dashboard, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.search_engine, Stereotype.logging_server, Stereotype.internal, Stereotype.local_logging, Stereotype.gateway, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 475871799 + }, { + "message" : "Incoming: Stereotype.search_engine, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.logging_server, Stereotype.internal, Stereotype.local_logging, Stereotype.gateway, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 475871799 + }, { + "message" : "Propagated: Stereotype.monitoring_dashboard, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.search_engine, Stereotype.logging_server, Stereotype.internal, Stereotype.local_logging, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 2117938877 + }, { + "message" : "Incoming: Stereotype.search_engine, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.logging_server, Stereotype.internal, Stereotype.local_logging, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 2117938877 + }, { + "message" : "Propagated: Stereotype.monitoring_dashboard, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.search_engine, Stereotype.logging_server, Stereotype.internal, Stereotype.local_logging, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleservicetwo, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 725873428 + }, { + "message" : "Incoming: Stereotype.search_engine, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.logging_server, Stereotype.internal, Stereotype.local_logging, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleservicetwo, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 725873428 + }, { + "message" : "Propagated: Stereotype.monitoring_dashboard, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.search_engine, Stereotype.logging_server, Stereotype.internal, Stereotype.local_logging, Stereotype.jdbc, Stereotype.plaintext_credentials_link, Username.servicetwo, Password.servicetwo", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 977952572 + }, { + "message" : "Incoming: Stereotype.search_engine, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.logging_server, Stereotype.internal, Stereotype.local_logging, Stereotype.jdbc, Stereotype.plaintext_credentials_link, Username.servicetwo, Password.servicetwo", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 977952572 + }, { + "message" : "Propagated: Stereotype.monitoring_dashboard, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.search_engine, Stereotype.logging_server, Stereotype.internal, Stereotype.local_logging, Stereotype.gateway, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1328764608 + }, { + "message" : "Incoming: Stereotype.search_engine, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.logging_server, Stereotype.internal, Stereotype.local_logging, Stereotype.gateway, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1328764608 + }, { + "message" : "Propagated: Stereotype.monitoring_dashboard, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.search_engine, Stereotype.logging_server, Stereotype.internal, Stereotype.local_logging, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1483522397 + }, { + "message" : "Incoming: Stereotype.search_engine, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.logging_server, Stereotype.internal, Stereotype.local_logging, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1483522397 + }, { + "message" : "Propagated: Stereotype.monitoring_dashboard, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.search_engine, Stereotype.logging_server, Stereotype.internal, Stereotype.local_logging, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleservicetwo, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1820545559 + }, { + "message" : "Incoming: Stereotype.search_engine, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.logging_server, Stereotype.internal, Stereotype.local_logging, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleservicetwo, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1820545559 + }, { + "message" : "Propagated: Stereotype.monitoring_dashboard, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.search_engine, Stereotype.logging_server, Stereotype.internal, Stereotype.local_logging, Stereotype.jdbc, Stereotype.plaintext_credentials_link, Username.servicetwo, Password.servicetwo", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 72893188 + }, { + "message" : "Incoming: Stereotype.search_engine, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.logging_server, Stereotype.internal, Stereotype.local_logging, Stereotype.jdbc, Stereotype.plaintext_credentials_link, Username.servicetwo, Password.servicetwo", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 72893188 + }, { + "message" : "Propagated: Stereotype.monitoring_dashboard, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.search_engine, Stereotype.logging_server, Stereotype.internal, Stereotype.local_logging, Stereotype.gateway, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1367900185 + }, { + "message" : "Incoming: Stereotype.search_engine, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.logging_server, Stereotype.internal, Stereotype.local_logging, Stereotype.gateway, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1367900185 + }, { + "message" : "Propagated: Stereotype.monitoring_dashboard, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.search_engine, Stereotype.logging_server, Stereotype.internal, Stereotype.local_logging, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1867568476 + }, { + "message" : "Incoming: Stereotype.search_engine, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.logging_server, Stereotype.internal, Stereotype.local_logging, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1867568476 + }, { + "message" : "Propagated: Stereotype.monitoring_dashboard, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.search_engine, Stereotype.logging_server, Stereotype.internal, Stereotype.local_logging, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 431300939 + }, { + "message" : "Incoming: Stereotype.search_engine, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.logging_server, Stereotype.internal, Stereotype.local_logging, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 431300939 + }, { + "message" : "Propagated: Stereotype.monitoring_dashboard, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.search_engine, Stereotype.logging_server, Stereotype.internal, Stereotype.local_logging, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1605570842 + }, { + "message" : "Incoming: Stereotype.search_engine, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.logging_server, Stereotype.internal, Stereotype.local_logging, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1605570842 + }, { + "message" : "Propagated: Stereotype.monitoring_dashboard, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.search_engine, Stereotype.logging_server, Stereotype.internal, Stereotype.local_logging, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1252969149 + }, { + "message" : "Incoming: Stereotype.search_engine, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.logging_server, Stereotype.internal, Stereotype.local_logging, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1252969149 + }, { + "message" : "Propagated: Stereotype.monitoring_dashboard, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.search_engine, Stereotype.logging_server, Stereotype.internal, Stereotype.local_logging, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 599592065 + }, { + "message" : "Incoming: Stereotype.search_engine, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.logging_server, Stereotype.internal, Stereotype.local_logging, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 599592065 + }, { + "message" : "Propagated: Stereotype.monitoring_dashboard, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.search_engine, Stereotype.logging_server, Stereotype.internal, Stereotype.local_logging, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 322100932 + }, { + "message" : "Incoming: Stereotype.search_engine, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.logging_server, Stereotype.internal, Stereotype.local_logging, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 322100932 + }, { + "message" : "Propagated: Stereotype.monitoring_dashboard, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.search_engine, Stereotype.logging_server, Stereotype.internal, Stereotype.local_logging, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1340769295 + }, { + "message" : "Incoming: Stereotype.search_engine, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.logging_server, Stereotype.internal, Stereotype.local_logging, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1340769295 + }, { + "message" : "Propagated: Stereotype.monitoring_dashboard, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.search_engine, Stereotype.logging_server, Stereotype.internal, Stereotype.local_logging, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 850300711 + }, { + "message" : "Incoming: Stereotype.search_engine, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.logging_server, Stereotype.internal, Stereotype.local_logging, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 850300711 + } ], + "children" : [ ], + "position" : { + "x" : 0.0, + "y" : 0.0 + }, + "size" : null + }, { + "text" : "rabbit", + "id" : "9", + "type" : "node:function", + "labels" : [ { + "labelTypeId" : "17", + "labelTypeValueId" : "58" + }, { + "labelTypeId" : "17", + "labelTypeValueId" : "59" + }, { + "labelTypeId" : "17", + "labelTypeValueId" : "27" + }, { + "labelTypeId" : "60", + "labelTypeValueId" : "61" + }, { + "labelTypeId" : "62", + "labelTypeValueId" : "63" + }, { + "labelTypeId" : "22", + "labelTypeValueId" : "64" + }, { + "labelTypeId" : "65", + "labelTypeValueId" : "66" + } ], + "ports" : [ { + "id" : "119", + "type" : "port:dfd-input", + "children" : [ ] + }, { + "behavior" : "assign Stereotype.message_broker,Stereotype.plaintext_credentials,Stereotype.infrastructural,Stereotype.message_consumer_rabbitmq,Stereotype.restful_http,Queue.commudigalmicroservicessampleserviceone if TRUE from service_one|service_one-0|service_two|service_two-0\nforward service_one|service_one-0|service_two|service_two-0", + "id" : "128", + "type" : "port:dfd-output", + "children" : [ ] + }, { + "behavior" : "assign Stereotype.message_broker,Stereotype.plaintext_credentials,Stereotype.infrastructural,Stereotype.message_consumer_rabbitmq,Stereotype.restful_http,Queue.commudigalmicroservicessampleservicetwo if TRUE from service_one|service_one-0|service_two|service_two-0\nforward service_one|service_one-0|service_two|service_two-0", + "id" : "140", + "type" : "port:dfd-output", + "children" : [ ] + }, { + "behavior" : "assign Stereotype.message_broker,Stereotype.plaintext_credentials,Stereotype.infrastructural,Stereotype.restful_http if TRUE from service_one|service_one-0|service_two|service_two-0\nforward service_one|service_one-0|service_two|service_two-0", + "id" : "179", + "type" : "port:dfd-output", + "children" : [ ] + }, { + "behavior" : "assign Stereotype.message_broker,Stereotype.plaintext_credentials,Stereotype.infrastructural,Stereotype.message_consumer_rabbitmq,Stereotype.restful_http,Queue.commudigalmicroservicessampleserviceone if TRUE\nforward service_one|service_one-0|service_two|service_two-0", + "id" : "_UWx-y_unEfCYrdfxNyUhUA", + "type" : "port:dfd-output", + "children" : [ ] + }, { + "behavior" : "assign Stereotype.message_broker,Stereotype.plaintext_credentials,Stereotype.infrastructural,Stereotype.message_consumer_rabbitmq,Stereotype.restful_http,Queue.commudigalmicroservicessampleservicetwo if TRUE\nforward service_one|service_one-0|service_two|service_two-0", + "id" : "_UWx-0_unEfCYrdfxNyUhUA", + "type" : "port:dfd-output", + "children" : [ ] + }, { + "behavior" : "assign Stereotype.message_broker,Stereotype.plaintext_credentials,Stereotype.infrastructural,Stereotype.restful_http if TRUE\nforward service_one|service_one-0|service_two|service_two-0", + "id" : "_UWx-8funEfCYrdfxNyUhUA", + "type" : "port:dfd-output", + "children" : [ ] + } ], + "annotations" : [ { + "message" : "Propagated: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleserviceone, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1515793520 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, Stereotype.restful_http, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1515793520 + }, { + "message" : "Propagated: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleserviceone, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.jdbc", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 623820846 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, Stereotype.restful_http, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.jdbc", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 623820846 + }, { + "message" : "Propagated: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleserviceone, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.gateway, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 300526628 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, Stereotype.restful_http, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 300526628 + }, { + "message" : "Propagated: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleserviceone, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.gateway, Stereotype.load_balancer, Stereotype.web_application, Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.encrypted_connection", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1962049725 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, Stereotype.restful_http, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.web_application, Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.encrypted_connection", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1962049725 + }, { + "message" : "Propagated: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleserviceone, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.gateway, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1734023423 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, Stereotype.restful_http, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1734023423 + }, { + "message" : "Propagated: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleserviceone, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.gateway, Stereotype.load_balancer, Stereotype.web_application, Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.encrypted_connection", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 875010954 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, Stereotype.restful_http, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.web_application, Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.encrypted_connection", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 875010954 + }, { + "message" : "Propagated: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleserviceone, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1752402342 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, Stereotype.restful_http, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1752402342 + }, { + "message" : "Propagated: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleserviceone, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 140778365 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, Stereotype.restful_http, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 140778365 + }, { + "message" : "Propagated: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleserviceone, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 935818862 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, Stereotype.restful_http, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 935818862 + }, { + "message" : "Propagated: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleserviceone, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1068781783 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, Stereotype.restful_http, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1068781783 + }, { + "message" : "Propagated: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleserviceone, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1266602046 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.restful_http, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1266602046 + }, { + "message" : "Propagated: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleserviceone, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1266602046 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, Stereotype.restful_http, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1266602046 + }, { + "message" : "Propagated: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleserviceone, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1667859935 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.restful_http, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1667859935 + }, { + "message" : "Propagated: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleserviceone, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1667859935 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, Stereotype.restful_http, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1667859935 + }, { + "message" : "Propagated: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleserviceone, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1871838170 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.restful_http, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1871838170 + }, { + "message" : "Propagated: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleserviceone, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1871838170 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, Stereotype.restful_http, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1871838170 + }, { + "message" : "Propagated: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleserviceone, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1916681239 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.restful_http, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1916681239 + }, { + "message" : "Propagated: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleserviceone, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1916681239 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, Stereotype.restful_http, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1916681239 + }, { + "message" : "Propagated: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleservicetwo, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1341975886 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, Stereotype.restful_http, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1341975886 + }, { + "message" : "Propagated: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleserviceone, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Queue.commudigalmicroservicessampleservicetwo, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1341975886 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.restful_http, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleservicetwo, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1341975886 + }, { + "message" : "Propagated: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleserviceone, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Queue.commudigalmicroservicessampleservicetwo, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1341975886 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, Stereotype.restful_http, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Queue.commudigalmicroservicessampleservicetwo, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1341975886 + }, { + "message" : "Propagated: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleservicetwo, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.jdbc", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1620368915 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, Stereotype.restful_http, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.jdbc", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1620368915 + }, { + "message" : "Propagated: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleserviceone, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Queue.commudigalmicroservicessampleservicetwo, Stereotype.jdbc", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1620368915 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.restful_http, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleservicetwo, Stereotype.jdbc", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1620368915 + }, { + "message" : "Propagated: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleserviceone, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Queue.commudigalmicroservicessampleservicetwo, Stereotype.jdbc", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1620368915 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, Stereotype.restful_http, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Queue.commudigalmicroservicessampleservicetwo, Stereotype.jdbc", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1620368915 + }, { + "message" : "Propagated: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleservicetwo, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.gateway, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 12302064 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, Stereotype.restful_http, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 12302064 + }, { + "message" : "Propagated: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleserviceone, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Queue.commudigalmicroservicessampleservicetwo, Stereotype.gateway, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 12302064 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.restful_http, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleservicetwo, Stereotype.gateway, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 12302064 + }, { + "message" : "Propagated: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleserviceone, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Queue.commudigalmicroservicessampleservicetwo, Stereotype.gateway, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 12302064 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, Stereotype.restful_http, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Queue.commudigalmicroservicessampleservicetwo, Stereotype.gateway, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 12302064 + }, { + "message" : "Propagated: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleservicetwo, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 65465460 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, Stereotype.restful_http, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 65465460 + }, { + "message" : "Propagated: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleserviceone, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Queue.commudigalmicroservicessampleservicetwo, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 65465460 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.restful_http, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleservicetwo, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 65465460 + }, { + "message" : "Propagated: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleserviceone, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Queue.commudigalmicroservicessampleservicetwo, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 65465460 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, Stereotype.restful_http, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Queue.commudigalmicroservicessampleservicetwo, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 65465460 + }, { + "message" : "Propagated: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleservicetwo, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.jdbc", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 735639515 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, Stereotype.restful_http, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.jdbc", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 735639515 + }, { + "message" : "Propagated: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleserviceone, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Queue.commudigalmicroservicessampleservicetwo, Stereotype.jdbc", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 735639515 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.restful_http, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleservicetwo, Stereotype.jdbc", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 735639515 + }, { + "message" : "Propagated: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleserviceone, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Queue.commudigalmicroservicessampleservicetwo, Stereotype.jdbc", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 735639515 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, Stereotype.restful_http, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Queue.commudigalmicroservicessampleservicetwo, Stereotype.jdbc", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 735639515 + }, { + "message" : "Propagated: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleservicetwo, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.gateway, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1836765429 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, Stereotype.restful_http, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1836765429 + }, { + "message" : "Propagated: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleserviceone, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Queue.commudigalmicroservicessampleservicetwo, Stereotype.gateway, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1836765429 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.restful_http, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleservicetwo, Stereotype.gateway, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1836765429 + }, { + "message" : "Propagated: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleserviceone, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Queue.commudigalmicroservicessampleservicetwo, Stereotype.gateway, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1836765429 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, Stereotype.restful_http, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Queue.commudigalmicroservicessampleservicetwo, Stereotype.gateway, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1836765429 + }, { + "message" : "Propagated: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleservicetwo, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.gateway, Stereotype.load_balancer, Stereotype.web_application, Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.encrypted_connection", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 816576412 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, Stereotype.restful_http, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.web_application, Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.encrypted_connection", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 816576412 + }, { + "message" : "Propagated: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleserviceone, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Queue.commudigalmicroservicessampleservicetwo, Stereotype.gateway, Stereotype.load_balancer, Stereotype.web_application, Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.encrypted_connection", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 816576412 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.restful_http, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleservicetwo, Stereotype.gateway, Stereotype.load_balancer, Stereotype.web_application, Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.encrypted_connection", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 816576412 + }, { + "message" : "Propagated: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleserviceone, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Queue.commudigalmicroservicessampleservicetwo, Stereotype.gateway, Stereotype.load_balancer, Stereotype.web_application, Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.encrypted_connection", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 816576412 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, Stereotype.restful_http, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Queue.commudigalmicroservicessampleservicetwo, Stereotype.gateway, Stereotype.load_balancer, Stereotype.web_application, Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.encrypted_connection", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 816576412 + }, { + "message" : "Propagated: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleservicetwo, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.gateway, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 77215921 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, Stereotype.restful_http, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 77215921 + }, { + "message" : "Propagated: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleserviceone, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Queue.commudigalmicroservicessampleservicetwo, Stereotype.gateway, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 77215921 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.restful_http, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleservicetwo, Stereotype.gateway, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 77215921 + }, { + "message" : "Propagated: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleserviceone, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Queue.commudigalmicroservicessampleservicetwo, Stereotype.gateway, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 77215921 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, Stereotype.restful_http, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Queue.commudigalmicroservicessampleservicetwo, Stereotype.gateway, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 77215921 + }, { + "message" : "Propagated: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleservicetwo, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.gateway, Stereotype.load_balancer, Stereotype.web_application, Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.encrypted_connection", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1745904086 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, Stereotype.restful_http, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.web_application, Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.encrypted_connection", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1745904086 + }, { + "message" : "Propagated: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleserviceone, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Queue.commudigalmicroservicessampleservicetwo, Stereotype.gateway, Stereotype.load_balancer, Stereotype.web_application, Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.encrypted_connection", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1745904086 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.restful_http, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleservicetwo, Stereotype.gateway, Stereotype.load_balancer, Stereotype.web_application, Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.encrypted_connection", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1745904086 + }, { + "message" : "Propagated: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleserviceone, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Queue.commudigalmicroservicessampleservicetwo, Stereotype.gateway, Stereotype.load_balancer, Stereotype.web_application, Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.encrypted_connection", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1745904086 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, Stereotype.restful_http, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Queue.commudigalmicroservicessampleservicetwo, Stereotype.gateway, Stereotype.load_balancer, Stereotype.web_application, Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.encrypted_connection", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1745904086 + }, { + "message" : "Propagated: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleservicetwo, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1406593369 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.restful_http, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1406593369 + }, { + "message" : "Propagated: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleserviceone, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Queue.commudigalmicroservicessampleservicetwo, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1406593369 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.restful_http, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleservicetwo, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1406593369 + }, { + "message" : "Propagated: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleserviceone, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Queue.commudigalmicroservicessampleservicetwo, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1406593369 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, Stereotype.restful_http, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Queue.commudigalmicroservicessampleservicetwo, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1406593369 + }, { + "message" : "Propagated: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleservicetwo, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.jdbc, Username.servicetwo, Password.servicetwo", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1018094504 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.restful_http, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.jdbc, Username.servicetwo, Password.servicetwo", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1018094504 + }, { + "message" : "Propagated: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleserviceone, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Queue.commudigalmicroservicessampleservicetwo, Stereotype.jdbc, Username.servicetwo, Password.servicetwo", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1018094504 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.restful_http, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleservicetwo, Stereotype.jdbc, Username.servicetwo, Password.servicetwo", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1018094504 + }, { + "message" : "Propagated: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleserviceone, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Queue.commudigalmicroservicessampleservicetwo, Stereotype.jdbc, Username.servicetwo, Password.servicetwo", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1018094504 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, Stereotype.restful_http, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Queue.commudigalmicroservicessampleservicetwo, Stereotype.jdbc, Username.servicetwo, Password.servicetwo", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1018094504 + }, { + "message" : "Propagated: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleservicetwo, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.gateway, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1772358460 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.restful_http, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1772358460 + }, { + "message" : "Propagated: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleserviceone, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Queue.commudigalmicroservicessampleservicetwo, Stereotype.gateway, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1772358460 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.restful_http, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleservicetwo, Stereotype.gateway, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1772358460 + }, { + "message" : "Propagated: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleserviceone, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Queue.commudigalmicroservicessampleservicetwo, Stereotype.gateway, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1772358460 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, Stereotype.restful_http, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Queue.commudigalmicroservicessampleservicetwo, Stereotype.gateway, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1772358460 + }, { + "message" : "Propagated: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleservicetwo, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.gateway, Stereotype.load_balancer, Stereotype.web_application, Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.encrypted_connection", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 38914319 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.restful_http, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.web_application, Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.encrypted_connection", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 38914319 + }, { + "message" : "Propagated: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleserviceone, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Queue.commudigalmicroservicessampleservicetwo, Stereotype.gateway, Stereotype.load_balancer, Stereotype.web_application, Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.encrypted_connection", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 38914319 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.restful_http, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleservicetwo, Stereotype.gateway, Stereotype.load_balancer, Stereotype.web_application, Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.encrypted_connection", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 38914319 + }, { + "message" : "Propagated: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleserviceone, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Queue.commudigalmicroservicessampleservicetwo, Stereotype.gateway, Stereotype.load_balancer, Stereotype.web_application, Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.encrypted_connection", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 38914319 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, Stereotype.restful_http, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Queue.commudigalmicroservicessampleservicetwo, Stereotype.gateway, Stereotype.load_balancer, Stereotype.web_application, Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.encrypted_connection", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 38914319 + }, { + "message" : "Propagated: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleservicetwo, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.gateway, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1713988669 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.restful_http, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1713988669 + }, { + "message" : "Propagated: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleserviceone, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Queue.commudigalmicroservicessampleservicetwo, Stereotype.gateway, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1713988669 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.restful_http, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleservicetwo, Stereotype.gateway, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1713988669 + }, { + "message" : "Propagated: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleserviceone, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Queue.commudigalmicroservicessampleservicetwo, Stereotype.gateway, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1713988669 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, Stereotype.restful_http, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Queue.commudigalmicroservicessampleservicetwo, Stereotype.gateway, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1713988669 + }, { + "message" : "Propagated: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleservicetwo, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.gateway, Stereotype.load_balancer, Stereotype.web_application, Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.encrypted_connection", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 768702707 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.restful_http, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.web_application, Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.encrypted_connection", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 768702707 + }, { + "message" : "Propagated: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleserviceone, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Queue.commudigalmicroservicessampleservicetwo, Stereotype.gateway, Stereotype.load_balancer, Stereotype.web_application, Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.encrypted_connection", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 768702707 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.restful_http, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleservicetwo, Stereotype.gateway, Stereotype.load_balancer, Stereotype.web_application, Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.encrypted_connection", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 768702707 + }, { + "message" : "Propagated: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleserviceone, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Queue.commudigalmicroservicessampleservicetwo, Stereotype.gateway, Stereotype.load_balancer, Stereotype.web_application, Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.encrypted_connection", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 768702707 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, Stereotype.restful_http, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Queue.commudigalmicroservicessampleservicetwo, Stereotype.gateway, Stereotype.load_balancer, Stereotype.web_application, Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.encrypted_connection", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 768702707 + }, { + "message" : "Propagated: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleservicetwo, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1684368286 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.restful_http, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1684368286 + }, { + "message" : "Propagated: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleserviceone, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Queue.commudigalmicroservicessampleservicetwo, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1684368286 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.restful_http, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleservicetwo, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1684368286 + }, { + "message" : "Propagated: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleserviceone, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Queue.commudigalmicroservicessampleservicetwo, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1684368286 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, Stereotype.restful_http, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Queue.commudigalmicroservicessampleservicetwo, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1684368286 + }, { + "message" : "Propagated: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleservicetwo, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1752223660 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.restful_http, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1752223660 + }, { + "message" : "Propagated: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleserviceone, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Queue.commudigalmicroservicessampleservicetwo, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1752223660 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.restful_http, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleservicetwo, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1752223660 + }, { + "message" : "Propagated: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleserviceone, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Queue.commudigalmicroservicessampleservicetwo, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1752223660 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, Stereotype.restful_http, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Queue.commudigalmicroservicessampleservicetwo, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1752223660 + }, { + "message" : "Propagated: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleservicetwo, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1163216403 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.restful_http, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1163216403 + }, { + "message" : "Propagated: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleserviceone, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Queue.commudigalmicroservicessampleservicetwo, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1163216403 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.restful_http, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleservicetwo, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1163216403 + }, { + "message" : "Propagated: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleserviceone, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Queue.commudigalmicroservicessampleservicetwo, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1163216403 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, Stereotype.restful_http, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Queue.commudigalmicroservicessampleservicetwo, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1163216403 + }, { + "message" : "Propagated: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleservicetwo, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1675999402 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.restful_http, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1675999402 + }, { + "message" : "Propagated: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleserviceone, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Queue.commudigalmicroservicessampleservicetwo, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1675999402 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.restful_http, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleservicetwo, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1675999402 + }, { + "message" : "Propagated: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleserviceone, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Queue.commudigalmicroservicessampleservicetwo, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1675999402 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, Stereotype.restful_http, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Queue.commudigalmicroservicessampleservicetwo, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1675999402 + }, { + "message" : "Propagated: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleservicetwo, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 747833043 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, Stereotype.restful_http, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 747833043 + }, { + "message" : "Propagated: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleservicetwo, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 747833043 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.restful_http, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleservicetwo, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 747833043 + }, { + "message" : "Propagated: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleserviceone, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Queue.commudigalmicroservicessampleservicetwo, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 747833043 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.restful_http, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleservicetwo, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 747833043 + }, { + "message" : "Propagated: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleserviceone, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Queue.commudigalmicroservicessampleservicetwo, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 747833043 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, Stereotype.restful_http, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Queue.commudigalmicroservicessampleservicetwo, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 747833043 + }, { + "message" : "Propagated: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleservicetwo, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.jdbc, Username.servicetwo, Password.servicetwo", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1114681666 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.restful_http, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.jdbc, Username.servicetwo, Password.servicetwo", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1114681666 + }, { + "message" : "Propagated: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleserviceone, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Queue.commudigalmicroservicessampleservicetwo, Stereotype.jdbc, Username.servicetwo, Password.servicetwo", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1114681666 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.restful_http, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleservicetwo, Stereotype.jdbc, Username.servicetwo, Password.servicetwo", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1114681666 + }, { + "message" : "Propagated: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleserviceone, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Queue.commudigalmicroservicessampleservicetwo, Stereotype.jdbc, Username.servicetwo, Password.servicetwo", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1114681666 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, Stereotype.restful_http, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Queue.commudigalmicroservicessampleservicetwo, Stereotype.jdbc, Username.servicetwo, Password.servicetwo", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1114681666 + }, { + "message" : "Propagated: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleservicetwo, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.gateway, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 771359425 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.restful_http, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 771359425 + }, { + "message" : "Propagated: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleserviceone, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Queue.commudigalmicroservicessampleservicetwo, Stereotype.gateway, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 771359425 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.restful_http, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleservicetwo, Stereotype.gateway, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 771359425 + }, { + "message" : "Propagated: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleserviceone, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Queue.commudigalmicroservicessampleservicetwo, Stereotype.gateway, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 771359425 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, Stereotype.restful_http, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Queue.commudigalmicroservicessampleservicetwo, Stereotype.gateway, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 771359425 + }, { + "message" : "Propagated: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleservicetwo, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.gateway, Stereotype.load_balancer, Stereotype.web_application, Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.encrypted_connection", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1662312252 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.restful_http, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.web_application, Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.encrypted_connection", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1662312252 + }, { + "message" : "Propagated: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleserviceone, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Queue.commudigalmicroservicessampleservicetwo, Stereotype.gateway, Stereotype.load_balancer, Stereotype.web_application, Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.encrypted_connection", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1662312252 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.restful_http, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleservicetwo, Stereotype.gateway, Stereotype.load_balancer, Stereotype.web_application, Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.encrypted_connection", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1662312252 + }, { + "message" : "Propagated: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleserviceone, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Queue.commudigalmicroservicessampleservicetwo, Stereotype.gateway, Stereotype.load_balancer, Stereotype.web_application, Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.encrypted_connection", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1662312252 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, Stereotype.restful_http, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Queue.commudigalmicroservicessampleservicetwo, Stereotype.gateway, Stereotype.load_balancer, Stereotype.web_application, Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.encrypted_connection", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1662312252 + }, { + "message" : "Propagated: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleservicetwo, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.gateway, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1468393491 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.restful_http, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1468393491 + }, { + "message" : "Propagated: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleserviceone, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Queue.commudigalmicroservicessampleservicetwo, Stereotype.gateway, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1468393491 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.restful_http, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleservicetwo, Stereotype.gateway, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1468393491 + }, { + "message" : "Propagated: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleserviceone, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Queue.commudigalmicroservicessampleservicetwo, Stereotype.gateway, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1468393491 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, Stereotype.restful_http, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Queue.commudigalmicroservicessampleservicetwo, Stereotype.gateway, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1468393491 + }, { + "message" : "Propagated: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleservicetwo, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.gateway, Stereotype.load_balancer, Stereotype.web_application, Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.encrypted_connection", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 280541440 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.restful_http, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.web_application, Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.encrypted_connection", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 280541440 + }, { + "message" : "Propagated: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleserviceone, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Queue.commudigalmicroservicessampleservicetwo, Stereotype.gateway, Stereotype.load_balancer, Stereotype.web_application, Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.encrypted_connection", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 280541440 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.restful_http, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleservicetwo, Stereotype.gateway, Stereotype.load_balancer, Stereotype.web_application, Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.encrypted_connection", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 280541440 + }, { + "message" : "Propagated: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleserviceone, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Queue.commudigalmicroservicessampleservicetwo, Stereotype.gateway, Stereotype.load_balancer, Stereotype.web_application, Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.encrypted_connection", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 280541440 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, Stereotype.restful_http, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Queue.commudigalmicroservicessampleservicetwo, Stereotype.gateway, Stereotype.load_balancer, Stereotype.web_application, Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.encrypted_connection", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 280541440 + }, { + "message" : "Propagated: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleserviceone, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.jdbc, Username.servicetwo, Password.servicetwo", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1831423452 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.restful_http, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.jdbc, Username.servicetwo, Password.servicetwo", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1831423452 + }, { + "message" : "Propagated: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleserviceone, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.jdbc, Username.servicetwo, Password.servicetwo", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1831423452 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, Stereotype.restful_http, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Stereotype.jdbc, Username.servicetwo, Password.servicetwo", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1831423452 + }, { + "message" : "Propagated: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleserviceone, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.gateway, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 671187578 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.restful_http, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 671187578 + }, { + "message" : "Propagated: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleserviceone, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.gateway, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 671187578 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, Stereotype.restful_http, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Stereotype.gateway, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 671187578 + }, { + "message" : "Propagated: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleserviceone, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1354510873 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.restful_http, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1354510873 + }, { + "message" : "Propagated: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleserviceone, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1354510873 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, Stereotype.restful_http, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1354510873 + }, { + "message" : "Propagated: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleservicetwo, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 93974967 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, Stereotype.restful_http, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 93974967 + }, { + "message" : "Propagated: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleserviceone, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Queue.commudigalmicroservicessampleservicetwo, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 93974967 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.restful_http, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleservicetwo, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 93974967 + }, { + "message" : "Propagated: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleserviceone, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Queue.commudigalmicroservicessampleservicetwo, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 93974967 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, Stereotype.restful_http, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Queue.commudigalmicroservicessampleservicetwo, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 93974967 + }, { + "message" : "Propagated: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleserviceone, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.jdbc, Username.servicetwo, Password.servicetwo", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 578362229 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.restful_http, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.jdbc, Username.servicetwo, Password.servicetwo", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 578362229 + }, { + "message" : "Propagated: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleserviceone, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.jdbc, Username.servicetwo, Password.servicetwo", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 578362229 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, Stereotype.restful_http, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Stereotype.jdbc, Username.servicetwo, Password.servicetwo", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 578362229 + }, { + "message" : "Propagated: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleserviceone, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.gateway, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 105860882 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.restful_http, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 105860882 + }, { + "message" : "Propagated: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleserviceone, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.gateway, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 105860882 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, Stereotype.restful_http, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Stereotype.gateway, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 105860882 + }, { + "message" : "Propagated: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleserviceone, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 936544568 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, Stereotype.restful_http, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 936544568 + }, { + "message" : "Propagated: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleserviceone, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 936544568 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, Stereotype.restful_http, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 936544568 + }, { + "message" : "Propagated: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleserviceone, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 2097992252 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.restful_http, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 2097992252 + }, { + "message" : "Propagated: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleserviceone, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 2097992252 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, Stereotype.restful_http, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 2097992252 + }, { + "message" : "Propagated: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleserviceone, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.jdbc", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 398777435 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, Stereotype.restful_http, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.jdbc", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 398777435 + }, { + "message" : "Propagated: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleserviceone, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.gateway, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1796154990 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, Stereotype.restful_http, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1796154990 + }, { + "message" : "Propagated: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleserviceone, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1211627902 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.restful_http, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1211627902 + }, { + "message" : "Propagated: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleserviceone, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1395740534 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, Stereotype.restful_http, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1395740534 + }, { + "message" : "Propagated: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleserviceone, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1655072591 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.restful_http, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1655072591 + }, { + "message" : "Propagated: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleserviceone, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 266196910 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.restful_http, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 266196910 + }, { + "message" : "Propagated: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleservicetwo, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1138190994 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, Stereotype.restful_http, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1138190994 + }, { + "message" : "Propagated: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleservicetwo, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1568527689 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, Stereotype.restful_http, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1568527689 + }, { + "message" : "Propagated: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 2059701776 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, Stereotype.restful_http, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 2059701776 + }, { + "message" : "Propagated: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1379222018 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.restful_http, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1379222018 + }, { + "message" : "Propagated: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1796415927 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, Stereotype.restful_http, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1796415927 + }, { + "message" : "Propagated: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 875487383 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.restful_http, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 875487383 + }, { + "message" : "Propagated: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleserviceone, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1434940020 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, Stereotype.restful_http, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1434940020 + }, { + "message" : "Propagated: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleserviceone, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 2047521920 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.restful_http, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 2047521920 + }, { + "message" : "Propagated: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleservicetwo, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 728740247 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, Stereotype.restful_http, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 728740247 + }, { + "message" : "Propagated: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleservicetwo, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 2103044456 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, Stereotype.restful_http, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 2103044456 + }, { + "message" : "Propagated: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleserviceone, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 556773329 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, Stereotype.restful_http, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 556773329 + }, { + "message" : "Propagated: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleserviceone, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1327714567 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.restful_http, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1327714567 + }, { + "message" : "Propagated: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleservicetwo, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 725873428 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, Stereotype.restful_http, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 725873428 + }, { + "message" : "Propagated: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleservicetwo, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1820545559 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, Stereotype.restful_http, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1820545559 + }, { + "message" : "Propagated: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleserviceone, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1560244891 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, Stereotype.restful_http, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1560244891 + }, { + "message" : "Propagated: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleserviceone, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1518022811 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.restful_http, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1518022811 + }, { + "message" : "Propagated: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleservicetwo, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1733354369 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, Stereotype.restful_http, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1733354369 + }, { + "message" : "Propagated: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleservicetwo, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1589146424 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, Stereotype.restful_http, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1589146424 + }, { + "message" : "Propagated: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 977245867 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, Stereotype.restful_http, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 977245867 + }, { + "message" : "Propagated: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1307540790 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.restful_http, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1307540790 + }, { + "message" : "Propagated: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1137180298 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, Stereotype.restful_http, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1137180298 + }, { + "message" : "Propagated: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1744389827 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.restful_http, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1744389827 + } ], + "children" : [ ], + "position" : { + "x" : 0.0, + "y" : 0.0 + }, + "size" : null + }, { + "text" : "service_one", + "id" : "10", + "type" : "node:function", + "labels" : [ { + "labelTypeId" : "17", + "labelTypeValueId" : "20" + }, { + "labelTypeId" : "17", + "labelTypeValueId" : "21" + }, { + "labelTypeId" : "22", + "labelTypeValueId" : "23" + } ], + "ports" : [ { + "id" : "113", + "type" : "port:dfd-input", + "children" : [ ] + }, { + "behavior" : "assign Stereotype.internal,Stereotype.local_logging,Stereotype.restful_http if TRUE from api_gateway|api_gateway-0|consul|consul-0|rabbit|rabbit-0|service_one_db|service_one_db-0\nforward api_gateway|api_gateway-0|consul|consul-0|rabbit|rabbit-0|service_one_db|service_one_db-0", + "id" : "117", + "type" : "port:dfd-output", + "children" : [ ] + }, { + "behavior" : "assign Stereotype.internal,Stereotype.local_logging,Stereotype.message_producer_rabbitmq,Stereotype.plaintext_credentials_link,Stereotype.restful_http,RoutingKey.commudigalmicroservicessampleservice,ProducerExchange.commudigalmicroservicessampleservicesexchange if TRUE from api_gateway|api_gateway-0|consul|consul-0|rabbit|rabbit-0|service_one_db|service_one_db-0\nforward api_gateway|api_gateway-0|consul|consul-0|rabbit|rabbit-0|service_one_db|service_one_db-0", + "id" : "120", + "type" : "port:dfd-output", + "children" : [ ] + }, { + "behavior" : "assign Stereotype.internal,Stereotype.local_logging,Stereotype.restful_http if TRUE from api_gateway|api_gateway-0|consul|consul-0|rabbit|rabbit-0|service_one_db|service_one_db-0\nforward api_gateway|api_gateway-0|consul|consul-0|rabbit|rabbit-0|service_one_db|service_one_db-0", + "id" : "169", + "type" : "port:dfd-output", + "children" : [ ] + }, { + "behavior" : "assign Stereotype.internal,Stereotype.local_logging,Stereotype.restful_http if TRUE\nforward api_gateway|api_gateway-0|consul|consul-0|rabbit|rabbit-0|service_one_db|service_one_db-0", + "id" : "_UWx-x_unEfCYrdfxNyUhUA", + "type" : "port:dfd-output", + "children" : [ ] + }, { + "behavior" : "assign Stereotype.internal,Stereotype.local_logging,Stereotype.message_producer_rabbitmq,Stereotype.plaintext_credentials_link,Stereotype.restful_http,RoutingKey.commudigalmicroservicessampleservice,ProducerExchange.commudigalmicroservicessampleservicesexchange if TRUE\nforward api_gateway|api_gateway-0|consul|consul-0|rabbit|rabbit-0|service_one_db|service_one_db-0", + "id" : "_UWx-yfunEfCYrdfxNyUhUA", + "type" : "port:dfd-output", + "children" : [ ] + }, { + "behavior" : "assign Stereotype.internal,Stereotype.local_logging,Stereotype.restful_http if TRUE\nforward api_gateway|api_gateway-0|consul|consul-0|rabbit|rabbit-0|service_one_db|service_one_db-0", + "id" : "_UWx-5_unEfCYrdfxNyUhUA", + "type" : "port:dfd-output", + "children" : [ ] + } ], + "annotations" : [ { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.service_discovery, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 767535474 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 767535474 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.service_discovery, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1190608890 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1190608890 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.service_discovery, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1101970356 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1101970356 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.service_discovery, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 184410212 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 184410212 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, Stereotype.restful_http, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1515793520 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1515793520 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1515793520 + }, { + "message" : "Incoming: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleserviceone, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1515793520 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, Stereotype.restful_http, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.jdbc", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 623820846 + }, { + "message" : "Incoming: Stereotype.jdbc", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 623820846 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.jdbc", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 623820846 + }, { + "message" : "Incoming: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleserviceone, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.jdbc", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 623820846 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, Stereotype.restful_http, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 300526628 + }, { + "message" : "Incoming: Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.restful_http, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 300526628 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.gateway, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 300526628 + }, { + "message" : "Incoming: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleserviceone, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.gateway, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 300526628 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, Stereotype.restful_http, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.web_application, Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.encrypted_connection", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1962049725 + }, { + "message" : "Incoming: Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.restful_http, Stereotype.web_application, Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.encrypted_connection", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1962049725 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.gateway, Stereotype.load_balancer, Stereotype.web_application, Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.encrypted_connection", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1962049725 + }, { + "message" : "Incoming: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleserviceone, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.gateway, Stereotype.load_balancer, Stereotype.web_application, Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.encrypted_connection", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1962049725 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, Stereotype.restful_http, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1734023423 + }, { + "message" : "Incoming: Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.restful_http, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1734023423 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.gateway, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1734023423 + }, { + "message" : "Incoming: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleserviceone, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.gateway, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1734023423 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, Stereotype.restful_http, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.web_application, Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.encrypted_connection", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 875010954 + }, { + "message" : "Incoming: Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.restful_http, Stereotype.web_application, Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.encrypted_connection", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 875010954 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.gateway, Stereotype.load_balancer, Stereotype.web_application, Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.encrypted_connection", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 875010954 + }, { + "message" : "Incoming: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleserviceone, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.gateway, Stereotype.load_balancer, Stereotype.web_application, Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.encrypted_connection", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 875010954 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, Stereotype.restful_http, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1752402342 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1752402342 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1752402342 + }, { + "message" : "Incoming: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleserviceone, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1752402342 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, Stereotype.restful_http, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 140778365 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 140778365 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 140778365 + }, { + "message" : "Incoming: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleserviceone, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 140778365 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, Stereotype.restful_http, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 935818862 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 935818862 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 935818862 + }, { + "message" : "Incoming: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleserviceone, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 935818862 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, Stereotype.restful_http, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1068781783 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1068781783 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1068781783 + }, { + "message" : "Incoming: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleserviceone, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1068781783 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, Stereotype.restful_http, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1266602046 + }, { + "message" : "Incoming: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleserviceone, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1266602046 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1266602046 + }, { + "message" : "Incoming: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleserviceone, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1266602046 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, Stereotype.restful_http, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1667859935 + }, { + "message" : "Incoming: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleserviceone, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1667859935 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1667859935 + }, { + "message" : "Incoming: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleserviceone, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1667859935 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, Stereotype.restful_http, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1871838170 + }, { + "message" : "Incoming: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleserviceone, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1871838170 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1871838170 + }, { + "message" : "Incoming: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleserviceone, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1871838170 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, Stereotype.restful_http, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1916681239 + }, { + "message" : "Incoming: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleserviceone, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1916681239 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1916681239 + }, { + "message" : "Incoming: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleserviceone, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1916681239 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, Stereotype.restful_http, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1341975886 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1341975886 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, Stereotype.restful_http, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Queue.commudigalmicroservicessampleservicetwo, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1341975886 + }, { + "message" : "Incoming: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleserviceone, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Queue.commudigalmicroservicessampleservicetwo, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1341975886 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Queue.commudigalmicroservicessampleservicetwo, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1341975886 + }, { + "message" : "Incoming: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleserviceone, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Queue.commudigalmicroservicessampleservicetwo, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1341975886 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, Stereotype.restful_http, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.jdbc", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1620368915 + }, { + "message" : "Incoming: Stereotype.jdbc", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1620368915 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, Stereotype.restful_http, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Queue.commudigalmicroservicessampleservicetwo, Stereotype.jdbc", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1620368915 + }, { + "message" : "Incoming: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleserviceone, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Queue.commudigalmicroservicessampleservicetwo, Stereotype.jdbc", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1620368915 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Queue.commudigalmicroservicessampleservicetwo, Stereotype.jdbc", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1620368915 + }, { + "message" : "Incoming: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleserviceone, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Queue.commudigalmicroservicessampleservicetwo, Stereotype.jdbc", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1620368915 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, Stereotype.restful_http, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 12302064 + }, { + "message" : "Incoming: Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.restful_http, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 12302064 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, Stereotype.restful_http, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Queue.commudigalmicroservicessampleservicetwo, Stereotype.gateway, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 12302064 + }, { + "message" : "Incoming: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleserviceone, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Queue.commudigalmicroservicessampleservicetwo, Stereotype.gateway, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 12302064 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Queue.commudigalmicroservicessampleservicetwo, Stereotype.gateway, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 12302064 + }, { + "message" : "Incoming: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleserviceone, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Queue.commudigalmicroservicessampleservicetwo, Stereotype.gateway, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 12302064 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, Stereotype.restful_http, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 65465460 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 65465460 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, Stereotype.restful_http, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Queue.commudigalmicroservicessampleservicetwo, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 65465460 + }, { + "message" : "Incoming: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleserviceone, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Queue.commudigalmicroservicessampleservicetwo, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 65465460 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Queue.commudigalmicroservicessampleservicetwo, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 65465460 + }, { + "message" : "Incoming: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleserviceone, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Queue.commudigalmicroservicessampleservicetwo, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 65465460 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, Stereotype.restful_http, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.jdbc", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 735639515 + }, { + "message" : "Incoming: Stereotype.jdbc", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 735639515 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, Stereotype.restful_http, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Queue.commudigalmicroservicessampleservicetwo, Stereotype.jdbc", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 735639515 + }, { + "message" : "Incoming: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleserviceone, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Queue.commudigalmicroservicessampleservicetwo, Stereotype.jdbc", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 735639515 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Queue.commudigalmicroservicessampleservicetwo, Stereotype.jdbc", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 735639515 + }, { + "message" : "Incoming: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleserviceone, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Queue.commudigalmicroservicessampleservicetwo, Stereotype.jdbc", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 735639515 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, Stereotype.restful_http, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1836765429 + }, { + "message" : "Incoming: Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.restful_http, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1836765429 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, Stereotype.restful_http, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Queue.commudigalmicroservicessampleservicetwo, Stereotype.gateway, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1836765429 + }, { + "message" : "Incoming: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleserviceone, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Queue.commudigalmicroservicessampleservicetwo, Stereotype.gateway, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1836765429 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Queue.commudigalmicroservicessampleservicetwo, Stereotype.gateway, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1836765429 + }, { + "message" : "Incoming: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleserviceone, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Queue.commudigalmicroservicessampleservicetwo, Stereotype.gateway, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1836765429 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, Stereotype.restful_http, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.web_application, Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.encrypted_connection", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 816576412 + }, { + "message" : "Incoming: Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.restful_http, Stereotype.web_application, Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.encrypted_connection", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 816576412 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, Stereotype.restful_http, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Queue.commudigalmicroservicessampleservicetwo, Stereotype.gateway, Stereotype.load_balancer, Stereotype.web_application, Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.encrypted_connection", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 816576412 + }, { + "message" : "Incoming: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleserviceone, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Queue.commudigalmicroservicessampleservicetwo, Stereotype.gateway, Stereotype.load_balancer, Stereotype.web_application, Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.encrypted_connection", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 816576412 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Queue.commudigalmicroservicessampleservicetwo, Stereotype.gateway, Stereotype.load_balancer, Stereotype.web_application, Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.encrypted_connection", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 816576412 + }, { + "message" : "Incoming: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleserviceone, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Queue.commudigalmicroservicessampleservicetwo, Stereotype.gateway, Stereotype.load_balancer, Stereotype.web_application, Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.encrypted_connection", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 816576412 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, Stereotype.restful_http, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 77215921 + }, { + "message" : "Incoming: Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.restful_http, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 77215921 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, Stereotype.restful_http, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Queue.commudigalmicroservicessampleservicetwo, Stereotype.gateway, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 77215921 + }, { + "message" : "Incoming: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleserviceone, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Queue.commudigalmicroservicessampleservicetwo, Stereotype.gateway, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 77215921 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Queue.commudigalmicroservicessampleservicetwo, Stereotype.gateway, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 77215921 + }, { + "message" : "Incoming: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleserviceone, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Queue.commudigalmicroservicessampleservicetwo, Stereotype.gateway, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 77215921 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, Stereotype.restful_http, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.web_application, Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.encrypted_connection", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1745904086 + }, { + "message" : "Incoming: Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.restful_http, Stereotype.web_application, Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.encrypted_connection", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1745904086 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, Stereotype.restful_http, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Queue.commudigalmicroservicessampleservicetwo, Stereotype.gateway, Stereotype.load_balancer, Stereotype.web_application, Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.encrypted_connection", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1745904086 + }, { + "message" : "Incoming: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleserviceone, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Queue.commudigalmicroservicessampleservicetwo, Stereotype.gateway, Stereotype.load_balancer, Stereotype.web_application, Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.encrypted_connection", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1745904086 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Queue.commudigalmicroservicessampleservicetwo, Stereotype.gateway, Stereotype.load_balancer, Stereotype.web_application, Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.encrypted_connection", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1745904086 + }, { + "message" : "Incoming: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleserviceone, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Queue.commudigalmicroservicessampleservicetwo, Stereotype.gateway, Stereotype.load_balancer, Stereotype.web_application, Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.encrypted_connection", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1745904086 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, Stereotype.restful_http, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Queue.commudigalmicroservicessampleservicetwo, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1406593369 + }, { + "message" : "Incoming: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleserviceone, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Queue.commudigalmicroservicessampleservicetwo, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1406593369 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Queue.commudigalmicroservicessampleservicetwo, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1406593369 + }, { + "message" : "Incoming: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleserviceone, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Queue.commudigalmicroservicessampleservicetwo, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1406593369 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, Stereotype.restful_http, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Queue.commudigalmicroservicessampleservicetwo, Stereotype.jdbc, Username.servicetwo, Password.servicetwo", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1018094504 + }, { + "message" : "Incoming: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleserviceone, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Queue.commudigalmicroservicessampleservicetwo, Stereotype.jdbc, Username.servicetwo, Password.servicetwo", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1018094504 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Queue.commudigalmicroservicessampleservicetwo, Stereotype.jdbc, Username.servicetwo, Password.servicetwo", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1018094504 + }, { + "message" : "Incoming: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleserviceone, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Queue.commudigalmicroservicessampleservicetwo, Stereotype.jdbc, Username.servicetwo, Password.servicetwo", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1018094504 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, Stereotype.restful_http, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Queue.commudigalmicroservicessampleservicetwo, Stereotype.gateway, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1772358460 + }, { + "message" : "Incoming: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleserviceone, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Queue.commudigalmicroservicessampleservicetwo, Stereotype.gateway, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1772358460 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Queue.commudigalmicroservicessampleservicetwo, Stereotype.gateway, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1772358460 + }, { + "message" : "Incoming: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleserviceone, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Queue.commudigalmicroservicessampleservicetwo, Stereotype.gateway, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1772358460 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, Stereotype.restful_http, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Queue.commudigalmicroservicessampleservicetwo, Stereotype.gateway, Stereotype.load_balancer, Stereotype.web_application, Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.encrypted_connection", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 38914319 + }, { + "message" : "Incoming: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleserviceone, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Queue.commudigalmicroservicessampleservicetwo, Stereotype.gateway, Stereotype.load_balancer, Stereotype.web_application, Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.encrypted_connection", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 38914319 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Queue.commudigalmicroservicessampleservicetwo, Stereotype.gateway, Stereotype.load_balancer, Stereotype.web_application, Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.encrypted_connection", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 38914319 + }, { + "message" : "Incoming: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleserviceone, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Queue.commudigalmicroservicessampleservicetwo, Stereotype.gateway, Stereotype.load_balancer, Stereotype.web_application, Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.encrypted_connection", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 38914319 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, Stereotype.restful_http, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Queue.commudigalmicroservicessampleservicetwo, Stereotype.gateway, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1713988669 + }, { + "message" : "Incoming: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleserviceone, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Queue.commudigalmicroservicessampleservicetwo, Stereotype.gateway, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1713988669 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Queue.commudigalmicroservicessampleservicetwo, Stereotype.gateway, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1713988669 + }, { + "message" : "Incoming: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleserviceone, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Queue.commudigalmicroservicessampleservicetwo, Stereotype.gateway, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1713988669 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, Stereotype.restful_http, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Queue.commudigalmicroservicessampleservicetwo, Stereotype.gateway, Stereotype.load_balancer, Stereotype.web_application, Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.encrypted_connection", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 768702707 + }, { + "message" : "Incoming: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleserviceone, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Queue.commudigalmicroservicessampleservicetwo, Stereotype.gateway, Stereotype.load_balancer, Stereotype.web_application, Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.encrypted_connection", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 768702707 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Queue.commudigalmicroservicessampleservicetwo, Stereotype.gateway, Stereotype.load_balancer, Stereotype.web_application, Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.encrypted_connection", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 768702707 + }, { + "message" : "Incoming: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleserviceone, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Queue.commudigalmicroservicessampleservicetwo, Stereotype.gateway, Stereotype.load_balancer, Stereotype.web_application, Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.encrypted_connection", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 768702707 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, Stereotype.restful_http, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Queue.commudigalmicroservicessampleservicetwo, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1684368286 + }, { + "message" : "Incoming: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleserviceone, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Queue.commudigalmicroservicessampleservicetwo, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1684368286 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Queue.commudigalmicroservicessampleservicetwo, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1684368286 + }, { + "message" : "Incoming: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleserviceone, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Queue.commudigalmicroservicessampleservicetwo, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1684368286 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, Stereotype.restful_http, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Queue.commudigalmicroservicessampleservicetwo, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1752223660 + }, { + "message" : "Incoming: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleserviceone, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Queue.commudigalmicroservicessampleservicetwo, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1752223660 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Queue.commudigalmicroservicessampleservicetwo, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1752223660 + }, { + "message" : "Incoming: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleserviceone, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Queue.commudigalmicroservicessampleservicetwo, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1752223660 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, Stereotype.restful_http, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Queue.commudigalmicroservicessampleservicetwo, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1163216403 + }, { + "message" : "Incoming: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleserviceone, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Queue.commudigalmicroservicessampleservicetwo, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1163216403 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Queue.commudigalmicroservicessampleservicetwo, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1163216403 + }, { + "message" : "Incoming: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleserviceone, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Queue.commudigalmicroservicessampleservicetwo, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1163216403 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, Stereotype.restful_http, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Queue.commudigalmicroservicessampleservicetwo, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1675999402 + }, { + "message" : "Incoming: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleserviceone, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Queue.commudigalmicroservicessampleservicetwo, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1675999402 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Queue.commudigalmicroservicessampleservicetwo, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1675999402 + }, { + "message" : "Incoming: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleserviceone, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Queue.commudigalmicroservicessampleservicetwo, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1675999402 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, Stereotype.restful_http, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 747833043 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 747833043 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, Stereotype.restful_http, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Queue.commudigalmicroservicessampleservicetwo, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 747833043 + }, { + "message" : "Incoming: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleserviceone, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Queue.commudigalmicroservicessampleservicetwo, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 747833043 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Queue.commudigalmicroservicessampleservicetwo, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 747833043 + }, { + "message" : "Incoming: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleserviceone, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Queue.commudigalmicroservicessampleservicetwo, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 747833043 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, Stereotype.restful_http, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Queue.commudigalmicroservicessampleservicetwo, Stereotype.jdbc, Username.servicetwo, Password.servicetwo", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1114681666 + }, { + "message" : "Incoming: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleserviceone, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Queue.commudigalmicroservicessampleservicetwo, Stereotype.jdbc, Username.servicetwo, Password.servicetwo", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1114681666 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Queue.commudigalmicroservicessampleservicetwo, Stereotype.jdbc, Username.servicetwo, Password.servicetwo", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1114681666 + }, { + "message" : "Incoming: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleserviceone, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Queue.commudigalmicroservicessampleservicetwo, Stereotype.jdbc, Username.servicetwo, Password.servicetwo", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1114681666 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, Stereotype.restful_http, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Queue.commudigalmicroservicessampleservicetwo, Stereotype.gateway, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 771359425 + }, { + "message" : "Incoming: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleserviceone, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Queue.commudigalmicroservicessampleservicetwo, Stereotype.gateway, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 771359425 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Queue.commudigalmicroservicessampleservicetwo, Stereotype.gateway, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 771359425 + }, { + "message" : "Incoming: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleserviceone, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Queue.commudigalmicroservicessampleservicetwo, Stereotype.gateway, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 771359425 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, Stereotype.restful_http, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Queue.commudigalmicroservicessampleservicetwo, Stereotype.gateway, Stereotype.load_balancer, Stereotype.web_application, Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.encrypted_connection", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1662312252 + }, { + "message" : "Incoming: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleserviceone, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Queue.commudigalmicroservicessampleservicetwo, Stereotype.gateway, Stereotype.load_balancer, Stereotype.web_application, Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.encrypted_connection", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1662312252 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Queue.commudigalmicroservicessampleservicetwo, Stereotype.gateway, Stereotype.load_balancer, Stereotype.web_application, Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.encrypted_connection", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1662312252 + }, { + "message" : "Incoming: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleserviceone, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Queue.commudigalmicroservicessampleservicetwo, Stereotype.gateway, Stereotype.load_balancer, Stereotype.web_application, Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.encrypted_connection", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1662312252 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, Stereotype.restful_http, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Queue.commudigalmicroservicessampleservicetwo, Stereotype.gateway, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1468393491 + }, { + "message" : "Incoming: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleserviceone, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Queue.commudigalmicroservicessampleservicetwo, Stereotype.gateway, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1468393491 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Queue.commudigalmicroservicessampleservicetwo, Stereotype.gateway, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1468393491 + }, { + "message" : "Incoming: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleserviceone, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Queue.commudigalmicroservicessampleservicetwo, Stereotype.gateway, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1468393491 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, Stereotype.restful_http, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Queue.commudigalmicroservicessampleservicetwo, Stereotype.gateway, Stereotype.load_balancer, Stereotype.web_application, Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.encrypted_connection", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 280541440 + }, { + "message" : "Incoming: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleserviceone, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Queue.commudigalmicroservicessampleservicetwo, Stereotype.gateway, Stereotype.load_balancer, Stereotype.web_application, Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.encrypted_connection", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 280541440 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Queue.commudigalmicroservicessampleservicetwo, Stereotype.gateway, Stereotype.load_balancer, Stereotype.web_application, Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.encrypted_connection", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 280541440 + }, { + "message" : "Incoming: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleserviceone, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Queue.commudigalmicroservicessampleservicetwo, Stereotype.gateway, Stereotype.load_balancer, Stereotype.web_application, Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.encrypted_connection", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 280541440 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, Stereotype.restful_http, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Stereotype.jdbc, Username.servicetwo, Password.servicetwo", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1831423452 + }, { + "message" : "Incoming: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleserviceone, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.jdbc, Username.servicetwo, Password.servicetwo", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1831423452 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.jdbc, Username.servicetwo, Password.servicetwo", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1831423452 + }, { + "message" : "Incoming: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleserviceone, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.jdbc, Username.servicetwo, Password.servicetwo", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1831423452 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, Stereotype.restful_http, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Stereotype.gateway, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 671187578 + }, { + "message" : "Incoming: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleserviceone, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.gateway, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 671187578 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.gateway, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 671187578 + }, { + "message" : "Incoming: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleserviceone, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.gateway, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 671187578 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, Stereotype.restful_http, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1354510873 + }, { + "message" : "Incoming: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleserviceone, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1354510873 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1354510873 + }, { + "message" : "Incoming: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleserviceone, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1354510873 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, Stereotype.restful_http, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 93974967 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 93974967 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, Stereotype.restful_http, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Queue.commudigalmicroservicessampleservicetwo, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 93974967 + }, { + "message" : "Incoming: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleserviceone, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Queue.commudigalmicroservicessampleservicetwo, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 93974967 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Queue.commudigalmicroservicessampleservicetwo, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 93974967 + }, { + "message" : "Incoming: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleserviceone, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Queue.commudigalmicroservicessampleservicetwo, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 93974967 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, Stereotype.restful_http, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Stereotype.jdbc, Username.servicetwo, Password.servicetwo", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 578362229 + }, { + "message" : "Incoming: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleserviceone, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.jdbc, Username.servicetwo, Password.servicetwo", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 578362229 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.jdbc, Username.servicetwo, Password.servicetwo", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 578362229 + }, { + "message" : "Incoming: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleserviceone, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.jdbc, Username.servicetwo, Password.servicetwo", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 578362229 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, Stereotype.restful_http, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Stereotype.gateway, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 105860882 + }, { + "message" : "Incoming: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleserviceone, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.gateway, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 105860882 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.gateway, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 105860882 + }, { + "message" : "Incoming: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleserviceone, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.gateway, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 105860882 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, Stereotype.restful_http, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 936544568 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 936544568 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, Stereotype.restful_http, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 936544568 + }, { + "message" : "Incoming: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleserviceone, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 936544568 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 936544568 + }, { + "message" : "Incoming: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleserviceone, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 936544568 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, Stereotype.restful_http, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 2097992252 + }, { + "message" : "Incoming: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleserviceone, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 2097992252 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 2097992252 + }, { + "message" : "Incoming: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleserviceone, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 2097992252 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, Stereotype.restful_http, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.jdbc", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 398777435 + }, { + "message" : "Incoming: Stereotype.jdbc", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 398777435 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.jdbc", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 398777435 + }, { + "message" : "Incoming: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleserviceone, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.jdbc", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 398777435 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, Stereotype.restful_http, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1796154990 + }, { + "message" : "Incoming: Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.restful_http, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1796154990 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.gateway, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1796154990 + }, { + "message" : "Incoming: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleserviceone, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.gateway, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1796154990 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1211627902 + }, { + "message" : "Incoming: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleserviceone, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1211627902 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, Stereotype.restful_http, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1395740534 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1395740534 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1395740534 + }, { + "message" : "Incoming: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleserviceone, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1395740534 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1655072591 + }, { + "message" : "Incoming: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleserviceone, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1655072591 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.jdbc", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1887965475 + }, { + "message" : "Incoming: Stereotype.jdbc", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1887965475 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 117701189 + }, { + "message" : "Incoming: Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.restful_http, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 117701189 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.service_discovery, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1586519852 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1586519852 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 266196910 + }, { + "message" : "Incoming: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleserviceone, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 266196910 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.jdbc", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1064095359 + }, { + "message" : "Incoming: Stereotype.jdbc", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1064095359 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 656787973 + }, { + "message" : "Incoming: Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.restful_http, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 656787973 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, Stereotype.restful_http, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1138190994 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1138190994 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, Stereotype.restful_http, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1568527689 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1568527689 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, Stereotype.restful_http, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 2059701776 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 2059701776 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, Stereotype.restful_http, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1796415927 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1796415927 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.service_discovery, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 940938116 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 940938116 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, Stereotype.restful_http, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1434940020 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1434940020 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1434940020 + }, { + "message" : "Incoming: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleserviceone, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1434940020 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.jdbc", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1916677384 + }, { + "message" : "Incoming: Stereotype.jdbc", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1916677384 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 7162498 + }, { + "message" : "Incoming: Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.restful_http, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 7162498 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.service_discovery, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 351297720 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 351297720 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 2047521920 + }, { + "message" : "Incoming: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleserviceone, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 2047521920 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.jdbc", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 2044690596 + }, { + "message" : "Incoming: Stereotype.jdbc", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 2044690596 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 319618119 + }, { + "message" : "Incoming: Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.restful_http, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 319618119 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, Stereotype.restful_http, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 728740247 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 728740247 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, Stereotype.restful_http, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 2103044456 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 2103044456 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.service_discovery, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 328140385 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 328140385 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, Stereotype.restful_http, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 556773329 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 556773329 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 556773329 + }, { + "message" : "Incoming: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleserviceone, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 556773329 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.jdbc", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1149526768 + }, { + "message" : "Incoming: Stereotype.jdbc", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1149526768 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 2021230836 + }, { + "message" : "Incoming: Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.restful_http, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 2021230836 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.service_discovery, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 321795476 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 321795476 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1327714567 + }, { + "message" : "Incoming: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleserviceone, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1327714567 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.jdbc", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 685193713 + }, { + "message" : "Incoming: Stereotype.jdbc", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 685193713 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 475871799 + }, { + "message" : "Incoming: Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.restful_http, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 475871799 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, Stereotype.restful_http, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 725873428 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 725873428 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, Stereotype.restful_http, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1820545559 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1820545559 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.service_discovery, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1867568476 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1867568476 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.service_discovery, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1605570842 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1605570842 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.service_discovery, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 599592065 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 599592065 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.service_discovery, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 322100932 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 322100932 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.service_discovery, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1414411897 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1414411897 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.service_discovery, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1753871727 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1753871727 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.service_discovery, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 588985851 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 588985851 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.service_discovery, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 58854654 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 58854654 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.service_discovery, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 870627780 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 870627780 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, Stereotype.restful_http, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1560244891 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1560244891 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1560244891 + }, { + "message" : "Incoming: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleserviceone, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1560244891 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.jdbc", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 282166934 + }, { + "message" : "Incoming: Stereotype.jdbc", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 282166934 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1804292128 + }, { + "message" : "Incoming: Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.restful_http, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1804292128 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.service_discovery, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 2100817420 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 2100817420 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1518022811 + }, { + "message" : "Incoming: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleserviceone, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1518022811 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.jdbc", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1174599796 + }, { + "message" : "Incoming: Stereotype.jdbc", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1174599796 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 2000267972 + }, { + "message" : "Incoming: Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.restful_http, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 2000267972 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, Stereotype.restful_http, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1733354369 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1733354369 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, Stereotype.restful_http, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1589146424 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1589146424 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, Stereotype.restful_http, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 977245867 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 977245867 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, Stereotype.restful_http, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1137180298 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1137180298 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.service_discovery, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1340769295 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1340769295 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.service_discovery, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 850300711 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 850300711 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.service_discovery, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1978141335 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1978141335 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.service_discovery, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 5998675 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 5998675 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.service_discovery, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 462073515 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 462073515 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.service_discovery, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1746061516 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1746061516 + } ], + "children" : [ ], + "position" : { + "x" : 0.0, + "y" : 0.0 + }, + "size" : null + }, { + "text" : "service_two", + "id" : "11", + "type" : "node:function", + "labels" : [ { + "labelTypeId" : "17", + "labelTypeValueId" : "20" + }, { + "labelTypeId" : "17", + "labelTypeValueId" : "21" + }, { + "labelTypeId" : "22", + "labelTypeValueId" : "49" + } ], + "ports" : [ { + "id" : "133", + "type" : "port:dfd-input", + "children" : [ ] + }, { + "behavior" : "assign Stereotype.internal,Stereotype.local_logging,Stereotype.restful_http if TRUE from api_gateway|api_gateway-0|consul|consul-0|rabbit|rabbit-0|service_two_db|service_two_db-0\nforward api_gateway|api_gateway-0|consul|consul-0|rabbit|rabbit-0|service_two_db|service_two_db-0", + "id" : "136", + "type" : "port:dfd-output", + "children" : [ ] + }, { + "behavior" : "assign Stereotype.internal,Stereotype.local_logging,Stereotype.message_producer_rabbitmq,Stereotype.restful_http,Stereotype.plaintext_credentials_link,RoutingKey.commudigalmicroservicessampleservice,ProducerExchange.commudigalmicroservicessampleservicesexchange if TRUE from api_gateway|api_gateway-0|consul|consul-0|rabbit|rabbit-0|service_two_db|service_two_db-0\nforward api_gateway|api_gateway-0|consul|consul-0|rabbit|rabbit-0|service_two_db|service_two_db-0", + "id" : "138", + "type" : "port:dfd-output", + "children" : [ ] + }, { + "behavior" : "assign Stereotype.internal,Stereotype.local_logging,Stereotype.restful_http if TRUE from api_gateway|api_gateway-0|consul|consul-0|rabbit|rabbit-0|service_two_db|service_two_db-0\nforward api_gateway|api_gateway-0|consul|consul-0|rabbit|rabbit-0|service_two_db|service_two_db-0", + "id" : "173", + "type" : "port:dfd-output", + "children" : [ ] + }, { + "behavior" : "assign Stereotype.internal,Stereotype.local_logging,Stereotype.restful_http if TRUE\nforward api_gateway|api_gateway-0|consul|consul-0|rabbit|rabbit-0|service_two_db|service_two_db-0", + "id" : "_UWx-z_unEfCYrdfxNyUhUA", + "type" : "port:dfd-output", + "children" : [ ] + }, { + "behavior" : "assign Stereotype.internal,Stereotype.local_logging,Stereotype.message_producer_rabbitmq,Stereotype.restful_http,Stereotype.plaintext_credentials_link,RoutingKey.commudigalmicroservicessampleservice,ProducerExchange.commudigalmicroservicessampleservicesexchange if TRUE\nforward api_gateway|api_gateway-0|consul|consul-0|rabbit|rabbit-0|service_two_db|service_two_db-0", + "id" : "_UWx-0funEfCYrdfxNyUhUA", + "type" : "port:dfd-output", + "children" : [ ] + }, { + "behavior" : "assign Stereotype.internal,Stereotype.local_logging,Stereotype.restful_http if TRUE\nforward api_gateway|api_gateway-0|consul|consul-0|rabbit|rabbit-0|service_two_db|service_two_db-0", + "id" : "_UWx-6_unEfCYrdfxNyUhUA", + "type" : "port:dfd-output", + "children" : [ ] + } ], + "annotations" : [ { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.restful_http, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1266602046 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1266602046 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.restful_http, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1667859935 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1667859935 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.restful_http, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1871838170 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1871838170 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.restful_http, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1916681239 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1916681239 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.restful_http, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleservicetwo, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1341975886 + }, { + "message" : "Incoming: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleservicetwo, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1341975886 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.restful_http, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleservicetwo, Stereotype.jdbc", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1620368915 + }, { + "message" : "Incoming: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleservicetwo, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.jdbc", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1620368915 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.restful_http, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleservicetwo, Stereotype.gateway, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 12302064 + }, { + "message" : "Incoming: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleservicetwo, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.gateway, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 12302064 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.restful_http, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleservicetwo, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 65465460 + }, { + "message" : "Incoming: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleservicetwo, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 65465460 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.restful_http, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleservicetwo, Stereotype.jdbc", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 735639515 + }, { + "message" : "Incoming: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleservicetwo, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.jdbc", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 735639515 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.restful_http, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleservicetwo, Stereotype.gateway, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1836765429 + }, { + "message" : "Incoming: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleservicetwo, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.gateway, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1836765429 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.restful_http, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleservicetwo, Stereotype.gateway, Stereotype.load_balancer, Stereotype.web_application, Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.encrypted_connection", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 816576412 + }, { + "message" : "Incoming: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleservicetwo, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.gateway, Stereotype.load_balancer, Stereotype.web_application, Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.encrypted_connection", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 816576412 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.restful_http, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleservicetwo, Stereotype.gateway, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 77215921 + }, { + "message" : "Incoming: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleservicetwo, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.gateway, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 77215921 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.restful_http, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleservicetwo, Stereotype.gateway, Stereotype.load_balancer, Stereotype.web_application, Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.encrypted_connection", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1745904086 + }, { + "message" : "Incoming: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleservicetwo, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.gateway, Stereotype.load_balancer, Stereotype.web_application, Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.encrypted_connection", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1745904086 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.restful_http, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1406593369 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1406593369 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.restful_http, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleservicetwo, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1406593369 + }, { + "message" : "Incoming: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleservicetwo, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1406593369 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.restful_http, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.jdbc, Username.servicetwo, Password.servicetwo", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1018094504 + }, { + "message" : "Incoming: Stereotype.jdbc, Stereotype.plaintext_credentials_link, Username.servicetwo, Password.servicetwo", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1018094504 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.restful_http, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleservicetwo, Stereotype.jdbc, Username.servicetwo, Password.servicetwo", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1018094504 + }, { + "message" : "Incoming: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleservicetwo, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.jdbc, Username.servicetwo, Password.servicetwo", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1018094504 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.restful_http, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1772358460 + }, { + "message" : "Incoming: Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.restful_http, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1772358460 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.restful_http, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleservicetwo, Stereotype.gateway, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1772358460 + }, { + "message" : "Incoming: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleservicetwo, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.gateway, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1772358460 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.restful_http, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.web_application, Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.encrypted_connection", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 38914319 + }, { + "message" : "Incoming: Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.restful_http, Stereotype.web_application, Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.encrypted_connection", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 38914319 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.restful_http, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleservicetwo, Stereotype.gateway, Stereotype.load_balancer, Stereotype.web_application, Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.encrypted_connection", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 38914319 + }, { + "message" : "Incoming: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleservicetwo, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.gateway, Stereotype.load_balancer, Stereotype.web_application, Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.encrypted_connection", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 38914319 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.restful_http, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1713988669 + }, { + "message" : "Incoming: Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.restful_http, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1713988669 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.restful_http, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleservicetwo, Stereotype.gateway, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1713988669 + }, { + "message" : "Incoming: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleservicetwo, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.gateway, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1713988669 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.restful_http, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.web_application, Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.encrypted_connection", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 768702707 + }, { + "message" : "Incoming: Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.restful_http, Stereotype.web_application, Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.encrypted_connection", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 768702707 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.restful_http, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleservicetwo, Stereotype.gateway, Stereotype.load_balancer, Stereotype.web_application, Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.encrypted_connection", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 768702707 + }, { + "message" : "Incoming: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleservicetwo, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.gateway, Stereotype.load_balancer, Stereotype.web_application, Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.encrypted_connection", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 768702707 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.restful_http, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1684368286 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1684368286 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.restful_http, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleservicetwo, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1684368286 + }, { + "message" : "Incoming: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleservicetwo, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1684368286 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.restful_http, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1752223660 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1752223660 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.restful_http, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleservicetwo, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1752223660 + }, { + "message" : "Incoming: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleservicetwo, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1752223660 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.restful_http, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1163216403 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1163216403 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.restful_http, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleservicetwo, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1163216403 + }, { + "message" : "Incoming: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleservicetwo, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1163216403 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.restful_http, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1675999402 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1675999402 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.restful_http, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleservicetwo, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1675999402 + }, { + "message" : "Incoming: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleservicetwo, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1675999402 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.restful_http, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleservicetwo, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 747833043 + }, { + "message" : "Incoming: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleservicetwo, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 747833043 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.restful_http, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleservicetwo, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 747833043 + }, { + "message" : "Incoming: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleservicetwo, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 747833043 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.restful_http, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.jdbc, Username.servicetwo, Password.servicetwo", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1114681666 + }, { + "message" : "Incoming: Stereotype.jdbc, Stereotype.plaintext_credentials_link, Username.servicetwo, Password.servicetwo", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1114681666 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.restful_http, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleservicetwo, Stereotype.jdbc, Username.servicetwo, Password.servicetwo", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1114681666 + }, { + "message" : "Incoming: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleservicetwo, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.jdbc, Username.servicetwo, Password.servicetwo", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1114681666 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.restful_http, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 771359425 + }, { + "message" : "Incoming: Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.restful_http, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 771359425 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.restful_http, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleservicetwo, Stereotype.gateway, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 771359425 + }, { + "message" : "Incoming: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleservicetwo, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.gateway, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 771359425 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.restful_http, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.web_application, Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.encrypted_connection", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1662312252 + }, { + "message" : "Incoming: Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.restful_http, Stereotype.web_application, Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.encrypted_connection", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1662312252 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.restful_http, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleservicetwo, Stereotype.gateway, Stereotype.load_balancer, Stereotype.web_application, Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.encrypted_connection", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1662312252 + }, { + "message" : "Incoming: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleservicetwo, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.gateway, Stereotype.load_balancer, Stereotype.web_application, Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.encrypted_connection", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1662312252 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.restful_http, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1468393491 + }, { + "message" : "Incoming: Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.restful_http, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1468393491 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.restful_http, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleservicetwo, Stereotype.gateway, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1468393491 + }, { + "message" : "Incoming: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleservicetwo, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.gateway, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1468393491 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.restful_http, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.web_application, Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.encrypted_connection", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 280541440 + }, { + "message" : "Incoming: Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.restful_http, Stereotype.web_application, Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.encrypted_connection", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 280541440 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.restful_http, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleservicetwo, Stereotype.gateway, Stereotype.load_balancer, Stereotype.web_application, Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.encrypted_connection", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 280541440 + }, { + "message" : "Incoming: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleservicetwo, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.gateway, Stereotype.load_balancer, Stereotype.web_application, Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.encrypted_connection", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 280541440 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.restful_http, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.jdbc, Username.servicetwo, Password.servicetwo", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1831423452 + }, { + "message" : "Incoming: Stereotype.jdbc, Stereotype.plaintext_credentials_link, Username.servicetwo, Password.servicetwo", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1831423452 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.restful_http, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 671187578 + }, { + "message" : "Incoming: Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.restful_http, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 671187578 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.restful_http, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1354510873 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1354510873 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.restful_http, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleservicetwo, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 93974967 + }, { + "message" : "Incoming: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleservicetwo, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 93974967 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.restful_http, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.jdbc, Username.servicetwo, Password.servicetwo", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 578362229 + }, { + "message" : "Incoming: Stereotype.jdbc, Stereotype.plaintext_credentials_link, Username.servicetwo, Password.servicetwo", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 578362229 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.restful_http, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 105860882 + }, { + "message" : "Incoming: Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.restful_http, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 105860882 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.restful_http, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 2097992252 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 2097992252 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.restful_http, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1211627902 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1211627902 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.restful_http, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1655072591 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1655072591 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.restful_http, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 266196910 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 266196910 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.service_discovery, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 445726857 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 445726857 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleservicetwo, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1138190994 + }, { + "message" : "Incoming: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleservicetwo, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1138190994 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.jdbc, Stereotype.plaintext_credentials_link, Username.servicetwo, Password.servicetwo", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1244394767 + }, { + "message" : "Incoming: Stereotype.jdbc, Stereotype.plaintext_credentials_link, Username.servicetwo, Password.servicetwo", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1244394767 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 889398176 + }, { + "message" : "Incoming: Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.restful_http, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 889398176 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.service_discovery, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 621197441 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 621197441 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleservicetwo, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1568527689 + }, { + "message" : "Incoming: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleservicetwo, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1568527689 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.jdbc, Stereotype.plaintext_credentials_link, Username.servicetwo, Password.servicetwo", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1215025252 + }, { + "message" : "Incoming: Stereotype.jdbc, Stereotype.plaintext_credentials_link, Username.servicetwo, Password.servicetwo", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1215025252 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1683617002 + }, { + "message" : "Incoming: Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.restful_http, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1683617002 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.restful_http, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1379222018 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1379222018 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.restful_http, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 875487383 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 875487383 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.restful_http, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 2047521920 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 2047521920 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.service_discovery, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 82750270 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 82750270 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleservicetwo, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 728740247 + }, { + "message" : "Incoming: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleservicetwo, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 728740247 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.jdbc, Stereotype.plaintext_credentials_link, Username.servicetwo, Password.servicetwo", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 783339262 + }, { + "message" : "Incoming: Stereotype.jdbc, Stereotype.plaintext_credentials_link, Username.servicetwo, Password.servicetwo", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 783339262 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1512759723 + }, { + "message" : "Incoming: Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.restful_http, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1512759723 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.service_discovery, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 736888459 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 736888459 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleservicetwo, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 2103044456 + }, { + "message" : "Incoming: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleservicetwo, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 2103044456 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.jdbc, Stereotype.plaintext_credentials_link, Username.servicetwo, Password.servicetwo", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1429610243 + }, { + "message" : "Incoming: Stereotype.jdbc, Stereotype.plaintext_credentials_link, Username.servicetwo, Password.servicetwo", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1429610243 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1478269879 + }, { + "message" : "Incoming: Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.restful_http, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1478269879 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.restful_http, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1327714567 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1327714567 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.service_discovery, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 2117938877 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 2117938877 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleservicetwo, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 725873428 + }, { + "message" : "Incoming: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleservicetwo, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 725873428 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.jdbc, Stereotype.plaintext_credentials_link, Username.servicetwo, Password.servicetwo", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 977952572 + }, { + "message" : "Incoming: Stereotype.jdbc, Stereotype.plaintext_credentials_link, Username.servicetwo, Password.servicetwo", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 977952572 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1328764608 + }, { + "message" : "Incoming: Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.restful_http, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1328764608 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.service_discovery, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1483522397 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1483522397 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleservicetwo, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1820545559 + }, { + "message" : "Incoming: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleservicetwo, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1820545559 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.jdbc, Stereotype.plaintext_credentials_link, Username.servicetwo, Password.servicetwo", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 72893188 + }, { + "message" : "Incoming: Stereotype.jdbc, Stereotype.plaintext_credentials_link, Username.servicetwo, Password.servicetwo", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 72893188 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1367900185 + }, { + "message" : "Incoming: Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.restful_http, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1367900185 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.service_discovery, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 431300939 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 431300939 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.service_discovery, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1252969149 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1252969149 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.service_discovery, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 651828130 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 651828130 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.service_discovery, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 604480364 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 604480364 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.restful_http, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1518022811 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1518022811 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.service_discovery, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 918584437 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 918584437 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleservicetwo, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1733354369 + }, { + "message" : "Incoming: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleservicetwo, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1733354369 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.jdbc, Stereotype.plaintext_credentials_link, Username.servicetwo, Password.servicetwo", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1568999973 + }, { + "message" : "Incoming: Stereotype.jdbc, Stereotype.plaintext_credentials_link, Username.servicetwo, Password.servicetwo", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1568999973 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 184690001 + }, { + "message" : "Incoming: Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.restful_http, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 184690001 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.service_discovery, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1041552272 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1041552272 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleservicetwo, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1589146424 + }, { + "message" : "Incoming: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleservicetwo, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1589146424 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.jdbc, Stereotype.plaintext_credentials_link, Username.servicetwo, Password.servicetwo", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 731487976 + }, { + "message" : "Incoming: Stereotype.jdbc, Stereotype.plaintext_credentials_link, Username.servicetwo, Password.servicetwo", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 731487976 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 833298023 + }, { + "message" : "Incoming: Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.restful_http, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 833298023 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.restful_http, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1307540790 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1307540790 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.restful_http, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1744389827 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1744389827 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.service_discovery, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1562107210 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1562107210 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.service_discovery, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 878169229 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 878169229 + } ], + "children" : [ ], + "position" : { + "x" : 0.0, + "y" : 0.0 + }, + "size" : null + }, { + "text" : "service_one_db", + "id" : "12", + "type" : "node:function", + "labels" : [ { + "labelTypeId" : "33", + "labelTypeValueId" : "90" + } ], + "ports" : [ { + "behavior" : "assign Stereotype.jdbc if TRUE", + "id" : "143", + "type" : "port:dfd-output", + "children" : [ ] + }, { + "behavior" : "assign Stereotype.restful_http if TRUE", + "id" : "171", + "type" : "port:dfd-output", + "children" : [ ] + }, { + "behavior" : "assign Stereotype.jdbc if TRUE", + "id" : "_UWx-1funEfCYrdfxNyUhUA", + "type" : "port:dfd-output", + "children" : [ ] + }, { + "behavior" : "assign Stereotype.restful_http if TRUE", + "id" : "_UWx-6funEfCYrdfxNyUhUA", + "type" : "port:dfd-output", + "children" : [ ] + } ], + "annotations" : [ { + "message" : "Propagated: Stereotype.jdbc", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 623820846 + }, { + "message" : "Propagated: Stereotype.jdbc", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1620368915 + }, { + "message" : "Propagated: Stereotype.jdbc", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 735639515 + }, { + "message" : "Propagated: Stereotype.jdbc", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 398777435 + }, { + "message" : "Propagated: Stereotype.jdbc", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1887965475 + }, { + "message" : "Propagated: Stereotype.jdbc", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1064095359 + }, { + "message" : "Propagated: Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 2073069810 + }, { + "message" : "Propagated: Stereotype.jdbc", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1916677384 + }, { + "message" : "Propagated: Stereotype.jdbc", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 2044690596 + }, { + "message" : "Propagated: Stereotype.jdbc", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1149526768 + }, { + "message" : "Propagated: Stereotype.jdbc", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 685193713 + }, { + "message" : "Propagated: Stereotype.jdbc", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 282166934 + }, { + "message" : "Propagated: Stereotype.jdbc", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1174599796 + }, { + "message" : "Propagated: Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 893152673 + } ], + "children" : [ ], + "position" : { + "x" : 0.0, + "y" : 0.0 + }, + "size" : null + }, { + "text" : "service_two_db", + "id" : "13", + "type" : "node:function", + "labels" : [ { + "labelTypeId" : "33", + "labelTypeValueId" : "34" + } ], + "ports" : [ { + "behavior" : "assign Stereotype.jdbc,Stereotype.plaintext_credentials_link,Username.servicetwo,Password.servicetwo if TRUE", + "id" : "146", + "type" : "port:dfd-output", + "children" : [ ] + }, { + "behavior" : "assign Stereotype.restful_http if TRUE", + "id" : "175", + "type" : "port:dfd-output", + "children" : [ ] + }, { + "behavior" : "assign Stereotype.jdbc,Stereotype.plaintext_credentials_link,Username.servicetwo,Password.servicetwo if TRUE", + "id" : "_UWx-1_unEfCYrdfxNyUhUA", + "type" : "port:dfd-output", + "children" : [ ] + }, { + "behavior" : "assign Stereotype.restful_http if TRUE", + "id" : "_UWx-7funEfCYrdfxNyUhUA", + "type" : "port:dfd-output", + "children" : [ ] + } ], + "annotations" : [ { + "message" : "Propagated: Stereotype.jdbc, Stereotype.plaintext_credentials_link, Username.servicetwo, Password.servicetwo", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1018094504 + }, { + "message" : "Propagated: Stereotype.jdbc, Stereotype.plaintext_credentials_link, Username.servicetwo, Password.servicetwo", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1114681666 + }, { + "message" : "Propagated: Stereotype.jdbc, Stereotype.plaintext_credentials_link, Username.servicetwo, Password.servicetwo", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1831423452 + }, { + "message" : "Propagated: Stereotype.jdbc, Stereotype.plaintext_credentials_link, Username.servicetwo, Password.servicetwo", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 578362229 + }, { + "message" : "Propagated: Stereotype.jdbc, Stereotype.plaintext_credentials_link, Username.servicetwo, Password.servicetwo", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1244394767 + }, { + "message" : "Propagated: Stereotype.jdbc, Stereotype.plaintext_credentials_link, Username.servicetwo, Password.servicetwo", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1215025252 + }, { + "message" : "Propagated: Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1946917456 + }, { + "message" : "Propagated: Stereotype.jdbc, Stereotype.plaintext_credentials_link, Username.servicetwo, Password.servicetwo", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 783339262 + }, { + "message" : "Propagated: Stereotype.jdbc, Stereotype.plaintext_credentials_link, Username.servicetwo, Password.servicetwo", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1429610243 + }, { + "message" : "Propagated: Stereotype.jdbc, Stereotype.plaintext_credentials_link, Username.servicetwo, Password.servicetwo", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 977952572 + }, { + "message" : "Propagated: Stereotype.jdbc, Stereotype.plaintext_credentials_link, Username.servicetwo, Password.servicetwo", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 72893188 + }, { + "message" : "Propagated: Stereotype.jdbc, Stereotype.plaintext_credentials_link, Username.servicetwo, Password.servicetwo", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1568999973 + }, { + "message" : "Propagated: Stereotype.jdbc, Stereotype.plaintext_credentials_link, Username.servicetwo, Password.servicetwo", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 731487976 + }, { + "message" : "Propagated: Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 700171153 + } ], + "children" : [ ], + "position" : { + "x" : 0.0, + "y" : 0.0 + }, + "size" : null + }, { + "text" : "api_gateway", + "id" : "14", + "type" : "node:function", + "labels" : [ { + "labelTypeId" : "17", + "labelTypeValueId" : "75" + }, { + "labelTypeId" : "17", + "labelTypeValueId" : "27" + }, { + "labelTypeId" : "17", + "labelTypeValueId" : "76" + }, { + "labelTypeId" : "77", + "labelTypeValueId" : "78" + }, { + "labelTypeId" : "22", + "labelTypeValueId" : "79" + }, { + "labelTypeId" : "80", + "labelTypeValueId" : "81" + } ], + "ports" : [ { + "id" : "154", + "type" : "port:dfd-input", + "children" : [ ] + }, { + "behavior" : "assign Stereotype.gateway,Stereotype.infrastructural,Stereotype.load_balancer,Stereotype.restful_http if TRUE from consul|consul-0|web_application|web_application-0\nforward consul|consul-0|web_application|web_application-0", + "id" : "150", + "type" : "port:dfd-output", + "children" : [ ] + }, { + "behavior" : "assign Stereotype.gateway,Stereotype.infrastructural,Stereotype.load_balancer,Stereotype.restful_http if TRUE from consul|consul-0|web_application|web_application-0\nforward consul|consul-0|web_application|web_application-0", + "id" : "152", + "type" : "port:dfd-output", + "children" : [ ] + }, { + "behavior" : "assign Stereotype.gateway,Stereotype.infrastructural,Stereotype.load_balancer,Stereotype.restful_http if TRUE from consul|consul-0|web_application|web_application-0\nforward consul|consul-0|web_application|web_application-0", + "id" : "167", + "type" : "port:dfd-output", + "children" : [ ] + }, { + "behavior" : "assign Stereotype.gateway,Stereotype.infrastructural,Stereotype.load_balancer,Stereotype.restful_http if TRUE\nforward consul|consul-0|web_application|web_application-0", + "id" : "_UWx-2funEfCYrdfxNyUhUA", + "type" : "port:dfd-output", + "children" : [ ] + }, { + "behavior" : "assign Stereotype.gateway,Stereotype.infrastructural,Stereotype.load_balancer,Stereotype.restful_http if TRUE\nforward consul|consul-0|web_application|web_application-0", + "id" : "_UWx-2_unEfCYrdfxNyUhUA", + "type" : "port:dfd-output", + "children" : [ ] + }, { + "behavior" : "assign Stereotype.gateway,Stereotype.infrastructural,Stereotype.load_balancer,Stereotype.restful_http if TRUE\nforward consul|consul-0|web_application|web_application-0", + "id" : "_UWx-5funEfCYrdfxNyUhUA", + "type" : "port:dfd-output", + "children" : [ ] + } ], + "annotations" : [ { + "message" : "Propagated: Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.restful_http, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 588503940 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 588503940 + }, { + "message" : "Propagated: Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.restful_http, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 560165559 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 560165559 + }, { + "message" : "Propagated: Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.restful_http, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 347354124 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 347354124 + }, { + "message" : "Propagated: Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.restful_http, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 313249054 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 313249054 + }, { + "message" : "Propagated: Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.restful_http, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 802814772 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 802814772 + }, { + "message" : "Propagated: Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.restful_http, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 362140338 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 362140338 + }, { + "message" : "Propagated: Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.restful_http, Stereotype.web_application, Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.encrypted_connection", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 540315736 + }, { + "message" : "Incoming: Stereotype.web_application, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.encrypted_connection", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 540315736 + }, { + "message" : "Propagated: Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.restful_http, Stereotype.web_application, Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.encrypted_connection", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1824225917 + }, { + "message" : "Incoming: Stereotype.web_application, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.encrypted_connection", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1824225917 + }, { + "message" : "Propagated: Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.restful_http, Stereotype.web_application, Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.encrypted_connection", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 215694469 + }, { + "message" : "Incoming: Stereotype.web_application, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.encrypted_connection", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 215694469 + }, { + "message" : "Propagated: Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.restful_http, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 929066990 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 929066990 + }, { + "message" : "Propagated: Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.restful_http, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 869437194 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 869437194 + }, { + "message" : "Propagated: Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.restful_http, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 76379039 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 76379039 + }, { + "message" : "Propagated: Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.restful_http, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1374115999 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1374115999 + }, { + "message" : "Propagated: Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.restful_http, Stereotype.web_application, Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.encrypted_connection", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1707889234 + }, { + "message" : "Incoming: Stereotype.web_application, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.encrypted_connection", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1707889234 + }, { + "message" : "Propagated: Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.restful_http, Stereotype.web_application, Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.encrypted_connection", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1119955774 + }, { + "message" : "Incoming: Stereotype.web_application, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.encrypted_connection", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1119955774 + }, { + "message" : "Propagated: Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.restful_http, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 300526628 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 300526628 + }, { + "message" : "Propagated: Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.restful_http, Stereotype.web_application, Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.encrypted_connection", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1962049725 + }, { + "message" : "Incoming: Stereotype.web_application, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.encrypted_connection", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1962049725 + }, { + "message" : "Propagated: Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.restful_http, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1734023423 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1734023423 + }, { + "message" : "Propagated: Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.restful_http, Stereotype.web_application, Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.encrypted_connection", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 875010954 + }, { + "message" : "Incoming: Stereotype.web_application, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.encrypted_connection", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 875010954 + }, { + "message" : "Propagated: Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.restful_http, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 12302064 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 12302064 + }, { + "message" : "Propagated: Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.restful_http, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1836765429 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1836765429 + }, { + "message" : "Propagated: Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.restful_http, Stereotype.web_application, Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.encrypted_connection", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 816576412 + }, { + "message" : "Incoming: Stereotype.web_application, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.encrypted_connection", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 816576412 + }, { + "message" : "Propagated: Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.restful_http, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 77215921 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 77215921 + }, { + "message" : "Propagated: Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.restful_http, Stereotype.web_application, Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.encrypted_connection", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1745904086 + }, { + "message" : "Incoming: Stereotype.web_application, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.encrypted_connection", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1745904086 + }, { + "message" : "Propagated: Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.restful_http, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1772358460 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1772358460 + }, { + "message" : "Propagated: Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.restful_http, Stereotype.web_application, Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.encrypted_connection", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 38914319 + }, { + "message" : "Incoming: Stereotype.web_application, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.encrypted_connection", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 38914319 + }, { + "message" : "Propagated: Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.restful_http, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1713988669 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1713988669 + }, { + "message" : "Propagated: Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.restful_http, Stereotype.web_application, Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.encrypted_connection", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 768702707 + }, { + "message" : "Incoming: Stereotype.web_application, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.encrypted_connection", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 768702707 + }, { + "message" : "Propagated: Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.restful_http, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 771359425 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 771359425 + }, { + "message" : "Propagated: Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.restful_http, Stereotype.web_application, Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.encrypted_connection", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1662312252 + }, { + "message" : "Incoming: Stereotype.web_application, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.encrypted_connection", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1662312252 + }, { + "message" : "Propagated: Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.restful_http, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1468393491 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1468393491 + }, { + "message" : "Propagated: Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.restful_http, Stereotype.web_application, Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.encrypted_connection", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 280541440 + }, { + "message" : "Incoming: Stereotype.web_application, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.encrypted_connection", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 280541440 + }, { + "message" : "Propagated: Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.restful_http, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 671187578 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 671187578 + }, { + "message" : "Propagated: Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.restful_http, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 105860882 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 105860882 + }, { + "message" : "Propagated: Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.restful_http, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1796154990 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1796154990 + }, { + "message" : "Propagated: Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.restful_http, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 117701189 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 117701189 + }, { + "message" : "Propagated: Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.restful_http, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 656787973 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 656787973 + }, { + "message" : "Propagated: Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.restful_http, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 889398176 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 889398176 + }, { + "message" : "Propagated: Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.restful_http, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1683617002 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1683617002 + }, { + "message" : "Propagated: Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.restful_http, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 7162498 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 7162498 + }, { + "message" : "Propagated: Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.restful_http, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 319618119 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 319618119 + }, { + "message" : "Propagated: Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.restful_http, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1512759723 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1512759723 + }, { + "message" : "Propagated: Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.restful_http, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1478269879 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1478269879 + }, { + "message" : "Propagated: Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.restful_http, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 2021230836 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 2021230836 + }, { + "message" : "Propagated: Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.restful_http, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 475871799 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 475871799 + }, { + "message" : "Propagated: Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.restful_http, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1328764608 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1328764608 + }, { + "message" : "Propagated: Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.restful_http, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1367900185 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1367900185 + }, { + "message" : "Propagated: Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.restful_http, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1590292218 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1590292218 + }, { + "message" : "Propagated: Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.restful_http, Stereotype.web_application, Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.encrypted_connection", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 683211146 + }, { + "message" : "Incoming: Stereotype.web_application, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.encrypted_connection", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 683211146 + }, { + "message" : "Propagated: Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.restful_http, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 995030431 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 995030431 + }, { + "message" : "Propagated: Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.restful_http, Stereotype.web_application, Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.encrypted_connection", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 583744857 + }, { + "message" : "Incoming: Stereotype.web_application, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.encrypted_connection", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 583744857 + }, { + "message" : "Propagated: Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.restful_http, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1804292128 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1804292128 + }, { + "message" : "Propagated: Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.restful_http, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 2000267972 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 2000267972 + }, { + "message" : "Propagated: Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.restful_http, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 184690001 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 184690001 + }, { + "message" : "Propagated: Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.restful_http, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 833298023 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 833298023 + } ], + "children" : [ ], + "position" : { + "x" : 0.0, + "y" : 0.0 + }, + "size" : null + }, { + "text" : "web_application", + "id" : "15", + "type" : "node:function", + "labels" : [ { + "labelTypeId" : "17", + "labelTypeValueId" : "37" + }, { + "labelTypeId" : "17", + "labelTypeValueId" : "27" + }, { + "labelTypeId" : "22", + "labelTypeValueId" : "38" + }, { + "labelTypeId" : "39", + "labelTypeValueId" : "40" + } ], + "ports" : [ { + "id" : "157", + "type" : "port:dfd-input", + "children" : [ ] + }, { + "behavior" : "assign Stereotype.web_application,Stereotype.infrastructural,Stereotype.restful_http,Stereotype.encrypted_connection if TRUE from user|user-0\nforward user|user-0", + "id" : "162", + "type" : "port:dfd-output", + "children" : [ ] + }, { + "behavior" : "assign Stereotype.web_application,Stereotype.infrastructural,Stereotype.restful_http if TRUE from user|user-0\nforward user|user-0", + "id" : "164", + "type" : "port:dfd-output", + "children" : [ ] + }, { + "behavior" : "assign Stereotype.web_application,Stereotype.infrastructural,Stereotype.restful_http if TRUE from user|user-0\nforward user|user-0", + "id" : "177", + "type" : "port:dfd-output", + "children" : [ ] + }, { + "behavior" : "assign Stereotype.web_application,Stereotype.infrastructural,Stereotype.restful_http,Stereotype.encrypted_connection if TRUE\nforward user|user-0", + "id" : "_UWx-4funEfCYrdfxNyUhUA", + "type" : "port:dfd-output", + "children" : [ ] + }, { + "behavior" : "assign Stereotype.web_application,Stereotype.infrastructural,Stereotype.restful_http if TRUE\nforward user|user-0", + "id" : "_UWx-4_unEfCYrdfxNyUhUA", + "type" : "port:dfd-output", + "children" : [ ] + }, { + "behavior" : "assign Stereotype.web_application,Stereotype.infrastructural,Stereotype.restful_http if TRUE\nforward user|user-0", + "id" : "_UWx-7_unEfCYrdfxNyUhUA", + "type" : "port:dfd-output", + "children" : [ ] + } ], + "annotations" : [ { + "message" : "Propagated: Stereotype.web_application, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.encrypted_connection", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 540315736 + }, { + "message" : "Propagated: Stereotype.web_application, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.encrypted_connection, Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 540315736 + }, { + "message" : "Incoming: Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.restful_http, Stereotype.encrypted_connection, Stereotype.web_application, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 540315736 + }, { + "message" : "Propagated: Stereotype.web_application, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.encrypted_connection", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 540315736 + }, { + "message" : "Incoming: Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.restful_http, Stereotype.encrypted_connection, Stereotype.web_application, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 540315736 + }, { + "message" : "Propagated: Stereotype.web_application, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.encrypted_connection", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1824225917 + }, { + "message" : "Propagated: Stereotype.web_application, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.encrypted_connection", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1824225917 + }, { + "message" : "Incoming: Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.restful_http, Stereotype.encrypted_connection, Stereotype.web_application, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1824225917 + }, { + "message" : "Propagated: Stereotype.web_application, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.encrypted_connection", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 215694469 + }, { + "message" : "Propagated: Stereotype.web_application, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.encrypted_connection", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 215694469 + }, { + "message" : "Incoming: Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.restful_http, Stereotype.encrypted_connection, Stereotype.web_application, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 215694469 + }, { + "message" : "Propagated: Stereotype.web_application, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.encrypted_connection", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1707889234 + }, { + "message" : "Propagated: Stereotype.web_application, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.encrypted_connection, Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1707889234 + }, { + "message" : "Incoming: Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.restful_http, Stereotype.encrypted_connection, Stereotype.web_application, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1707889234 + }, { + "message" : "Propagated: Stereotype.web_application, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.encrypted_connection", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1707889234 + }, { + "message" : "Incoming: Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.restful_http, Stereotype.encrypted_connection, Stereotype.web_application, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1707889234 + }, { + "message" : "Propagated: Stereotype.web_application, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.encrypted_connection", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1119955774 + }, { + "message" : "Propagated: Stereotype.web_application, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.encrypted_connection", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1119955774 + }, { + "message" : "Incoming: Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.restful_http, Stereotype.encrypted_connection, Stereotype.web_application, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1119955774 + }, { + "message" : "Propagated: Stereotype.web_application, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.encrypted_connection", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1962049725 + }, { + "message" : "Propagated: Stereotype.web_application, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.encrypted_connection, Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1962049725 + }, { + "message" : "Incoming: Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.restful_http, Stereotype.encrypted_connection, Stereotype.web_application, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1962049725 + }, { + "message" : "Propagated: Stereotype.web_application, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.encrypted_connection", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1962049725 + }, { + "message" : "Incoming: Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.restful_http, Stereotype.encrypted_connection, Stereotype.web_application, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1962049725 + }, { + "message" : "Propagated: Stereotype.web_application, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.encrypted_connection", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 875010954 + }, { + "message" : "Propagated: Stereotype.web_application, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.encrypted_connection, Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 875010954 + }, { + "message" : "Incoming: Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.restful_http, Stereotype.encrypted_connection, Stereotype.web_application, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 875010954 + }, { + "message" : "Propagated: Stereotype.web_application, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.encrypted_connection", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 875010954 + }, { + "message" : "Incoming: Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.restful_http, Stereotype.encrypted_connection, Stereotype.web_application, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 875010954 + }, { + "message" : "Propagated: Stereotype.web_application, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.encrypted_connection", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 816576412 + }, { + "message" : "Propagated: Stereotype.web_application, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.encrypted_connection, Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 816576412 + }, { + "message" : "Incoming: Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.restful_http, Stereotype.encrypted_connection, Stereotype.web_application, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 816576412 + }, { + "message" : "Propagated: Stereotype.web_application, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.encrypted_connection", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 816576412 + }, { + "message" : "Incoming: Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.restful_http, Stereotype.encrypted_connection, Stereotype.web_application, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 816576412 + }, { + "message" : "Propagated: Stereotype.web_application, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.encrypted_connection", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1745904086 + }, { + "message" : "Propagated: Stereotype.web_application, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.encrypted_connection, Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1745904086 + }, { + "message" : "Incoming: Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.restful_http, Stereotype.encrypted_connection, Stereotype.web_application, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1745904086 + }, { + "message" : "Propagated: Stereotype.web_application, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.encrypted_connection", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1745904086 + }, { + "message" : "Incoming: Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.restful_http, Stereotype.encrypted_connection, Stereotype.web_application, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1745904086 + }, { + "message" : "Propagated: Stereotype.web_application, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.encrypted_connection", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 38914319 + }, { + "message" : "Propagated: Stereotype.web_application, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.encrypted_connection, Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 38914319 + }, { + "message" : "Incoming: Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.restful_http, Stereotype.encrypted_connection, Stereotype.web_application, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 38914319 + }, { + "message" : "Propagated: Stereotype.web_application, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.encrypted_connection", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 38914319 + }, { + "message" : "Incoming: Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.restful_http, Stereotype.encrypted_connection, Stereotype.web_application, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 38914319 + }, { + "message" : "Propagated: Stereotype.web_application, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.encrypted_connection", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 768702707 + }, { + "message" : "Propagated: Stereotype.web_application, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.encrypted_connection, Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 768702707 + }, { + "message" : "Incoming: Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.restful_http, Stereotype.encrypted_connection, Stereotype.web_application, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 768702707 + }, { + "message" : "Propagated: Stereotype.web_application, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.encrypted_connection", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 768702707 + }, { + "message" : "Incoming: Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.restful_http, Stereotype.encrypted_connection, Stereotype.web_application, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 768702707 + }, { + "message" : "Propagated: Stereotype.web_application, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.encrypted_connection", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1662312252 + }, { + "message" : "Propagated: Stereotype.web_application, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.encrypted_connection, Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1662312252 + }, { + "message" : "Incoming: Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.restful_http, Stereotype.encrypted_connection, Stereotype.web_application, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1662312252 + }, { + "message" : "Propagated: Stereotype.web_application, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.encrypted_connection", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1662312252 + }, { + "message" : "Incoming: Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.restful_http, Stereotype.encrypted_connection, Stereotype.web_application, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1662312252 + }, { + "message" : "Propagated: Stereotype.web_application, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.encrypted_connection", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 280541440 + }, { + "message" : "Propagated: Stereotype.web_application, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.encrypted_connection, Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 280541440 + }, { + "message" : "Incoming: Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.restful_http, Stereotype.encrypted_connection, Stereotype.web_application, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 280541440 + }, { + "message" : "Propagated: Stereotype.web_application, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.encrypted_connection", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 280541440 + }, { + "message" : "Incoming: Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.restful_http, Stereotype.encrypted_connection, Stereotype.web_application, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 280541440 + }, { + "message" : "Propagated: Stereotype.web_application, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.encrypted_connection", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1198513669 + }, { + "message" : "Propagated: Stereotype.web_application, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.encrypted_connection, Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1198513669 + }, { + "message" : "Incoming: Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.restful_http, Stereotype.encrypted_connection, Stereotype.web_application, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1198513669 + }, { + "message" : "Propagated: Stereotype.web_application, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.encrypted_connection", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1198513669 + }, { + "message" : "Incoming: Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.restful_http, Stereotype.encrypted_connection, Stereotype.web_application, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1198513669 + }, { + "message" : "Propagated: Stereotype.web_application, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.encrypted_connection", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1360125564 + }, { + "message" : "Propagated: Stereotype.web_application, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.encrypted_connection", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1360125564 + }, { + "message" : "Incoming: Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.restful_http, Stereotype.encrypted_connection, Stereotype.web_application, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1360125564 + }, { + "message" : "Propagated: Stereotype.web_application, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.encrypted_connection", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 683211146 + }, { + "message" : "Propagated: Stereotype.web_application, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.encrypted_connection, Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 683211146 + }, { + "message" : "Incoming: Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.restful_http, Stereotype.encrypted_connection, Stereotype.web_application, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 683211146 + }, { + "message" : "Propagated: Stereotype.web_application, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.encrypted_connection", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 683211146 + }, { + "message" : "Incoming: Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.restful_http, Stereotype.encrypted_connection, Stereotype.web_application, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 683211146 + }, { + "message" : "Propagated: Stereotype.web_application, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.encrypted_connection", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 583744857 + }, { + "message" : "Propagated: Stereotype.web_application, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.encrypted_connection, Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 583744857 + }, { + "message" : "Incoming: Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.restful_http, Stereotype.encrypted_connection, Stereotype.web_application, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 583744857 + }, { + "message" : "Propagated: Stereotype.web_application, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.encrypted_connection", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 583744857 + }, { + "message" : "Incoming: Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.restful_http, Stereotype.encrypted_connection, Stereotype.web_application, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 583744857 + }, { + "message" : "Propagated: Stereotype.web_application, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.encrypted_connection", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 881280045 + }, { + "message" : "Propagated: Stereotype.web_application, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.encrypted_connection, Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 881280045 + }, { + "message" : "Incoming: Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.restful_http, Stereotype.encrypted_connection, Stereotype.web_application, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 881280045 + }, { + "message" : "Propagated: Stereotype.web_application, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.encrypted_connection", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 881280045 + }, { + "message" : "Incoming: Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.restful_http, Stereotype.encrypted_connection, Stereotype.web_application, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 881280045 + }, { + "message" : "Propagated: Stereotype.web_application, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.encrypted_connection", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1393484427 + }, { + "message" : "Propagated: Stereotype.web_application, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.encrypted_connection", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1393484427 + }, { + "message" : "Incoming: Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.restful_http, Stereotype.encrypted_connection, Stereotype.web_application, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1393484427 + } ], + "children" : [ ], + "position" : { + "x" : 0.0, + "y" : 0.0 + }, + "size" : null + }, { + "text" : "scope", + "id" : "16", + "type" : "node:function", + "labels" : [ { + "labelTypeId" : "17", + "labelTypeValueId" : "69" + }, { + "labelTypeId" : "17", + "labelTypeValueId" : "27" + }, { + "labelTypeId" : "70", + "labelTypeValueId" : "71" + }, { + "labelTypeId" : "22", + "labelTypeValueId" : "72" + } ], + "ports" : [ { + "id" : "166", + "type" : "port:dfd-input", + "children" : [ ] + } ], + "annotations" : [ { + "message" : "Incoming: Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.restful_http, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 588503940 + }, { + "message" : "Incoming: Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.restful_http, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 560165559 + }, { + "message" : "Incoming: Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.restful_http, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 347354124 + }, { + "message" : "Incoming: Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.restful_http, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 313249054 + }, { + "message" : "Incoming: Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.restful_http, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 802814772 + }, { + "message" : "Incoming: Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.restful_http, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 362140338 + }, { + "message" : "Incoming: Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.restful_http, Stereotype.web_application, Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.encrypted_connection", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 540315736 + }, { + "message" : "Incoming: Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.restful_http, Stereotype.web_application, Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.encrypted_connection", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1824225917 + }, { + "message" : "Incoming: Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.restful_http, Stereotype.web_application, Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.encrypted_connection", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 215694469 + }, { + "message" : "Incoming: Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.restful_http, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 929066990 + }, { + "message" : "Incoming: Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.restful_http, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 869437194 + }, { + "message" : "Incoming: Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.restful_http, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 76379039 + }, { + "message" : "Incoming: Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.restful_http, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1374115999 + }, { + "message" : "Incoming: Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.restful_http, Stereotype.web_application, Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.encrypted_connection", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1707889234 + }, { + "message" : "Incoming: Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.restful_http, Stereotype.web_application, Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.encrypted_connection", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1119955774 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.service_discovery, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 767535474 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.service_discovery, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1190608890 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.service_discovery, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1101970356 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.service_discovery, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 184410212 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1515793520 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.jdbc", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 623820846 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.gateway, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 300526628 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.gateway, Stereotype.load_balancer, Stereotype.web_application, Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.encrypted_connection", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1962049725 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.gateway, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1734023423 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.gateway, Stereotype.load_balancer, Stereotype.web_application, Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.encrypted_connection", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 875010954 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1752402342 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 140778365 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 935818862 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1068781783 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1266602046 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1667859935 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1871838170 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1916681239 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Queue.commudigalmicroservicessampleservicetwo, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1341975886 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Queue.commudigalmicroservicessampleservicetwo, Stereotype.jdbc", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1620368915 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Queue.commudigalmicroservicessampleservicetwo, Stereotype.gateway, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 12302064 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Queue.commudigalmicroservicessampleservicetwo, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 65465460 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Queue.commudigalmicroservicessampleservicetwo, Stereotype.jdbc", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 735639515 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Queue.commudigalmicroservicessampleservicetwo, Stereotype.gateway, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1836765429 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Queue.commudigalmicroservicessampleservicetwo, Stereotype.gateway, Stereotype.load_balancer, Stereotype.web_application, Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.encrypted_connection", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 816576412 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Queue.commudigalmicroservicessampleservicetwo, Stereotype.gateway, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 77215921 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Queue.commudigalmicroservicessampleservicetwo, Stereotype.gateway, Stereotype.load_balancer, Stereotype.web_application, Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.encrypted_connection", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1745904086 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Queue.commudigalmicroservicessampleservicetwo, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1406593369 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Queue.commudigalmicroservicessampleservicetwo, Stereotype.jdbc, Username.servicetwo, Password.servicetwo", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1018094504 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Queue.commudigalmicroservicessampleservicetwo, Stereotype.gateway, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1772358460 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Queue.commudigalmicroservicessampleservicetwo, Stereotype.gateway, Stereotype.load_balancer, Stereotype.web_application, Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.encrypted_connection", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 38914319 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Queue.commudigalmicroservicessampleservicetwo, Stereotype.gateway, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1713988669 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Queue.commudigalmicroservicessampleservicetwo, Stereotype.gateway, Stereotype.load_balancer, Stereotype.web_application, Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.encrypted_connection", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 768702707 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Queue.commudigalmicroservicessampleservicetwo, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1684368286 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Queue.commudigalmicroservicessampleservicetwo, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1752223660 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Queue.commudigalmicroservicessampleservicetwo, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1163216403 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Queue.commudigalmicroservicessampleservicetwo, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1675999402 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Queue.commudigalmicroservicessampleservicetwo, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 747833043 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Queue.commudigalmicroservicessampleservicetwo, Stereotype.jdbc, Username.servicetwo, Password.servicetwo", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1114681666 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Queue.commudigalmicroservicessampleservicetwo, Stereotype.gateway, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 771359425 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Queue.commudigalmicroservicessampleservicetwo, Stereotype.gateway, Stereotype.load_balancer, Stereotype.web_application, Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.encrypted_connection", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1662312252 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Queue.commudigalmicroservicessampleservicetwo, Stereotype.gateway, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1468393491 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Queue.commudigalmicroservicessampleservicetwo, Stereotype.gateway, Stereotype.load_balancer, Stereotype.web_application, Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.encrypted_connection", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 280541440 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.jdbc, Username.servicetwo, Password.servicetwo", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1831423452 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.gateway, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 671187578 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1354510873 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Queue.commudigalmicroservicessampleservicetwo, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 93974967 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.jdbc, Username.servicetwo, Password.servicetwo", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 578362229 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.gateway, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 105860882 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 936544568 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 2097992252 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.jdbc", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 398777435 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.gateway, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1796154990 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1211627902 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1395740534 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1655072591 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.jdbc", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1887965475 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 117701189 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.service_discovery, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1586519852 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 266196910 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.jdbc", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1064095359 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 656787973 + }, { + "message" : "Incoming: Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 2073069810 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.service_discovery, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 445726857 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleservicetwo, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1138190994 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.jdbc, Stereotype.plaintext_credentials_link, Username.servicetwo, Password.servicetwo", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1244394767 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 889398176 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.service_discovery, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 621197441 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleservicetwo, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1568527689 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.jdbc, Stereotype.plaintext_credentials_link, Username.servicetwo, Password.servicetwo", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1215025252 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1683617002 + }, { + "message" : "Incoming: Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1946917456 + }, { + "message" : "Incoming: Stereotype.web_application, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.encrypted_connection", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1198513669 + }, { + "message" : "Incoming: Stereotype.web_application, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.encrypted_connection", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1360125564 + }, { + "message" : "Incoming: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 2059701776 + }, { + "message" : "Incoming: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1379222018 + }, { + "message" : "Incoming: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1796415927 + }, { + "message" : "Incoming: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 875487383 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1791253516 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 303638020 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1618326377 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 589094312 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1802555899 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 805495703 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 2107760645 + }, { + "message" : "Incoming: Stereotype.monitoring_dashboard, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.search_engine, Stereotype.logging_server, Stereotype.internal, Stereotype.local_logging, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 940938116 + }, { + "message" : "Incoming: Stereotype.monitoring_dashboard, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.search_engine, Stereotype.logging_server, Stereotype.internal, Stereotype.local_logging, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1434940020 + }, { + "message" : "Incoming: Stereotype.monitoring_dashboard, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.search_engine, Stereotype.logging_server, Stereotype.internal, Stereotype.local_logging, Stereotype.jdbc", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1916677384 + }, { + "message" : "Incoming: Stereotype.monitoring_dashboard, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.search_engine, Stereotype.logging_server, Stereotype.internal, Stereotype.local_logging, Stereotype.gateway, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 7162498 + }, { + "message" : "Incoming: Stereotype.monitoring_dashboard, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.search_engine, Stereotype.logging_server, Stereotype.internal, Stereotype.local_logging, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 351297720 + }, { + "message" : "Incoming: Stereotype.monitoring_dashboard, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.search_engine, Stereotype.logging_server, Stereotype.internal, Stereotype.local_logging, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 2047521920 + }, { + "message" : "Incoming: Stereotype.monitoring_dashboard, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.search_engine, Stereotype.logging_server, Stereotype.internal, Stereotype.local_logging, Stereotype.jdbc", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 2044690596 + }, { + "message" : "Incoming: Stereotype.monitoring_dashboard, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.search_engine, Stereotype.logging_server, Stereotype.internal, Stereotype.local_logging, Stereotype.gateway, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 319618119 + }, { + "message" : "Incoming: Stereotype.monitoring_dashboard, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.search_engine, Stereotype.logging_server, Stereotype.internal, Stereotype.local_logging, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 82750270 + }, { + "message" : "Incoming: Stereotype.monitoring_dashboard, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.search_engine, Stereotype.logging_server, Stereotype.internal, Stereotype.local_logging, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleservicetwo, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 728740247 + }, { + "message" : "Incoming: Stereotype.monitoring_dashboard, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.search_engine, Stereotype.logging_server, Stereotype.internal, Stereotype.local_logging, Stereotype.jdbc, Stereotype.plaintext_credentials_link, Username.servicetwo, Password.servicetwo", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 783339262 + }, { + "message" : "Incoming: Stereotype.monitoring_dashboard, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.search_engine, Stereotype.logging_server, Stereotype.internal, Stereotype.local_logging, Stereotype.gateway, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1512759723 + }, { + "message" : "Incoming: Stereotype.monitoring_dashboard, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.search_engine, Stereotype.logging_server, Stereotype.internal, Stereotype.local_logging, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 736888459 + }, { + "message" : "Incoming: Stereotype.monitoring_dashboard, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.search_engine, Stereotype.logging_server, Stereotype.internal, Stereotype.local_logging, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleservicetwo, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 2103044456 + }, { + "message" : "Incoming: Stereotype.monitoring_dashboard, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.search_engine, Stereotype.logging_server, Stereotype.internal, Stereotype.local_logging, Stereotype.jdbc, Stereotype.plaintext_credentials_link, Username.servicetwo, Password.servicetwo", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1429610243 + }, { + "message" : "Incoming: Stereotype.monitoring_dashboard, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.search_engine, Stereotype.logging_server, Stereotype.internal, Stereotype.local_logging, Stereotype.gateway, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1478269879 + }, { + "message" : "Incoming: Stereotype.monitoring_dashboard, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.search_engine, Stereotype.logging_server, Stereotype.internal, Stereotype.local_logging, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 328140385 + }, { + "message" : "Incoming: Stereotype.monitoring_dashboard, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.search_engine, Stereotype.logging_server, Stereotype.internal, Stereotype.local_logging, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 556773329 + }, { + "message" : "Incoming: Stereotype.monitoring_dashboard, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.search_engine, Stereotype.logging_server, Stereotype.internal, Stereotype.local_logging, Stereotype.jdbc", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1149526768 + }, { + "message" : "Incoming: Stereotype.monitoring_dashboard, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.search_engine, Stereotype.logging_server, Stereotype.internal, Stereotype.local_logging, Stereotype.gateway, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 2021230836 + }, { + "message" : "Incoming: Stereotype.monitoring_dashboard, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.search_engine, Stereotype.logging_server, Stereotype.internal, Stereotype.local_logging, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 321795476 + }, { + "message" : "Incoming: Stereotype.monitoring_dashboard, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.search_engine, Stereotype.logging_server, Stereotype.internal, Stereotype.local_logging, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1327714567 + }, { + "message" : "Incoming: Stereotype.monitoring_dashboard, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.search_engine, Stereotype.logging_server, Stereotype.internal, Stereotype.local_logging, Stereotype.jdbc", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 685193713 + }, { + "message" : "Incoming: Stereotype.monitoring_dashboard, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.search_engine, Stereotype.logging_server, Stereotype.internal, Stereotype.local_logging, Stereotype.gateway, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 475871799 + }, { + "message" : "Incoming: Stereotype.monitoring_dashboard, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.search_engine, Stereotype.logging_server, Stereotype.internal, Stereotype.local_logging, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 2117938877 + }, { + "message" : "Incoming: Stereotype.monitoring_dashboard, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.search_engine, Stereotype.logging_server, Stereotype.internal, Stereotype.local_logging, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleservicetwo, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 725873428 + }, { + "message" : "Incoming: Stereotype.monitoring_dashboard, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.search_engine, Stereotype.logging_server, Stereotype.internal, Stereotype.local_logging, Stereotype.jdbc, Stereotype.plaintext_credentials_link, Username.servicetwo, Password.servicetwo", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 977952572 + }, { + "message" : "Incoming: Stereotype.monitoring_dashboard, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.search_engine, Stereotype.logging_server, Stereotype.internal, Stereotype.local_logging, Stereotype.gateway, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1328764608 + }, { + "message" : "Incoming: Stereotype.monitoring_dashboard, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.search_engine, Stereotype.logging_server, Stereotype.internal, Stereotype.local_logging, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1483522397 + }, { + "message" : "Incoming: Stereotype.monitoring_dashboard, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.search_engine, Stereotype.logging_server, Stereotype.internal, Stereotype.local_logging, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleservicetwo, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1820545559 + }, { + "message" : "Incoming: Stereotype.monitoring_dashboard, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.search_engine, Stereotype.logging_server, Stereotype.internal, Stereotype.local_logging, Stereotype.jdbc, Stereotype.plaintext_credentials_link, Username.servicetwo, Password.servicetwo", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 72893188 + }, { + "message" : "Incoming: Stereotype.monitoring_dashboard, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.search_engine, Stereotype.logging_server, Stereotype.internal, Stereotype.local_logging, Stereotype.gateway, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1367900185 + }, { + "message" : "Incoming: Stereotype.monitoring_dashboard, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.search_engine, Stereotype.logging_server, Stereotype.internal, Stereotype.local_logging, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1867568476 + }, { + "message" : "Incoming: Stereotype.monitoring_dashboard, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.search_engine, Stereotype.logging_server, Stereotype.internal, Stereotype.local_logging, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 431300939 + }, { + "message" : "Incoming: Stereotype.monitoring_dashboard, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.search_engine, Stereotype.logging_server, Stereotype.internal, Stereotype.local_logging, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1605570842 + }, { + "message" : "Incoming: Stereotype.monitoring_dashboard, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.search_engine, Stereotype.logging_server, Stereotype.internal, Stereotype.local_logging, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1252969149 + }, { + "message" : "Incoming: Stereotype.monitoring_dashboard, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.search_engine, Stereotype.logging_server, Stereotype.internal, Stereotype.local_logging, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 599592065 + }, { + "message" : "Incoming: Stereotype.monitoring_dashboard, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.search_engine, Stereotype.logging_server, Stereotype.internal, Stereotype.local_logging, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 322100932 + }, { + "message" : "Incoming: Stereotype.search_engine, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.logging_server, Stereotype.internal, Stereotype.local_logging, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1414411897 + }, { + "message" : "Incoming: Stereotype.search_engine, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.logging_server, Stereotype.internal, Stereotype.local_logging, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1753871727 + }, { + "message" : "Incoming: Stereotype.logging_server, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.internal, Stereotype.local_logging, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 588985851 + }, { + "message" : "Incoming: Stereotype.logging_server, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.internal, Stereotype.local_logging, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 651828130 + }, { + "message" : "Incoming: Stereotype.logging_server, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.internal, Stereotype.local_logging, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 58854654 + }, { + "message" : "Incoming: Stereotype.logging_server, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.internal, Stereotype.local_logging, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 604480364 + }, { + "message" : "Incoming: Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.restful_http, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1590292218 + }, { + "message" : "Incoming: Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.restful_http, Stereotype.web_application, Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.encrypted_connection", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 683211146 + }, { + "message" : "Incoming: Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.restful_http, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 995030431 + }, { + "message" : "Incoming: Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.restful_http, Stereotype.web_application, Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.encrypted_connection", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 583744857 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.service_discovery, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 870627780 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1560244891 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.jdbc", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 282166934 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1804292128 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.service_discovery, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 2100817420 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1518022811 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.jdbc", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1174599796 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 2000267972 + }, { + "message" : "Incoming: Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 893152673 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.service_discovery, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 918584437 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleservicetwo, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1733354369 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.jdbc, Stereotype.plaintext_credentials_link, Username.servicetwo, Password.servicetwo", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1568999973 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 184690001 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.service_discovery, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1041552272 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleservicetwo, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1589146424 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.jdbc, Stereotype.plaintext_credentials_link, Username.servicetwo, Password.servicetwo", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 731487976 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 833298023 + }, { + "message" : "Incoming: Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 700171153 + }, { + "message" : "Incoming: Stereotype.web_application, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.encrypted_connection", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 881280045 + }, { + "message" : "Incoming: Stereotype.web_application, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.encrypted_connection", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1393484427 + }, { + "message" : "Incoming: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 977245867 + }, { + "message" : "Incoming: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1307540790 + }, { + "message" : "Incoming: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1137180298 + }, { + "message" : "Incoming: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1744389827 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 565517913 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 394645908 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1800031808 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1185465012 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1332104174 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1985362663 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1339507235 + }, { + "message" : "Incoming: Stereotype.monitoring_dashboard, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.search_engine, Stereotype.logging_server, Stereotype.internal, Stereotype.local_logging, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1340769295 + }, { + "message" : "Incoming: Stereotype.monitoring_dashboard, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.search_engine, Stereotype.logging_server, Stereotype.internal, Stereotype.local_logging, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 850300711 + }, { + "message" : "Incoming: Stereotype.search_engine, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.logging_server, Stereotype.internal, Stereotype.local_logging, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1978141335 + }, { + "message" : "Incoming: Stereotype.search_engine, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.logging_server, Stereotype.internal, Stereotype.local_logging, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 5998675 + }, { + "message" : "Incoming: Stereotype.logging_server, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.internal, Stereotype.local_logging, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 462073515 + }, { + "message" : "Incoming: Stereotype.logging_server, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.internal, Stereotype.local_logging, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1562107210 + }, { + "message" : "Incoming: Stereotype.logging_server, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.internal, Stereotype.local_logging, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1746061516 + }, { + "message" : "Incoming: Stereotype.logging_server, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.internal, Stereotype.local_logging, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 878169229 + } ], + "children" : [ ], + "position" : { + "x" : 0.0, + "y" : 0.0 + }, + "size" : null + }, { + "text" : "user_0", + "id" : "_UWx9IPunEfCYrdfxNyUhUA", + "type" : "node:input-output", + "labels" : [ { + "labelTypeId" : "17", + "labelTypeValueId" : "93" + }, { + "labelTypeId" : "17", + "labelTypeValueId" : "94" + }, { + "labelTypeId" : "17", + "labelTypeValueId" : "95" + } ], + "ports" : [ { + "id" : "_UWx9IvunEfCYrdfxNyUhUA", + "type" : "port:dfd-input", + "children" : [ ] + }, { + "behavior" : "assign Stereotype.user_stereotype,Stereotype.entrypoint,Stereotype.exitpoint,Stereotype.restful_http,Stereotype.encrypted_connection if TRUE\nforward web_application_0|web_application_0-0", + "id" : "_UWx9I_unEfCYrdfxNyUhUA", + "type" : "port:dfd-output", + "children" : [ ] + }, { + "behavior" : "assign Stereotype.user_stereotype,Stereotype.entrypoint,Stereotype.exitpoint,Stereotype.restful_http,Stereotype.encrypted_connection if TRUE\nforward web_application_0|web_application_0-0", + "id" : "_UWx_R_unEfCYrdfxNyUhUA", + "type" : "port:dfd-output", + "children" : [ ] + } ], + "annotations" : [ { + "message" : "Propagated: Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.restful_http, Stereotype.encrypted_connection, Stereotype.web_application, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1747862060 + }, { + "message" : "Incoming: Stereotype.web_application, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.encrypted_connection", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1747862060 + }, { + "message" : "Propagated: Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.restful_http, Stereotype.encrypted_connection, Stereotype.web_application, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1747862060 + }, { + "message" : "Incoming: Stereotype.web_application, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.encrypted_connection, Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1747862060 + }, { + "message" : "Propagated: Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.restful_http, Stereotype.encrypted_connection, Stereotype.web_application, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1538844412 + }, { + "message" : "Incoming: Stereotype.web_application, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.encrypted_connection", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1538844412 + }, { + "message" : "Propagated: Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.restful_http, Stereotype.encrypted_connection, Stereotype.web_application, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 656844049 + }, { + "message" : "Incoming: Stereotype.web_application, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.encrypted_connection", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 656844049 + }, { + "message" : "Propagated: Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.restful_http, Stereotype.encrypted_connection, Stereotype.web_application, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1531506932 + }, { + "message" : "Incoming: Stereotype.web_application, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.encrypted_connection", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1531506932 + }, { + "message" : "Propagated: Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.restful_http, Stereotype.encrypted_connection, Stereotype.web_application, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1531506932 + }, { + "message" : "Incoming: Stereotype.web_application, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.encrypted_connection, Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1531506932 + }, { + "message" : "Propagated: Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.restful_http, Stereotype.encrypted_connection, Stereotype.web_application, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1416549024 + }, { + "message" : "Incoming: Stereotype.web_application, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.encrypted_connection", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1416549024 + }, { + "message" : "Propagated: Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.restful_http, Stereotype.encrypted_connection, Stereotype.web_application, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 154923232 + }, { + "message" : "Incoming: Stereotype.web_application, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.encrypted_connection", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 154923232 + }, { + "message" : "Propagated: Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.restful_http, Stereotype.encrypted_connection, Stereotype.web_application, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 154923232 + }, { + "message" : "Incoming: Stereotype.web_application, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.encrypted_connection, Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 154923232 + }, { + "message" : "Propagated: Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.restful_http, Stereotype.encrypted_connection, Stereotype.web_application, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1701331644 + }, { + "message" : "Incoming: Stereotype.web_application, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.encrypted_connection", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1701331644 + }, { + "message" : "Propagated: Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.restful_http, Stereotype.encrypted_connection, Stereotype.web_application, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1701331644 + }, { + "message" : "Incoming: Stereotype.web_application, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.encrypted_connection, Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1701331644 + }, { + "message" : "Propagated: Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.restful_http, Stereotype.encrypted_connection, Stereotype.web_application, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1391249801 + }, { + "message" : "Incoming: Stereotype.web_application, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.encrypted_connection", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1391249801 + }, { + "message" : "Propagated: Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.restful_http, Stereotype.encrypted_connection, Stereotype.web_application, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1391249801 + }, { + "message" : "Incoming: Stereotype.web_application, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.encrypted_connection, Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1391249801 + }, { + "message" : "Propagated: Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.restful_http, Stereotype.encrypted_connection, Stereotype.web_application, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1392027380 + }, { + "message" : "Incoming: Stereotype.web_application, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.encrypted_connection", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1392027380 + }, { + "message" : "Propagated: Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.restful_http, Stereotype.encrypted_connection, Stereotype.web_application, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1392027380 + }, { + "message" : "Incoming: Stereotype.web_application, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.encrypted_connection, Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1392027380 + }, { + "message" : "Propagated: Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.restful_http, Stereotype.encrypted_connection, Stereotype.web_application, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1178953630 + }, { + "message" : "Incoming: Stereotype.web_application, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.encrypted_connection", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1178953630 + }, { + "message" : "Propagated: Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.restful_http, Stereotype.encrypted_connection, Stereotype.web_application, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1178953630 + }, { + "message" : "Incoming: Stereotype.web_application, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.encrypted_connection, Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1178953630 + }, { + "message" : "Propagated: Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.restful_http, Stereotype.encrypted_connection, Stereotype.web_application, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1402751024 + }, { + "message" : "Incoming: Stereotype.web_application, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.encrypted_connection", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1402751024 + }, { + "message" : "Propagated: Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.restful_http, Stereotype.encrypted_connection, Stereotype.web_application, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1402751024 + }, { + "message" : "Incoming: Stereotype.web_application, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.encrypted_connection, Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1402751024 + }, { + "message" : "Propagated: Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.restful_http, Stereotype.encrypted_connection, Stereotype.web_application, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 2027371291 + }, { + "message" : "Incoming: Stereotype.web_application, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.encrypted_connection", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 2027371291 + }, { + "message" : "Propagated: Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.restful_http, Stereotype.encrypted_connection, Stereotype.web_application, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 2027371291 + }, { + "message" : "Incoming: Stereotype.web_application, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.encrypted_connection, Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 2027371291 + }, { + "message" : "Propagated: Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.restful_http, Stereotype.encrypted_connection, Stereotype.web_application, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 888000613 + }, { + "message" : "Incoming: Stereotype.web_application, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.encrypted_connection", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 888000613 + }, { + "message" : "Propagated: Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.restful_http, Stereotype.encrypted_connection, Stereotype.web_application, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 888000613 + }, { + "message" : "Incoming: Stereotype.web_application, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.encrypted_connection, Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 888000613 + }, { + "message" : "Propagated: Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.restful_http, Stereotype.encrypted_connection, Stereotype.web_application, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 37142680 + }, { + "message" : "Incoming: Stereotype.web_application, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.encrypted_connection", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 37142680 + }, { + "message" : "Propagated: Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.restful_http, Stereotype.encrypted_connection, Stereotype.web_application, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 37142680 + }, { + "message" : "Incoming: Stereotype.web_application, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.encrypted_connection, Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 37142680 + }, { + "message" : "Propagated: Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.restful_http, Stereotype.encrypted_connection, Stereotype.web_application, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1759694910 + }, { + "message" : "Incoming: Stereotype.web_application, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.encrypted_connection", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1759694910 + }, { + "message" : "Propagated: Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.restful_http, Stereotype.encrypted_connection, Stereotype.web_application, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 123458189 + }, { + "message" : "Incoming: Stereotype.web_application, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.encrypted_connection", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 123458189 + }, { + "message" : "Propagated: Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.restful_http, Stereotype.encrypted_connection, Stereotype.web_application, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 123458189 + }, { + "message" : "Incoming: Stereotype.web_application, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.encrypted_connection, Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 123458189 + }, { + "message" : "Propagated: Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.restful_http, Stereotype.encrypted_connection, Stereotype.web_application, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 293669143 + }, { + "message" : "Incoming: Stereotype.web_application, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.encrypted_connection", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 293669143 + }, { + "message" : "Propagated: Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.restful_http, Stereotype.encrypted_connection, Stereotype.web_application, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 293669143 + }, { + "message" : "Incoming: Stereotype.web_application, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.encrypted_connection, Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 293669143 + }, { + "message" : "Propagated: Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.restful_http, Stereotype.encrypted_connection, Stereotype.web_application, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 54440148 + }, { + "message" : "Incoming: Stereotype.web_application, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.encrypted_connection", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 54440148 + }, { + "message" : "Propagated: Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.restful_http, Stereotype.encrypted_connection, Stereotype.web_application, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 54440148 + }, { + "message" : "Incoming: Stereotype.web_application, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.encrypted_connection, Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 54440148 + }, { + "message" : "Propagated: Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.restful_http, Stereotype.encrypted_connection, Stereotype.web_application, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 575506130 + }, { + "message" : "Incoming: Stereotype.web_application, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.encrypted_connection", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 575506130 + } ], + "children" : [ ], + "position" : { + "x" : 0.0, + "y" : 0.0 + }, + "size" : null + }, { + "text" : "user_1", + "id" : "_UWx9J_unEfCYrdfxNyUhUA", + "type" : "node:input-output", + "labels" : [ { + "labelTypeId" : "17", + "labelTypeValueId" : "93" + }, { + "labelTypeId" : "17", + "labelTypeValueId" : "94" + }, { + "labelTypeId" : "17", + "labelTypeValueId" : "95" + } ], + "ports" : [ { + "id" : "_UWx9KfunEfCYrdfxNyUhUA", + "type" : "port:dfd-input", + "children" : [ ] + }, { + "behavior" : "assign Stereotype.user_stereotype,Stereotype.entrypoint,Stereotype.exitpoint,Stereotype.restful_http,Stereotype.encrypted_connection if TRUE\nforward web_application_1|web_application_1-0", + "id" : "_UWx9KvunEfCYrdfxNyUhUA", + "type" : "port:dfd-output", + "children" : [ ] + }, { + "behavior" : "assign Stereotype.user_stereotype,Stereotype.entrypoint,Stereotype.exitpoint,Stereotype.restful_http,Stereotype.encrypted_connection if TRUE\nforward web_application_1|web_application_1-0", + "id" : "_UWx_SfunEfCYrdfxNyUhUA", + "type" : "port:dfd-output", + "children" : [ ] + } ], + "annotations" : [ { + "message" : "Propagated: Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.restful_http, Stereotype.encrypted_connection, Stereotype.web_application, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1789791855 + }, { + "message" : "Incoming: Stereotype.web_application, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.encrypted_connection", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1789791855 + }, { + "message" : "Propagated: Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.restful_http, Stereotype.encrypted_connection, Stereotype.web_application, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1789791855 + }, { + "message" : "Incoming: Stereotype.web_application, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.encrypted_connection, Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1789791855 + }, { + "message" : "Propagated: Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.restful_http, Stereotype.encrypted_connection, Stereotype.web_application, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 930569137 + }, { + "message" : "Incoming: Stereotype.web_application, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.encrypted_connection", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 930569137 + }, { + "message" : "Propagated: Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.restful_http, Stereotype.encrypted_connection, Stereotype.web_application, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 2073961917 + }, { + "message" : "Incoming: Stereotype.web_application, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.encrypted_connection", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 2073961917 + }, { + "message" : "Propagated: Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.restful_http, Stereotype.encrypted_connection, Stereotype.web_application, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 505693686 + }, { + "message" : "Incoming: Stereotype.web_application, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.encrypted_connection", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 505693686 + }, { + "message" : "Propagated: Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.restful_http, Stereotype.encrypted_connection, Stereotype.web_application, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 505693686 + }, { + "message" : "Incoming: Stereotype.web_application, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.encrypted_connection, Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 505693686 + }, { + "message" : "Propagated: Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.restful_http, Stereotype.encrypted_connection, Stereotype.web_application, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 401355610 + }, { + "message" : "Incoming: Stereotype.web_application, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.encrypted_connection", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 401355610 + }, { + "message" : "Propagated: Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.restful_http, Stereotype.encrypted_connection, Stereotype.web_application, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 931003277 + }, { + "message" : "Incoming: Stereotype.web_application, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.encrypted_connection", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 931003277 + }, { + "message" : "Propagated: Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.restful_http, Stereotype.encrypted_connection, Stereotype.web_application, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 931003277 + }, { + "message" : "Incoming: Stereotype.web_application, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.encrypted_connection, Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 931003277 + }, { + "message" : "Propagated: Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.restful_http, Stereotype.encrypted_connection, Stereotype.web_application, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1198859194 + }, { + "message" : "Incoming: Stereotype.web_application, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.encrypted_connection", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1198859194 + }, { + "message" : "Propagated: Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.restful_http, Stereotype.encrypted_connection, Stereotype.web_application, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1198859194 + }, { + "message" : "Incoming: Stereotype.web_application, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.encrypted_connection, Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1198859194 + }, { + "message" : "Propagated: Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.restful_http, Stereotype.encrypted_connection, Stereotype.web_application, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 817092761 + }, { + "message" : "Incoming: Stereotype.web_application, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.encrypted_connection", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 817092761 + }, { + "message" : "Propagated: Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.restful_http, Stereotype.encrypted_connection, Stereotype.web_application, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 817092761 + }, { + "message" : "Incoming: Stereotype.web_application, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.encrypted_connection, Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 817092761 + }, { + "message" : "Propagated: Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.restful_http, Stereotype.encrypted_connection, Stereotype.web_application, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1641418296 + }, { + "message" : "Incoming: Stereotype.web_application, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.encrypted_connection", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1641418296 + }, { + "message" : "Propagated: Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.restful_http, Stereotype.encrypted_connection, Stereotype.web_application, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1641418296 + }, { + "message" : "Incoming: Stereotype.web_application, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.encrypted_connection, Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1641418296 + }, { + "message" : "Propagated: Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.restful_http, Stereotype.encrypted_connection, Stereotype.web_application, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 539322891 + }, { + "message" : "Incoming: Stereotype.web_application, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.encrypted_connection", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 539322891 + }, { + "message" : "Propagated: Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.restful_http, Stereotype.encrypted_connection, Stereotype.web_application, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 539322891 + }, { + "message" : "Incoming: Stereotype.web_application, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.encrypted_connection, Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 539322891 + }, { + "message" : "Propagated: Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.restful_http, Stereotype.encrypted_connection, Stereotype.web_application, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1162595263 + }, { + "message" : "Incoming: Stereotype.web_application, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.encrypted_connection", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1162595263 + }, { + "message" : "Propagated: Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.restful_http, Stereotype.encrypted_connection, Stereotype.web_application, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1162595263 + }, { + "message" : "Incoming: Stereotype.web_application, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.encrypted_connection, Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1162595263 + }, { + "message" : "Propagated: Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.restful_http, Stereotype.encrypted_connection, Stereotype.web_application, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 216758017 + }, { + "message" : "Incoming: Stereotype.web_application, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.encrypted_connection", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 216758017 + }, { + "message" : "Propagated: Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.restful_http, Stereotype.encrypted_connection, Stereotype.web_application, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 216758017 + }, { + "message" : "Incoming: Stereotype.web_application, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.encrypted_connection, Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 216758017 + }, { + "message" : "Propagated: Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.restful_http, Stereotype.encrypted_connection, Stereotype.web_application, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 17222024 + }, { + "message" : "Incoming: Stereotype.web_application, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.encrypted_connection", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 17222024 + }, { + "message" : "Propagated: Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.restful_http, Stereotype.encrypted_connection, Stereotype.web_application, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 17222024 + }, { + "message" : "Incoming: Stereotype.web_application, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.encrypted_connection, Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 17222024 + }, { + "message" : "Propagated: Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.restful_http, Stereotype.encrypted_connection, Stereotype.web_application, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 618199162 + }, { + "message" : "Incoming: Stereotype.web_application, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.encrypted_connection", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 618199162 + }, { + "message" : "Propagated: Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.restful_http, Stereotype.encrypted_connection, Stereotype.web_application, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 618199162 + }, { + "message" : "Incoming: Stereotype.web_application, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.encrypted_connection, Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 618199162 + }, { + "message" : "Propagated: Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.restful_http, Stereotype.encrypted_connection, Stereotype.web_application, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1057262726 + }, { + "message" : "Incoming: Stereotype.web_application, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.encrypted_connection", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1057262726 + }, { + "message" : "Propagated: Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.restful_http, Stereotype.encrypted_connection, Stereotype.web_application, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1166029274 + }, { + "message" : "Incoming: Stereotype.web_application, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.encrypted_connection", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1166029274 + }, { + "message" : "Propagated: Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.restful_http, Stereotype.encrypted_connection, Stereotype.web_application, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1166029274 + }, { + "message" : "Incoming: Stereotype.web_application, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.encrypted_connection, Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1166029274 + }, { + "message" : "Propagated: Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.restful_http, Stereotype.encrypted_connection, Stereotype.web_application, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 550498846 + }, { + "message" : "Incoming: Stereotype.web_application, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.encrypted_connection", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 550498846 + }, { + "message" : "Propagated: Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.restful_http, Stereotype.encrypted_connection, Stereotype.web_application, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 550498846 + }, { + "message" : "Incoming: Stereotype.web_application, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.encrypted_connection, Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 550498846 + }, { + "message" : "Propagated: Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.restful_http, Stereotype.encrypted_connection, Stereotype.web_application, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 383852959 + }, { + "message" : "Incoming: Stereotype.web_application, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.encrypted_connection", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 383852959 + }, { + "message" : "Propagated: Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.restful_http, Stereotype.encrypted_connection, Stereotype.web_application, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 383852959 + }, { + "message" : "Incoming: Stereotype.web_application, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.encrypted_connection, Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 383852959 + }, { + "message" : "Propagated: Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.restful_http, Stereotype.encrypted_connection, Stereotype.web_application, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 334761329 + }, { + "message" : "Incoming: Stereotype.web_application, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.encrypted_connection", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 334761329 + } ], + "children" : [ ], + "position" : { + "x" : 0.0, + "y" : 0.0 + }, + "size" : null + }, { + "text" : "consul_0", + "id" : "_UWx9LvunEfCYrdfxNyUhUA", + "type" : "node:function", + "labels" : [ { + "labelTypeId" : "17", + "labelTypeValueId" : "52" + }, { + "labelTypeId" : "17", + "labelTypeValueId" : "27" + }, { + "labelTypeId" : "22", + "labelTypeValueId" : "53" + }, { + "labelTypeId" : "54", + "labelTypeValueId" : "55" + } ], + "ports" : [ { + "id" : "_UWx9MPunEfCYrdfxNyUhUA", + "type" : "port:dfd-input", + "children" : [ ] + }, { + "behavior" : "assign Stereotype.service_discovery,Stereotype.infrastructural,Stereotype.restful_http if TRUE\nforward consul2_0|consul2_0-0|consul3_0|consul3_0-0", + "id" : "_UWx9MfunEfCYrdfxNyUhUA", + "type" : "port:dfd-output", + "children" : [ ] + }, { + "behavior" : "assign Stereotype.service_discovery,Stereotype.infrastructural,Stereotype.restful_http if TRUE\nforward consul2_0|consul2_0-0|consul3_0|consul3_0-0", + "id" : "_UWx9MvunEfCYrdfxNyUhUA", + "type" : "port:dfd-output", + "children" : [ ] + }, { + "behavior" : "assign Stereotype.service_discovery,Stereotype.infrastructural,Stereotype.restful_http if TRUE\nforward consul2_0|consul2_0-0|consul3_0|consul3_0-0", + "id" : "_UWx9M_unEfCYrdfxNyUhUA", + "type" : "port:dfd-output", + "children" : [ ] + }, { + "behavior" : "assign Stereotype.service_discovery,Stereotype.infrastructural,Stereotype.restful_http if TRUE\nforward consul2_0|consul2_0-0|consul3_0|consul3_0-0", + "id" : "_UWx9NPunEfCYrdfxNyUhUA", + "type" : "port:dfd-output", + "children" : [ ] + }, { + "behavior" : "assign Stereotype.service_discovery,Stereotype.infrastructural,Stereotype.restful_http if TRUE\nforward consul2_0|consul2_0-0|consul3_0|consul3_0-0", + "id" : "_UWx_E_unEfCYrdfxNyUhUA", + "type" : "port:dfd-output", + "children" : [ ] + }, { + "behavior" : "assign Stereotype.service_discovery,Stereotype.infrastructural,Stereotype.restful_http if TRUE\nforward consul2_0|consul2_0-0|consul3_0|consul3_0-0", + "id" : "_UWx_I_unEfCYrdfxNyUhUA", + "type" : "port:dfd-output", + "children" : [ ] + }, { + "behavior" : "assign Stereotype.service_discovery,Stereotype.infrastructural,Stereotype.restful_http if TRUE\nforward consul2_0|consul2_0-0|consul3_0|consul3_0-0", + "id" : "_UWx_Q_unEfCYrdfxNyUhUA", + "type" : "port:dfd-output", + "children" : [ ] + }, { + "behavior" : "assign Stereotype.service_discovery,Stereotype.infrastructural,Stereotype.restful_http if TRUE\nforward consul2_0|consul2_0-0|consul3_0|consul3_0-0", + "id" : "_UWx_b_unEfCYrdfxNyUhUA", + "type" : "port:dfd-output", + "children" : [ ] + } ], + "annotations" : [ { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 2053555034 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 2053555034 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 2039783633 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 2039783633 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 121521031 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 121521031 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 227005513 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 227005513 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1094167216 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1094167216 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 502863983 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 502863983 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1925835770 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1925835770 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1751972013 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1751972013 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1954507866 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1954507866 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1726169577 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1726169577 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1543272907 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1543272907 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 669812564 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 669812564 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1002380301 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1002380301 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 426123784 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 426123784 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 560734926 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 560734926 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 568717494 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 568717494 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1233246555 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1233246555 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1803976423 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1803976423 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1038892935 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1038892935 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 2053136992 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 2053136992 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1572516402 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1572516402 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 93560356 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 93560356 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1499437334 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1499437334 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 542475071 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 542475071 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 678858277 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 678858277 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 822958001 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 822958001 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 419416684 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 419416684 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 73689328 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 73689328 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 883349979 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 883349979 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1969752268 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1969752268 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1343407473 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1343407473 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1360897103 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1360897103 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 3804010 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 3804010 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1864344016 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1864344016 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 42684986 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 42684986 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1387948122 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1387948122 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1674999797 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1674999797 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1909807998 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1909807998 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 686721068 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 686721068 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 595759572 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 595759572 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 701526215 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 701526215 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 518739992 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 518739992 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1155521880 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1155521880 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1923626523 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1923626523 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 910658510 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 910658510 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 206091587 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 206091587 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1179830093 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1179830093 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1287728562 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1287728562 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 99253188 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 99253188 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 970423785 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 970423785 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 738636051 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 738636051 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 2053425932 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 2053425932 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 2019482012 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 2019482012 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1968922416 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1968922416 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 656898222 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 656898222 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 751628596 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 751628596 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1950102816 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1950102816 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1749205249 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1749205249 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 592238700 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 592238700 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 969440066 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 969440066 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 302687243 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 302687243 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 850083982 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 850083982 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 112026691 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 112026691 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 2024814472 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 2024814472 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1063124585 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1063124585 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1461347900 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1461347900 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 980979680 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 980979680 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1124987728 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1124987728 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1159606185 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1159606185 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1233049719 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1233049719 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 2069971440 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 2069971440 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1337346642 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1337346642 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1890881203 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1890881203 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 177279387 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 177279387 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1997028929 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1997028929 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 589166341 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 589166341 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 789367604 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 789367604 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 423629474 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 423629474 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1428777808 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1428777808 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 700791887 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 700791887 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 805957335 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 805957335 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 786722925 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 786722925 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 105019819 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 105019819 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 2034385122 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 2034385122 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1957175487 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1957175487 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1328203744 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1328203744 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 612686775 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 612686775 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 287095360 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 287095360 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1374212198 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1374212198 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1395912847 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1395912847 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 663326227 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 663326227 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1487131937 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1487131937 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 349757746 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 349757746 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 2135563436 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 2135563436 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1243234606 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1243234606 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 206999441 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 206999441 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1607745112 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1607745112 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1893004914 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1893004914 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1759500919 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1759500919 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1355676410 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1355676410 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 781527109 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 781527109 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 2032479363 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 2032479363 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1874812338 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1874812338 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1352294549 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1352294549 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1472904643 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1472904643 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 312233241 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 312233241 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 321358401 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 321358401 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1244785938 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1244785938 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 593881656 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 593881656 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 213850519 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 213850519 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1227041903 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1227041903 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1402400433 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1402400433 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 2004952636 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 2004952636 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1608357825 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1608357825 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 366098173 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 366098173 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1805402813 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1805402813 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1481417616 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1481417616 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 936632640 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 936632640 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 171751994 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 171751994 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 720007548 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 720007548 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1554308325 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1554308325 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 311536309 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 311536309 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 2098413495 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 2098413495 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 67883256 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 67883256 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 2125625192 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 2125625192 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1634319881 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1634319881 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 518261596 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 518261596 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 96749807 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 96749807 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1883144272 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1883144272 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1237443220 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1237443220 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 2000793115 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 2000793115 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1357185836 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1357185836 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1415390560 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1415390560 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 307148861 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 307148861 + } ], + "children" : [ ], + "position" : { + "x" : 0.0, + "y" : 0.0 + }, + "size" : null + }, { + "text" : "consul_1", + "id" : "_UWx9QfunEfCYrdfxNyUhUA", + "type" : "node:function", + "labels" : [ { + "labelTypeId" : "17", + "labelTypeValueId" : "52" + }, { + "labelTypeId" : "17", + "labelTypeValueId" : "27" + }, { + "labelTypeId" : "22", + "labelTypeValueId" : "53" + }, { + "labelTypeId" : "54", + "labelTypeValueId" : "55" + } ], + "ports" : [ { + "id" : "_UWx9Q_unEfCYrdfxNyUhUA", + "type" : "port:dfd-input", + "children" : [ ] + }, { + "behavior" : "assign Stereotype.service_discovery,Stereotype.infrastructural,Stereotype.restful_http if TRUE\nforward consul2_1|consul2_1-0|consul3_1|consul3_1-0", + "id" : "_UWx9RPunEfCYrdfxNyUhUA", + "type" : "port:dfd-output", + "children" : [ ] + }, { + "behavior" : "assign Stereotype.service_discovery,Stereotype.infrastructural,Stereotype.restful_http if TRUE\nforward consul2_1|consul2_1-0|consul3_1|consul3_1-0", + "id" : "_UWx9RfunEfCYrdfxNyUhUA", + "type" : "port:dfd-output", + "children" : [ ] + }, { + "behavior" : "assign Stereotype.service_discovery,Stereotype.infrastructural,Stereotype.restful_http if TRUE\nforward consul2_1|consul2_1-0|consul3_1|consul3_1-0", + "id" : "_UWx9RvunEfCYrdfxNyUhUA", + "type" : "port:dfd-output", + "children" : [ ] + }, { + "behavior" : "assign Stereotype.service_discovery,Stereotype.infrastructural,Stereotype.restful_http if TRUE\nforward consul2_1|consul2_1-0|consul3_1|consul3_1-0", + "id" : "_UWx9R_unEfCYrdfxNyUhUA", + "type" : "port:dfd-output", + "children" : [ ] + }, { + "behavior" : "assign Stereotype.service_discovery,Stereotype.infrastructural,Stereotype.restful_http if TRUE\nforward consul2_1|consul2_1-0|consul3_1|consul3_1-0", + "id" : "_UWx_FfunEfCYrdfxNyUhUA", + "type" : "port:dfd-output", + "children" : [ ] + }, { + "behavior" : "assign Stereotype.service_discovery,Stereotype.infrastructural,Stereotype.restful_http if TRUE\nforward consul2_1|consul2_1-0|consul3_1|consul3_1-0", + "id" : "_UWx_JfunEfCYrdfxNyUhUA", + "type" : "port:dfd-output", + "children" : [ ] + }, { + "behavior" : "assign Stereotype.service_discovery,Stereotype.infrastructural,Stereotype.restful_http if TRUE\nforward consul2_1|consul2_1-0|consul3_1|consul3_1-0", + "id" : "_UWx_RfunEfCYrdfxNyUhUA", + "type" : "port:dfd-output", + "children" : [ ] + }, { + "behavior" : "assign Stereotype.service_discovery,Stereotype.infrastructural,Stereotype.restful_http if TRUE\nforward consul2_1|consul2_1-0|consul3_1|consul3_1-0", + "id" : "_UWx_cfunEfCYrdfxNyUhUA", + "type" : "port:dfd-output", + "children" : [ ] + } ], + "annotations" : [ { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1753607449 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1753607449 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 276922182 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 276922182 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 759840275 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 759840275 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1243800791 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1243800791 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 227030447 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 227030447 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 375918615 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 375918615 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 757099121 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 757099121 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 937936076 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 937936076 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 977320786 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 977320786 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 813285994 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 813285994 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 675909854 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 675909854 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1448967471 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1448967471 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1793759719 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1793759719 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 476709123 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 476709123 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 2017574192 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 2017574192 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 2077462509 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 2077462509 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1117812847 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1117812847 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 540962910 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 540962910 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 2026325575 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 2026325575 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 962931248 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 962931248 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1466148437 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1466148437 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 67928167 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 67928167 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1186663391 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1186663391 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1444912530 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1444912530 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 478468106 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 478468106 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 2095803461 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 2095803461 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1212782393 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1212782393 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1916224178 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1916224178 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 885481831 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 885481831 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 2027499247 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 2027499247 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1855297340 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1855297340 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1901272535 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1901272535 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1649096004 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1649096004 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 748673892 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 748673892 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 669096398 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 669096398 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 473655651 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 473655651 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 120999784 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 120999784 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1436610577 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1436610577 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 957559364 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 957559364 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1578712821 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1578712821 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1990419108 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1990419108 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1641677843 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1641677843 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1445448489 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1445448489 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 538441446 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 538441446 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 291279979 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 291279979 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 2043313130 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 2043313130 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1271515799 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1271515799 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1044639817 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1044639817 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 343722304 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 343722304 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1968861720 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1968861720 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1361241279 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1361241279 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 602280210 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 602280210 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 92962244 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 92962244 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 670503317 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 670503317 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1647891936 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1647891936 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 862931361 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 862931361 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1337294771 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1337294771 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1795568752 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1795568752 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 577592048 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 577592048 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 919962315 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 919962315 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 626889335 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 626889335 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 501301044 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 501301044 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 2115575770 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 2115575770 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1700973603 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1700973603 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 753214674 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 753214674 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 946448101 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 946448101 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 238590461 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 238590461 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 2101891021 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 2101891021 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 2014406233 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 2014406233 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1898870910 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1898870910 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1468809177 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1468809177 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 610056415 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 610056415 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 649316770 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 649316770 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 308221618 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 308221618 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1401212518 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1401212518 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1799545709 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1799545709 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 2031705122 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 2031705122 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 211507865 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 211507865 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1891535340 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1891535340 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 430290487 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 430290487 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1329362952 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1329362952 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1263102442 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1263102442 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 627411361 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 627411361 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 154487101 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 154487101 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 162752456 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 162752456 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1038585959 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1038585959 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 515398215 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 515398215 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 212329343 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 212329343 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 142561311 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 142561311 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1414093109 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1414093109 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1741092056 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1741092056 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1214498988 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1214498988 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1459462244 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1459462244 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 114159191 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 114159191 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1211071216 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1211071216 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 517991921 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 517991921 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 622497998 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 622497998 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1280081260 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1280081260 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 2131191535 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 2131191535 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 509000859 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 509000859 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1866191743 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1866191743 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1077109993 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1077109993 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 71782942 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 71782942 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 803116137 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 803116137 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 516885190 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 516885190 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 2078887126 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 2078887126 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1177568763 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1177568763 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 41595398 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 41595398 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1824819735 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1824819735 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 681514473 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 681514473 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 2132961406 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 2132961406 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 581225034 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 581225034 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 508122132 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 508122132 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 923911964 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 923911964 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1684898059 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1684898059 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 810582118 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 810582118 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 155224151 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 155224151 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 789178034 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 789178034 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1940407755 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1940407755 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 413763859 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 413763859 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 131837504 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 131837504 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 888648783 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 888648783 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 88094983 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 88094983 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1366677933 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1366677933 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 184996973 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 184996973 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 39476366 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 39476366 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 350703813 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 350703813 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 607123271 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 607123271 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1395259059 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1395259059 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1501382858 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1501382858 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1999784536 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1999784536 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 746327606 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 746327606 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 813496676 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 813496676 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 57986233 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 57986233 + } ], + "children" : [ ], + "position" : { + "x" : 0.0, + "y" : 0.0 + }, + "size" : null + }, { + "text" : "consul2_0", + "id" : "_UWx9VPunEfCYrdfxNyUhUA", + "type" : "node:function", + "labels" : [ { + "labelTypeId" : "17", + "labelTypeValueId" : "52" + }, { + "labelTypeId" : "17", + "labelTypeValueId" : "27" + }, { + "labelTypeId" : "22", + "labelTypeValueId" : "53" + }, { + "labelTypeId" : "54", + "labelTypeValueId" : "55" + } ], + "ports" : [ { + "id" : "_UWx9VvunEfCYrdfxNyUhUA", + "type" : "port:dfd-input", + "children" : [ ] + }, { + "behavior" : "assign Stereotype.service_discovery,Stereotype.infrastructural,Stereotype.restful_http if TRUE\nforward consul3_0|consul3_0-0", + "id" : "_UWx9V_unEfCYrdfxNyUhUA", + "type" : "port:dfd-output", + "children" : [ ] + }, { + "behavior" : "assign Stereotype.service_discovery,Stereotype.infrastructural,Stereotype.restful_http if TRUE\nforward consul3_0|consul3_0-0", + "id" : "_UWx9WPunEfCYrdfxNyUhUA", + "type" : "port:dfd-output", + "children" : [ ] + }, { + "behavior" : "assign Stereotype.service_discovery,Stereotype.infrastructural,Stereotype.restful_http if TRUE\nforward consul3_0|consul3_0-0", + "id" : "_UWx-__unEfCYrdfxNyUhUA", + "type" : "port:dfd-output", + "children" : [ ] + }, { + "behavior" : "assign Stereotype.service_discovery,Stereotype.infrastructural,Stereotype.restful_http if TRUE\nforward consul3_0|consul3_0-0", + "id" : "_UWx_c_unEfCYrdfxNyUhUA", + "type" : "port:dfd-output", + "children" : [ ] + } ], + "annotations" : [ { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 2053555034 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 2053555034 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 2039783633 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 2039783633 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 227005513 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 227005513 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1094167216 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1094167216 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1925835770 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1925835770 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1954507866 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1954507866 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1543272907 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1543272907 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1002380301 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1002380301 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 560734926 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 560734926 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 568717494 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 568717494 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1233246555 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1233246555 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1803976423 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1803976423 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 2053136992 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 2053136992 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 93560356 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 93560356 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 542475071 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 542475071 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 822958001 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 822958001 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 419416684 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 419416684 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 73689328 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 73689328 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 883349979 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 883349979 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1969752268 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1969752268 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1343407473 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1343407473 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1360897103 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1360897103 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 3804010 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 3804010 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1864344016 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1864344016 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1387948122 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1387948122 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1909807998 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1909807998 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 686721068 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 686721068 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 595759572 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 595759572 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 701526215 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 701526215 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 518739992 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 518739992 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1155521880 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1155521880 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1923626523 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1923626523 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 910658510 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 910658510 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 206091587 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 206091587 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1179830093 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1179830093 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1287728562 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1287728562 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 99253188 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 99253188 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 970423785 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 970423785 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 738636051 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 738636051 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 2053425932 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 2053425932 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 2019482012 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 2019482012 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1968922416 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1968922416 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 656898222 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 656898222 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 751628596 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 751628596 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1950102816 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1950102816 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1749205249 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1749205249 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 592238700 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 592238700 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 969440066 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 969440066 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 302687243 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 302687243 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 850083982 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 850083982 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 112026691 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 112026691 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 2024814472 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 2024814472 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1063124585 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1063124585 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 980979680 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 980979680 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 326362094 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 326362094 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 391928890 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 391928890 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1159606185 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1159606185 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1233049719 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1233049719 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 2069971440 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 2069971440 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1337346642 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1337346642 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1890881203 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1890881203 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 177279387 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 177279387 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1997028929 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1997028929 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 589166341 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 589166341 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 789367604 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 789367604 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 423629474 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 423629474 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1428777808 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1428777808 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 700791887 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 700791887 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 805957335 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 805957335 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 786722925 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 786722925 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 105019819 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 105019819 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 2034385122 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 2034385122 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1957175487 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1957175487 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1328203744 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1328203744 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 612686775 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 612686775 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 287095360 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 287095360 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1374212198 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1374212198 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1395912847 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1395912847 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 663326227 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 663326227 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1487131937 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1487131937 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 349757746 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 349757746 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 2135563436 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 2135563436 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1243234606 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1243234606 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 206999441 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 206999441 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1607745112 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1607745112 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1893004914 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1893004914 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1759500919 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1759500919 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1355676410 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1355676410 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 781527109 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 781527109 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 2032479363 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 2032479363 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1874812338 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1874812338 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1352294549 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1352294549 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1472904643 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1472904643 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 312233241 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 312233241 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 321358401 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 321358401 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1244785938 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1244785938 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 593881656 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 593881656 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 213850519 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 213850519 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1227041903 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1227041903 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1402400433 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1402400433 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 2004952636 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 2004952636 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1608357825 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1608357825 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 366098173 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 366098173 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1805402813 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1805402813 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1481417616 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1481417616 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 936632640 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 936632640 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 171751994 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 171751994 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 720007548 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 720007548 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1554308325 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1554308325 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 311536309 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 311536309 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 2098413495 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 2098413495 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 2125625192 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 2125625192 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 98818836 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 98818836 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1605715776 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1605715776 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 518261596 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 518261596 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 96749807 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 96749807 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1883144272 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1883144272 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1237443220 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1237443220 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 2000793115 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 2000793115 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1357185836 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1357185836 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1415390560 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1415390560 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 307148861 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 307148861 + } ], + "children" : [ ], + "position" : { + "x" : 0.0, + "y" : 0.0 + }, + "size" : null + }, { + "text" : "consul2_1", + "id" : "_UWx9X_unEfCYrdfxNyUhUA", + "type" : "node:function", + "labels" : [ { + "labelTypeId" : "17", + "labelTypeValueId" : "52" + }, { + "labelTypeId" : "17", + "labelTypeValueId" : "27" + }, { + "labelTypeId" : "22", + "labelTypeValueId" : "53" + }, { + "labelTypeId" : "54", + "labelTypeValueId" : "55" + } ], + "ports" : [ { + "id" : "_UWx9YfunEfCYrdfxNyUhUA", + "type" : "port:dfd-input", + "children" : [ ] + }, { + "behavior" : "assign Stereotype.service_discovery,Stereotype.infrastructural,Stereotype.restful_http if TRUE\nforward consul3_1|consul3_1-0", + "id" : "_UWx9YvunEfCYrdfxNyUhUA", + "type" : "port:dfd-output", + "children" : [ ] + }, { + "behavior" : "assign Stereotype.service_discovery,Stereotype.infrastructural,Stereotype.restful_http if TRUE\nforward consul3_1|consul3_1-0", + "id" : "_UWx9Y_unEfCYrdfxNyUhUA", + "type" : "port:dfd-output", + "children" : [ ] + }, { + "behavior" : "assign Stereotype.service_discovery,Stereotype.infrastructural,Stereotype.restful_http if TRUE\nforward consul3_1|consul3_1-0", + "id" : "_UWx_AfunEfCYrdfxNyUhUA", + "type" : "port:dfd-output", + "children" : [ ] + }, { + "behavior" : "assign Stereotype.service_discovery,Stereotype.infrastructural,Stereotype.restful_http if TRUE\nforward consul3_1|consul3_1-0", + "id" : "_UWx_dfunEfCYrdfxNyUhUA", + "type" : "port:dfd-output", + "children" : [ ] + } ], + "annotations" : [ { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1753607449 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1753607449 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 276922182 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 276922182 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1243800791 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1243800791 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 227030447 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 227030447 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 757099121 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 757099121 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 977320786 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 977320786 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 675909854 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 675909854 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1793759719 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1793759719 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 2017574192 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 2017574192 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 2077462509 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 2077462509 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1117812847 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1117812847 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 540962910 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 540962910 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 962931248 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 962931248 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 67928167 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 67928167 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1444912530 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1444912530 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 2095803461 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 2095803461 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1212782393 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1212782393 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1916224178 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1916224178 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 885481831 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 885481831 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 2027499247 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 2027499247 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1855297340 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1855297340 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1901272535 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1901272535 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1649096004 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1649096004 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 748673892 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 748673892 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 473655651 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 473655651 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1436610577 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1436610577 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 957559364 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 957559364 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1578712821 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1578712821 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1990419108 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1990419108 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1641677843 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1641677843 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1445448489 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1445448489 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 538441446 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 538441446 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 291279979 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 291279979 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 2043313130 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 2043313130 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1271515799 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1271515799 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1044639817 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1044639817 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 343722304 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 343722304 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1968861720 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1968861720 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1361241279 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1361241279 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 602280210 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 602280210 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 92962244 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 92962244 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 670503317 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 670503317 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1647891936 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1647891936 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 862931361 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 862931361 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1337294771 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1337294771 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1795568752 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1795568752 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 577592048 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 577592048 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 919962315 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 919962315 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 626889335 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 626889335 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 501301044 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 501301044 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 2115575770 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 2115575770 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1700973603 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1700973603 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 753214674 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 753214674 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 238590461 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 238590461 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 2022586114 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 2022586114 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 220588152 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 220588152 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 2014406233 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 2014406233 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1898870910 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1898870910 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1468809177 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1468809177 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 610056415 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 610056415 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 649316770 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 649316770 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 308221618 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 308221618 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1401212518 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1401212518 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1799545709 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1799545709 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 2031705122 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 2031705122 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 211507865 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 211507865 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1891535340 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1891535340 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 430290487 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 430290487 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1329362952 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1329362952 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1263102442 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1263102442 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 627411361 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 627411361 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 154487101 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 154487101 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 162752456 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 162752456 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1038585959 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1038585959 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 515398215 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 515398215 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 212329343 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 212329343 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 142561311 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 142561311 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1414093109 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1414093109 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1741092056 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1741092056 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1214498988 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1214498988 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1459462244 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1459462244 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 114159191 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 114159191 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1211071216 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1211071216 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 517991921 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 517991921 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 622497998 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 622497998 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1280081260 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1280081260 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 2131191535 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 2131191535 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 509000859 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 509000859 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1866191743 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1866191743 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1077109993 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1077109993 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 71782942 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 71782942 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 803116137 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 803116137 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 516885190 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 516885190 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 2078887126 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 2078887126 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1177568763 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1177568763 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 41595398 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 41595398 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1824819735 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1824819735 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 681514473 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 681514473 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 2132961406 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 2132961406 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 581225034 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 581225034 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 508122132 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 508122132 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 923911964 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 923911964 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1684898059 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1684898059 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 810582118 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 810582118 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 155224151 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 155224151 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 789178034 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 789178034 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1940407755 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1940407755 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 413763859 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 413763859 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 131837504 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 131837504 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 888648783 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 888648783 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 88094983 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 88094983 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 184996973 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 184996973 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 106350019 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 106350019 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 2031209493 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 2031209493 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 350703813 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 350703813 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 607123271 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 607123271 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1395259059 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1395259059 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1501382858 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1501382858 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1999784536 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1999784536 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 746327606 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 746327606 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 813496676 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 813496676 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 57986233 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 57986233 + } ], + "children" : [ ], + "position" : { + "x" : 0.0, + "y" : 0.0 + }, + "size" : null + }, { + "text" : "consul3_0", + "id" : "_UWx9avunEfCYrdfxNyUhUA", + "type" : "node:function", + "labels" : [ { + "labelTypeId" : "17", + "labelTypeValueId" : "52" + }, { + "labelTypeId" : "17", + "labelTypeValueId" : "27" + }, { + "labelTypeId" : "22", + "labelTypeValueId" : "53" + }, { + "labelTypeId" : "54", + "labelTypeValueId" : "55" + } ], + "ports" : [ { + "behavior" : "assign Stereotype.service_discovery,Stereotype.infrastructural,Stereotype.restful_http if TRUE", + "id" : "_UWx9bPunEfCYrdfxNyUhUA", + "type" : "port:dfd-output", + "children" : [ ] + }, { + "behavior" : "assign Stereotype.service_discovery,Stereotype.infrastructural,Stereotype.restful_http if TRUE", + "id" : "_UWx9bfunEfCYrdfxNyUhUA", + "type" : "port:dfd-output", + "children" : [ ] + }, { + "behavior" : "assign Stereotype.service_discovery,Stereotype.infrastructural,Stereotype.restful_http if TRUE", + "id" : "_UWx9bvunEfCYrdfxNyUhUA", + "type" : "port:dfd-output", + "children" : [ ] + }, { + "behavior" : "assign Stereotype.service_discovery,Stereotype.infrastructural,Stereotype.restful_http if TRUE", + "id" : "_UWx_A_unEfCYrdfxNyUhUA", + "type" : "port:dfd-output", + "children" : [ ] + }, { + "behavior" : "assign Stereotype.service_discovery,Stereotype.infrastructural,Stereotype.restful_http if TRUE", + "id" : "_UWx_B_unEfCYrdfxNyUhUA", + "type" : "port:dfd-output", + "children" : [ ] + }, { + "behavior" : "assign Stereotype.service_discovery,Stereotype.infrastructural,Stereotype.restful_http if TRUE", + "id" : "_UWx_d_unEfCYrdfxNyUhUA", + "type" : "port:dfd-output", + "children" : [ ] + } ], + "annotations" : [ { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 2053555034 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 2039783633 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 121521031 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 227005513 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1094167216 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 502863983 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1925835770 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1751972013 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1954507866 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1726169577 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1543272907 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 669812564 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1002380301 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 426123784 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 560734926 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 568717494 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1233246555 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1803976423 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1038892935 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 2053136992 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1572516402 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 93560356 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1499437334 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 542475071 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 678858277 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 822958001 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 419416684 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 73689328 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 883349979 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1969752268 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1343407473 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1360897103 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 3804010 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1864344016 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 42684986 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1387948122 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1674999797 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1909807998 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 686721068 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 595759572 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 701526215 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 518739992 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1155521880 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1923626523 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 910658510 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 206091587 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1179830093 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1287728562 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 99253188 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 970423785 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 738636051 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 2053425932 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 2019482012 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1968922416 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 656898222 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 751628596 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1950102816 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1749205249 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 592238700 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 969440066 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 302687243 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 850083982 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 112026691 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 2024814472 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1063124585 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1461347900 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 980979680 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1124987728 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 326362094 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 391928890 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1772471998 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1159606185 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1233049719 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 2069971440 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1337346642 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1890881203 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 177279387 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1997028929 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 589166341 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 789367604 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 423629474 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1428777808 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 700791887 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 805957335 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 786722925 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 105019819 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 2034385122 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1957175487 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1328203744 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 612686775 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 287095360 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1374212198 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1395912847 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 663326227 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1487131937 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 349757746 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 2135563436 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1243234606 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 206999441 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1607745112 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1893004914 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1759500919 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1355676410 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 781527109 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 2032479363 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1874812338 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1352294549 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1472904643 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 312233241 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 321358401 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1244785938 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 593881656 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 213850519 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1227041903 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1402400433 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 2004952636 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1608357825 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 366098173 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1805402813 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1481417616 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 936632640 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 171751994 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 720007548 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1554308325 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 311536309 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 2098413495 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 67883256 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 2125625192 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1634319881 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 98818836 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1605715776 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 844194537 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 518261596 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 96749807 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1883144272 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1237443220 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 2000793115 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1357185836 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1415390560 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 307148861 + } ], + "children" : [ ], + "position" : { + "x" : 0.0, + "y" : 0.0 + }, + "size" : null + }, { + "text" : "consul3_1", + "id" : "_UWx9dfunEfCYrdfxNyUhUA", + "type" : "node:function", + "labels" : [ { + "labelTypeId" : "17", + "labelTypeValueId" : "52" + }, { + "labelTypeId" : "17", + "labelTypeValueId" : "27" + }, { + "labelTypeId" : "22", + "labelTypeValueId" : "53" + }, { + "labelTypeId" : "54", + "labelTypeValueId" : "55" + } ], + "ports" : [ { + "behavior" : "assign Stereotype.service_discovery,Stereotype.infrastructural,Stereotype.restful_http if TRUE", + "id" : "_UWx9d_unEfCYrdfxNyUhUA", + "type" : "port:dfd-output", + "children" : [ ] + }, { + "behavior" : "assign Stereotype.service_discovery,Stereotype.infrastructural,Stereotype.restful_http if TRUE", + "id" : "_UWx9ePunEfCYrdfxNyUhUA", + "type" : "port:dfd-output", + "children" : [ ] + }, { + "behavior" : "assign Stereotype.service_discovery,Stereotype.infrastructural,Stereotype.restful_http if TRUE", + "id" : "_UWx9efunEfCYrdfxNyUhUA", + "type" : "port:dfd-output", + "children" : [ ] + }, { + "behavior" : "assign Stereotype.service_discovery,Stereotype.infrastructural,Stereotype.restful_http if TRUE", + "id" : "_UWx_BfunEfCYrdfxNyUhUA", + "type" : "port:dfd-output", + "children" : [ ] + }, { + "behavior" : "assign Stereotype.service_discovery,Stereotype.infrastructural,Stereotype.restful_http if TRUE", + "id" : "_UWx_CfunEfCYrdfxNyUhUA", + "type" : "port:dfd-output", + "children" : [ ] + }, { + "behavior" : "assign Stereotype.service_discovery,Stereotype.infrastructural,Stereotype.restful_http if TRUE", + "id" : "_UWx_efunEfCYrdfxNyUhUA", + "type" : "port:dfd-output", + "children" : [ ] + } ], + "annotations" : [ { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1753607449 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 276922182 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 759840275 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1243800791 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 227030447 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 375918615 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 757099121 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 937936076 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 977320786 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 813285994 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 675909854 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1448967471 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1793759719 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 476709123 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 2017574192 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 2077462509 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1117812847 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 540962910 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 2026325575 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 962931248 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1466148437 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 67928167 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1186663391 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1444912530 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 478468106 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 2095803461 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1212782393 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1916224178 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 885481831 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 2027499247 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1855297340 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1901272535 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1649096004 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 748673892 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 669096398 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 473655651 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 120999784 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1436610577 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 957559364 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1578712821 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1990419108 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1641677843 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1445448489 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 538441446 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 291279979 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 2043313130 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1271515799 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1044639817 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 343722304 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1968861720 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1361241279 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 602280210 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 92962244 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 670503317 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1647891936 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 862931361 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1337294771 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1795568752 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 577592048 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 919962315 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 626889335 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 501301044 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 2115575770 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1700973603 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 753214674 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 946448101 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 238590461 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 2101891021 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 2022586114 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 220588152 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1192787792 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 2014406233 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1898870910 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1468809177 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 610056415 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 649316770 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 308221618 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1401212518 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1799545709 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 2031705122 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 211507865 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1891535340 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 430290487 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1329362952 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1263102442 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 627411361 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 154487101 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 162752456 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1038585959 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 515398215 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 212329343 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 142561311 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1414093109 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1741092056 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1214498988 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1459462244 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 114159191 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1211071216 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 517991921 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 622497998 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1280081260 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 2131191535 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 509000859 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1866191743 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1077109993 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 71782942 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 803116137 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 516885190 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 2078887126 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1177568763 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 41595398 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1824819735 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 681514473 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 2132961406 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 581225034 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 508122132 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 923911964 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1684898059 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 810582118 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 155224151 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 789178034 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1940407755 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 413763859 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 131837504 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 888648783 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 88094983 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1366677933 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 184996973 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 39476366 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 106350019 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 2031209493 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1141492454 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 350703813 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 607123271 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1395259059 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1501382858 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1999784536 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 746327606 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 813496676 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 57986233 + } ], + "children" : [ ], + "position" : { + "x" : 0.0, + "y" : 0.0 + }, + "size" : null + }, { + "text" : "elasticsearch_0", + "id" : "_UWx9gPunEfCYrdfxNyUhUA", + "type" : "node:function", + "labels" : [ { + "labelTypeId" : "17", + "labelTypeValueId" : "43" + }, { + "labelTypeId" : "17", + "labelTypeValueId" : "27" + }, { + "labelTypeId" : "44", + "labelTypeValueId" : "45" + }, { + "labelTypeId" : "22", + "labelTypeValueId" : "46" + } ], + "ports" : [ { + "id" : "_UWx9gvunEfCYrdfxNyUhUA", + "type" : "port:dfd-input", + "children" : [ ] + }, { + "behavior" : "assign Stereotype.search_engine,Stereotype.infrastructural,Stereotype.restful_http if TRUE\nforward logstash_0|logstash_0-0", + "id" : "_UWx9g_unEfCYrdfxNyUhUA", + "type" : "port:dfd-output", + "children" : [ ] + }, { + "behavior" : "assign Stereotype.search_engine,Stereotype.infrastructural,Stereotype.restful_http if TRUE\nforward logstash_0|logstash_0-0", + "id" : "_UWx9hPunEfCYrdfxNyUhUA", + "type" : "port:dfd-output", + "children" : [ ] + }, { + "behavior" : "assign Stereotype.search_engine,Stereotype.infrastructural,Stereotype.restful_http if TRUE\nforward logstash_0|logstash_0-0", + "id" : "_UWx_D_unEfCYrdfxNyUhUA", + "type" : "port:dfd-output", + "children" : [ ] + }, { + "behavior" : "assign Stereotype.search_engine,Stereotype.infrastructural,Stereotype.restful_http if TRUE\nforward logstash_0|logstash_0-0", + "id" : "_UWx_f_unEfCYrdfxNyUhUA", + "type" : "port:dfd-output", + "children" : [ ] + } ], + "annotations" : [ { + "message" : "Propagated: Stereotype.search_engine, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.logging_server, Stereotype.internal, Stereotype.local_logging, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1159606185 + }, { + "message" : "Incoming: Stereotype.logging_server, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.internal, Stereotype.local_logging, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1159606185 + }, { + "message" : "Propagated: Stereotype.search_engine, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.logging_server, Stereotype.internal, Stereotype.local_logging, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1233049719 + }, { + "message" : "Incoming: Stereotype.logging_server, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.internal, Stereotype.local_logging, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1233049719 + }, { + "message" : "Propagated: Stereotype.search_engine, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.logging_server, Stereotype.internal, Stereotype.local_logging, Stereotype.jdbc", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1018618094 + }, { + "message" : "Incoming: Stereotype.logging_server, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.internal, Stereotype.local_logging, Stereotype.jdbc", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1018618094 + }, { + "message" : "Propagated: Stereotype.search_engine, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.logging_server, Stereotype.internal, Stereotype.local_logging, Stereotype.gateway, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 2069971440 + }, { + "message" : "Incoming: Stereotype.logging_server, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.internal, Stereotype.local_logging, Stereotype.gateway, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 2069971440 + }, { + "message" : "Propagated: Stereotype.search_engine, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.logging_server, Stereotype.internal, Stereotype.local_logging, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1337346642 + }, { + "message" : "Incoming: Stereotype.logging_server, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.internal, Stereotype.local_logging, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1337346642 + }, { + "message" : "Propagated: Stereotype.search_engine, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.logging_server, Stereotype.internal, Stereotype.local_logging, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1890881203 + }, { + "message" : "Incoming: Stereotype.logging_server, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.internal, Stereotype.local_logging, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1890881203 + }, { + "message" : "Propagated: Stereotype.search_engine, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.logging_server, Stereotype.internal, Stereotype.local_logging, Stereotype.jdbc", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 2072945115 + }, { + "message" : "Incoming: Stereotype.logging_server, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.internal, Stereotype.local_logging, Stereotype.jdbc", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 2072945115 + }, { + "message" : "Propagated: Stereotype.search_engine, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.logging_server, Stereotype.internal, Stereotype.local_logging, Stereotype.gateway, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 177279387 + }, { + "message" : "Incoming: Stereotype.logging_server, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.internal, Stereotype.local_logging, Stereotype.gateway, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 177279387 + }, { + "message" : "Propagated: Stereotype.search_engine, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.logging_server, Stereotype.internal, Stereotype.local_logging, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1997028929 + }, { + "message" : "Incoming: Stereotype.logging_server, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.internal, Stereotype.local_logging, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1997028929 + }, { + "message" : "Propagated: Stereotype.search_engine, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.logging_server, Stereotype.internal, Stereotype.local_logging, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleservicetwo, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 589166341 + }, { + "message" : "Incoming: Stereotype.logging_server, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.internal, Stereotype.local_logging, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleservicetwo, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 589166341 + }, { + "message" : "Propagated: Stereotype.search_engine, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.logging_server, Stereotype.internal, Stereotype.local_logging, Stereotype.jdbc, Stereotype.plaintext_credentials_link, Username.servicetwo, Password.servicetwo", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 756222660 + }, { + "message" : "Incoming: Stereotype.logging_server, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.internal, Stereotype.local_logging, Stereotype.jdbc, Stereotype.plaintext_credentials_link, Username.servicetwo, Password.servicetwo", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 756222660 + }, { + "message" : "Propagated: Stereotype.search_engine, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.logging_server, Stereotype.internal, Stereotype.local_logging, Stereotype.gateway, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 789367604 + }, { + "message" : "Incoming: Stereotype.logging_server, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.internal, Stereotype.local_logging, Stereotype.gateway, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 789367604 + }, { + "message" : "Propagated: Stereotype.search_engine, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.logging_server, Stereotype.internal, Stereotype.local_logging, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 423629474 + }, { + "message" : "Incoming: Stereotype.logging_server, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.internal, Stereotype.local_logging, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 423629474 + }, { + "message" : "Propagated: Stereotype.search_engine, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.logging_server, Stereotype.internal, Stereotype.local_logging, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleservicetwo, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1428777808 + }, { + "message" : "Incoming: Stereotype.logging_server, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.internal, Stereotype.local_logging, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleservicetwo, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1428777808 + }, { + "message" : "Propagated: Stereotype.search_engine, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.logging_server, Stereotype.internal, Stereotype.local_logging, Stereotype.jdbc, Stereotype.plaintext_credentials_link, Username.servicetwo, Password.servicetwo", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1616453147 + }, { + "message" : "Incoming: Stereotype.logging_server, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.internal, Stereotype.local_logging, Stereotype.jdbc, Stereotype.plaintext_credentials_link, Username.servicetwo, Password.servicetwo", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1616453147 + }, { + "message" : "Propagated: Stereotype.search_engine, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.logging_server, Stereotype.internal, Stereotype.local_logging, Stereotype.gateway, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 700791887 + }, { + "message" : "Incoming: Stereotype.logging_server, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.internal, Stereotype.local_logging, Stereotype.gateway, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 700791887 + }, { + "message" : "Propagated: Stereotype.search_engine, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.logging_server, Stereotype.internal, Stereotype.local_logging, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 805957335 + }, { + "message" : "Incoming: Stereotype.logging_server, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.internal, Stereotype.local_logging, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 805957335 + }, { + "message" : "Propagated: Stereotype.search_engine, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.logging_server, Stereotype.internal, Stereotype.local_logging, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 786722925 + }, { + "message" : "Incoming: Stereotype.logging_server, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.internal, Stereotype.local_logging, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 786722925 + }, { + "message" : "Propagated: Stereotype.search_engine, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.logging_server, Stereotype.internal, Stereotype.local_logging, Stereotype.jdbc", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 107285100 + }, { + "message" : "Incoming: Stereotype.logging_server, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.internal, Stereotype.local_logging, Stereotype.jdbc", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 107285100 + }, { + "message" : "Propagated: Stereotype.search_engine, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.logging_server, Stereotype.internal, Stereotype.local_logging, Stereotype.gateway, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 105019819 + }, { + "message" : "Incoming: Stereotype.logging_server, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.internal, Stereotype.local_logging, Stereotype.gateway, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 105019819 + }, { + "message" : "Propagated: Stereotype.search_engine, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.logging_server, Stereotype.internal, Stereotype.local_logging, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 2034385122 + }, { + "message" : "Incoming: Stereotype.logging_server, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.internal, Stereotype.local_logging, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 2034385122 + }, { + "message" : "Propagated: Stereotype.search_engine, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.logging_server, Stereotype.internal, Stereotype.local_logging, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1957175487 + }, { + "message" : "Incoming: Stereotype.logging_server, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.internal, Stereotype.local_logging, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1957175487 + }, { + "message" : "Propagated: Stereotype.search_engine, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.logging_server, Stereotype.internal, Stereotype.local_logging, Stereotype.jdbc", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1513124396 + }, { + "message" : "Incoming: Stereotype.logging_server, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.internal, Stereotype.local_logging, Stereotype.jdbc", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1513124396 + }, { + "message" : "Propagated: Stereotype.search_engine, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.logging_server, Stereotype.internal, Stereotype.local_logging, Stereotype.gateway, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1328203744 + }, { + "message" : "Incoming: Stereotype.logging_server, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.internal, Stereotype.local_logging, Stereotype.gateway, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1328203744 + }, { + "message" : "Propagated: Stereotype.search_engine, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.logging_server, Stereotype.internal, Stereotype.local_logging, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 612686775 + }, { + "message" : "Incoming: Stereotype.logging_server, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.internal, Stereotype.local_logging, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 612686775 + }, { + "message" : "Propagated: Stereotype.search_engine, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.logging_server, Stereotype.internal, Stereotype.local_logging, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleservicetwo, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 287095360 + }, { + "message" : "Incoming: Stereotype.logging_server, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.internal, Stereotype.local_logging, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleservicetwo, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 287095360 + }, { + "message" : "Propagated: Stereotype.search_engine, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.logging_server, Stereotype.internal, Stereotype.local_logging, Stereotype.jdbc, Stereotype.plaintext_credentials_link, Username.servicetwo, Password.servicetwo", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1222908765 + }, { + "message" : "Incoming: Stereotype.logging_server, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.internal, Stereotype.local_logging, Stereotype.jdbc, Stereotype.plaintext_credentials_link, Username.servicetwo, Password.servicetwo", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1222908765 + }, { + "message" : "Propagated: Stereotype.search_engine, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.logging_server, Stereotype.internal, Stereotype.local_logging, Stereotype.gateway, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1374212198 + }, { + "message" : "Incoming: Stereotype.logging_server, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.internal, Stereotype.local_logging, Stereotype.gateway, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1374212198 + }, { + "message" : "Propagated: Stereotype.search_engine, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.logging_server, Stereotype.internal, Stereotype.local_logging, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1395912847 + }, { + "message" : "Incoming: Stereotype.logging_server, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.internal, Stereotype.local_logging, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1395912847 + }, { + "message" : "Propagated: Stereotype.search_engine, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.logging_server, Stereotype.internal, Stereotype.local_logging, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleservicetwo, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 663326227 + }, { + "message" : "Incoming: Stereotype.logging_server, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.internal, Stereotype.local_logging, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleservicetwo, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 663326227 + }, { + "message" : "Propagated: Stereotype.search_engine, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.logging_server, Stereotype.internal, Stereotype.local_logging, Stereotype.jdbc, Stereotype.plaintext_credentials_link, Username.servicetwo, Password.servicetwo", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1331644236 + }, { + "message" : "Incoming: Stereotype.logging_server, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.internal, Stereotype.local_logging, Stereotype.jdbc, Stereotype.plaintext_credentials_link, Username.servicetwo, Password.servicetwo", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1331644236 + }, { + "message" : "Propagated: Stereotype.search_engine, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.logging_server, Stereotype.internal, Stereotype.local_logging, Stereotype.gateway, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1487131937 + }, { + "message" : "Incoming: Stereotype.logging_server, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.internal, Stereotype.local_logging, Stereotype.gateway, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1487131937 + }, { + "message" : "Propagated: Stereotype.search_engine, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.logging_server, Stereotype.internal, Stereotype.local_logging, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 349757746 + }, { + "message" : "Incoming: Stereotype.logging_server, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.internal, Stereotype.local_logging, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 349757746 + }, { + "message" : "Propagated: Stereotype.search_engine, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.logging_server, Stereotype.internal, Stereotype.local_logging, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 2135563436 + }, { + "message" : "Incoming: Stereotype.logging_server, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.internal, Stereotype.local_logging, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 2135563436 + }, { + "message" : "Propagated: Stereotype.search_engine, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.logging_server, Stereotype.internal, Stereotype.local_logging, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1243234606 + }, { + "message" : "Incoming: Stereotype.logging_server, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.internal, Stereotype.local_logging, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1243234606 + }, { + "message" : "Propagated: Stereotype.search_engine, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.logging_server, Stereotype.internal, Stereotype.local_logging, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 206999441 + }, { + "message" : "Incoming: Stereotype.logging_server, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.internal, Stereotype.local_logging, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 206999441 + }, { + "message" : "Propagated: Stereotype.search_engine, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.logging_server, Stereotype.internal, Stereotype.local_logging, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1607745112 + }, { + "message" : "Incoming: Stereotype.logging_server, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.internal, Stereotype.local_logging, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1607745112 + }, { + "message" : "Propagated: Stereotype.search_engine, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.logging_server, Stereotype.internal, Stereotype.local_logging, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1893004914 + }, { + "message" : "Incoming: Stereotype.logging_server, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.internal, Stereotype.local_logging, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1893004914 + }, { + "message" : "Propagated: Stereotype.search_engine, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.logging_server, Stereotype.internal, Stereotype.local_logging, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1759500919 + }, { + "message" : "Incoming: Stereotype.logging_server, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.internal, Stereotype.local_logging, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1759500919 + }, { + "message" : "Propagated: Stereotype.search_engine, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.logging_server, Stereotype.internal, Stereotype.local_logging, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1355676410 + }, { + "message" : "Incoming: Stereotype.logging_server, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.internal, Stereotype.local_logging, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1355676410 + }, { + "message" : "Propagated: Stereotype.search_engine, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.logging_server, Stereotype.internal, Stereotype.local_logging, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 518261596 + }, { + "message" : "Incoming: Stereotype.logging_server, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.internal, Stereotype.local_logging, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 518261596 + }, { + "message" : "Propagated: Stereotype.search_engine, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.logging_server, Stereotype.internal, Stereotype.local_logging, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 96749807 + }, { + "message" : "Incoming: Stereotype.logging_server, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.internal, Stereotype.local_logging, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 96749807 + }, { + "message" : "Propagated: Stereotype.search_engine, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.logging_server, Stereotype.internal, Stereotype.local_logging, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1883144272 + }, { + "message" : "Incoming: Stereotype.logging_server, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.internal, Stereotype.local_logging, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1883144272 + }, { + "message" : "Propagated: Stereotype.search_engine, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.logging_server, Stereotype.internal, Stereotype.local_logging, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1237443220 + }, { + "message" : "Incoming: Stereotype.logging_server, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.internal, Stereotype.local_logging, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1237443220 + } ], + "children" : [ ], + "position" : { + "x" : 0.0, + "y" : 0.0 + }, + "size" : null + }, { + "text" : "elasticsearch_1", + "id" : "_UWx9i_unEfCYrdfxNyUhUA", + "type" : "node:function", + "labels" : [ { + "labelTypeId" : "17", + "labelTypeValueId" : "43" + }, { + "labelTypeId" : "17", + "labelTypeValueId" : "27" + }, { + "labelTypeId" : "44", + "labelTypeValueId" : "45" + }, { + "labelTypeId" : "22", + "labelTypeValueId" : "46" + } ], + "ports" : [ { + "id" : "_UWx9jfunEfCYrdfxNyUhUA", + "type" : "port:dfd-input", + "children" : [ ] + }, { + "behavior" : "assign Stereotype.search_engine,Stereotype.infrastructural,Stereotype.restful_http if TRUE\nforward logstash_1|logstash_1-0", + "id" : "_UWx9jvunEfCYrdfxNyUhUA", + "type" : "port:dfd-output", + "children" : [ ] + }, { + "behavior" : "assign Stereotype.search_engine,Stereotype.infrastructural,Stereotype.restful_http if TRUE\nforward logstash_1|logstash_1-0", + "id" : "_UWx9j_unEfCYrdfxNyUhUA", + "type" : "port:dfd-output", + "children" : [ ] + }, { + "behavior" : "assign Stereotype.search_engine,Stereotype.infrastructural,Stereotype.restful_http if TRUE\nforward logstash_1|logstash_1-0", + "id" : "_UWx_EfunEfCYrdfxNyUhUA", + "type" : "port:dfd-output", + "children" : [ ] + }, { + "behavior" : "assign Stereotype.search_engine,Stereotype.infrastructural,Stereotype.restful_http if TRUE\nforward logstash_1|logstash_1-0", + "id" : "_UWx_gfunEfCYrdfxNyUhUA", + "type" : "port:dfd-output", + "children" : [ ] + } ], + "annotations" : [ { + "message" : "Propagated: Stereotype.search_engine, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.logging_server, Stereotype.internal, Stereotype.local_logging, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 2014406233 + }, { + "message" : "Incoming: Stereotype.logging_server, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.internal, Stereotype.local_logging, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 2014406233 + }, { + "message" : "Propagated: Stereotype.search_engine, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.logging_server, Stereotype.internal, Stereotype.local_logging, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1898870910 + }, { + "message" : "Incoming: Stereotype.logging_server, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.internal, Stereotype.local_logging, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1898870910 + }, { + "message" : "Propagated: Stereotype.search_engine, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.logging_server, Stereotype.internal, Stereotype.local_logging, Stereotype.jdbc", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1407858699 + }, { + "message" : "Incoming: Stereotype.logging_server, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.internal, Stereotype.local_logging, Stereotype.jdbc", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1407858699 + }, { + "message" : "Propagated: Stereotype.search_engine, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.logging_server, Stereotype.internal, Stereotype.local_logging, Stereotype.gateway, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1468809177 + }, { + "message" : "Incoming: Stereotype.logging_server, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.internal, Stereotype.local_logging, Stereotype.gateway, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1468809177 + }, { + "message" : "Propagated: Stereotype.search_engine, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.logging_server, Stereotype.internal, Stereotype.local_logging, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 610056415 + }, { + "message" : "Incoming: Stereotype.logging_server, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.internal, Stereotype.local_logging, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 610056415 + }, { + "message" : "Propagated: Stereotype.search_engine, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.logging_server, Stereotype.internal, Stereotype.local_logging, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 649316770 + }, { + "message" : "Incoming: Stereotype.logging_server, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.internal, Stereotype.local_logging, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 649316770 + }, { + "message" : "Propagated: Stereotype.search_engine, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.logging_server, Stereotype.internal, Stereotype.local_logging, Stereotype.jdbc", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 605787935 + }, { + "message" : "Incoming: Stereotype.logging_server, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.internal, Stereotype.local_logging, Stereotype.jdbc", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 605787935 + }, { + "message" : "Propagated: Stereotype.search_engine, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.logging_server, Stereotype.internal, Stereotype.local_logging, Stereotype.gateway, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 308221618 + }, { + "message" : "Incoming: Stereotype.logging_server, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.internal, Stereotype.local_logging, Stereotype.gateway, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 308221618 + }, { + "message" : "Propagated: Stereotype.search_engine, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.logging_server, Stereotype.internal, Stereotype.local_logging, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1401212518 + }, { + "message" : "Incoming: Stereotype.logging_server, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.internal, Stereotype.local_logging, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1401212518 + }, { + "message" : "Propagated: Stereotype.search_engine, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.logging_server, Stereotype.internal, Stereotype.local_logging, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleservicetwo, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1799545709 + }, { + "message" : "Incoming: Stereotype.logging_server, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.internal, Stereotype.local_logging, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleservicetwo, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1799545709 + }, { + "message" : "Propagated: Stereotype.search_engine, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.logging_server, Stereotype.internal, Stereotype.local_logging, Stereotype.jdbc, Stereotype.plaintext_credentials_link, Username.servicetwo, Password.servicetwo", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 320414325 + }, { + "message" : "Incoming: Stereotype.logging_server, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.internal, Stereotype.local_logging, Stereotype.jdbc, Stereotype.plaintext_credentials_link, Username.servicetwo, Password.servicetwo", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 320414325 + }, { + "message" : "Propagated: Stereotype.search_engine, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.logging_server, Stereotype.internal, Stereotype.local_logging, Stereotype.gateway, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 2031705122 + }, { + "message" : "Incoming: Stereotype.logging_server, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.internal, Stereotype.local_logging, Stereotype.gateway, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 2031705122 + }, { + "message" : "Propagated: Stereotype.search_engine, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.logging_server, Stereotype.internal, Stereotype.local_logging, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 211507865 + }, { + "message" : "Incoming: Stereotype.logging_server, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.internal, Stereotype.local_logging, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 211507865 + }, { + "message" : "Propagated: Stereotype.search_engine, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.logging_server, Stereotype.internal, Stereotype.local_logging, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleservicetwo, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1891535340 + }, { + "message" : "Incoming: Stereotype.logging_server, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.internal, Stereotype.local_logging, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleservicetwo, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1891535340 + }, { + "message" : "Propagated: Stereotype.search_engine, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.logging_server, Stereotype.internal, Stereotype.local_logging, Stereotype.jdbc, Stereotype.plaintext_credentials_link, Username.servicetwo, Password.servicetwo", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 720242436 + }, { + "message" : "Incoming: Stereotype.logging_server, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.internal, Stereotype.local_logging, Stereotype.jdbc, Stereotype.plaintext_credentials_link, Username.servicetwo, Password.servicetwo", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 720242436 + }, { + "message" : "Propagated: Stereotype.search_engine, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.logging_server, Stereotype.internal, Stereotype.local_logging, Stereotype.gateway, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 430290487 + }, { + "message" : "Incoming: Stereotype.logging_server, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.internal, Stereotype.local_logging, Stereotype.gateway, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 430290487 + }, { + "message" : "Propagated: Stereotype.search_engine, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.logging_server, Stereotype.internal, Stereotype.local_logging, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1329362952 + }, { + "message" : "Incoming: Stereotype.logging_server, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.internal, Stereotype.local_logging, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1329362952 + }, { + "message" : "Propagated: Stereotype.search_engine, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.logging_server, Stereotype.internal, Stereotype.local_logging, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1263102442 + }, { + "message" : "Incoming: Stereotype.logging_server, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.internal, Stereotype.local_logging, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1263102442 + }, { + "message" : "Propagated: Stereotype.search_engine, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.logging_server, Stereotype.internal, Stereotype.local_logging, Stereotype.jdbc", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 298156448 + }, { + "message" : "Incoming: Stereotype.logging_server, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.internal, Stereotype.local_logging, Stereotype.jdbc", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 298156448 + }, { + "message" : "Propagated: Stereotype.search_engine, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.logging_server, Stereotype.internal, Stereotype.local_logging, Stereotype.gateway, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 627411361 + }, { + "message" : "Incoming: Stereotype.logging_server, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.internal, Stereotype.local_logging, Stereotype.gateway, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 627411361 + }, { + "message" : "Propagated: Stereotype.search_engine, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.logging_server, Stereotype.internal, Stereotype.local_logging, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 154487101 + }, { + "message" : "Incoming: Stereotype.logging_server, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.internal, Stereotype.local_logging, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 154487101 + }, { + "message" : "Propagated: Stereotype.search_engine, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.logging_server, Stereotype.internal, Stereotype.local_logging, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 162752456 + }, { + "message" : "Incoming: Stereotype.logging_server, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.internal, Stereotype.local_logging, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 162752456 + }, { + "message" : "Propagated: Stereotype.search_engine, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.logging_server, Stereotype.internal, Stereotype.local_logging, Stereotype.jdbc", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 885403615 + }, { + "message" : "Incoming: Stereotype.logging_server, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.internal, Stereotype.local_logging, Stereotype.jdbc", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 885403615 + }, { + "message" : "Propagated: Stereotype.search_engine, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.logging_server, Stereotype.internal, Stereotype.local_logging, Stereotype.gateway, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1038585959 + }, { + "message" : "Incoming: Stereotype.logging_server, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.internal, Stereotype.local_logging, Stereotype.gateway, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1038585959 + }, { + "message" : "Propagated: Stereotype.search_engine, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.logging_server, Stereotype.internal, Stereotype.local_logging, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 515398215 + }, { + "message" : "Incoming: Stereotype.logging_server, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.internal, Stereotype.local_logging, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 515398215 + }, { + "message" : "Propagated: Stereotype.search_engine, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.logging_server, Stereotype.internal, Stereotype.local_logging, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleservicetwo, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 212329343 + }, { + "message" : "Incoming: Stereotype.logging_server, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.internal, Stereotype.local_logging, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleservicetwo, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 212329343 + }, { + "message" : "Propagated: Stereotype.search_engine, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.logging_server, Stereotype.internal, Stereotype.local_logging, Stereotype.jdbc, Stereotype.plaintext_credentials_link, Username.servicetwo, Password.servicetwo", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 161123811 + }, { + "message" : "Incoming: Stereotype.logging_server, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.internal, Stereotype.local_logging, Stereotype.jdbc, Stereotype.plaintext_credentials_link, Username.servicetwo, Password.servicetwo", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 161123811 + }, { + "message" : "Propagated: Stereotype.search_engine, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.logging_server, Stereotype.internal, Stereotype.local_logging, Stereotype.gateway, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 142561311 + }, { + "message" : "Incoming: Stereotype.logging_server, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.internal, Stereotype.local_logging, Stereotype.gateway, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 142561311 + }, { + "message" : "Propagated: Stereotype.search_engine, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.logging_server, Stereotype.internal, Stereotype.local_logging, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1414093109 + }, { + "message" : "Incoming: Stereotype.logging_server, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.internal, Stereotype.local_logging, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1414093109 + }, { + "message" : "Propagated: Stereotype.search_engine, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.logging_server, Stereotype.internal, Stereotype.local_logging, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleservicetwo, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1741092056 + }, { + "message" : "Incoming: Stereotype.logging_server, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.internal, Stereotype.local_logging, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleservicetwo, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1741092056 + }, { + "message" : "Propagated: Stereotype.search_engine, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.logging_server, Stereotype.internal, Stereotype.local_logging, Stereotype.jdbc, Stereotype.plaintext_credentials_link, Username.servicetwo, Password.servicetwo", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 980326486 + }, { + "message" : "Incoming: Stereotype.logging_server, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.internal, Stereotype.local_logging, Stereotype.jdbc, Stereotype.plaintext_credentials_link, Username.servicetwo, Password.servicetwo", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 980326486 + }, { + "message" : "Propagated: Stereotype.search_engine, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.logging_server, Stereotype.internal, Stereotype.local_logging, Stereotype.gateway, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1214498988 + }, { + "message" : "Incoming: Stereotype.logging_server, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.internal, Stereotype.local_logging, Stereotype.gateway, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1214498988 + }, { + "message" : "Propagated: Stereotype.search_engine, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.logging_server, Stereotype.internal, Stereotype.local_logging, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1459462244 + }, { + "message" : "Incoming: Stereotype.logging_server, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.internal, Stereotype.local_logging, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1459462244 + }, { + "message" : "Propagated: Stereotype.search_engine, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.logging_server, Stereotype.internal, Stereotype.local_logging, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 114159191 + }, { + "message" : "Incoming: Stereotype.logging_server, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.internal, Stereotype.local_logging, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 114159191 + }, { + "message" : "Propagated: Stereotype.search_engine, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.logging_server, Stereotype.internal, Stereotype.local_logging, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1211071216 + }, { + "message" : "Incoming: Stereotype.logging_server, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.internal, Stereotype.local_logging, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1211071216 + }, { + "message" : "Propagated: Stereotype.search_engine, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.logging_server, Stereotype.internal, Stereotype.local_logging, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 517991921 + }, { + "message" : "Incoming: Stereotype.logging_server, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.internal, Stereotype.local_logging, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 517991921 + }, { + "message" : "Propagated: Stereotype.search_engine, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.logging_server, Stereotype.internal, Stereotype.local_logging, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 622497998 + }, { + "message" : "Incoming: Stereotype.logging_server, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.internal, Stereotype.local_logging, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 622497998 + }, { + "message" : "Propagated: Stereotype.search_engine, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.logging_server, Stereotype.internal, Stereotype.local_logging, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1280081260 + }, { + "message" : "Incoming: Stereotype.logging_server, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.internal, Stereotype.local_logging, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1280081260 + }, { + "message" : "Propagated: Stereotype.search_engine, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.logging_server, Stereotype.internal, Stereotype.local_logging, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 2131191535 + }, { + "message" : "Incoming: Stereotype.logging_server, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.internal, Stereotype.local_logging, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 2131191535 + }, { + "message" : "Propagated: Stereotype.search_engine, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.logging_server, Stereotype.internal, Stereotype.local_logging, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 509000859 + }, { + "message" : "Incoming: Stereotype.logging_server, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.internal, Stereotype.local_logging, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 509000859 + }, { + "message" : "Propagated: Stereotype.search_engine, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.logging_server, Stereotype.internal, Stereotype.local_logging, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 350703813 + }, { + "message" : "Incoming: Stereotype.logging_server, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.internal, Stereotype.local_logging, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 350703813 + }, { + "message" : "Propagated: Stereotype.search_engine, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.logging_server, Stereotype.internal, Stereotype.local_logging, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 607123271 + }, { + "message" : "Incoming: Stereotype.logging_server, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.internal, Stereotype.local_logging, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 607123271 + }, { + "message" : "Propagated: Stereotype.search_engine, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.logging_server, Stereotype.internal, Stereotype.local_logging, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1395259059 + }, { + "message" : "Incoming: Stereotype.logging_server, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.internal, Stereotype.local_logging, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1395259059 + }, { + "message" : "Propagated: Stereotype.search_engine, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.logging_server, Stereotype.internal, Stereotype.local_logging, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1501382858 + }, { + "message" : "Incoming: Stereotype.logging_server, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.internal, Stereotype.local_logging, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1501382858 + } ], + "children" : [ ], + "position" : { + "x" : 0.0, + "y" : 0.0 + }, + "size" : null + }, { + "text" : "logstash_0", + "id" : "_UWx9lvunEfCYrdfxNyUhUA", + "type" : "node:function", + "labels" : [ { + "labelTypeId" : "17", + "labelTypeValueId" : "26" + }, { + "labelTypeId" : "17", + "labelTypeValueId" : "27" + }, { + "labelTypeId" : "22", + "labelTypeValueId" : "28" + }, { + "labelTypeId" : "29", + "labelTypeValueId" : "30" + } ], + "ports" : [ { + "id" : "_UWx9mPunEfCYrdfxNyUhUA", + "type" : "port:dfd-input", + "children" : [ ] + }, { + "behavior" : "assign Stereotype.logging_server,Stereotype.infrastructural,Stereotype.restful_http if TRUE\nforward service_one_0|service_one_0-0|service_two_0|service_two_0-0", + "id" : "_UWx9mfunEfCYrdfxNyUhUA", + "type" : "port:dfd-output", + "children" : [ ] + }, { + "behavior" : "assign Stereotype.logging_server,Stereotype.infrastructural,Stereotype.restful_http if TRUE\nforward service_one_0|service_one_0-0|service_two_0|service_two_0-0", + "id" : "_UWx9mvunEfCYrdfxNyUhUA", + "type" : "port:dfd-output", + "children" : [ ] + }, { + "behavior" : "assign Stereotype.logging_server,Stereotype.infrastructural,Stereotype.restful_http if TRUE\nforward service_one_0|service_one_0-0|service_two_0|service_two_0-0", + "id" : "_UWx_C_unEfCYrdfxNyUhUA", + "type" : "port:dfd-output", + "children" : [ ] + }, { + "behavior" : "assign Stereotype.logging_server,Stereotype.infrastructural,Stereotype.restful_http if TRUE\nforward service_one_0|service_one_0-0|service_two_0|service_two_0-0", + "id" : "_UWx_g_unEfCYrdfxNyUhUA", + "type" : "port:dfd-output", + "children" : [ ] + } ], + "annotations" : [ { + "message" : "Propagated: Stereotype.logging_server, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.internal, Stereotype.local_logging, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1159606185 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.service_discovery, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1159606185 + }, { + "message" : "Propagated: Stereotype.logging_server, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.internal, Stereotype.local_logging, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1233049719 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1233049719 + }, { + "message" : "Propagated: Stereotype.logging_server, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.internal, Stereotype.local_logging, Stereotype.jdbc", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1018618094 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.jdbc", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1018618094 + }, { + "message" : "Propagated: Stereotype.logging_server, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.internal, Stereotype.local_logging, Stereotype.gateway, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 2069971440 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 2069971440 + }, { + "message" : "Propagated: Stereotype.logging_server, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.internal, Stereotype.local_logging, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1337346642 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.service_discovery, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1337346642 + }, { + "message" : "Propagated: Stereotype.logging_server, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.internal, Stereotype.local_logging, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1890881203 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1890881203 + }, { + "message" : "Propagated: Stereotype.logging_server, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.internal, Stereotype.local_logging, Stereotype.jdbc", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 2072945115 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.jdbc", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 2072945115 + }, { + "message" : "Propagated: Stereotype.logging_server, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.internal, Stereotype.local_logging, Stereotype.gateway, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 177279387 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 177279387 + }, { + "message" : "Propagated: Stereotype.logging_server, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.internal, Stereotype.local_logging, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1997028929 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.service_discovery, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1997028929 + }, { + "message" : "Propagated: Stereotype.logging_server, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.internal, Stereotype.local_logging, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleservicetwo, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 589166341 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleservicetwo, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 589166341 + }, { + "message" : "Propagated: Stereotype.logging_server, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.internal, Stereotype.local_logging, Stereotype.jdbc, Stereotype.plaintext_credentials_link, Username.servicetwo, Password.servicetwo", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 756222660 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.jdbc, Stereotype.plaintext_credentials_link, Username.servicetwo, Password.servicetwo", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 756222660 + }, { + "message" : "Propagated: Stereotype.logging_server, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.internal, Stereotype.local_logging, Stereotype.gateway, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 789367604 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 789367604 + }, { + "message" : "Propagated: Stereotype.logging_server, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.internal, Stereotype.local_logging, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 423629474 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.service_discovery, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 423629474 + }, { + "message" : "Propagated: Stereotype.logging_server, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.internal, Stereotype.local_logging, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleservicetwo, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1428777808 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleservicetwo, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1428777808 + }, { + "message" : "Propagated: Stereotype.logging_server, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.internal, Stereotype.local_logging, Stereotype.jdbc, Stereotype.plaintext_credentials_link, Username.servicetwo, Password.servicetwo", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1616453147 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.jdbc, Stereotype.plaintext_credentials_link, Username.servicetwo, Password.servicetwo", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1616453147 + }, { + "message" : "Propagated: Stereotype.logging_server, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.internal, Stereotype.local_logging, Stereotype.gateway, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 700791887 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 700791887 + }, { + "message" : "Propagated: Stereotype.logging_server, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.internal, Stereotype.local_logging, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 805957335 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.service_discovery, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 805957335 + }, { + "message" : "Propagated: Stereotype.logging_server, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.internal, Stereotype.local_logging, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 786722925 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 786722925 + }, { + "message" : "Propagated: Stereotype.logging_server, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.internal, Stereotype.local_logging, Stereotype.jdbc", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 107285100 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.jdbc", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 107285100 + }, { + "message" : "Propagated: Stereotype.logging_server, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.internal, Stereotype.local_logging, Stereotype.gateway, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 105019819 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 105019819 + }, { + "message" : "Propagated: Stereotype.logging_server, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.internal, Stereotype.local_logging, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 2034385122 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.service_discovery, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 2034385122 + }, { + "message" : "Propagated: Stereotype.logging_server, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.internal, Stereotype.local_logging, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1957175487 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1957175487 + }, { + "message" : "Propagated: Stereotype.logging_server, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.internal, Stereotype.local_logging, Stereotype.jdbc", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1513124396 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.jdbc", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1513124396 + }, { + "message" : "Propagated: Stereotype.logging_server, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.internal, Stereotype.local_logging, Stereotype.gateway, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1328203744 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1328203744 + }, { + "message" : "Propagated: Stereotype.logging_server, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.internal, Stereotype.local_logging, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 612686775 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.service_discovery, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 612686775 + }, { + "message" : "Propagated: Stereotype.logging_server, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.internal, Stereotype.local_logging, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleservicetwo, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 287095360 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleservicetwo, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 287095360 + }, { + "message" : "Propagated: Stereotype.logging_server, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.internal, Stereotype.local_logging, Stereotype.jdbc, Stereotype.plaintext_credentials_link, Username.servicetwo, Password.servicetwo", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1222908765 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.jdbc, Stereotype.plaintext_credentials_link, Username.servicetwo, Password.servicetwo", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1222908765 + }, { + "message" : "Propagated: Stereotype.logging_server, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.internal, Stereotype.local_logging, Stereotype.gateway, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1374212198 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1374212198 + }, { + "message" : "Propagated: Stereotype.logging_server, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.internal, Stereotype.local_logging, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1395912847 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.service_discovery, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1395912847 + }, { + "message" : "Propagated: Stereotype.logging_server, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.internal, Stereotype.local_logging, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleservicetwo, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 663326227 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleservicetwo, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 663326227 + }, { + "message" : "Propagated: Stereotype.logging_server, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.internal, Stereotype.local_logging, Stereotype.jdbc, Stereotype.plaintext_credentials_link, Username.servicetwo, Password.servicetwo", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1331644236 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.jdbc, Stereotype.plaintext_credentials_link, Username.servicetwo, Password.servicetwo", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1331644236 + }, { + "message" : "Propagated: Stereotype.logging_server, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.internal, Stereotype.local_logging, Stereotype.gateway, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1487131937 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1487131937 + }, { + "message" : "Propagated: Stereotype.logging_server, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.internal, Stereotype.local_logging, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 349757746 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.service_discovery, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 349757746 + }, { + "message" : "Propagated: Stereotype.logging_server, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.internal, Stereotype.local_logging, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 2135563436 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.service_discovery, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 2135563436 + }, { + "message" : "Propagated: Stereotype.logging_server, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.internal, Stereotype.local_logging, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1243234606 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.service_discovery, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1243234606 + }, { + "message" : "Propagated: Stereotype.logging_server, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.internal, Stereotype.local_logging, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 206999441 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.service_discovery, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 206999441 + }, { + "message" : "Propagated: Stereotype.logging_server, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.internal, Stereotype.local_logging, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1607745112 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.service_discovery, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1607745112 + }, { + "message" : "Propagated: Stereotype.logging_server, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.internal, Stereotype.local_logging, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1893004914 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.service_discovery, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1893004914 + }, { + "message" : "Propagated: Stereotype.logging_server, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.internal, Stereotype.local_logging, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1759500919 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.service_discovery, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1759500919 + }, { + "message" : "Propagated: Stereotype.logging_server, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.internal, Stereotype.local_logging, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1355676410 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.service_discovery, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1355676410 + }, { + "message" : "Propagated: Stereotype.logging_server, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.internal, Stereotype.local_logging, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 781527109 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.service_discovery, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 781527109 + }, { + "message" : "Propagated: Stereotype.logging_server, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.internal, Stereotype.local_logging, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 2032479363 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.service_discovery, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 2032479363 + }, { + "message" : "Propagated: Stereotype.logging_server, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.internal, Stereotype.local_logging, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1874812338 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.service_discovery, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1874812338 + }, { + "message" : "Propagated: Stereotype.logging_server, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.internal, Stereotype.local_logging, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1352294549 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.service_discovery, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1352294549 + }, { + "message" : "Propagated: Stereotype.logging_server, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.internal, Stereotype.local_logging, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 518261596 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.service_discovery, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 518261596 + }, { + "message" : "Propagated: Stereotype.logging_server, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.internal, Stereotype.local_logging, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 96749807 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.service_discovery, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 96749807 + }, { + "message" : "Propagated: Stereotype.logging_server, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.internal, Stereotype.local_logging, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1883144272 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.service_discovery, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1883144272 + }, { + "message" : "Propagated: Stereotype.logging_server, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.internal, Stereotype.local_logging, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1237443220 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.service_discovery, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1237443220 + }, { + "message" : "Propagated: Stereotype.logging_server, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.internal, Stereotype.local_logging, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 2000793115 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.service_discovery, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 2000793115 + }, { + "message" : "Propagated: Stereotype.logging_server, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.internal, Stereotype.local_logging, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1357185836 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.service_discovery, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1357185836 + }, { + "message" : "Propagated: Stereotype.logging_server, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.internal, Stereotype.local_logging, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1415390560 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.service_discovery, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1415390560 + }, { + "message" : "Propagated: Stereotype.logging_server, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.internal, Stereotype.local_logging, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 307148861 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.service_discovery, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 307148861 + } ], + "children" : [ ], + "position" : { + "x" : 0.0, + "y" : 0.0 + }, + "size" : null + }, { + "text" : "logstash_1", + "id" : "_UWx9ofunEfCYrdfxNyUhUA", + "type" : "node:function", + "labels" : [ { + "labelTypeId" : "17", + "labelTypeValueId" : "26" + }, { + "labelTypeId" : "17", + "labelTypeValueId" : "27" + }, { + "labelTypeId" : "22", + "labelTypeValueId" : "28" + }, { + "labelTypeId" : "29", + "labelTypeValueId" : "30" + } ], + "ports" : [ { + "id" : "_UWx9o_unEfCYrdfxNyUhUA", + "type" : "port:dfd-input", + "children" : [ ] + }, { + "behavior" : "assign Stereotype.logging_server,Stereotype.infrastructural,Stereotype.restful_http if TRUE\nforward service_one_1|service_one_1-0|service_two_1|service_two_1-0", + "id" : "_UWx9pPunEfCYrdfxNyUhUA", + "type" : "port:dfd-output", + "children" : [ ] + }, { + "behavior" : "assign Stereotype.logging_server,Stereotype.infrastructural,Stereotype.restful_http if TRUE\nforward service_one_1|service_one_1-0|service_two_1|service_two_1-0", + "id" : "_UWx9pfunEfCYrdfxNyUhUA", + "type" : "port:dfd-output", + "children" : [ ] + }, { + "behavior" : "assign Stereotype.logging_server,Stereotype.infrastructural,Stereotype.restful_http if TRUE\nforward service_one_1|service_one_1-0|service_two_1|service_two_1-0", + "id" : "_UWx_DfunEfCYrdfxNyUhUA", + "type" : "port:dfd-output", + "children" : [ ] + }, { + "behavior" : "assign Stereotype.logging_server,Stereotype.infrastructural,Stereotype.restful_http if TRUE\nforward service_one_1|service_one_1-0|service_two_1|service_two_1-0", + "id" : "_UWx_hfunEfCYrdfxNyUhUA", + "type" : "port:dfd-output", + "children" : [ ] + } ], + "annotations" : [ { + "message" : "Propagated: Stereotype.logging_server, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.internal, Stereotype.local_logging, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 2014406233 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.service_discovery, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 2014406233 + }, { + "message" : "Propagated: Stereotype.logging_server, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.internal, Stereotype.local_logging, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1898870910 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1898870910 + }, { + "message" : "Propagated: Stereotype.logging_server, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.internal, Stereotype.local_logging, Stereotype.jdbc", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1407858699 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.jdbc", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1407858699 + }, { + "message" : "Propagated: Stereotype.logging_server, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.internal, Stereotype.local_logging, Stereotype.gateway, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1468809177 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1468809177 + }, { + "message" : "Propagated: Stereotype.logging_server, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.internal, Stereotype.local_logging, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 610056415 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.service_discovery, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 610056415 + }, { + "message" : "Propagated: Stereotype.logging_server, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.internal, Stereotype.local_logging, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 649316770 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 649316770 + }, { + "message" : "Propagated: Stereotype.logging_server, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.internal, Stereotype.local_logging, Stereotype.jdbc", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 605787935 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.jdbc", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 605787935 + }, { + "message" : "Propagated: Stereotype.logging_server, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.internal, Stereotype.local_logging, Stereotype.gateway, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 308221618 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 308221618 + }, { + "message" : "Propagated: Stereotype.logging_server, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.internal, Stereotype.local_logging, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1401212518 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.service_discovery, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1401212518 + }, { + "message" : "Propagated: Stereotype.logging_server, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.internal, Stereotype.local_logging, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleservicetwo, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1799545709 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleservicetwo, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1799545709 + }, { + "message" : "Propagated: Stereotype.logging_server, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.internal, Stereotype.local_logging, Stereotype.jdbc, Stereotype.plaintext_credentials_link, Username.servicetwo, Password.servicetwo", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 320414325 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.jdbc, Stereotype.plaintext_credentials_link, Username.servicetwo, Password.servicetwo", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 320414325 + }, { + "message" : "Propagated: Stereotype.logging_server, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.internal, Stereotype.local_logging, Stereotype.gateway, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 2031705122 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 2031705122 + }, { + "message" : "Propagated: Stereotype.logging_server, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.internal, Stereotype.local_logging, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 211507865 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.service_discovery, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 211507865 + }, { + "message" : "Propagated: Stereotype.logging_server, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.internal, Stereotype.local_logging, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleservicetwo, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1891535340 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleservicetwo, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1891535340 + }, { + "message" : "Propagated: Stereotype.logging_server, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.internal, Stereotype.local_logging, Stereotype.jdbc, Stereotype.plaintext_credentials_link, Username.servicetwo, Password.servicetwo", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 720242436 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.jdbc, Stereotype.plaintext_credentials_link, Username.servicetwo, Password.servicetwo", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 720242436 + }, { + "message" : "Propagated: Stereotype.logging_server, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.internal, Stereotype.local_logging, Stereotype.gateway, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 430290487 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 430290487 + }, { + "message" : "Propagated: Stereotype.logging_server, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.internal, Stereotype.local_logging, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1329362952 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.service_discovery, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1329362952 + }, { + "message" : "Propagated: Stereotype.logging_server, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.internal, Stereotype.local_logging, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1263102442 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1263102442 + }, { + "message" : "Propagated: Stereotype.logging_server, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.internal, Stereotype.local_logging, Stereotype.jdbc", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 298156448 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.jdbc", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 298156448 + }, { + "message" : "Propagated: Stereotype.logging_server, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.internal, Stereotype.local_logging, Stereotype.gateway, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 627411361 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 627411361 + }, { + "message" : "Propagated: Stereotype.logging_server, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.internal, Stereotype.local_logging, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 154487101 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.service_discovery, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 154487101 + }, { + "message" : "Propagated: Stereotype.logging_server, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.internal, Stereotype.local_logging, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 162752456 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 162752456 + }, { + "message" : "Propagated: Stereotype.logging_server, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.internal, Stereotype.local_logging, Stereotype.jdbc", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 885403615 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.jdbc", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 885403615 + }, { + "message" : "Propagated: Stereotype.logging_server, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.internal, Stereotype.local_logging, Stereotype.gateway, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1038585959 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1038585959 + }, { + "message" : "Propagated: Stereotype.logging_server, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.internal, Stereotype.local_logging, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 515398215 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.service_discovery, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 515398215 + }, { + "message" : "Propagated: Stereotype.logging_server, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.internal, Stereotype.local_logging, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleservicetwo, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 212329343 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleservicetwo, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 212329343 + }, { + "message" : "Propagated: Stereotype.logging_server, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.internal, Stereotype.local_logging, Stereotype.jdbc, Stereotype.plaintext_credentials_link, Username.servicetwo, Password.servicetwo", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 161123811 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.jdbc, Stereotype.plaintext_credentials_link, Username.servicetwo, Password.servicetwo", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 161123811 + }, { + "message" : "Propagated: Stereotype.logging_server, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.internal, Stereotype.local_logging, Stereotype.gateway, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 142561311 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 142561311 + }, { + "message" : "Propagated: Stereotype.logging_server, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.internal, Stereotype.local_logging, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1414093109 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.service_discovery, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1414093109 + }, { + "message" : "Propagated: Stereotype.logging_server, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.internal, Stereotype.local_logging, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleservicetwo, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1741092056 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleservicetwo, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1741092056 + }, { + "message" : "Propagated: Stereotype.logging_server, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.internal, Stereotype.local_logging, Stereotype.jdbc, Stereotype.plaintext_credentials_link, Username.servicetwo, Password.servicetwo", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 980326486 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.jdbc, Stereotype.plaintext_credentials_link, Username.servicetwo, Password.servicetwo", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 980326486 + }, { + "message" : "Propagated: Stereotype.logging_server, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.internal, Stereotype.local_logging, Stereotype.gateway, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1214498988 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1214498988 + }, { + "message" : "Propagated: Stereotype.logging_server, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.internal, Stereotype.local_logging, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1459462244 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.service_discovery, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1459462244 + }, { + "message" : "Propagated: Stereotype.logging_server, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.internal, Stereotype.local_logging, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 114159191 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.service_discovery, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 114159191 + }, { + "message" : "Propagated: Stereotype.logging_server, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.internal, Stereotype.local_logging, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1211071216 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.service_discovery, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1211071216 + }, { + "message" : "Propagated: Stereotype.logging_server, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.internal, Stereotype.local_logging, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 517991921 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.service_discovery, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 517991921 + }, { + "message" : "Propagated: Stereotype.logging_server, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.internal, Stereotype.local_logging, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 622497998 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.service_discovery, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 622497998 + }, { + "message" : "Propagated: Stereotype.logging_server, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.internal, Stereotype.local_logging, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1280081260 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.service_discovery, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1280081260 + }, { + "message" : "Propagated: Stereotype.logging_server, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.internal, Stereotype.local_logging, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 2131191535 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.service_discovery, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 2131191535 + }, { + "message" : "Propagated: Stereotype.logging_server, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.internal, Stereotype.local_logging, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 509000859 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.service_discovery, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 509000859 + }, { + "message" : "Propagated: Stereotype.logging_server, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.internal, Stereotype.local_logging, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1866191743 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.service_discovery, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1866191743 + }, { + "message" : "Propagated: Stereotype.logging_server, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.internal, Stereotype.local_logging, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1077109993 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.service_discovery, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1077109993 + }, { + "message" : "Propagated: Stereotype.logging_server, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.internal, Stereotype.local_logging, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 71782942 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.service_discovery, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 71782942 + }, { + "message" : "Propagated: Stereotype.logging_server, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.internal, Stereotype.local_logging, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 803116137 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.service_discovery, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 803116137 + }, { + "message" : "Propagated: Stereotype.logging_server, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.internal, Stereotype.local_logging, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 350703813 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.service_discovery, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 350703813 + }, { + "message" : "Propagated: Stereotype.logging_server, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.internal, Stereotype.local_logging, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 607123271 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.service_discovery, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 607123271 + }, { + "message" : "Propagated: Stereotype.logging_server, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.internal, Stereotype.local_logging, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1395259059 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.service_discovery, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1395259059 + }, { + "message" : "Propagated: Stereotype.logging_server, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.internal, Stereotype.local_logging, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1501382858 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.service_discovery, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1501382858 + }, { + "message" : "Propagated: Stereotype.logging_server, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.internal, Stereotype.local_logging, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1999784536 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.service_discovery, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1999784536 + }, { + "message" : "Propagated: Stereotype.logging_server, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.internal, Stereotype.local_logging, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 746327606 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.service_discovery, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 746327606 + }, { + "message" : "Propagated: Stereotype.logging_server, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.internal, Stereotype.local_logging, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 813496676 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.service_discovery, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 813496676 + }, { + "message" : "Propagated: Stereotype.logging_server, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.internal, Stereotype.local_logging, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 57986233 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.service_discovery, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 57986233 + } ], + "children" : [ ], + "position" : { + "x" : 0.0, + "y" : 0.0 + }, + "size" : null + }, { + "text" : "kibana_0", + "id" : "_UWx9rPunEfCYrdfxNyUhUA", + "type" : "node:function", + "labels" : [ { + "labelTypeId" : "17", + "labelTypeValueId" : "69" + }, { + "labelTypeId" : "17", + "labelTypeValueId" : "27" + }, { + "labelTypeId" : "70", + "labelTypeValueId" : "86" + }, { + "labelTypeId" : "22", + "labelTypeValueId" : "87" + } ], + "ports" : [ { + "id" : "_UWx9rvunEfCYrdfxNyUhUA", + "type" : "port:dfd-input", + "children" : [ ] + }, { + "behavior" : "assign Stereotype.monitoring_dashboard,Stereotype.infrastructural,Stereotype.restful_http if TRUE\nforward elasticsearch_0|elasticsearch_0-0", + "id" : "_UWx9r_unEfCYrdfxNyUhUA", + "type" : "port:dfd-output", + "children" : [ ] + }, { + "behavior" : "assign Stereotype.monitoring_dashboard,Stereotype.infrastructural,Stereotype.restful_http if TRUE\nforward elasticsearch_0|elasticsearch_0-0", + "id" : "_UWx_e_unEfCYrdfxNyUhUA", + "type" : "port:dfd-output", + "children" : [ ] + } ], + "annotations" : [ { + "message" : "Propagated: Stereotype.monitoring_dashboard, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.search_engine, Stereotype.logging_server, Stereotype.internal, Stereotype.local_logging, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1159606185 + }, { + "message" : "Incoming: Stereotype.search_engine, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.logging_server, Stereotype.internal, Stereotype.local_logging, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1159606185 + }, { + "message" : "Propagated: Stereotype.monitoring_dashboard, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.search_engine, Stereotype.logging_server, Stereotype.internal, Stereotype.local_logging, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1233049719 + }, { + "message" : "Incoming: Stereotype.search_engine, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.logging_server, Stereotype.internal, Stereotype.local_logging, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1233049719 + }, { + "message" : "Propagated: Stereotype.monitoring_dashboard, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.search_engine, Stereotype.logging_server, Stereotype.internal, Stereotype.local_logging, Stereotype.jdbc", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1018618094 + }, { + "message" : "Incoming: Stereotype.search_engine, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.logging_server, Stereotype.internal, Stereotype.local_logging, Stereotype.jdbc", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1018618094 + }, { + "message" : "Propagated: Stereotype.monitoring_dashboard, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.search_engine, Stereotype.logging_server, Stereotype.internal, Stereotype.local_logging, Stereotype.gateway, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 2069971440 + }, { + "message" : "Incoming: Stereotype.search_engine, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.logging_server, Stereotype.internal, Stereotype.local_logging, Stereotype.gateway, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 2069971440 + }, { + "message" : "Propagated: Stereotype.monitoring_dashboard, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.search_engine, Stereotype.logging_server, Stereotype.internal, Stereotype.local_logging, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1337346642 + }, { + "message" : "Incoming: Stereotype.search_engine, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.logging_server, Stereotype.internal, Stereotype.local_logging, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1337346642 + }, { + "message" : "Propagated: Stereotype.monitoring_dashboard, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.search_engine, Stereotype.logging_server, Stereotype.internal, Stereotype.local_logging, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1890881203 + }, { + "message" : "Incoming: Stereotype.search_engine, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.logging_server, Stereotype.internal, Stereotype.local_logging, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1890881203 + }, { + "message" : "Propagated: Stereotype.monitoring_dashboard, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.search_engine, Stereotype.logging_server, Stereotype.internal, Stereotype.local_logging, Stereotype.jdbc", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 2072945115 + }, { + "message" : "Incoming: Stereotype.search_engine, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.logging_server, Stereotype.internal, Stereotype.local_logging, Stereotype.jdbc", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 2072945115 + }, { + "message" : "Propagated: Stereotype.monitoring_dashboard, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.search_engine, Stereotype.logging_server, Stereotype.internal, Stereotype.local_logging, Stereotype.gateway, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 177279387 + }, { + "message" : "Incoming: Stereotype.search_engine, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.logging_server, Stereotype.internal, Stereotype.local_logging, Stereotype.gateway, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 177279387 + }, { + "message" : "Propagated: Stereotype.monitoring_dashboard, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.search_engine, Stereotype.logging_server, Stereotype.internal, Stereotype.local_logging, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1997028929 + }, { + "message" : "Incoming: Stereotype.search_engine, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.logging_server, Stereotype.internal, Stereotype.local_logging, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1997028929 + }, { + "message" : "Propagated: Stereotype.monitoring_dashboard, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.search_engine, Stereotype.logging_server, Stereotype.internal, Stereotype.local_logging, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleservicetwo, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 589166341 + }, { + "message" : "Incoming: Stereotype.search_engine, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.logging_server, Stereotype.internal, Stereotype.local_logging, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleservicetwo, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 589166341 + }, { + "message" : "Propagated: Stereotype.monitoring_dashboard, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.search_engine, Stereotype.logging_server, Stereotype.internal, Stereotype.local_logging, Stereotype.jdbc, Stereotype.plaintext_credentials_link, Username.servicetwo, Password.servicetwo", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 756222660 + }, { + "message" : "Incoming: Stereotype.search_engine, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.logging_server, Stereotype.internal, Stereotype.local_logging, Stereotype.jdbc, Stereotype.plaintext_credentials_link, Username.servicetwo, Password.servicetwo", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 756222660 + }, { + "message" : "Propagated: Stereotype.monitoring_dashboard, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.search_engine, Stereotype.logging_server, Stereotype.internal, Stereotype.local_logging, Stereotype.gateway, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 789367604 + }, { + "message" : "Incoming: Stereotype.search_engine, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.logging_server, Stereotype.internal, Stereotype.local_logging, Stereotype.gateway, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 789367604 + }, { + "message" : "Propagated: Stereotype.monitoring_dashboard, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.search_engine, Stereotype.logging_server, Stereotype.internal, Stereotype.local_logging, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 423629474 + }, { + "message" : "Incoming: Stereotype.search_engine, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.logging_server, Stereotype.internal, Stereotype.local_logging, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 423629474 + }, { + "message" : "Propagated: Stereotype.monitoring_dashboard, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.search_engine, Stereotype.logging_server, Stereotype.internal, Stereotype.local_logging, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleservicetwo, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1428777808 + }, { + "message" : "Incoming: Stereotype.search_engine, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.logging_server, Stereotype.internal, Stereotype.local_logging, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleservicetwo, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1428777808 + }, { + "message" : "Propagated: Stereotype.monitoring_dashboard, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.search_engine, Stereotype.logging_server, Stereotype.internal, Stereotype.local_logging, Stereotype.jdbc, Stereotype.plaintext_credentials_link, Username.servicetwo, Password.servicetwo", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1616453147 + }, { + "message" : "Incoming: Stereotype.search_engine, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.logging_server, Stereotype.internal, Stereotype.local_logging, Stereotype.jdbc, Stereotype.plaintext_credentials_link, Username.servicetwo, Password.servicetwo", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1616453147 + }, { + "message" : "Propagated: Stereotype.monitoring_dashboard, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.search_engine, Stereotype.logging_server, Stereotype.internal, Stereotype.local_logging, Stereotype.gateway, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 700791887 + }, { + "message" : "Incoming: Stereotype.search_engine, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.logging_server, Stereotype.internal, Stereotype.local_logging, Stereotype.gateway, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 700791887 + }, { + "message" : "Propagated: Stereotype.monitoring_dashboard, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.search_engine, Stereotype.logging_server, Stereotype.internal, Stereotype.local_logging, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 805957335 + }, { + "message" : "Incoming: Stereotype.search_engine, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.logging_server, Stereotype.internal, Stereotype.local_logging, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 805957335 + }, { + "message" : "Propagated: Stereotype.monitoring_dashboard, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.search_engine, Stereotype.logging_server, Stereotype.internal, Stereotype.local_logging, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 786722925 + }, { + "message" : "Incoming: Stereotype.search_engine, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.logging_server, Stereotype.internal, Stereotype.local_logging, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 786722925 + }, { + "message" : "Propagated: Stereotype.monitoring_dashboard, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.search_engine, Stereotype.logging_server, Stereotype.internal, Stereotype.local_logging, Stereotype.jdbc", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 107285100 + }, { + "message" : "Incoming: Stereotype.search_engine, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.logging_server, Stereotype.internal, Stereotype.local_logging, Stereotype.jdbc", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 107285100 + }, { + "message" : "Propagated: Stereotype.monitoring_dashboard, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.search_engine, Stereotype.logging_server, Stereotype.internal, Stereotype.local_logging, Stereotype.gateway, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 105019819 + }, { + "message" : "Incoming: Stereotype.search_engine, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.logging_server, Stereotype.internal, Stereotype.local_logging, Stereotype.gateway, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 105019819 + }, { + "message" : "Propagated: Stereotype.monitoring_dashboard, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.search_engine, Stereotype.logging_server, Stereotype.internal, Stereotype.local_logging, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 2034385122 + }, { + "message" : "Incoming: Stereotype.search_engine, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.logging_server, Stereotype.internal, Stereotype.local_logging, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 2034385122 + }, { + "message" : "Propagated: Stereotype.monitoring_dashboard, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.search_engine, Stereotype.logging_server, Stereotype.internal, Stereotype.local_logging, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1957175487 + }, { + "message" : "Incoming: Stereotype.search_engine, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.logging_server, Stereotype.internal, Stereotype.local_logging, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1957175487 + }, { + "message" : "Propagated: Stereotype.monitoring_dashboard, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.search_engine, Stereotype.logging_server, Stereotype.internal, Stereotype.local_logging, Stereotype.jdbc", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1513124396 + }, { + "message" : "Incoming: Stereotype.search_engine, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.logging_server, Stereotype.internal, Stereotype.local_logging, Stereotype.jdbc", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1513124396 + }, { + "message" : "Propagated: Stereotype.monitoring_dashboard, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.search_engine, Stereotype.logging_server, Stereotype.internal, Stereotype.local_logging, Stereotype.gateway, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1328203744 + }, { + "message" : "Incoming: Stereotype.search_engine, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.logging_server, Stereotype.internal, Stereotype.local_logging, Stereotype.gateway, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1328203744 + }, { + "message" : "Propagated: Stereotype.monitoring_dashboard, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.search_engine, Stereotype.logging_server, Stereotype.internal, Stereotype.local_logging, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 612686775 + }, { + "message" : "Incoming: Stereotype.search_engine, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.logging_server, Stereotype.internal, Stereotype.local_logging, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 612686775 + }, { + "message" : "Propagated: Stereotype.monitoring_dashboard, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.search_engine, Stereotype.logging_server, Stereotype.internal, Stereotype.local_logging, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleservicetwo, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 287095360 + }, { + "message" : "Incoming: Stereotype.search_engine, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.logging_server, Stereotype.internal, Stereotype.local_logging, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleservicetwo, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 287095360 + }, { + "message" : "Propagated: Stereotype.monitoring_dashboard, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.search_engine, Stereotype.logging_server, Stereotype.internal, Stereotype.local_logging, Stereotype.jdbc, Stereotype.plaintext_credentials_link, Username.servicetwo, Password.servicetwo", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1222908765 + }, { + "message" : "Incoming: Stereotype.search_engine, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.logging_server, Stereotype.internal, Stereotype.local_logging, Stereotype.jdbc, Stereotype.plaintext_credentials_link, Username.servicetwo, Password.servicetwo", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1222908765 + }, { + "message" : "Propagated: Stereotype.monitoring_dashboard, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.search_engine, Stereotype.logging_server, Stereotype.internal, Stereotype.local_logging, Stereotype.gateway, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1374212198 + }, { + "message" : "Incoming: Stereotype.search_engine, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.logging_server, Stereotype.internal, Stereotype.local_logging, Stereotype.gateway, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1374212198 + }, { + "message" : "Propagated: Stereotype.monitoring_dashboard, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.search_engine, Stereotype.logging_server, Stereotype.internal, Stereotype.local_logging, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1395912847 + }, { + "message" : "Incoming: Stereotype.search_engine, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.logging_server, Stereotype.internal, Stereotype.local_logging, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1395912847 + }, { + "message" : "Propagated: Stereotype.monitoring_dashboard, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.search_engine, Stereotype.logging_server, Stereotype.internal, Stereotype.local_logging, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleservicetwo, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 663326227 + }, { + "message" : "Incoming: Stereotype.search_engine, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.logging_server, Stereotype.internal, Stereotype.local_logging, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleservicetwo, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 663326227 + }, { + "message" : "Propagated: Stereotype.monitoring_dashboard, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.search_engine, Stereotype.logging_server, Stereotype.internal, Stereotype.local_logging, Stereotype.jdbc, Stereotype.plaintext_credentials_link, Username.servicetwo, Password.servicetwo", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1331644236 + }, { + "message" : "Incoming: Stereotype.search_engine, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.logging_server, Stereotype.internal, Stereotype.local_logging, Stereotype.jdbc, Stereotype.plaintext_credentials_link, Username.servicetwo, Password.servicetwo", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1331644236 + }, { + "message" : "Propagated: Stereotype.monitoring_dashboard, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.search_engine, Stereotype.logging_server, Stereotype.internal, Stereotype.local_logging, Stereotype.gateway, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1487131937 + }, { + "message" : "Incoming: Stereotype.search_engine, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.logging_server, Stereotype.internal, Stereotype.local_logging, Stereotype.gateway, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1487131937 + }, { + "message" : "Propagated: Stereotype.monitoring_dashboard, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.search_engine, Stereotype.logging_server, Stereotype.internal, Stereotype.local_logging, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 349757746 + }, { + "message" : "Incoming: Stereotype.search_engine, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.logging_server, Stereotype.internal, Stereotype.local_logging, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 349757746 + }, { + "message" : "Propagated: Stereotype.monitoring_dashboard, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.search_engine, Stereotype.logging_server, Stereotype.internal, Stereotype.local_logging, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 2135563436 + }, { + "message" : "Incoming: Stereotype.search_engine, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.logging_server, Stereotype.internal, Stereotype.local_logging, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 2135563436 + }, { + "message" : "Propagated: Stereotype.monitoring_dashboard, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.search_engine, Stereotype.logging_server, Stereotype.internal, Stereotype.local_logging, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1243234606 + }, { + "message" : "Incoming: Stereotype.search_engine, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.logging_server, Stereotype.internal, Stereotype.local_logging, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1243234606 + }, { + "message" : "Propagated: Stereotype.monitoring_dashboard, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.search_engine, Stereotype.logging_server, Stereotype.internal, Stereotype.local_logging, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 206999441 + }, { + "message" : "Incoming: Stereotype.search_engine, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.logging_server, Stereotype.internal, Stereotype.local_logging, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 206999441 + }, { + "message" : "Propagated: Stereotype.monitoring_dashboard, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.search_engine, Stereotype.logging_server, Stereotype.internal, Stereotype.local_logging, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1607745112 + }, { + "message" : "Incoming: Stereotype.search_engine, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.logging_server, Stereotype.internal, Stereotype.local_logging, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1607745112 + }, { + "message" : "Propagated: Stereotype.monitoring_dashboard, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.search_engine, Stereotype.logging_server, Stereotype.internal, Stereotype.local_logging, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1893004914 + }, { + "message" : "Incoming: Stereotype.search_engine, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.logging_server, Stereotype.internal, Stereotype.local_logging, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1893004914 + }, { + "message" : "Propagated: Stereotype.monitoring_dashboard, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.search_engine, Stereotype.logging_server, Stereotype.internal, Stereotype.local_logging, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 518261596 + }, { + "message" : "Incoming: Stereotype.search_engine, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.logging_server, Stereotype.internal, Stereotype.local_logging, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 518261596 + }, { + "message" : "Propagated: Stereotype.monitoring_dashboard, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.search_engine, Stereotype.logging_server, Stereotype.internal, Stereotype.local_logging, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 96749807 + }, { + "message" : "Incoming: Stereotype.search_engine, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.logging_server, Stereotype.internal, Stereotype.local_logging, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 96749807 + } ], + "children" : [ ], + "position" : { + "x" : 0.0, + "y" : 0.0 + }, + "size" : null + }, { + "text" : "kibana_1", + "id" : "_UWx9s_unEfCYrdfxNyUhUA", + "type" : "node:function", + "labels" : [ { + "labelTypeId" : "17", + "labelTypeValueId" : "69" + }, { + "labelTypeId" : "17", + "labelTypeValueId" : "27" + }, { + "labelTypeId" : "70", + "labelTypeValueId" : "86" + }, { + "labelTypeId" : "22", + "labelTypeValueId" : "87" + } ], + "ports" : [ { + "id" : "_UWx9tfunEfCYrdfxNyUhUA", + "type" : "port:dfd-input", + "children" : [ ] + }, { + "behavior" : "assign Stereotype.monitoring_dashboard,Stereotype.infrastructural,Stereotype.restful_http if TRUE\nforward elasticsearch_1|elasticsearch_1-0", + "id" : "_UWx9tvunEfCYrdfxNyUhUA", + "type" : "port:dfd-output", + "children" : [ ] + }, { + "behavior" : "assign Stereotype.monitoring_dashboard,Stereotype.infrastructural,Stereotype.restful_http if TRUE\nforward elasticsearch_1|elasticsearch_1-0", + "id" : "_UWx_ffunEfCYrdfxNyUhUA", + "type" : "port:dfd-output", + "children" : [ ] + } ], + "annotations" : [ { + "message" : "Propagated: Stereotype.monitoring_dashboard, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.search_engine, Stereotype.logging_server, Stereotype.internal, Stereotype.local_logging, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 2014406233 + }, { + "message" : "Incoming: Stereotype.search_engine, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.logging_server, Stereotype.internal, Stereotype.local_logging, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 2014406233 + }, { + "message" : "Propagated: Stereotype.monitoring_dashboard, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.search_engine, Stereotype.logging_server, Stereotype.internal, Stereotype.local_logging, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1898870910 + }, { + "message" : "Incoming: Stereotype.search_engine, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.logging_server, Stereotype.internal, Stereotype.local_logging, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1898870910 + }, { + "message" : "Propagated: Stereotype.monitoring_dashboard, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.search_engine, Stereotype.logging_server, Stereotype.internal, Stereotype.local_logging, Stereotype.jdbc", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1407858699 + }, { + "message" : "Incoming: Stereotype.search_engine, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.logging_server, Stereotype.internal, Stereotype.local_logging, Stereotype.jdbc", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1407858699 + }, { + "message" : "Propagated: Stereotype.monitoring_dashboard, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.search_engine, Stereotype.logging_server, Stereotype.internal, Stereotype.local_logging, Stereotype.gateway, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1468809177 + }, { + "message" : "Incoming: Stereotype.search_engine, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.logging_server, Stereotype.internal, Stereotype.local_logging, Stereotype.gateway, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1468809177 + }, { + "message" : "Propagated: Stereotype.monitoring_dashboard, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.search_engine, Stereotype.logging_server, Stereotype.internal, Stereotype.local_logging, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 610056415 + }, { + "message" : "Incoming: Stereotype.search_engine, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.logging_server, Stereotype.internal, Stereotype.local_logging, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 610056415 + }, { + "message" : "Propagated: Stereotype.monitoring_dashboard, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.search_engine, Stereotype.logging_server, Stereotype.internal, Stereotype.local_logging, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 649316770 + }, { + "message" : "Incoming: Stereotype.search_engine, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.logging_server, Stereotype.internal, Stereotype.local_logging, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 649316770 + }, { + "message" : "Propagated: Stereotype.monitoring_dashboard, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.search_engine, Stereotype.logging_server, Stereotype.internal, Stereotype.local_logging, Stereotype.jdbc", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 605787935 + }, { + "message" : "Incoming: Stereotype.search_engine, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.logging_server, Stereotype.internal, Stereotype.local_logging, Stereotype.jdbc", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 605787935 + }, { + "message" : "Propagated: Stereotype.monitoring_dashboard, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.search_engine, Stereotype.logging_server, Stereotype.internal, Stereotype.local_logging, Stereotype.gateway, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 308221618 + }, { + "message" : "Incoming: Stereotype.search_engine, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.logging_server, Stereotype.internal, Stereotype.local_logging, Stereotype.gateway, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 308221618 + }, { + "message" : "Propagated: Stereotype.monitoring_dashboard, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.search_engine, Stereotype.logging_server, Stereotype.internal, Stereotype.local_logging, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1401212518 + }, { + "message" : "Incoming: Stereotype.search_engine, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.logging_server, Stereotype.internal, Stereotype.local_logging, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1401212518 + }, { + "message" : "Propagated: Stereotype.monitoring_dashboard, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.search_engine, Stereotype.logging_server, Stereotype.internal, Stereotype.local_logging, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleservicetwo, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1799545709 + }, { + "message" : "Incoming: Stereotype.search_engine, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.logging_server, Stereotype.internal, Stereotype.local_logging, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleservicetwo, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1799545709 + }, { + "message" : "Propagated: Stereotype.monitoring_dashboard, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.search_engine, Stereotype.logging_server, Stereotype.internal, Stereotype.local_logging, Stereotype.jdbc, Stereotype.plaintext_credentials_link, Username.servicetwo, Password.servicetwo", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 320414325 + }, { + "message" : "Incoming: Stereotype.search_engine, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.logging_server, Stereotype.internal, Stereotype.local_logging, Stereotype.jdbc, Stereotype.plaintext_credentials_link, Username.servicetwo, Password.servicetwo", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 320414325 + }, { + "message" : "Propagated: Stereotype.monitoring_dashboard, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.search_engine, Stereotype.logging_server, Stereotype.internal, Stereotype.local_logging, Stereotype.gateway, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 2031705122 + }, { + "message" : "Incoming: Stereotype.search_engine, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.logging_server, Stereotype.internal, Stereotype.local_logging, Stereotype.gateway, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 2031705122 + }, { + "message" : "Propagated: Stereotype.monitoring_dashboard, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.search_engine, Stereotype.logging_server, Stereotype.internal, Stereotype.local_logging, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 211507865 + }, { + "message" : "Incoming: Stereotype.search_engine, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.logging_server, Stereotype.internal, Stereotype.local_logging, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 211507865 + }, { + "message" : "Propagated: Stereotype.monitoring_dashboard, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.search_engine, Stereotype.logging_server, Stereotype.internal, Stereotype.local_logging, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleservicetwo, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1891535340 + }, { + "message" : "Incoming: Stereotype.search_engine, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.logging_server, Stereotype.internal, Stereotype.local_logging, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleservicetwo, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1891535340 + }, { + "message" : "Propagated: Stereotype.monitoring_dashboard, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.search_engine, Stereotype.logging_server, Stereotype.internal, Stereotype.local_logging, Stereotype.jdbc, Stereotype.plaintext_credentials_link, Username.servicetwo, Password.servicetwo", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 720242436 + }, { + "message" : "Incoming: Stereotype.search_engine, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.logging_server, Stereotype.internal, Stereotype.local_logging, Stereotype.jdbc, Stereotype.plaintext_credentials_link, Username.servicetwo, Password.servicetwo", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 720242436 + }, { + "message" : "Propagated: Stereotype.monitoring_dashboard, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.search_engine, Stereotype.logging_server, Stereotype.internal, Stereotype.local_logging, Stereotype.gateway, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 430290487 + }, { + "message" : "Incoming: Stereotype.search_engine, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.logging_server, Stereotype.internal, Stereotype.local_logging, Stereotype.gateway, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 430290487 + }, { + "message" : "Propagated: Stereotype.monitoring_dashboard, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.search_engine, Stereotype.logging_server, Stereotype.internal, Stereotype.local_logging, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1329362952 + }, { + "message" : "Incoming: Stereotype.search_engine, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.logging_server, Stereotype.internal, Stereotype.local_logging, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1329362952 + }, { + "message" : "Propagated: Stereotype.monitoring_dashboard, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.search_engine, Stereotype.logging_server, Stereotype.internal, Stereotype.local_logging, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1263102442 + }, { + "message" : "Incoming: Stereotype.search_engine, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.logging_server, Stereotype.internal, Stereotype.local_logging, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1263102442 + }, { + "message" : "Propagated: Stereotype.monitoring_dashboard, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.search_engine, Stereotype.logging_server, Stereotype.internal, Stereotype.local_logging, Stereotype.jdbc", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 298156448 + }, { + "message" : "Incoming: Stereotype.search_engine, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.logging_server, Stereotype.internal, Stereotype.local_logging, Stereotype.jdbc", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 298156448 + }, { + "message" : "Propagated: Stereotype.monitoring_dashboard, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.search_engine, Stereotype.logging_server, Stereotype.internal, Stereotype.local_logging, Stereotype.gateway, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 627411361 + }, { + "message" : "Incoming: Stereotype.search_engine, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.logging_server, Stereotype.internal, Stereotype.local_logging, Stereotype.gateway, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 627411361 + }, { + "message" : "Propagated: Stereotype.monitoring_dashboard, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.search_engine, Stereotype.logging_server, Stereotype.internal, Stereotype.local_logging, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 154487101 + }, { + "message" : "Incoming: Stereotype.search_engine, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.logging_server, Stereotype.internal, Stereotype.local_logging, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 154487101 + }, { + "message" : "Propagated: Stereotype.monitoring_dashboard, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.search_engine, Stereotype.logging_server, Stereotype.internal, Stereotype.local_logging, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 162752456 + }, { + "message" : "Incoming: Stereotype.search_engine, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.logging_server, Stereotype.internal, Stereotype.local_logging, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 162752456 + }, { + "message" : "Propagated: Stereotype.monitoring_dashboard, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.search_engine, Stereotype.logging_server, Stereotype.internal, Stereotype.local_logging, Stereotype.jdbc", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 885403615 + }, { + "message" : "Incoming: Stereotype.search_engine, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.logging_server, Stereotype.internal, Stereotype.local_logging, Stereotype.jdbc", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 885403615 + }, { + "message" : "Propagated: Stereotype.monitoring_dashboard, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.search_engine, Stereotype.logging_server, Stereotype.internal, Stereotype.local_logging, Stereotype.gateway, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1038585959 + }, { + "message" : "Incoming: Stereotype.search_engine, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.logging_server, Stereotype.internal, Stereotype.local_logging, Stereotype.gateway, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1038585959 + }, { + "message" : "Propagated: Stereotype.monitoring_dashboard, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.search_engine, Stereotype.logging_server, Stereotype.internal, Stereotype.local_logging, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 515398215 + }, { + "message" : "Incoming: Stereotype.search_engine, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.logging_server, Stereotype.internal, Stereotype.local_logging, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 515398215 + }, { + "message" : "Propagated: Stereotype.monitoring_dashboard, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.search_engine, Stereotype.logging_server, Stereotype.internal, Stereotype.local_logging, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleservicetwo, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 212329343 + }, { + "message" : "Incoming: Stereotype.search_engine, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.logging_server, Stereotype.internal, Stereotype.local_logging, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleservicetwo, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 212329343 + }, { + "message" : "Propagated: Stereotype.monitoring_dashboard, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.search_engine, Stereotype.logging_server, Stereotype.internal, Stereotype.local_logging, Stereotype.jdbc, Stereotype.plaintext_credentials_link, Username.servicetwo, Password.servicetwo", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 161123811 + }, { + "message" : "Incoming: Stereotype.search_engine, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.logging_server, Stereotype.internal, Stereotype.local_logging, Stereotype.jdbc, Stereotype.plaintext_credentials_link, Username.servicetwo, Password.servicetwo", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 161123811 + }, { + "message" : "Propagated: Stereotype.monitoring_dashboard, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.search_engine, Stereotype.logging_server, Stereotype.internal, Stereotype.local_logging, Stereotype.gateway, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 142561311 + }, { + "message" : "Incoming: Stereotype.search_engine, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.logging_server, Stereotype.internal, Stereotype.local_logging, Stereotype.gateway, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 142561311 + }, { + "message" : "Propagated: Stereotype.monitoring_dashboard, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.search_engine, Stereotype.logging_server, Stereotype.internal, Stereotype.local_logging, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1414093109 + }, { + "message" : "Incoming: Stereotype.search_engine, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.logging_server, Stereotype.internal, Stereotype.local_logging, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1414093109 + }, { + "message" : "Propagated: Stereotype.monitoring_dashboard, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.search_engine, Stereotype.logging_server, Stereotype.internal, Stereotype.local_logging, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleservicetwo, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1741092056 + }, { + "message" : "Incoming: Stereotype.search_engine, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.logging_server, Stereotype.internal, Stereotype.local_logging, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleservicetwo, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1741092056 + }, { + "message" : "Propagated: Stereotype.monitoring_dashboard, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.search_engine, Stereotype.logging_server, Stereotype.internal, Stereotype.local_logging, Stereotype.jdbc, Stereotype.plaintext_credentials_link, Username.servicetwo, Password.servicetwo", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 980326486 + }, { + "message" : "Incoming: Stereotype.search_engine, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.logging_server, Stereotype.internal, Stereotype.local_logging, Stereotype.jdbc, Stereotype.plaintext_credentials_link, Username.servicetwo, Password.servicetwo", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 980326486 + }, { + "message" : "Propagated: Stereotype.monitoring_dashboard, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.search_engine, Stereotype.logging_server, Stereotype.internal, Stereotype.local_logging, Stereotype.gateway, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1214498988 + }, { + "message" : "Incoming: Stereotype.search_engine, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.logging_server, Stereotype.internal, Stereotype.local_logging, Stereotype.gateway, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1214498988 + }, { + "message" : "Propagated: Stereotype.monitoring_dashboard, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.search_engine, Stereotype.logging_server, Stereotype.internal, Stereotype.local_logging, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1459462244 + }, { + "message" : "Incoming: Stereotype.search_engine, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.logging_server, Stereotype.internal, Stereotype.local_logging, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1459462244 + }, { + "message" : "Propagated: Stereotype.monitoring_dashboard, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.search_engine, Stereotype.logging_server, Stereotype.internal, Stereotype.local_logging, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 114159191 + }, { + "message" : "Incoming: Stereotype.search_engine, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.logging_server, Stereotype.internal, Stereotype.local_logging, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 114159191 + }, { + "message" : "Propagated: Stereotype.monitoring_dashboard, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.search_engine, Stereotype.logging_server, Stereotype.internal, Stereotype.local_logging, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1211071216 + }, { + "message" : "Incoming: Stereotype.search_engine, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.logging_server, Stereotype.internal, Stereotype.local_logging, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1211071216 + }, { + "message" : "Propagated: Stereotype.monitoring_dashboard, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.search_engine, Stereotype.logging_server, Stereotype.internal, Stereotype.local_logging, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 517991921 + }, { + "message" : "Incoming: Stereotype.search_engine, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.logging_server, Stereotype.internal, Stereotype.local_logging, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 517991921 + }, { + "message" : "Propagated: Stereotype.monitoring_dashboard, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.search_engine, Stereotype.logging_server, Stereotype.internal, Stereotype.local_logging, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 622497998 + }, { + "message" : "Incoming: Stereotype.search_engine, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.logging_server, Stereotype.internal, Stereotype.local_logging, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 622497998 + }, { + "message" : "Propagated: Stereotype.monitoring_dashboard, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.search_engine, Stereotype.logging_server, Stereotype.internal, Stereotype.local_logging, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1280081260 + }, { + "message" : "Incoming: Stereotype.search_engine, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.logging_server, Stereotype.internal, Stereotype.local_logging, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1280081260 + }, { + "message" : "Propagated: Stereotype.monitoring_dashboard, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.search_engine, Stereotype.logging_server, Stereotype.internal, Stereotype.local_logging, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 350703813 + }, { + "message" : "Incoming: Stereotype.search_engine, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.logging_server, Stereotype.internal, Stereotype.local_logging, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 350703813 + }, { + "message" : "Propagated: Stereotype.monitoring_dashboard, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.search_engine, Stereotype.logging_server, Stereotype.internal, Stereotype.local_logging, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 607123271 + }, { + "message" : "Incoming: Stereotype.search_engine, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.logging_server, Stereotype.internal, Stereotype.local_logging, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 607123271 + } ], + "children" : [ ], + "position" : { + "x" : 0.0, + "y" : 0.0 + }, + "size" : null + }, { + "text" : "rabbit_0", + "id" : "_UWx9uvunEfCYrdfxNyUhUA", + "type" : "node:function", + "labels" : [ { + "labelTypeId" : "17", + "labelTypeValueId" : "58" + }, { + "labelTypeId" : "17", + "labelTypeValueId" : "59" + }, { + "labelTypeId" : "17", + "labelTypeValueId" : "27" + }, { + "labelTypeId" : "60", + "labelTypeValueId" : "61" + }, { + "labelTypeId" : "62", + "labelTypeValueId" : "63" + }, { + "labelTypeId" : "22", + "labelTypeValueId" : "64" + }, { + "labelTypeId" : "65", + "labelTypeValueId" : "66" + } ], + "ports" : [ { + "id" : "_UWx9vPunEfCYrdfxNyUhUA", + "type" : "port:dfd-input", + "children" : [ ] + }, { + "behavior" : "assign Stereotype.message_broker,Stereotype.plaintext_credentials,Stereotype.infrastructural,Stereotype.message_consumer_rabbitmq,Stereotype.restful_http,Queue.commudigalmicroservicessampleserviceone if TRUE\nforward service_one_0|service_one_0-0|service_two_0|service_two_0-0", + "id" : "_UWx9vfunEfCYrdfxNyUhUA", + "type" : "port:dfd-output", + "children" : [ ] + }, { + "behavior" : "assign Stereotype.message_broker,Stereotype.plaintext_credentials,Stereotype.infrastructural,Stereotype.message_consumer_rabbitmq,Stereotype.restful_http,Queue.commudigalmicroservicessampleservicetwo if TRUE\nforward service_one_0|service_one_0-0|service_two_0|service_two_0-0", + "id" : "_UWx9vvunEfCYrdfxNyUhUA", + "type" : "port:dfd-output", + "children" : [ ] + }, { + "behavior" : "assign Stereotype.message_broker,Stereotype.plaintext_credentials,Stereotype.infrastructural,Stereotype.restful_http if TRUE\nforward service_one_0|service_one_0-0|service_two_0|service_two_0-0", + "id" : "_UWx9v_unEfCYrdfxNyUhUA", + "type" : "port:dfd-output", + "children" : [ ] + }, { + "behavior" : "assign Stereotype.message_broker,Stereotype.plaintext_credentials,Stereotype.infrastructural,Stereotype.message_consumer_rabbitmq,Stereotype.restful_http,Queue.commudigalmicroservicessampleserviceone if TRUE\nforward service_one_0|service_one_0-0|service_two_0|service_two_0-0", + "id" : "_UWx_H_unEfCYrdfxNyUhUA", + "type" : "port:dfd-output", + "children" : [ ] + }, { + "behavior" : "assign Stereotype.message_broker,Stereotype.plaintext_credentials,Stereotype.infrastructural,Stereotype.message_consumer_rabbitmq,Stereotype.restful_http,Queue.commudigalmicroservicessampleservicetwo if TRUE\nforward service_one_0|service_one_0-0|service_two_0|service_two_0-0", + "id" : "_UWx_L_unEfCYrdfxNyUhUA", + "type" : "port:dfd-output", + "children" : [ ] + }, { + "behavior" : "assign Stereotype.message_broker,Stereotype.plaintext_credentials,Stereotype.infrastructural,Stereotype.restful_http if TRUE\nforward service_one_0|service_one_0-0|service_two_0|service_two_0-0", + "id" : "_UWx_a_unEfCYrdfxNyUhUA", + "type" : "port:dfd-output", + "children" : [ ] + } ], + "annotations" : [ { + "message" : "Propagated: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleserviceone, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 560734926 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, Stereotype.restful_http, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 560734926 + }, { + "message" : "Propagated: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleserviceone, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.jdbc", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1660536720 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, Stereotype.restful_http, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.jdbc", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1660536720 + }, { + "message" : "Propagated: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleserviceone, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.gateway, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 568717494 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, Stereotype.restful_http, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 568717494 + }, { + "message" : "Propagated: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleserviceone, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.gateway, Stereotype.load_balancer, Stereotype.web_application, Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.encrypted_connection", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 154923232 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, Stereotype.restful_http, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.web_application, Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.encrypted_connection", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 154923232 + }, { + "message" : "Propagated: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleserviceone, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.gateway, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1233246555 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, Stereotype.restful_http, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1233246555 + }, { + "message" : "Propagated: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleserviceone, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.gateway, Stereotype.load_balancer, Stereotype.web_application, Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.encrypted_connection", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1701331644 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, Stereotype.restful_http, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.web_application, Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.encrypted_connection", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1701331644 + }, { + "message" : "Propagated: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleserviceone, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1803976423 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, Stereotype.restful_http, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1803976423 + }, { + "message" : "Propagated: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleserviceone, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1038892935 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, Stereotype.restful_http, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1038892935 + }, { + "message" : "Propagated: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleserviceone, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 2053136992 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, Stereotype.restful_http, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 2053136992 + }, { + "message" : "Propagated: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleserviceone, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1572516402 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, Stereotype.restful_http, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1572516402 + }, { + "message" : "Propagated: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleserviceone, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 93560356 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.restful_http, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 93560356 + }, { + "message" : "Propagated: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleserviceone, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 93560356 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, Stereotype.restful_http, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 93560356 + }, { + "message" : "Propagated: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleserviceone, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1499437334 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.restful_http, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1499437334 + }, { + "message" : "Propagated: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleserviceone, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1499437334 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, Stereotype.restful_http, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1499437334 + }, { + "message" : "Propagated: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleserviceone, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 542475071 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.restful_http, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 542475071 + }, { + "message" : "Propagated: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleserviceone, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 542475071 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, Stereotype.restful_http, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 542475071 + }, { + "message" : "Propagated: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleserviceone, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 678858277 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.restful_http, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 678858277 + }, { + "message" : "Propagated: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleserviceone, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 678858277 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, Stereotype.restful_http, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 678858277 + }, { + "message" : "Propagated: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleservicetwo, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 822958001 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, Stereotype.restful_http, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 822958001 + }, { + "message" : "Propagated: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleserviceone, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Queue.commudigalmicroservicessampleservicetwo, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 822958001 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.restful_http, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleservicetwo, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 822958001 + }, { + "message" : "Propagated: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleserviceone, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Queue.commudigalmicroservicessampleservicetwo, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 822958001 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, Stereotype.restful_http, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Queue.commudigalmicroservicessampleservicetwo, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 822958001 + }, { + "message" : "Propagated: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleservicetwo, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.jdbc", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 339734447 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, Stereotype.restful_http, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.jdbc", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 339734447 + }, { + "message" : "Propagated: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleserviceone, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Queue.commudigalmicroservicessampleservicetwo, Stereotype.jdbc", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 339734447 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.restful_http, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleservicetwo, Stereotype.jdbc", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 339734447 + }, { + "message" : "Propagated: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleserviceone, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Queue.commudigalmicroservicessampleservicetwo, Stereotype.jdbc", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 339734447 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, Stereotype.restful_http, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Queue.commudigalmicroservicessampleservicetwo, Stereotype.jdbc", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 339734447 + }, { + "message" : "Propagated: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleservicetwo, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.gateway, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 419416684 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, Stereotype.restful_http, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 419416684 + }, { + "message" : "Propagated: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleserviceone, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Queue.commudigalmicroservicessampleservicetwo, Stereotype.gateway, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 419416684 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.restful_http, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleservicetwo, Stereotype.gateway, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 419416684 + }, { + "message" : "Propagated: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleserviceone, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Queue.commudigalmicroservicessampleservicetwo, Stereotype.gateway, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 419416684 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, Stereotype.restful_http, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Queue.commudigalmicroservicessampleservicetwo, Stereotype.gateway, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 419416684 + }, { + "message" : "Propagated: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleservicetwo, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 73689328 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, Stereotype.restful_http, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 73689328 + }, { + "message" : "Propagated: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleserviceone, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Queue.commudigalmicroservicessampleservicetwo, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 73689328 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.restful_http, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleservicetwo, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 73689328 + }, { + "message" : "Propagated: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleserviceone, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Queue.commudigalmicroservicessampleservicetwo, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 73689328 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, Stereotype.restful_http, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Queue.commudigalmicroservicessampleservicetwo, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 73689328 + }, { + "message" : "Propagated: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleservicetwo, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.jdbc", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1603213074 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, Stereotype.restful_http, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.jdbc", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1603213074 + }, { + "message" : "Propagated: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleserviceone, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Queue.commudigalmicroservicessampleservicetwo, Stereotype.jdbc", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1603213074 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.restful_http, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleservicetwo, Stereotype.jdbc", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1603213074 + }, { + "message" : "Propagated: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleserviceone, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Queue.commudigalmicroservicessampleservicetwo, Stereotype.jdbc", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1603213074 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, Stereotype.restful_http, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Queue.commudigalmicroservicessampleservicetwo, Stereotype.jdbc", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1603213074 + }, { + "message" : "Propagated: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleservicetwo, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.gateway, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 883349979 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, Stereotype.restful_http, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 883349979 + }, { + "message" : "Propagated: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleserviceone, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Queue.commudigalmicroservicessampleservicetwo, Stereotype.gateway, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 883349979 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.restful_http, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleservicetwo, Stereotype.gateway, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 883349979 + }, { + "message" : "Propagated: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleserviceone, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Queue.commudigalmicroservicessampleservicetwo, Stereotype.gateway, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 883349979 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, Stereotype.restful_http, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Queue.commudigalmicroservicessampleservicetwo, Stereotype.gateway, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 883349979 + }, { + "message" : "Propagated: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleservicetwo, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.gateway, Stereotype.load_balancer, Stereotype.web_application, Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.encrypted_connection", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1391249801 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, Stereotype.restful_http, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.web_application, Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.encrypted_connection", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1391249801 + }, { + "message" : "Propagated: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleserviceone, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Queue.commudigalmicroservicessampleservicetwo, Stereotype.gateway, Stereotype.load_balancer, Stereotype.web_application, Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.encrypted_connection", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1391249801 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.restful_http, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleservicetwo, Stereotype.gateway, Stereotype.load_balancer, Stereotype.web_application, Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.encrypted_connection", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1391249801 + }, { + "message" : "Propagated: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleserviceone, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Queue.commudigalmicroservicessampleservicetwo, Stereotype.gateway, Stereotype.load_balancer, Stereotype.web_application, Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.encrypted_connection", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1391249801 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, Stereotype.restful_http, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Queue.commudigalmicroservicessampleservicetwo, Stereotype.gateway, Stereotype.load_balancer, Stereotype.web_application, Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.encrypted_connection", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1391249801 + }, { + "message" : "Propagated: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleservicetwo, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.gateway, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1969752268 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, Stereotype.restful_http, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1969752268 + }, { + "message" : "Propagated: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleserviceone, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Queue.commudigalmicroservicessampleservicetwo, Stereotype.gateway, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1969752268 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.restful_http, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleservicetwo, Stereotype.gateway, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1969752268 + }, { + "message" : "Propagated: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleserviceone, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Queue.commudigalmicroservicessampleservicetwo, Stereotype.gateway, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1969752268 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, Stereotype.restful_http, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Queue.commudigalmicroservicessampleservicetwo, Stereotype.gateway, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1969752268 + }, { + "message" : "Propagated: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleservicetwo, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.gateway, Stereotype.load_balancer, Stereotype.web_application, Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.encrypted_connection", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1392027380 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, Stereotype.restful_http, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.web_application, Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.encrypted_connection", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1392027380 + }, { + "message" : "Propagated: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleserviceone, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Queue.commudigalmicroservicessampleservicetwo, Stereotype.gateway, Stereotype.load_balancer, Stereotype.web_application, Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.encrypted_connection", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1392027380 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.restful_http, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleservicetwo, Stereotype.gateway, Stereotype.load_balancer, Stereotype.web_application, Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.encrypted_connection", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1392027380 + }, { + "message" : "Propagated: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleserviceone, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Queue.commudigalmicroservicessampleservicetwo, Stereotype.gateway, Stereotype.load_balancer, Stereotype.web_application, Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.encrypted_connection", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1392027380 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, Stereotype.restful_http, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Queue.commudigalmicroservicessampleservicetwo, Stereotype.gateway, Stereotype.load_balancer, Stereotype.web_application, Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.encrypted_connection", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1392027380 + }, { + "message" : "Propagated: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleservicetwo, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1343407473 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.restful_http, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1343407473 + }, { + "message" : "Propagated: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleserviceone, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Queue.commudigalmicroservicessampleservicetwo, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1343407473 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.restful_http, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleservicetwo, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1343407473 + }, { + "message" : "Propagated: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleserviceone, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Queue.commudigalmicroservicessampleservicetwo, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1343407473 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, Stereotype.restful_http, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Queue.commudigalmicroservicessampleservicetwo, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1343407473 + }, { + "message" : "Propagated: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleservicetwo, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.jdbc, Username.servicetwo, Password.servicetwo", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1686568571 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.restful_http, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.jdbc, Username.servicetwo, Password.servicetwo", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1686568571 + }, { + "message" : "Propagated: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleserviceone, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Queue.commudigalmicroservicessampleservicetwo, Stereotype.jdbc, Username.servicetwo, Password.servicetwo", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1686568571 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.restful_http, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleservicetwo, Stereotype.jdbc, Username.servicetwo, Password.servicetwo", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1686568571 + }, { + "message" : "Propagated: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleserviceone, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Queue.commudigalmicroservicessampleservicetwo, Stereotype.jdbc, Username.servicetwo, Password.servicetwo", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1686568571 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, Stereotype.restful_http, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Queue.commudigalmicroservicessampleservicetwo, Stereotype.jdbc, Username.servicetwo, Password.servicetwo", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1686568571 + }, { + "message" : "Propagated: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleservicetwo, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.gateway, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1360897103 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.restful_http, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1360897103 + }, { + "message" : "Propagated: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleserviceone, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Queue.commudigalmicroservicessampleservicetwo, Stereotype.gateway, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1360897103 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.restful_http, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleservicetwo, Stereotype.gateway, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1360897103 + }, { + "message" : "Propagated: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleserviceone, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Queue.commudigalmicroservicessampleservicetwo, Stereotype.gateway, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1360897103 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, Stereotype.restful_http, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Queue.commudigalmicroservicessampleservicetwo, Stereotype.gateway, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1360897103 + }, { + "message" : "Propagated: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleservicetwo, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.gateway, Stereotype.load_balancer, Stereotype.web_application, Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.encrypted_connection", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1178953630 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.restful_http, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.web_application, Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.encrypted_connection", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1178953630 + }, { + "message" : "Propagated: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleserviceone, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Queue.commudigalmicroservicessampleservicetwo, Stereotype.gateway, Stereotype.load_balancer, Stereotype.web_application, Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.encrypted_connection", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1178953630 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.restful_http, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleservicetwo, Stereotype.gateway, Stereotype.load_balancer, Stereotype.web_application, Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.encrypted_connection", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1178953630 + }, { + "message" : "Propagated: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleserviceone, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Queue.commudigalmicroservicessampleservicetwo, Stereotype.gateway, Stereotype.load_balancer, Stereotype.web_application, Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.encrypted_connection", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1178953630 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, Stereotype.restful_http, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Queue.commudigalmicroservicessampleservicetwo, Stereotype.gateway, Stereotype.load_balancer, Stereotype.web_application, Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.encrypted_connection", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1178953630 + }, { + "message" : "Propagated: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleservicetwo, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.gateway, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 3804010 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.restful_http, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 3804010 + }, { + "message" : "Propagated: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleserviceone, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Queue.commudigalmicroservicessampleservicetwo, Stereotype.gateway, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 3804010 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.restful_http, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleservicetwo, Stereotype.gateway, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 3804010 + }, { + "message" : "Propagated: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleserviceone, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Queue.commudigalmicroservicessampleservicetwo, Stereotype.gateway, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 3804010 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, Stereotype.restful_http, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Queue.commudigalmicroservicessampleservicetwo, Stereotype.gateway, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 3804010 + }, { + "message" : "Propagated: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleservicetwo, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.gateway, Stereotype.load_balancer, Stereotype.web_application, Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.encrypted_connection", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1402751024 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.restful_http, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.web_application, Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.encrypted_connection", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1402751024 + }, { + "message" : "Propagated: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleserviceone, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Queue.commudigalmicroservicessampleservicetwo, Stereotype.gateway, Stereotype.load_balancer, Stereotype.web_application, Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.encrypted_connection", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1402751024 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.restful_http, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleservicetwo, Stereotype.gateway, Stereotype.load_balancer, Stereotype.web_application, Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.encrypted_connection", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1402751024 + }, { + "message" : "Propagated: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleserviceone, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Queue.commudigalmicroservicessampleservicetwo, Stereotype.gateway, Stereotype.load_balancer, Stereotype.web_application, Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.encrypted_connection", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1402751024 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, Stereotype.restful_http, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Queue.commudigalmicroservicessampleservicetwo, Stereotype.gateway, Stereotype.load_balancer, Stereotype.web_application, Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.encrypted_connection", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1402751024 + }, { + "message" : "Propagated: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleservicetwo, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1864344016 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.restful_http, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1864344016 + }, { + "message" : "Propagated: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleserviceone, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Queue.commudigalmicroservicessampleservicetwo, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1864344016 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.restful_http, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleservicetwo, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1864344016 + }, { + "message" : "Propagated: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleserviceone, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Queue.commudigalmicroservicessampleservicetwo, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1864344016 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, Stereotype.restful_http, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Queue.commudigalmicroservicessampleservicetwo, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1864344016 + }, { + "message" : "Propagated: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleservicetwo, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 42684986 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.restful_http, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 42684986 + }, { + "message" : "Propagated: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleserviceone, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Queue.commudigalmicroservicessampleservicetwo, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 42684986 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.restful_http, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleservicetwo, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 42684986 + }, { + "message" : "Propagated: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleserviceone, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Queue.commudigalmicroservicessampleservicetwo, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 42684986 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, Stereotype.restful_http, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Queue.commudigalmicroservicessampleservicetwo, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 42684986 + }, { + "message" : "Propagated: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleservicetwo, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1387948122 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.restful_http, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1387948122 + }, { + "message" : "Propagated: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleserviceone, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Queue.commudigalmicroservicessampleservicetwo, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1387948122 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.restful_http, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleservicetwo, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1387948122 + }, { + "message" : "Propagated: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleserviceone, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Queue.commudigalmicroservicessampleservicetwo, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1387948122 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, Stereotype.restful_http, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Queue.commudigalmicroservicessampleservicetwo, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1387948122 + }, { + "message" : "Propagated: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleservicetwo, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1674999797 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.restful_http, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1674999797 + }, { + "message" : "Propagated: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleserviceone, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Queue.commudigalmicroservicessampleservicetwo, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1674999797 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.restful_http, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleservicetwo, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1674999797 + }, { + "message" : "Propagated: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleserviceone, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Queue.commudigalmicroservicessampleservicetwo, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1674999797 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, Stereotype.restful_http, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Queue.commudigalmicroservicessampleservicetwo, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1674999797 + }, { + "message" : "Propagated: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleservicetwo, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1909807998 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, Stereotype.restful_http, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1909807998 + }, { + "message" : "Propagated: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleservicetwo, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1909807998 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.restful_http, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleservicetwo, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1909807998 + }, { + "message" : "Propagated: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleserviceone, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Queue.commudigalmicroservicessampleservicetwo, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1909807998 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.restful_http, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleservicetwo, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1909807998 + }, { + "message" : "Propagated: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleserviceone, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Queue.commudigalmicroservicessampleservicetwo, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1909807998 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, Stereotype.restful_http, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Queue.commudigalmicroservicessampleservicetwo, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1909807998 + }, { + "message" : "Propagated: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleservicetwo, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.jdbc, Username.servicetwo, Password.servicetwo", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 697818620 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.restful_http, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.jdbc, Username.servicetwo, Password.servicetwo", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 697818620 + }, { + "message" : "Propagated: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleserviceone, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Queue.commudigalmicroservicessampleservicetwo, Stereotype.jdbc, Username.servicetwo, Password.servicetwo", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 697818620 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.restful_http, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleservicetwo, Stereotype.jdbc, Username.servicetwo, Password.servicetwo", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 697818620 + }, { + "message" : "Propagated: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleserviceone, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Queue.commudigalmicroservicessampleservicetwo, Stereotype.jdbc, Username.servicetwo, Password.servicetwo", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 697818620 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, Stereotype.restful_http, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Queue.commudigalmicroservicessampleservicetwo, Stereotype.jdbc, Username.servicetwo, Password.servicetwo", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 697818620 + }, { + "message" : "Propagated: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleservicetwo, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.gateway, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 686721068 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.restful_http, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 686721068 + }, { + "message" : "Propagated: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleserviceone, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Queue.commudigalmicroservicessampleservicetwo, Stereotype.gateway, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 686721068 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.restful_http, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleservicetwo, Stereotype.gateway, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 686721068 + }, { + "message" : "Propagated: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleserviceone, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Queue.commudigalmicroservicessampleservicetwo, Stereotype.gateway, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 686721068 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, Stereotype.restful_http, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Queue.commudigalmicroservicessampleservicetwo, Stereotype.gateway, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 686721068 + }, { + "message" : "Propagated: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleservicetwo, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.gateway, Stereotype.load_balancer, Stereotype.web_application, Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.encrypted_connection", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 2027371291 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.restful_http, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.web_application, Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.encrypted_connection", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 2027371291 + }, { + "message" : "Propagated: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleserviceone, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Queue.commudigalmicroservicessampleservicetwo, Stereotype.gateway, Stereotype.load_balancer, Stereotype.web_application, Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.encrypted_connection", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 2027371291 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.restful_http, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleservicetwo, Stereotype.gateway, Stereotype.load_balancer, Stereotype.web_application, Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.encrypted_connection", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 2027371291 + }, { + "message" : "Propagated: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleserviceone, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Queue.commudigalmicroservicessampleservicetwo, Stereotype.gateway, Stereotype.load_balancer, Stereotype.web_application, Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.encrypted_connection", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 2027371291 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, Stereotype.restful_http, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Queue.commudigalmicroservicessampleservicetwo, Stereotype.gateway, Stereotype.load_balancer, Stereotype.web_application, Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.encrypted_connection", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 2027371291 + }, { + "message" : "Propagated: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleservicetwo, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.gateway, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 595759572 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.restful_http, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 595759572 + }, { + "message" : "Propagated: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleserviceone, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Queue.commudigalmicroservicessampleservicetwo, Stereotype.gateway, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 595759572 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.restful_http, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleservicetwo, Stereotype.gateway, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 595759572 + }, { + "message" : "Propagated: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleserviceone, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Queue.commudigalmicroservicessampleservicetwo, Stereotype.gateway, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 595759572 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, Stereotype.restful_http, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Queue.commudigalmicroservicessampleservicetwo, Stereotype.gateway, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 595759572 + }, { + "message" : "Propagated: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleservicetwo, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.gateway, Stereotype.load_balancer, Stereotype.web_application, Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.encrypted_connection", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 888000613 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.restful_http, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.web_application, Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.encrypted_connection", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 888000613 + }, { + "message" : "Propagated: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleserviceone, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Queue.commudigalmicroservicessampleservicetwo, Stereotype.gateway, Stereotype.load_balancer, Stereotype.web_application, Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.encrypted_connection", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 888000613 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.restful_http, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleservicetwo, Stereotype.gateway, Stereotype.load_balancer, Stereotype.web_application, Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.encrypted_connection", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 888000613 + }, { + "message" : "Propagated: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleserviceone, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Queue.commudigalmicroservicessampleservicetwo, Stereotype.gateway, Stereotype.load_balancer, Stereotype.web_application, Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.encrypted_connection", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 888000613 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, Stereotype.restful_http, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Queue.commudigalmicroservicessampleservicetwo, Stereotype.gateway, Stereotype.load_balancer, Stereotype.web_application, Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.encrypted_connection", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 888000613 + }, { + "message" : "Propagated: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleserviceone, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.jdbc, Username.servicetwo, Password.servicetwo", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1746833724 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.restful_http, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.jdbc, Username.servicetwo, Password.servicetwo", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1746833724 + }, { + "message" : "Propagated: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleserviceone, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.jdbc, Username.servicetwo, Password.servicetwo", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1746833724 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, Stereotype.restful_http, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Stereotype.jdbc, Username.servicetwo, Password.servicetwo", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1746833724 + }, { + "message" : "Propagated: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleserviceone, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.gateway, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 701526215 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.restful_http, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 701526215 + }, { + "message" : "Propagated: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleserviceone, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.gateway, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 701526215 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, Stereotype.restful_http, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Stereotype.gateway, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 701526215 + }, { + "message" : "Propagated: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleserviceone, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 518739992 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.restful_http, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 518739992 + }, { + "message" : "Propagated: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleserviceone, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 518739992 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, Stereotype.restful_http, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 518739992 + }, { + "message" : "Propagated: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleservicetwo, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1155521880 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, Stereotype.restful_http, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1155521880 + }, { + "message" : "Propagated: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleserviceone, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Queue.commudigalmicroservicessampleservicetwo, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1155521880 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.restful_http, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleservicetwo, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1155521880 + }, { + "message" : "Propagated: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleserviceone, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Queue.commudigalmicroservicessampleservicetwo, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1155521880 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, Stereotype.restful_http, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Queue.commudigalmicroservicessampleservicetwo, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1155521880 + }, { + "message" : "Propagated: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleserviceone, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.jdbc, Username.servicetwo, Password.servicetwo", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1490297742 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.restful_http, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.jdbc, Username.servicetwo, Password.servicetwo", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1490297742 + }, { + "message" : "Propagated: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleserviceone, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.jdbc, Username.servicetwo, Password.servicetwo", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1490297742 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, Stereotype.restful_http, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Stereotype.jdbc, Username.servicetwo, Password.servicetwo", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1490297742 + }, { + "message" : "Propagated: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleserviceone, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.gateway, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1923626523 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.restful_http, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1923626523 + }, { + "message" : "Propagated: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleserviceone, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.gateway, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1923626523 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, Stereotype.restful_http, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Stereotype.gateway, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1923626523 + }, { + "message" : "Propagated: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleserviceone, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 910658510 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, Stereotype.restful_http, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 910658510 + }, { + "message" : "Propagated: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleserviceone, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 910658510 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, Stereotype.restful_http, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 910658510 + }, { + "message" : "Propagated: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleserviceone, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 206091587 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.restful_http, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 206091587 + }, { + "message" : "Propagated: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleserviceone, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 206091587 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, Stereotype.restful_http, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 206091587 + }, { + "message" : "Propagated: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleserviceone, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.jdbc", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1970880279 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, Stereotype.restful_http, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.jdbc", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1970880279 + }, { + "message" : "Propagated: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleserviceone, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.gateway, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1179830093 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, Stereotype.restful_http, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1179830093 + }, { + "message" : "Propagated: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleserviceone, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1287728562 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.restful_http, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1287728562 + }, { + "message" : "Propagated: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleserviceone, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 99253188 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, Stereotype.restful_http, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 99253188 + }, { + "message" : "Propagated: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleserviceone, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 970423785 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.restful_http, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 970423785 + }, { + "message" : "Propagated: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleserviceone, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 2019482012 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.restful_http, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 2019482012 + }, { + "message" : "Propagated: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleservicetwo, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 751628596 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, Stereotype.restful_http, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 751628596 + }, { + "message" : "Propagated: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleservicetwo, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 592238700 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, Stereotype.restful_http, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 592238700 + }, { + "message" : "Propagated: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 302687243 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, Stereotype.restful_http, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 302687243 + }, { + "message" : "Propagated: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 850083982 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.restful_http, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 850083982 + }, { + "message" : "Propagated: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 112026691 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, Stereotype.restful_http, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 112026691 + }, { + "message" : "Propagated: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 2024814472 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.restful_http, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 2024814472 + }, { + "message" : "Propagated: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleserviceone, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1233049719 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, Stereotype.restful_http, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1233049719 + }, { + "message" : "Propagated: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleserviceone, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1890881203 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.restful_http, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1890881203 + }, { + "message" : "Propagated: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleservicetwo, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 589166341 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, Stereotype.restful_http, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 589166341 + }, { + "message" : "Propagated: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleservicetwo, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1428777808 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, Stereotype.restful_http, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1428777808 + }, { + "message" : "Propagated: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleserviceone, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 786722925 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, Stereotype.restful_http, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 786722925 + }, { + "message" : "Propagated: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleserviceone, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1957175487 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.restful_http, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1957175487 + }, { + "message" : "Propagated: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleservicetwo, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 287095360 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, Stereotype.restful_http, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 287095360 + }, { + "message" : "Propagated: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleservicetwo, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 663326227 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, Stereotype.restful_http, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 663326227 + }, { + "message" : "Propagated: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleserviceone, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1244785938 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, Stereotype.restful_http, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1244785938 + }, { + "message" : "Propagated: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleserviceone, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1227041903 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.restful_http, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1227041903 + }, { + "message" : "Propagated: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleservicetwo, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1608357825 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, Stereotype.restful_http, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1608357825 + }, { + "message" : "Propagated: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleservicetwo, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1481417616 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, Stereotype.restful_http, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1481417616 + }, { + "message" : "Propagated: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 171751994 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, Stereotype.restful_http, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 171751994 + }, { + "message" : "Propagated: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 720007548 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.restful_http, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 720007548 + }, { + "message" : "Propagated: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1554308325 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, Stereotype.restful_http, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1554308325 + }, { + "message" : "Propagated: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 311536309 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.restful_http, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 311536309 + } ], + "children" : [ ], + "position" : { + "x" : 0.0, + "y" : 0.0 + }, + "size" : null + }, { + "text" : "rabbit_1", + "id" : "_UWx9yfunEfCYrdfxNyUhUA", + "type" : "node:function", + "labels" : [ { + "labelTypeId" : "17", + "labelTypeValueId" : "58" + }, { + "labelTypeId" : "17", + "labelTypeValueId" : "59" + }, { + "labelTypeId" : "17", + "labelTypeValueId" : "27" + }, { + "labelTypeId" : "60", + "labelTypeValueId" : "61" + }, { + "labelTypeId" : "62", + "labelTypeValueId" : "63" + }, { + "labelTypeId" : "22", + "labelTypeValueId" : "64" + }, { + "labelTypeId" : "65", + "labelTypeValueId" : "66" + } ], + "ports" : [ { + "id" : "_UWx9y_unEfCYrdfxNyUhUA", + "type" : "port:dfd-input", + "children" : [ ] + }, { + "behavior" : "assign Stereotype.message_broker,Stereotype.plaintext_credentials,Stereotype.infrastructural,Stereotype.message_consumer_rabbitmq,Stereotype.restful_http,Queue.commudigalmicroservicessampleserviceone if TRUE\nforward service_one_1|service_one_1-0|service_two_1|service_two_1-0", + "id" : "_UWx9zPunEfCYrdfxNyUhUA", + "type" : "port:dfd-output", + "children" : [ ] + }, { + "behavior" : "assign Stereotype.message_broker,Stereotype.plaintext_credentials,Stereotype.infrastructural,Stereotype.message_consumer_rabbitmq,Stereotype.restful_http,Queue.commudigalmicroservicessampleservicetwo if TRUE\nforward service_one_1|service_one_1-0|service_two_1|service_two_1-0", + "id" : "_UWx9zfunEfCYrdfxNyUhUA", + "type" : "port:dfd-output", + "children" : [ ] + }, { + "behavior" : "assign Stereotype.message_broker,Stereotype.plaintext_credentials,Stereotype.infrastructural,Stereotype.restful_http if TRUE\nforward service_one_1|service_one_1-0|service_two_1|service_two_1-0", + "id" : "_UWx9zvunEfCYrdfxNyUhUA", + "type" : "port:dfd-output", + "children" : [ ] + }, { + "behavior" : "assign Stereotype.message_broker,Stereotype.plaintext_credentials,Stereotype.infrastructural,Stereotype.message_consumer_rabbitmq,Stereotype.restful_http,Queue.commudigalmicroservicessampleserviceone if TRUE\nforward service_one_1|service_one_1-0|service_two_1|service_two_1-0", + "id" : "_UWx_IfunEfCYrdfxNyUhUA", + "type" : "port:dfd-output", + "children" : [ ] + }, { + "behavior" : "assign Stereotype.message_broker,Stereotype.plaintext_credentials,Stereotype.infrastructural,Stereotype.message_consumer_rabbitmq,Stereotype.restful_http,Queue.commudigalmicroservicessampleservicetwo if TRUE\nforward service_one_1|service_one_1-0|service_two_1|service_two_1-0", + "id" : "_UWx_MfunEfCYrdfxNyUhUA", + "type" : "port:dfd-output", + "children" : [ ] + }, { + "behavior" : "assign Stereotype.message_broker,Stereotype.plaintext_credentials,Stereotype.infrastructural,Stereotype.restful_http if TRUE\nforward service_one_1|service_one_1-0|service_two_1|service_two_1-0", + "id" : "_UWx_bfunEfCYrdfxNyUhUA", + "type" : "port:dfd-output", + "children" : [ ] + } ], + "annotations" : [ { + "message" : "Propagated: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleserviceone, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 2017574192 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, Stereotype.restful_http, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 2017574192 + }, { + "message" : "Propagated: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleserviceone, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.jdbc", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1170735890 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, Stereotype.restful_http, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.jdbc", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1170735890 + }, { + "message" : "Propagated: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleserviceone, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.gateway, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 2077462509 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, Stereotype.restful_http, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 2077462509 + }, { + "message" : "Propagated: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleserviceone, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.gateway, Stereotype.load_balancer, Stereotype.web_application, Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.encrypted_connection", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 931003277 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, Stereotype.restful_http, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.web_application, Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.encrypted_connection", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 931003277 + }, { + "message" : "Propagated: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleserviceone, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.gateway, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1117812847 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, Stereotype.restful_http, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1117812847 + }, { + "message" : "Propagated: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleserviceone, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.gateway, Stereotype.load_balancer, Stereotype.web_application, Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.encrypted_connection", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1198859194 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, Stereotype.restful_http, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.web_application, Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.encrypted_connection", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1198859194 + }, { + "message" : "Propagated: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleserviceone, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 540962910 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, Stereotype.restful_http, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 540962910 + }, { + "message" : "Propagated: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleserviceone, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 2026325575 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, Stereotype.restful_http, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 2026325575 + }, { + "message" : "Propagated: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleserviceone, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 962931248 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, Stereotype.restful_http, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 962931248 + }, { + "message" : "Propagated: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleserviceone, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1466148437 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, Stereotype.restful_http, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1466148437 + }, { + "message" : "Propagated: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleserviceone, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 67928167 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.restful_http, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 67928167 + }, { + "message" : "Propagated: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleserviceone, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 67928167 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, Stereotype.restful_http, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 67928167 + }, { + "message" : "Propagated: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleserviceone, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1186663391 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.restful_http, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1186663391 + }, { + "message" : "Propagated: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleserviceone, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1186663391 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, Stereotype.restful_http, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1186663391 + }, { + "message" : "Propagated: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleserviceone, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1444912530 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.restful_http, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1444912530 + }, { + "message" : "Propagated: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleserviceone, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1444912530 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, Stereotype.restful_http, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1444912530 + }, { + "message" : "Propagated: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleserviceone, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 478468106 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.restful_http, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 478468106 + }, { + "message" : "Propagated: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleserviceone, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 478468106 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, Stereotype.restful_http, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 478468106 + }, { + "message" : "Propagated: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleservicetwo, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 2095803461 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, Stereotype.restful_http, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 2095803461 + }, { + "message" : "Propagated: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleserviceone, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Queue.commudigalmicroservicessampleservicetwo, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 2095803461 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.restful_http, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleservicetwo, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 2095803461 + }, { + "message" : "Propagated: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleserviceone, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Queue.commudigalmicroservicessampleservicetwo, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 2095803461 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, Stereotype.restful_http, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Queue.commudigalmicroservicessampleservicetwo, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 2095803461 + }, { + "message" : "Propagated: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleservicetwo, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.jdbc", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1653634548 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, Stereotype.restful_http, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.jdbc", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1653634548 + }, { + "message" : "Propagated: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleserviceone, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Queue.commudigalmicroservicessampleservicetwo, Stereotype.jdbc", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1653634548 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.restful_http, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleservicetwo, Stereotype.jdbc", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1653634548 + }, { + "message" : "Propagated: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleserviceone, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Queue.commudigalmicroservicessampleservicetwo, Stereotype.jdbc", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1653634548 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, Stereotype.restful_http, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Queue.commudigalmicroservicessampleservicetwo, Stereotype.jdbc", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1653634548 + }, { + "message" : "Propagated: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleservicetwo, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.gateway, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1212782393 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, Stereotype.restful_http, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1212782393 + }, { + "message" : "Propagated: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleserviceone, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Queue.commudigalmicroservicessampleservicetwo, Stereotype.gateway, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1212782393 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.restful_http, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleservicetwo, Stereotype.gateway, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1212782393 + }, { + "message" : "Propagated: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleserviceone, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Queue.commudigalmicroservicessampleservicetwo, Stereotype.gateway, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1212782393 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, Stereotype.restful_http, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Queue.commudigalmicroservicessampleservicetwo, Stereotype.gateway, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1212782393 + }, { + "message" : "Propagated: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleservicetwo, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1916224178 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, Stereotype.restful_http, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1916224178 + }, { + "message" : "Propagated: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleserviceone, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Queue.commudigalmicroservicessampleservicetwo, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1916224178 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.restful_http, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleservicetwo, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1916224178 + }, { + "message" : "Propagated: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleserviceone, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Queue.commudigalmicroservicessampleservicetwo, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1916224178 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, Stereotype.restful_http, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Queue.commudigalmicroservicessampleservicetwo, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1916224178 + }, { + "message" : "Propagated: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleservicetwo, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.jdbc", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1436127733 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, Stereotype.restful_http, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.jdbc", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1436127733 + }, { + "message" : "Propagated: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleserviceone, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Queue.commudigalmicroservicessampleservicetwo, Stereotype.jdbc", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1436127733 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.restful_http, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleservicetwo, Stereotype.jdbc", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1436127733 + }, { + "message" : "Propagated: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleserviceone, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Queue.commudigalmicroservicessampleservicetwo, Stereotype.jdbc", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1436127733 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, Stereotype.restful_http, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Queue.commudigalmicroservicessampleservicetwo, Stereotype.jdbc", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1436127733 + }, { + "message" : "Propagated: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleservicetwo, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.gateway, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 885481831 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, Stereotype.restful_http, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 885481831 + }, { + "message" : "Propagated: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleserviceone, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Queue.commudigalmicroservicessampleservicetwo, Stereotype.gateway, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 885481831 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.restful_http, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleservicetwo, Stereotype.gateway, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 885481831 + }, { + "message" : "Propagated: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleserviceone, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Queue.commudigalmicroservicessampleservicetwo, Stereotype.gateway, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 885481831 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, Stereotype.restful_http, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Queue.commudigalmicroservicessampleservicetwo, Stereotype.gateway, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 885481831 + }, { + "message" : "Propagated: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleservicetwo, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.gateway, Stereotype.load_balancer, Stereotype.web_application, Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.encrypted_connection", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 817092761 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, Stereotype.restful_http, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.web_application, Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.encrypted_connection", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 817092761 + }, { + "message" : "Propagated: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleserviceone, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Queue.commudigalmicroservicessampleservicetwo, Stereotype.gateway, Stereotype.load_balancer, Stereotype.web_application, Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.encrypted_connection", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 817092761 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.restful_http, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleservicetwo, Stereotype.gateway, Stereotype.load_balancer, Stereotype.web_application, Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.encrypted_connection", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 817092761 + }, { + "message" : "Propagated: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleserviceone, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Queue.commudigalmicroservicessampleservicetwo, Stereotype.gateway, Stereotype.load_balancer, Stereotype.web_application, Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.encrypted_connection", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 817092761 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, Stereotype.restful_http, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Queue.commudigalmicroservicessampleservicetwo, Stereotype.gateway, Stereotype.load_balancer, Stereotype.web_application, Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.encrypted_connection", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 817092761 + }, { + "message" : "Propagated: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleservicetwo, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.gateway, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 2027499247 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, Stereotype.restful_http, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 2027499247 + }, { + "message" : "Propagated: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleserviceone, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Queue.commudigalmicroservicessampleservicetwo, Stereotype.gateway, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 2027499247 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.restful_http, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleservicetwo, Stereotype.gateway, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 2027499247 + }, { + "message" : "Propagated: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleserviceone, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Queue.commudigalmicroservicessampleservicetwo, Stereotype.gateway, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 2027499247 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, Stereotype.restful_http, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Queue.commudigalmicroservicessampleservicetwo, Stereotype.gateway, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 2027499247 + }, { + "message" : "Propagated: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleservicetwo, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.gateway, Stereotype.load_balancer, Stereotype.web_application, Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.encrypted_connection", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1641418296 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, Stereotype.restful_http, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.web_application, Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.encrypted_connection", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1641418296 + }, { + "message" : "Propagated: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleserviceone, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Queue.commudigalmicroservicessampleservicetwo, Stereotype.gateway, Stereotype.load_balancer, Stereotype.web_application, Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.encrypted_connection", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1641418296 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.restful_http, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleservicetwo, Stereotype.gateway, Stereotype.load_balancer, Stereotype.web_application, Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.encrypted_connection", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1641418296 + }, { + "message" : "Propagated: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleserviceone, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Queue.commudigalmicroservicessampleservicetwo, Stereotype.gateway, Stereotype.load_balancer, Stereotype.web_application, Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.encrypted_connection", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1641418296 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, Stereotype.restful_http, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Queue.commudigalmicroservicessampleservicetwo, Stereotype.gateway, Stereotype.load_balancer, Stereotype.web_application, Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.encrypted_connection", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1641418296 + }, { + "message" : "Propagated: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleservicetwo, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1855297340 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.restful_http, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1855297340 + }, { + "message" : "Propagated: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleserviceone, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Queue.commudigalmicroservicessampleservicetwo, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1855297340 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.restful_http, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleservicetwo, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1855297340 + }, { + "message" : "Propagated: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleserviceone, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Queue.commudigalmicroservicessampleservicetwo, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1855297340 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, Stereotype.restful_http, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Queue.commudigalmicroservicessampleservicetwo, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1855297340 + }, { + "message" : "Propagated: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleservicetwo, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.jdbc, Username.servicetwo, Password.servicetwo", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1078783335 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.restful_http, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.jdbc, Username.servicetwo, Password.servicetwo", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1078783335 + }, { + "message" : "Propagated: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleserviceone, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Queue.commudigalmicroservicessampleservicetwo, Stereotype.jdbc, Username.servicetwo, Password.servicetwo", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1078783335 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.restful_http, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleservicetwo, Stereotype.jdbc, Username.servicetwo, Password.servicetwo", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1078783335 + }, { + "message" : "Propagated: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleserviceone, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Queue.commudigalmicroservicessampleservicetwo, Stereotype.jdbc, Username.servicetwo, Password.servicetwo", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1078783335 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, Stereotype.restful_http, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Queue.commudigalmicroservicessampleservicetwo, Stereotype.jdbc, Username.servicetwo, Password.servicetwo", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1078783335 + }, { + "message" : "Propagated: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleservicetwo, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.gateway, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1901272535 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.restful_http, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1901272535 + }, { + "message" : "Propagated: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleserviceone, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Queue.commudigalmicroservicessampleservicetwo, Stereotype.gateway, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1901272535 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.restful_http, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleservicetwo, Stereotype.gateway, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1901272535 + }, { + "message" : "Propagated: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleserviceone, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Queue.commudigalmicroservicessampleservicetwo, Stereotype.gateway, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1901272535 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, Stereotype.restful_http, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Queue.commudigalmicroservicessampleservicetwo, Stereotype.gateway, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1901272535 + }, { + "message" : "Propagated: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleservicetwo, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.gateway, Stereotype.load_balancer, Stereotype.web_application, Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.encrypted_connection", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 539322891 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.restful_http, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.web_application, Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.encrypted_connection", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 539322891 + }, { + "message" : "Propagated: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleserviceone, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Queue.commudigalmicroservicessampleservicetwo, Stereotype.gateway, Stereotype.load_balancer, Stereotype.web_application, Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.encrypted_connection", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 539322891 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.restful_http, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleservicetwo, Stereotype.gateway, Stereotype.load_balancer, Stereotype.web_application, Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.encrypted_connection", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 539322891 + }, { + "message" : "Propagated: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleserviceone, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Queue.commudigalmicroservicessampleservicetwo, Stereotype.gateway, Stereotype.load_balancer, Stereotype.web_application, Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.encrypted_connection", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 539322891 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, Stereotype.restful_http, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Queue.commudigalmicroservicessampleservicetwo, Stereotype.gateway, Stereotype.load_balancer, Stereotype.web_application, Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.encrypted_connection", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 539322891 + }, { + "message" : "Propagated: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleservicetwo, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.gateway, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1649096004 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.restful_http, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1649096004 + }, { + "message" : "Propagated: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleserviceone, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Queue.commudigalmicroservicessampleservicetwo, Stereotype.gateway, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1649096004 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.restful_http, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleservicetwo, Stereotype.gateway, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1649096004 + }, { + "message" : "Propagated: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleserviceone, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Queue.commudigalmicroservicessampleservicetwo, Stereotype.gateway, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1649096004 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, Stereotype.restful_http, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Queue.commudigalmicroservicessampleservicetwo, Stereotype.gateway, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1649096004 + }, { + "message" : "Propagated: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleservicetwo, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.gateway, Stereotype.load_balancer, Stereotype.web_application, Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.encrypted_connection", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1162595263 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.restful_http, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.web_application, Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.encrypted_connection", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1162595263 + }, { + "message" : "Propagated: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleserviceone, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Queue.commudigalmicroservicessampleservicetwo, Stereotype.gateway, Stereotype.load_balancer, Stereotype.web_application, Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.encrypted_connection", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1162595263 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.restful_http, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleservicetwo, Stereotype.gateway, Stereotype.load_balancer, Stereotype.web_application, Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.encrypted_connection", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1162595263 + }, { + "message" : "Propagated: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleserviceone, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Queue.commudigalmicroservicessampleservicetwo, Stereotype.gateway, Stereotype.load_balancer, Stereotype.web_application, Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.encrypted_connection", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1162595263 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, Stereotype.restful_http, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Queue.commudigalmicroservicessampleservicetwo, Stereotype.gateway, Stereotype.load_balancer, Stereotype.web_application, Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.encrypted_connection", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1162595263 + }, { + "message" : "Propagated: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleservicetwo, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 748673892 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.restful_http, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 748673892 + }, { + "message" : "Propagated: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleserviceone, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Queue.commudigalmicroservicessampleservicetwo, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 748673892 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.restful_http, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleservicetwo, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 748673892 + }, { + "message" : "Propagated: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleserviceone, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Queue.commudigalmicroservicessampleservicetwo, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 748673892 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, Stereotype.restful_http, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Queue.commudigalmicroservicessampleservicetwo, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 748673892 + }, { + "message" : "Propagated: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleservicetwo, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 669096398 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.restful_http, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 669096398 + }, { + "message" : "Propagated: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleserviceone, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Queue.commudigalmicroservicessampleservicetwo, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 669096398 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.restful_http, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleservicetwo, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 669096398 + }, { + "message" : "Propagated: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleserviceone, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Queue.commudigalmicroservicessampleservicetwo, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 669096398 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, Stereotype.restful_http, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Queue.commudigalmicroservicessampleservicetwo, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 669096398 + }, { + "message" : "Propagated: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleservicetwo, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 473655651 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.restful_http, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 473655651 + }, { + "message" : "Propagated: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleserviceone, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Queue.commudigalmicroservicessampleservicetwo, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 473655651 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.restful_http, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleservicetwo, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 473655651 + }, { + "message" : "Propagated: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleserviceone, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Queue.commudigalmicroservicessampleservicetwo, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 473655651 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, Stereotype.restful_http, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Queue.commudigalmicroservicessampleservicetwo, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 473655651 + }, { + "message" : "Propagated: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleservicetwo, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 120999784 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.restful_http, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 120999784 + }, { + "message" : "Propagated: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleserviceone, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Queue.commudigalmicroservicessampleservicetwo, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 120999784 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.restful_http, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleservicetwo, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 120999784 + }, { + "message" : "Propagated: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleserviceone, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Queue.commudigalmicroservicessampleservicetwo, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 120999784 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, Stereotype.restful_http, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Queue.commudigalmicroservicessampleservicetwo, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 120999784 + }, { + "message" : "Propagated: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleservicetwo, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1436610577 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, Stereotype.restful_http, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1436610577 + }, { + "message" : "Propagated: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleservicetwo, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1436610577 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.restful_http, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleservicetwo, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1436610577 + }, { + "message" : "Propagated: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleserviceone, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Queue.commudigalmicroservicessampleservicetwo, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1436610577 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.restful_http, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleservicetwo, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1436610577 + }, { + "message" : "Propagated: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleserviceone, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Queue.commudigalmicroservicessampleservicetwo, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1436610577 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, Stereotype.restful_http, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Queue.commudigalmicroservicessampleservicetwo, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1436610577 + }, { + "message" : "Propagated: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleservicetwo, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.jdbc, Username.servicetwo, Password.servicetwo", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 2124688514 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.restful_http, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.jdbc, Username.servicetwo, Password.servicetwo", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 2124688514 + }, { + "message" : "Propagated: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleserviceone, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Queue.commudigalmicroservicessampleservicetwo, Stereotype.jdbc, Username.servicetwo, Password.servicetwo", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 2124688514 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.restful_http, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleservicetwo, Stereotype.jdbc, Username.servicetwo, Password.servicetwo", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 2124688514 + }, { + "message" : "Propagated: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleserviceone, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Queue.commudigalmicroservicessampleservicetwo, Stereotype.jdbc, Username.servicetwo, Password.servicetwo", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 2124688514 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, Stereotype.restful_http, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Queue.commudigalmicroservicessampleservicetwo, Stereotype.jdbc, Username.servicetwo, Password.servicetwo", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 2124688514 + }, { + "message" : "Propagated: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleservicetwo, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.gateway, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 957559364 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.restful_http, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 957559364 + }, { + "message" : "Propagated: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleserviceone, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Queue.commudigalmicroservicessampleservicetwo, Stereotype.gateway, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 957559364 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.restful_http, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleservicetwo, Stereotype.gateway, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 957559364 + }, { + "message" : "Propagated: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleserviceone, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Queue.commudigalmicroservicessampleservicetwo, Stereotype.gateway, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 957559364 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, Stereotype.restful_http, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Queue.commudigalmicroservicessampleservicetwo, Stereotype.gateway, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 957559364 + }, { + "message" : "Propagated: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleservicetwo, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.gateway, Stereotype.load_balancer, Stereotype.web_application, Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.encrypted_connection", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 216758017 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.restful_http, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.web_application, Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.encrypted_connection", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 216758017 + }, { + "message" : "Propagated: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleserviceone, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Queue.commudigalmicroservicessampleservicetwo, Stereotype.gateway, Stereotype.load_balancer, Stereotype.web_application, Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.encrypted_connection", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 216758017 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.restful_http, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleservicetwo, Stereotype.gateway, Stereotype.load_balancer, Stereotype.web_application, Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.encrypted_connection", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 216758017 + }, { + "message" : "Propagated: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleserviceone, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Queue.commudigalmicroservicessampleservicetwo, Stereotype.gateway, Stereotype.load_balancer, Stereotype.web_application, Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.encrypted_connection", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 216758017 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, Stereotype.restful_http, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Queue.commudigalmicroservicessampleservicetwo, Stereotype.gateway, Stereotype.load_balancer, Stereotype.web_application, Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.encrypted_connection", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 216758017 + }, { + "message" : "Propagated: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleservicetwo, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.gateway, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1578712821 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.restful_http, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1578712821 + }, { + "message" : "Propagated: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleserviceone, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Queue.commudigalmicroservicessampleservicetwo, Stereotype.gateway, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1578712821 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.restful_http, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleservicetwo, Stereotype.gateway, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1578712821 + }, { + "message" : "Propagated: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleserviceone, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Queue.commudigalmicroservicessampleservicetwo, Stereotype.gateway, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1578712821 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, Stereotype.restful_http, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Queue.commudigalmicroservicessampleservicetwo, Stereotype.gateway, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1578712821 + }, { + "message" : "Propagated: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleservicetwo, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.gateway, Stereotype.load_balancer, Stereotype.web_application, Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.encrypted_connection", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 17222024 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.restful_http, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.web_application, Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.encrypted_connection", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 17222024 + }, { + "message" : "Propagated: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleserviceone, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Queue.commudigalmicroservicessampleservicetwo, Stereotype.gateway, Stereotype.load_balancer, Stereotype.web_application, Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.encrypted_connection", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 17222024 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.restful_http, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleservicetwo, Stereotype.gateway, Stereotype.load_balancer, Stereotype.web_application, Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.encrypted_connection", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 17222024 + }, { + "message" : "Propagated: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleserviceone, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Queue.commudigalmicroservicessampleservicetwo, Stereotype.gateway, Stereotype.load_balancer, Stereotype.web_application, Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.encrypted_connection", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 17222024 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, Stereotype.restful_http, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Queue.commudigalmicroservicessampleservicetwo, Stereotype.gateway, Stereotype.load_balancer, Stereotype.web_application, Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.encrypted_connection", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 17222024 + }, { + "message" : "Propagated: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleserviceone, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.jdbc, Username.servicetwo, Password.servicetwo", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 556223230 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.restful_http, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.jdbc, Username.servicetwo, Password.servicetwo", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 556223230 + }, { + "message" : "Propagated: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleserviceone, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.jdbc, Username.servicetwo, Password.servicetwo", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 556223230 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, Stereotype.restful_http, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Stereotype.jdbc, Username.servicetwo, Password.servicetwo", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 556223230 + }, { + "message" : "Propagated: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleserviceone, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.gateway, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1990419108 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.restful_http, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1990419108 + }, { + "message" : "Propagated: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleserviceone, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.gateway, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1990419108 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, Stereotype.restful_http, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Stereotype.gateway, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1990419108 + }, { + "message" : "Propagated: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleserviceone, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1641677843 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.restful_http, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1641677843 + }, { + "message" : "Propagated: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleserviceone, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1641677843 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, Stereotype.restful_http, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1641677843 + }, { + "message" : "Propagated: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleservicetwo, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1445448489 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, Stereotype.restful_http, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1445448489 + }, { + "message" : "Propagated: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleserviceone, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Queue.commudigalmicroservicessampleservicetwo, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1445448489 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.restful_http, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleservicetwo, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1445448489 + }, { + "message" : "Propagated: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleserviceone, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Queue.commudigalmicroservicessampleservicetwo, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1445448489 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, Stereotype.restful_http, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Queue.commudigalmicroservicessampleservicetwo, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1445448489 + }, { + "message" : "Propagated: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleserviceone, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.jdbc, Username.servicetwo, Password.servicetwo", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1296833449 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.restful_http, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.jdbc, Username.servicetwo, Password.servicetwo", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1296833449 + }, { + "message" : "Propagated: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleserviceone, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.jdbc, Username.servicetwo, Password.servicetwo", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1296833449 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, Stereotype.restful_http, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Stereotype.jdbc, Username.servicetwo, Password.servicetwo", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1296833449 + }, { + "message" : "Propagated: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleserviceone, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.gateway, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 538441446 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.restful_http, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 538441446 + }, { + "message" : "Propagated: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleserviceone, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.gateway, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 538441446 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, Stereotype.restful_http, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Stereotype.gateway, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 538441446 + }, { + "message" : "Propagated: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleserviceone, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 291279979 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, Stereotype.restful_http, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 291279979 + }, { + "message" : "Propagated: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleserviceone, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 291279979 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, Stereotype.restful_http, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 291279979 + }, { + "message" : "Propagated: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleserviceone, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 2043313130 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.restful_http, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 2043313130 + }, { + "message" : "Propagated: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleserviceone, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 2043313130 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, Stereotype.restful_http, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 2043313130 + }, { + "message" : "Propagated: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleserviceone, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.jdbc", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1425454633 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, Stereotype.restful_http, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.jdbc", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1425454633 + }, { + "message" : "Propagated: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleserviceone, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.gateway, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1271515799 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, Stereotype.restful_http, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1271515799 + }, { + "message" : "Propagated: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleserviceone, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1044639817 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.restful_http, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1044639817 + }, { + "message" : "Propagated: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleserviceone, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 343722304 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, Stereotype.restful_http, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 343722304 + }, { + "message" : "Propagated: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleserviceone, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1968861720 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.restful_http, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1968861720 + }, { + "message" : "Propagated: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleserviceone, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 92962244 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.restful_http, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 92962244 + }, { + "message" : "Propagated: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleservicetwo, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 862931361 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, Stereotype.restful_http, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 862931361 + }, { + "message" : "Propagated: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleservicetwo, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 577592048 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, Stereotype.restful_http, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 577592048 + }, { + "message" : "Propagated: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 626889335 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, Stereotype.restful_http, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 626889335 + }, { + "message" : "Propagated: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 501301044 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.restful_http, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 501301044 + }, { + "message" : "Propagated: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 2115575770 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, Stereotype.restful_http, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 2115575770 + }, { + "message" : "Propagated: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1700973603 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.restful_http, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1700973603 + }, { + "message" : "Propagated: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleserviceone, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1898870910 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, Stereotype.restful_http, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1898870910 + }, { + "message" : "Propagated: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleserviceone, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 649316770 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.restful_http, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 649316770 + }, { + "message" : "Propagated: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleservicetwo, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1799545709 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, Stereotype.restful_http, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1799545709 + }, { + "message" : "Propagated: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleservicetwo, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1891535340 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, Stereotype.restful_http, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1891535340 + }, { + "message" : "Propagated: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleserviceone, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1263102442 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, Stereotype.restful_http, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1263102442 + }, { + "message" : "Propagated: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleserviceone, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 162752456 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.restful_http, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 162752456 + }, { + "message" : "Propagated: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleservicetwo, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 212329343 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, Stereotype.restful_http, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 212329343 + }, { + "message" : "Propagated: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleservicetwo, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1741092056 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, Stereotype.restful_http, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1741092056 + }, { + "message" : "Propagated: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleserviceone, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 41595398 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, Stereotype.restful_http, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 41595398 + }, { + "message" : "Propagated: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleserviceone, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 2132961406 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.restful_http, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 2132961406 + }, { + "message" : "Propagated: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleservicetwo, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 923911964 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, Stereotype.restful_http, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 923911964 + }, { + "message" : "Propagated: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleservicetwo, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 155224151 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, Stereotype.restful_http, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 155224151 + }, { + "message" : "Propagated: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1940407755 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, Stereotype.restful_http, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1940407755 + }, { + "message" : "Propagated: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 413763859 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.restful_http, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 413763859 + }, { + "message" : "Propagated: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 131837504 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, Stereotype.restful_http, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 131837504 + }, { + "message" : "Propagated: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 888648783 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.restful_http, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 888648783 + } ], + "children" : [ ], + "position" : { + "x" : 0.0, + "y" : 0.0 + }, + "size" : null + }, { + "text" : "service_one_0", + "id" : "_UWx92PunEfCYrdfxNyUhUA", + "type" : "node:function", + "labels" : [ { + "labelTypeId" : "17", + "labelTypeValueId" : "20" + }, { + "labelTypeId" : "17", + "labelTypeValueId" : "21" + }, { + "labelTypeId" : "22", + "labelTypeValueId" : "23" + } ], + "ports" : [ { + "id" : "_UWx92vunEfCYrdfxNyUhUA", + "type" : "port:dfd-input", + "children" : [ ] + }, { + "behavior" : "assign Stereotype.internal,Stereotype.local_logging,Stereotype.restful_http if TRUE\nforward api_gateway_0|api_gateway_0-0|consul_0|consul_0-0|rabbit_0|rabbit_0-0|service_one_db_0|service_one_db_0-0", + "id" : "_UWx92_unEfCYrdfxNyUhUA", + "type" : "port:dfd-output", + "children" : [ ] + }, { + "behavior" : "assign Stereotype.internal,Stereotype.local_logging,Stereotype.message_producer_rabbitmq,Stereotype.plaintext_credentials_link,Stereotype.restful_http,RoutingKey.commudigalmicroservicessampleservice,ProducerExchange.commudigalmicroservicessampleservicesexchange if TRUE\nforward api_gateway_0|api_gateway_0-0|consul_0|consul_0-0|rabbit_0|rabbit_0-0|service_one_db_0|service_one_db_0-0", + "id" : "_UWx93PunEfCYrdfxNyUhUA", + "type" : "port:dfd-output", + "children" : [ ] + }, { + "behavior" : "assign Stereotype.internal,Stereotype.local_logging,Stereotype.restful_http if TRUE\nforward api_gateway_0|api_gateway_0-0|consul_0|consul_0-0|rabbit_0|rabbit_0-0|service_one_db_0|service_one_db_0-0", + "id" : "_UWx93funEfCYrdfxNyUhUA", + "type" : "port:dfd-output", + "children" : [ ] + }, { + "behavior" : "assign Stereotype.internal,Stereotype.local_logging,Stereotype.restful_http if TRUE\nforward api_gateway_0|api_gateway_0-0|consul_0|consul_0-0|rabbit_0|rabbit_0-0|service_one_db_0|service_one_db_0-0", + "id" : "_UWx_F_unEfCYrdfxNyUhUA", + "type" : "port:dfd-output", + "children" : [ ] + }, { + "behavior" : "assign Stereotype.internal,Stereotype.local_logging,Stereotype.message_producer_rabbitmq,Stereotype.plaintext_credentials_link,Stereotype.restful_http,RoutingKey.commudigalmicroservicessampleservice,ProducerExchange.commudigalmicroservicessampleservicesexchange if TRUE\nforward api_gateway_0|api_gateway_0-0|consul_0|consul_0-0|rabbit_0|rabbit_0-0|service_one_db_0|service_one_db_0-0", + "id" : "_UWx_G_unEfCYrdfxNyUhUA", + "type" : "port:dfd-output", + "children" : [ ] + }, { + "behavior" : "assign Stereotype.internal,Stereotype.local_logging,Stereotype.restful_http if TRUE\nforward api_gateway_0|api_gateway_0-0|consul_0|consul_0-0|rabbit_0|rabbit_0-0|service_one_db_0|service_one_db_0-0", + "id" : "_UWx_V_unEfCYrdfxNyUhUA", + "type" : "port:dfd-output", + "children" : [ ] + } ], + "annotations" : [ { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.service_discovery, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1543272907 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1543272907 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.service_discovery, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 669812564 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 669812564 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.service_discovery, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1002380301 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1002380301 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.service_discovery, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 426123784 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 426123784 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, Stereotype.restful_http, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 560734926 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 560734926 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 560734926 + }, { + "message" : "Incoming: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleserviceone, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 560734926 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, Stereotype.restful_http, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.jdbc", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1660536720 + }, { + "message" : "Incoming: Stereotype.jdbc", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1660536720 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.jdbc", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1660536720 + }, { + "message" : "Incoming: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleserviceone, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.jdbc", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1660536720 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, Stereotype.restful_http, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 568717494 + }, { + "message" : "Incoming: Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.restful_http, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 568717494 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.gateway, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 568717494 + }, { + "message" : "Incoming: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleserviceone, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.gateway, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 568717494 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, Stereotype.restful_http, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.web_application, Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.encrypted_connection", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 154923232 + }, { + "message" : "Incoming: Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.restful_http, Stereotype.web_application, Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.encrypted_connection", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 154923232 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.gateway, Stereotype.load_balancer, Stereotype.web_application, Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.encrypted_connection", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 154923232 + }, { + "message" : "Incoming: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleserviceone, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.gateway, Stereotype.load_balancer, Stereotype.web_application, Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.encrypted_connection", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 154923232 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, Stereotype.restful_http, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1233246555 + }, { + "message" : "Incoming: Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.restful_http, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1233246555 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.gateway, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1233246555 + }, { + "message" : "Incoming: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleserviceone, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.gateway, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1233246555 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, Stereotype.restful_http, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.web_application, Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.encrypted_connection", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1701331644 + }, { + "message" : "Incoming: Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.restful_http, Stereotype.web_application, Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.encrypted_connection", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1701331644 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.gateway, Stereotype.load_balancer, Stereotype.web_application, Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.encrypted_connection", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1701331644 + }, { + "message" : "Incoming: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleserviceone, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.gateway, Stereotype.load_balancer, Stereotype.web_application, Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.encrypted_connection", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1701331644 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, Stereotype.restful_http, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1803976423 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1803976423 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1803976423 + }, { + "message" : "Incoming: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleserviceone, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1803976423 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, Stereotype.restful_http, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1038892935 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1038892935 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1038892935 + }, { + "message" : "Incoming: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleserviceone, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1038892935 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, Stereotype.restful_http, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 2053136992 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 2053136992 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 2053136992 + }, { + "message" : "Incoming: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleserviceone, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 2053136992 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, Stereotype.restful_http, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1572516402 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1572516402 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1572516402 + }, { + "message" : "Incoming: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleserviceone, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1572516402 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, Stereotype.restful_http, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 93560356 + }, { + "message" : "Incoming: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleserviceone, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 93560356 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 93560356 + }, { + "message" : "Incoming: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleserviceone, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 93560356 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, Stereotype.restful_http, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1499437334 + }, { + "message" : "Incoming: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleserviceone, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1499437334 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1499437334 + }, { + "message" : "Incoming: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleserviceone, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1499437334 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, Stereotype.restful_http, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 542475071 + }, { + "message" : "Incoming: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleserviceone, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 542475071 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 542475071 + }, { + "message" : "Incoming: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleserviceone, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 542475071 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, Stereotype.restful_http, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 678858277 + }, { + "message" : "Incoming: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleserviceone, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 678858277 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 678858277 + }, { + "message" : "Incoming: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleserviceone, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 678858277 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, Stereotype.restful_http, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 822958001 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 822958001 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, Stereotype.restful_http, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Queue.commudigalmicroservicessampleservicetwo, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 822958001 + }, { + "message" : "Incoming: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleserviceone, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Queue.commudigalmicroservicessampleservicetwo, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 822958001 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Queue.commudigalmicroservicessampleservicetwo, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 822958001 + }, { + "message" : "Incoming: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleserviceone, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Queue.commudigalmicroservicessampleservicetwo, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 822958001 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, Stereotype.restful_http, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.jdbc", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 339734447 + }, { + "message" : "Incoming: Stereotype.jdbc", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 339734447 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, Stereotype.restful_http, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Queue.commudigalmicroservicessampleservicetwo, Stereotype.jdbc", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 339734447 + }, { + "message" : "Incoming: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleserviceone, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Queue.commudigalmicroservicessampleservicetwo, Stereotype.jdbc", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 339734447 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Queue.commudigalmicroservicessampleservicetwo, Stereotype.jdbc", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 339734447 + }, { + "message" : "Incoming: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleserviceone, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Queue.commudigalmicroservicessampleservicetwo, Stereotype.jdbc", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 339734447 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, Stereotype.restful_http, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 419416684 + }, { + "message" : "Incoming: Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.restful_http, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 419416684 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, Stereotype.restful_http, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Queue.commudigalmicroservicessampleservicetwo, Stereotype.gateway, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 419416684 + }, { + "message" : "Incoming: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleserviceone, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Queue.commudigalmicroservicessampleservicetwo, Stereotype.gateway, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 419416684 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Queue.commudigalmicroservicessampleservicetwo, Stereotype.gateway, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 419416684 + }, { + "message" : "Incoming: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleserviceone, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Queue.commudigalmicroservicessampleservicetwo, Stereotype.gateway, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 419416684 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, Stereotype.restful_http, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 73689328 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 73689328 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, Stereotype.restful_http, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Queue.commudigalmicroservicessampleservicetwo, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 73689328 + }, { + "message" : "Incoming: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleserviceone, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Queue.commudigalmicroservicessampleservicetwo, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 73689328 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Queue.commudigalmicroservicessampleservicetwo, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 73689328 + }, { + "message" : "Incoming: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleserviceone, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Queue.commudigalmicroservicessampleservicetwo, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 73689328 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, Stereotype.restful_http, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.jdbc", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1603213074 + }, { + "message" : "Incoming: Stereotype.jdbc", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1603213074 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, Stereotype.restful_http, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Queue.commudigalmicroservicessampleservicetwo, Stereotype.jdbc", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1603213074 + }, { + "message" : "Incoming: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleserviceone, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Queue.commudigalmicroservicessampleservicetwo, Stereotype.jdbc", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1603213074 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Queue.commudigalmicroservicessampleservicetwo, Stereotype.jdbc", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1603213074 + }, { + "message" : "Incoming: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleserviceone, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Queue.commudigalmicroservicessampleservicetwo, Stereotype.jdbc", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1603213074 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, Stereotype.restful_http, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 883349979 + }, { + "message" : "Incoming: Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.restful_http, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 883349979 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, Stereotype.restful_http, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Queue.commudigalmicroservicessampleservicetwo, Stereotype.gateway, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 883349979 + }, { + "message" : "Incoming: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleserviceone, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Queue.commudigalmicroservicessampleservicetwo, Stereotype.gateway, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 883349979 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Queue.commudigalmicroservicessampleservicetwo, Stereotype.gateway, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 883349979 + }, { + "message" : "Incoming: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleserviceone, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Queue.commudigalmicroservicessampleservicetwo, Stereotype.gateway, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 883349979 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, Stereotype.restful_http, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.web_application, Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.encrypted_connection", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1391249801 + }, { + "message" : "Incoming: Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.restful_http, Stereotype.web_application, Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.encrypted_connection", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1391249801 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, Stereotype.restful_http, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Queue.commudigalmicroservicessampleservicetwo, Stereotype.gateway, Stereotype.load_balancer, Stereotype.web_application, Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.encrypted_connection", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1391249801 + }, { + "message" : "Incoming: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleserviceone, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Queue.commudigalmicroservicessampleservicetwo, Stereotype.gateway, Stereotype.load_balancer, Stereotype.web_application, Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.encrypted_connection", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1391249801 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Queue.commudigalmicroservicessampleservicetwo, Stereotype.gateway, Stereotype.load_balancer, Stereotype.web_application, Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.encrypted_connection", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1391249801 + }, { + "message" : "Incoming: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleserviceone, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Queue.commudigalmicroservicessampleservicetwo, Stereotype.gateway, Stereotype.load_balancer, Stereotype.web_application, Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.encrypted_connection", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1391249801 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, Stereotype.restful_http, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1969752268 + }, { + "message" : "Incoming: Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.restful_http, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1969752268 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, Stereotype.restful_http, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Queue.commudigalmicroservicessampleservicetwo, Stereotype.gateway, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1969752268 + }, { + "message" : "Incoming: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleserviceone, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Queue.commudigalmicroservicessampleservicetwo, Stereotype.gateway, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1969752268 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Queue.commudigalmicroservicessampleservicetwo, Stereotype.gateway, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1969752268 + }, { + "message" : "Incoming: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleserviceone, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Queue.commudigalmicroservicessampleservicetwo, Stereotype.gateway, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1969752268 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, Stereotype.restful_http, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.web_application, Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.encrypted_connection", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1392027380 + }, { + "message" : "Incoming: Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.restful_http, Stereotype.web_application, Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.encrypted_connection", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1392027380 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, Stereotype.restful_http, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Queue.commudigalmicroservicessampleservicetwo, Stereotype.gateway, Stereotype.load_balancer, Stereotype.web_application, Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.encrypted_connection", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1392027380 + }, { + "message" : "Incoming: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleserviceone, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Queue.commudigalmicroservicessampleservicetwo, Stereotype.gateway, Stereotype.load_balancer, Stereotype.web_application, Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.encrypted_connection", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1392027380 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Queue.commudigalmicroservicessampleservicetwo, Stereotype.gateway, Stereotype.load_balancer, Stereotype.web_application, Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.encrypted_connection", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1392027380 + }, { + "message" : "Incoming: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleserviceone, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Queue.commudigalmicroservicessampleservicetwo, Stereotype.gateway, Stereotype.load_balancer, Stereotype.web_application, Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.encrypted_connection", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1392027380 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, Stereotype.restful_http, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Queue.commudigalmicroservicessampleservicetwo, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1343407473 + }, { + "message" : "Incoming: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleserviceone, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Queue.commudigalmicroservicessampleservicetwo, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1343407473 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Queue.commudigalmicroservicessampleservicetwo, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1343407473 + }, { + "message" : "Incoming: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleserviceone, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Queue.commudigalmicroservicessampleservicetwo, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1343407473 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, Stereotype.restful_http, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Queue.commudigalmicroservicessampleservicetwo, Stereotype.jdbc, Username.servicetwo, Password.servicetwo", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1686568571 + }, { + "message" : "Incoming: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleserviceone, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Queue.commudigalmicroservicessampleservicetwo, Stereotype.jdbc, Username.servicetwo, Password.servicetwo", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1686568571 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Queue.commudigalmicroservicessampleservicetwo, Stereotype.jdbc, Username.servicetwo, Password.servicetwo", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1686568571 + }, { + "message" : "Incoming: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleserviceone, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Queue.commudigalmicroservicessampleservicetwo, Stereotype.jdbc, Username.servicetwo, Password.servicetwo", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1686568571 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, Stereotype.restful_http, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Queue.commudigalmicroservicessampleservicetwo, Stereotype.gateway, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1360897103 + }, { + "message" : "Incoming: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleserviceone, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Queue.commudigalmicroservicessampleservicetwo, Stereotype.gateway, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1360897103 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Queue.commudigalmicroservicessampleservicetwo, Stereotype.gateway, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1360897103 + }, { + "message" : "Incoming: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleserviceone, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Queue.commudigalmicroservicessampleservicetwo, Stereotype.gateway, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1360897103 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, Stereotype.restful_http, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Queue.commudigalmicroservicessampleservicetwo, Stereotype.gateway, Stereotype.load_balancer, Stereotype.web_application, Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.encrypted_connection", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1178953630 + }, { + "message" : "Incoming: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleserviceone, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Queue.commudigalmicroservicessampleservicetwo, Stereotype.gateway, Stereotype.load_balancer, Stereotype.web_application, Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.encrypted_connection", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1178953630 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Queue.commudigalmicroservicessampleservicetwo, Stereotype.gateway, Stereotype.load_balancer, Stereotype.web_application, Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.encrypted_connection", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1178953630 + }, { + "message" : "Incoming: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleserviceone, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Queue.commudigalmicroservicessampleservicetwo, Stereotype.gateway, Stereotype.load_balancer, Stereotype.web_application, Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.encrypted_connection", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1178953630 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, Stereotype.restful_http, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Queue.commudigalmicroservicessampleservicetwo, Stereotype.gateway, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 3804010 + }, { + "message" : "Incoming: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleserviceone, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Queue.commudigalmicroservicessampleservicetwo, Stereotype.gateway, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 3804010 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Queue.commudigalmicroservicessampleservicetwo, Stereotype.gateway, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 3804010 + }, { + "message" : "Incoming: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleserviceone, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Queue.commudigalmicroservicessampleservicetwo, Stereotype.gateway, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 3804010 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, Stereotype.restful_http, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Queue.commudigalmicroservicessampleservicetwo, Stereotype.gateway, Stereotype.load_balancer, Stereotype.web_application, Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.encrypted_connection", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1402751024 + }, { + "message" : "Incoming: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleserviceone, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Queue.commudigalmicroservicessampleservicetwo, Stereotype.gateway, Stereotype.load_balancer, Stereotype.web_application, Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.encrypted_connection", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1402751024 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Queue.commudigalmicroservicessampleservicetwo, Stereotype.gateway, Stereotype.load_balancer, Stereotype.web_application, Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.encrypted_connection", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1402751024 + }, { + "message" : "Incoming: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleserviceone, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Queue.commudigalmicroservicessampleservicetwo, Stereotype.gateway, Stereotype.load_balancer, Stereotype.web_application, Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.encrypted_connection", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1402751024 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, Stereotype.restful_http, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Queue.commudigalmicroservicessampleservicetwo, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1864344016 + }, { + "message" : "Incoming: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleserviceone, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Queue.commudigalmicroservicessampleservicetwo, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1864344016 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Queue.commudigalmicroservicessampleservicetwo, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1864344016 + }, { + "message" : "Incoming: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleserviceone, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Queue.commudigalmicroservicessampleservicetwo, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1864344016 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, Stereotype.restful_http, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Queue.commudigalmicroservicessampleservicetwo, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 42684986 + }, { + "message" : "Incoming: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleserviceone, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Queue.commudigalmicroservicessampleservicetwo, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 42684986 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Queue.commudigalmicroservicessampleservicetwo, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 42684986 + }, { + "message" : "Incoming: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleserviceone, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Queue.commudigalmicroservicessampleservicetwo, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 42684986 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, Stereotype.restful_http, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Queue.commudigalmicroservicessampleservicetwo, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1387948122 + }, { + "message" : "Incoming: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleserviceone, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Queue.commudigalmicroservicessampleservicetwo, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1387948122 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Queue.commudigalmicroservicessampleservicetwo, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1387948122 + }, { + "message" : "Incoming: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleserviceone, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Queue.commudigalmicroservicessampleservicetwo, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1387948122 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, Stereotype.restful_http, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Queue.commudigalmicroservicessampleservicetwo, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1674999797 + }, { + "message" : "Incoming: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleserviceone, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Queue.commudigalmicroservicessampleservicetwo, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1674999797 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Queue.commudigalmicroservicessampleservicetwo, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1674999797 + }, { + "message" : "Incoming: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleserviceone, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Queue.commudigalmicroservicessampleservicetwo, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1674999797 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, Stereotype.restful_http, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1909807998 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1909807998 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, Stereotype.restful_http, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Queue.commudigalmicroservicessampleservicetwo, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1909807998 + }, { + "message" : "Incoming: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleserviceone, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Queue.commudigalmicroservicessampleservicetwo, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1909807998 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Queue.commudigalmicroservicessampleservicetwo, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1909807998 + }, { + "message" : "Incoming: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleserviceone, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Queue.commudigalmicroservicessampleservicetwo, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1909807998 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, Stereotype.restful_http, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Queue.commudigalmicroservicessampleservicetwo, Stereotype.jdbc, Username.servicetwo, Password.servicetwo", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 697818620 + }, { + "message" : "Incoming: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleserviceone, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Queue.commudigalmicroservicessampleservicetwo, Stereotype.jdbc, Username.servicetwo, Password.servicetwo", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 697818620 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Queue.commudigalmicroservicessampleservicetwo, Stereotype.jdbc, Username.servicetwo, Password.servicetwo", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 697818620 + }, { + "message" : "Incoming: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleserviceone, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Queue.commudigalmicroservicessampleservicetwo, Stereotype.jdbc, Username.servicetwo, Password.servicetwo", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 697818620 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, Stereotype.restful_http, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Queue.commudigalmicroservicessampleservicetwo, Stereotype.gateway, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 686721068 + }, { + "message" : "Incoming: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleserviceone, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Queue.commudigalmicroservicessampleservicetwo, Stereotype.gateway, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 686721068 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Queue.commudigalmicroservicessampleservicetwo, Stereotype.gateway, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 686721068 + }, { + "message" : "Incoming: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleserviceone, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Queue.commudigalmicroservicessampleservicetwo, Stereotype.gateway, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 686721068 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, Stereotype.restful_http, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Queue.commudigalmicroservicessampleservicetwo, Stereotype.gateway, Stereotype.load_balancer, Stereotype.web_application, Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.encrypted_connection", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 2027371291 + }, { + "message" : "Incoming: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleserviceone, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Queue.commudigalmicroservicessampleservicetwo, Stereotype.gateway, Stereotype.load_balancer, Stereotype.web_application, Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.encrypted_connection", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 2027371291 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Queue.commudigalmicroservicessampleservicetwo, Stereotype.gateway, Stereotype.load_balancer, Stereotype.web_application, Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.encrypted_connection", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 2027371291 + }, { + "message" : "Incoming: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleserviceone, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Queue.commudigalmicroservicessampleservicetwo, Stereotype.gateway, Stereotype.load_balancer, Stereotype.web_application, Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.encrypted_connection", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 2027371291 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, Stereotype.restful_http, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Queue.commudigalmicroservicessampleservicetwo, Stereotype.gateway, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 595759572 + }, { + "message" : "Incoming: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleserviceone, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Queue.commudigalmicroservicessampleservicetwo, Stereotype.gateway, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 595759572 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Queue.commudigalmicroservicessampleservicetwo, Stereotype.gateway, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 595759572 + }, { + "message" : "Incoming: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleserviceone, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Queue.commudigalmicroservicessampleservicetwo, Stereotype.gateway, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 595759572 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, Stereotype.restful_http, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Queue.commudigalmicroservicessampleservicetwo, Stereotype.gateway, Stereotype.load_balancer, Stereotype.web_application, Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.encrypted_connection", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 888000613 + }, { + "message" : "Incoming: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleserviceone, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Queue.commudigalmicroservicessampleservicetwo, Stereotype.gateway, Stereotype.load_balancer, Stereotype.web_application, Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.encrypted_connection", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 888000613 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Queue.commudigalmicroservicessampleservicetwo, Stereotype.gateway, Stereotype.load_balancer, Stereotype.web_application, Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.encrypted_connection", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 888000613 + }, { + "message" : "Incoming: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleserviceone, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Queue.commudigalmicroservicessampleservicetwo, Stereotype.gateway, Stereotype.load_balancer, Stereotype.web_application, Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.encrypted_connection", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 888000613 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, Stereotype.restful_http, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Stereotype.jdbc, Username.servicetwo, Password.servicetwo", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1746833724 + }, { + "message" : "Incoming: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleserviceone, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.jdbc, Username.servicetwo, Password.servicetwo", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1746833724 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.jdbc, Username.servicetwo, Password.servicetwo", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1746833724 + }, { + "message" : "Incoming: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleserviceone, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.jdbc, Username.servicetwo, Password.servicetwo", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1746833724 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, Stereotype.restful_http, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Stereotype.gateway, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 701526215 + }, { + "message" : "Incoming: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleserviceone, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.gateway, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 701526215 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.gateway, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 701526215 + }, { + "message" : "Incoming: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleserviceone, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.gateway, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 701526215 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, Stereotype.restful_http, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 518739992 + }, { + "message" : "Incoming: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleserviceone, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 518739992 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 518739992 + }, { + "message" : "Incoming: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleserviceone, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 518739992 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, Stereotype.restful_http, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1155521880 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1155521880 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, Stereotype.restful_http, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Queue.commudigalmicroservicessampleservicetwo, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1155521880 + }, { + "message" : "Incoming: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleserviceone, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Queue.commudigalmicroservicessampleservicetwo, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1155521880 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Queue.commudigalmicroservicessampleservicetwo, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1155521880 + }, { + "message" : "Incoming: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleserviceone, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Queue.commudigalmicroservicessampleservicetwo, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1155521880 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, Stereotype.restful_http, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Stereotype.jdbc, Username.servicetwo, Password.servicetwo", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1490297742 + }, { + "message" : "Incoming: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleserviceone, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.jdbc, Username.servicetwo, Password.servicetwo", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1490297742 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.jdbc, Username.servicetwo, Password.servicetwo", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1490297742 + }, { + "message" : "Incoming: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleserviceone, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.jdbc, Username.servicetwo, Password.servicetwo", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1490297742 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, Stereotype.restful_http, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Stereotype.gateway, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1923626523 + }, { + "message" : "Incoming: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleserviceone, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.gateway, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1923626523 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.gateway, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1923626523 + }, { + "message" : "Incoming: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleserviceone, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.gateway, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1923626523 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, Stereotype.restful_http, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 910658510 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 910658510 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, Stereotype.restful_http, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 910658510 + }, { + "message" : "Incoming: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleserviceone, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 910658510 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 910658510 + }, { + "message" : "Incoming: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleserviceone, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 910658510 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, Stereotype.restful_http, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 206091587 + }, { + "message" : "Incoming: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleserviceone, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 206091587 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 206091587 + }, { + "message" : "Incoming: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleserviceone, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 206091587 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, Stereotype.restful_http, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.jdbc", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1970880279 + }, { + "message" : "Incoming: Stereotype.jdbc", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1970880279 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.jdbc", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1970880279 + }, { + "message" : "Incoming: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleserviceone, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.jdbc", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1970880279 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, Stereotype.restful_http, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1179830093 + }, { + "message" : "Incoming: Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.restful_http, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1179830093 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.gateway, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1179830093 + }, { + "message" : "Incoming: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleserviceone, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.gateway, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1179830093 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1287728562 + }, { + "message" : "Incoming: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleserviceone, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1287728562 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, Stereotype.restful_http, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 99253188 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 99253188 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 99253188 + }, { + "message" : "Incoming: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleserviceone, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 99253188 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 970423785 + }, { + "message" : "Incoming: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleserviceone, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 970423785 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.jdbc", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1768926513 + }, { + "message" : "Incoming: Stereotype.jdbc", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1768926513 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 738636051 + }, { + "message" : "Incoming: Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.restful_http, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 738636051 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.service_discovery, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 2053425932 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 2053425932 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 2019482012 + }, { + "message" : "Incoming: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleserviceone, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 2019482012 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.jdbc", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1816978819 + }, { + "message" : "Incoming: Stereotype.jdbc", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1816978819 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1968922416 + }, { + "message" : "Incoming: Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.restful_http, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1968922416 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, Stereotype.restful_http, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 751628596 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 751628596 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, Stereotype.restful_http, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 592238700 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 592238700 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, Stereotype.restful_http, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 302687243 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 302687243 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, Stereotype.restful_http, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 112026691 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 112026691 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.service_discovery, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1159606185 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1159606185 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, Stereotype.restful_http, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1233049719 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1233049719 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1233049719 + }, { + "message" : "Incoming: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleserviceone, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1233049719 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.jdbc", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1018618094 + }, { + "message" : "Incoming: Stereotype.jdbc", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1018618094 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 2069971440 + }, { + "message" : "Incoming: Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.restful_http, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 2069971440 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.service_discovery, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1337346642 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1337346642 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1890881203 + }, { + "message" : "Incoming: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleserviceone, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1890881203 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.jdbc", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 2072945115 + }, { + "message" : "Incoming: Stereotype.jdbc", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 2072945115 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 177279387 + }, { + "message" : "Incoming: Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.restful_http, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 177279387 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, Stereotype.restful_http, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 589166341 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 589166341 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, Stereotype.restful_http, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1428777808 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1428777808 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.service_discovery, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 805957335 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 805957335 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, Stereotype.restful_http, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 786722925 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 786722925 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 786722925 + }, { + "message" : "Incoming: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleserviceone, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 786722925 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.jdbc", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 107285100 + }, { + "message" : "Incoming: Stereotype.jdbc", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 107285100 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 105019819 + }, { + "message" : "Incoming: Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.restful_http, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 105019819 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.service_discovery, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 2034385122 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 2034385122 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1957175487 + }, { + "message" : "Incoming: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleserviceone, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1957175487 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.jdbc", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1513124396 + }, { + "message" : "Incoming: Stereotype.jdbc", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1513124396 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1328203744 + }, { + "message" : "Incoming: Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.restful_http, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1328203744 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, Stereotype.restful_http, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 287095360 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 287095360 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, Stereotype.restful_http, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 663326227 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 663326227 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.service_discovery, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 349757746 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 349757746 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.service_discovery, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1243234606 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1243234606 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.service_discovery, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1607745112 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1607745112 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.service_discovery, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1893004914 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1893004914 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.service_discovery, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1759500919 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1759500919 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.service_discovery, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1355676410 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1355676410 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.service_discovery, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 781527109 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 781527109 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.service_discovery, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1874812338 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1874812338 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.service_discovery, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 321358401 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 321358401 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, Stereotype.restful_http, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1244785938 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1244785938 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1244785938 + }, { + "message" : "Incoming: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleserviceone, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1244785938 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.jdbc", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 984978888 + }, { + "message" : "Incoming: Stereotype.jdbc", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 984978888 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 593881656 + }, { + "message" : "Incoming: Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.restful_http, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 593881656 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.service_discovery, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 213850519 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 213850519 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1227041903 + }, { + "message" : "Incoming: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleserviceone, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1227041903 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.jdbc", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1605299030 + }, { + "message" : "Incoming: Stereotype.jdbc", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1605299030 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1402400433 + }, { + "message" : "Incoming: Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.restful_http, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1402400433 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, Stereotype.restful_http, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1608357825 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1608357825 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, Stereotype.restful_http, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1481417616 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1481417616 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, Stereotype.restful_http, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 171751994 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 171751994 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, Stereotype.restful_http, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1554308325 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1554308325 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.service_discovery, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 518261596 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 518261596 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.service_discovery, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 96749807 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 96749807 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.service_discovery, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1883144272 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1883144272 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.service_discovery, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1237443220 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1237443220 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.service_discovery, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 2000793115 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 2000793115 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.service_discovery, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1415390560 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1415390560 + } ], + "children" : [ ], + "position" : { + "x" : 0.0, + "y" : 0.0 + }, + "size" : null + }, { + "text" : "service_one_1", + "id" : "_UWx95_unEfCYrdfxNyUhUA", + "type" : "node:function", + "labels" : [ { + "labelTypeId" : "17", + "labelTypeValueId" : "20" + }, { + "labelTypeId" : "17", + "labelTypeValueId" : "21" + }, { + "labelTypeId" : "22", + "labelTypeValueId" : "23" + } ], + "ports" : [ { + "id" : "_UWx96funEfCYrdfxNyUhUA", + "type" : "port:dfd-input", + "children" : [ ] + }, { + "behavior" : "assign Stereotype.internal,Stereotype.local_logging,Stereotype.restful_http if TRUE\nforward api_gateway_1|api_gateway_1-0|consul_1|consul_1-0|rabbit_1|rabbit_1-0|service_one_db_1|service_one_db_1-0", + "id" : "_UWx96vunEfCYrdfxNyUhUA", + "type" : "port:dfd-output", + "children" : [ ] + }, { + "behavior" : "assign Stereotype.internal,Stereotype.local_logging,Stereotype.message_producer_rabbitmq,Stereotype.plaintext_credentials_link,Stereotype.restful_http,RoutingKey.commudigalmicroservicessampleservice,ProducerExchange.commudigalmicroservicessampleservicesexchange if TRUE\nforward api_gateway_1|api_gateway_1-0|consul_1|consul_1-0|rabbit_1|rabbit_1-0|service_one_db_1|service_one_db_1-0", + "id" : "_UWx96_unEfCYrdfxNyUhUA", + "type" : "port:dfd-output", + "children" : [ ] + }, { + "behavior" : "assign Stereotype.internal,Stereotype.local_logging,Stereotype.restful_http if TRUE\nforward api_gateway_1|api_gateway_1-0|consul_1|consul_1-0|rabbit_1|rabbit_1-0|service_one_db_1|service_one_db_1-0", + "id" : "_UWx97PunEfCYrdfxNyUhUA", + "type" : "port:dfd-output", + "children" : [ ] + }, { + "behavior" : "assign Stereotype.internal,Stereotype.local_logging,Stereotype.restful_http if TRUE\nforward api_gateway_1|api_gateway_1-0|consul_1|consul_1-0|rabbit_1|rabbit_1-0|service_one_db_1|service_one_db_1-0", + "id" : "_UWx_GfunEfCYrdfxNyUhUA", + "type" : "port:dfd-output", + "children" : [ ] + }, { + "behavior" : "assign Stereotype.internal,Stereotype.local_logging,Stereotype.message_producer_rabbitmq,Stereotype.plaintext_credentials_link,Stereotype.restful_http,RoutingKey.commudigalmicroservicessampleservice,ProducerExchange.commudigalmicroservicessampleservicesexchange if TRUE\nforward api_gateway_1|api_gateway_1-0|consul_1|consul_1-0|rabbit_1|rabbit_1-0|service_one_db_1|service_one_db_1-0", + "id" : "_UWx_HfunEfCYrdfxNyUhUA", + "type" : "port:dfd-output", + "children" : [ ] + }, { + "behavior" : "assign Stereotype.internal,Stereotype.local_logging,Stereotype.restful_http if TRUE\nforward api_gateway_1|api_gateway_1-0|consul_1|consul_1-0|rabbit_1|rabbit_1-0|service_one_db_1|service_one_db_1-0", + "id" : "_UWx_WfunEfCYrdfxNyUhUA", + "type" : "port:dfd-output", + "children" : [ ] + } ], + "annotations" : [ { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.service_discovery, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 675909854 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 675909854 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.service_discovery, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1448967471 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1448967471 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.service_discovery, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1793759719 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1793759719 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.service_discovery, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 476709123 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 476709123 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, Stereotype.restful_http, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 2017574192 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 2017574192 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 2017574192 + }, { + "message" : "Incoming: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleserviceone, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 2017574192 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, Stereotype.restful_http, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.jdbc", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1170735890 + }, { + "message" : "Incoming: Stereotype.jdbc", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1170735890 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.jdbc", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1170735890 + }, { + "message" : "Incoming: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleserviceone, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.jdbc", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1170735890 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, Stereotype.restful_http, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 2077462509 + }, { + "message" : "Incoming: Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.restful_http, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 2077462509 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.gateway, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 2077462509 + }, { + "message" : "Incoming: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleserviceone, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.gateway, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 2077462509 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, Stereotype.restful_http, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.web_application, Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.encrypted_connection", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 931003277 + }, { + "message" : "Incoming: Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.restful_http, Stereotype.web_application, Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.encrypted_connection", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 931003277 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.gateway, Stereotype.load_balancer, Stereotype.web_application, Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.encrypted_connection", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 931003277 + }, { + "message" : "Incoming: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleserviceone, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.gateway, Stereotype.load_balancer, Stereotype.web_application, Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.encrypted_connection", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 931003277 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, Stereotype.restful_http, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1117812847 + }, { + "message" : "Incoming: Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.restful_http, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1117812847 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.gateway, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1117812847 + }, { + "message" : "Incoming: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleserviceone, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.gateway, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1117812847 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, Stereotype.restful_http, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.web_application, Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.encrypted_connection", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1198859194 + }, { + "message" : "Incoming: Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.restful_http, Stereotype.web_application, Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.encrypted_connection", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1198859194 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.gateway, Stereotype.load_balancer, Stereotype.web_application, Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.encrypted_connection", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1198859194 + }, { + "message" : "Incoming: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleserviceone, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.gateway, Stereotype.load_balancer, Stereotype.web_application, Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.encrypted_connection", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1198859194 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, Stereotype.restful_http, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 540962910 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 540962910 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 540962910 + }, { + "message" : "Incoming: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleserviceone, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 540962910 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, Stereotype.restful_http, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 2026325575 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 2026325575 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 2026325575 + }, { + "message" : "Incoming: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleserviceone, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 2026325575 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, Stereotype.restful_http, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 962931248 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 962931248 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 962931248 + }, { + "message" : "Incoming: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleserviceone, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 962931248 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, Stereotype.restful_http, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1466148437 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1466148437 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1466148437 + }, { + "message" : "Incoming: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleserviceone, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1466148437 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, Stereotype.restful_http, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 67928167 + }, { + "message" : "Incoming: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleserviceone, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 67928167 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 67928167 + }, { + "message" : "Incoming: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleserviceone, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 67928167 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, Stereotype.restful_http, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1186663391 + }, { + "message" : "Incoming: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleserviceone, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1186663391 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1186663391 + }, { + "message" : "Incoming: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleserviceone, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1186663391 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, Stereotype.restful_http, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1444912530 + }, { + "message" : "Incoming: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleserviceone, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1444912530 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1444912530 + }, { + "message" : "Incoming: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleserviceone, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1444912530 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, Stereotype.restful_http, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 478468106 + }, { + "message" : "Incoming: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleserviceone, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 478468106 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 478468106 + }, { + "message" : "Incoming: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleserviceone, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 478468106 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, Stereotype.restful_http, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 2095803461 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 2095803461 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, Stereotype.restful_http, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Queue.commudigalmicroservicessampleservicetwo, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 2095803461 + }, { + "message" : "Incoming: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleserviceone, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Queue.commudigalmicroservicessampleservicetwo, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 2095803461 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Queue.commudigalmicroservicessampleservicetwo, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 2095803461 + }, { + "message" : "Incoming: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleserviceone, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Queue.commudigalmicroservicessampleservicetwo, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 2095803461 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, Stereotype.restful_http, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.jdbc", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1653634548 + }, { + "message" : "Incoming: Stereotype.jdbc", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1653634548 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, Stereotype.restful_http, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Queue.commudigalmicroservicessampleservicetwo, Stereotype.jdbc", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1653634548 + }, { + "message" : "Incoming: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleserviceone, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Queue.commudigalmicroservicessampleservicetwo, Stereotype.jdbc", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1653634548 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Queue.commudigalmicroservicessampleservicetwo, Stereotype.jdbc", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1653634548 + }, { + "message" : "Incoming: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleserviceone, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Queue.commudigalmicroservicessampleservicetwo, Stereotype.jdbc", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1653634548 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, Stereotype.restful_http, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1212782393 + }, { + "message" : "Incoming: Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.restful_http, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1212782393 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, Stereotype.restful_http, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Queue.commudigalmicroservicessampleservicetwo, Stereotype.gateway, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1212782393 + }, { + "message" : "Incoming: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleserviceone, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Queue.commudigalmicroservicessampleservicetwo, Stereotype.gateway, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1212782393 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Queue.commudigalmicroservicessampleservicetwo, Stereotype.gateway, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1212782393 + }, { + "message" : "Incoming: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleserviceone, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Queue.commudigalmicroservicessampleservicetwo, Stereotype.gateway, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1212782393 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, Stereotype.restful_http, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1916224178 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1916224178 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, Stereotype.restful_http, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Queue.commudigalmicroservicessampleservicetwo, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1916224178 + }, { + "message" : "Incoming: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleserviceone, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Queue.commudigalmicroservicessampleservicetwo, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1916224178 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Queue.commudigalmicroservicessampleservicetwo, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1916224178 + }, { + "message" : "Incoming: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleserviceone, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Queue.commudigalmicroservicessampleservicetwo, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1916224178 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, Stereotype.restful_http, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.jdbc", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1436127733 + }, { + "message" : "Incoming: Stereotype.jdbc", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1436127733 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, Stereotype.restful_http, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Queue.commudigalmicroservicessampleservicetwo, Stereotype.jdbc", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1436127733 + }, { + "message" : "Incoming: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleserviceone, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Queue.commudigalmicroservicessampleservicetwo, Stereotype.jdbc", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1436127733 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Queue.commudigalmicroservicessampleservicetwo, Stereotype.jdbc", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1436127733 + }, { + "message" : "Incoming: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleserviceone, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Queue.commudigalmicroservicessampleservicetwo, Stereotype.jdbc", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1436127733 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, Stereotype.restful_http, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 885481831 + }, { + "message" : "Incoming: Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.restful_http, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 885481831 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, Stereotype.restful_http, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Queue.commudigalmicroservicessampleservicetwo, Stereotype.gateway, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 885481831 + }, { + "message" : "Incoming: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleserviceone, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Queue.commudigalmicroservicessampleservicetwo, Stereotype.gateway, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 885481831 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Queue.commudigalmicroservicessampleservicetwo, Stereotype.gateway, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 885481831 + }, { + "message" : "Incoming: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleserviceone, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Queue.commudigalmicroservicessampleservicetwo, Stereotype.gateway, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 885481831 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, Stereotype.restful_http, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.web_application, Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.encrypted_connection", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 817092761 + }, { + "message" : "Incoming: Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.restful_http, Stereotype.web_application, Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.encrypted_connection", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 817092761 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, Stereotype.restful_http, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Queue.commudigalmicroservicessampleservicetwo, Stereotype.gateway, Stereotype.load_balancer, Stereotype.web_application, Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.encrypted_connection", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 817092761 + }, { + "message" : "Incoming: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleserviceone, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Queue.commudigalmicroservicessampleservicetwo, Stereotype.gateway, Stereotype.load_balancer, Stereotype.web_application, Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.encrypted_connection", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 817092761 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Queue.commudigalmicroservicessampleservicetwo, Stereotype.gateway, Stereotype.load_balancer, Stereotype.web_application, Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.encrypted_connection", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 817092761 + }, { + "message" : "Incoming: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleserviceone, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Queue.commudigalmicroservicessampleservicetwo, Stereotype.gateway, Stereotype.load_balancer, Stereotype.web_application, Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.encrypted_connection", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 817092761 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, Stereotype.restful_http, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 2027499247 + }, { + "message" : "Incoming: Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.restful_http, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 2027499247 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, Stereotype.restful_http, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Queue.commudigalmicroservicessampleservicetwo, Stereotype.gateway, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 2027499247 + }, { + "message" : "Incoming: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleserviceone, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Queue.commudigalmicroservicessampleservicetwo, Stereotype.gateway, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 2027499247 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Queue.commudigalmicroservicessampleservicetwo, Stereotype.gateway, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 2027499247 + }, { + "message" : "Incoming: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleserviceone, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Queue.commudigalmicroservicessampleservicetwo, Stereotype.gateway, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 2027499247 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, Stereotype.restful_http, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.web_application, Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.encrypted_connection", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1641418296 + }, { + "message" : "Incoming: Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.restful_http, Stereotype.web_application, Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.encrypted_connection", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1641418296 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, Stereotype.restful_http, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Queue.commudigalmicroservicessampleservicetwo, Stereotype.gateway, Stereotype.load_balancer, Stereotype.web_application, Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.encrypted_connection", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1641418296 + }, { + "message" : "Incoming: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleserviceone, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Queue.commudigalmicroservicessampleservicetwo, Stereotype.gateway, Stereotype.load_balancer, Stereotype.web_application, Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.encrypted_connection", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1641418296 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Queue.commudigalmicroservicessampleservicetwo, Stereotype.gateway, Stereotype.load_balancer, Stereotype.web_application, Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.encrypted_connection", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1641418296 + }, { + "message" : "Incoming: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleserviceone, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Queue.commudigalmicroservicessampleservicetwo, Stereotype.gateway, Stereotype.load_balancer, Stereotype.web_application, Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.encrypted_connection", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1641418296 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, Stereotype.restful_http, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Queue.commudigalmicroservicessampleservicetwo, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1855297340 + }, { + "message" : "Incoming: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleserviceone, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Queue.commudigalmicroservicessampleservicetwo, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1855297340 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Queue.commudigalmicroservicessampleservicetwo, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1855297340 + }, { + "message" : "Incoming: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleserviceone, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Queue.commudigalmicroservicessampleservicetwo, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1855297340 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, Stereotype.restful_http, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Queue.commudigalmicroservicessampleservicetwo, Stereotype.jdbc, Username.servicetwo, Password.servicetwo", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1078783335 + }, { + "message" : "Incoming: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleserviceone, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Queue.commudigalmicroservicessampleservicetwo, Stereotype.jdbc, Username.servicetwo, Password.servicetwo", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1078783335 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Queue.commudigalmicroservicessampleservicetwo, Stereotype.jdbc, Username.servicetwo, Password.servicetwo", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1078783335 + }, { + "message" : "Incoming: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleserviceone, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Queue.commudigalmicroservicessampleservicetwo, Stereotype.jdbc, Username.servicetwo, Password.servicetwo", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1078783335 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, Stereotype.restful_http, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Queue.commudigalmicroservicessampleservicetwo, Stereotype.gateway, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1901272535 + }, { + "message" : "Incoming: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleserviceone, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Queue.commudigalmicroservicessampleservicetwo, Stereotype.gateway, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1901272535 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Queue.commudigalmicroservicessampleservicetwo, Stereotype.gateway, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1901272535 + }, { + "message" : "Incoming: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleserviceone, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Queue.commudigalmicroservicessampleservicetwo, Stereotype.gateway, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1901272535 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, Stereotype.restful_http, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Queue.commudigalmicroservicessampleservicetwo, Stereotype.gateway, Stereotype.load_balancer, Stereotype.web_application, Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.encrypted_connection", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 539322891 + }, { + "message" : "Incoming: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleserviceone, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Queue.commudigalmicroservicessampleservicetwo, Stereotype.gateway, Stereotype.load_balancer, Stereotype.web_application, Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.encrypted_connection", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 539322891 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Queue.commudigalmicroservicessampleservicetwo, Stereotype.gateway, Stereotype.load_balancer, Stereotype.web_application, Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.encrypted_connection", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 539322891 + }, { + "message" : "Incoming: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleserviceone, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Queue.commudigalmicroservicessampleservicetwo, Stereotype.gateway, Stereotype.load_balancer, Stereotype.web_application, Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.encrypted_connection", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 539322891 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, Stereotype.restful_http, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Queue.commudigalmicroservicessampleservicetwo, Stereotype.gateway, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1649096004 + }, { + "message" : "Incoming: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleserviceone, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Queue.commudigalmicroservicessampleservicetwo, Stereotype.gateway, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1649096004 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Queue.commudigalmicroservicessampleservicetwo, Stereotype.gateway, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1649096004 + }, { + "message" : "Incoming: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleserviceone, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Queue.commudigalmicroservicessampleservicetwo, Stereotype.gateway, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1649096004 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, Stereotype.restful_http, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Queue.commudigalmicroservicessampleservicetwo, Stereotype.gateway, Stereotype.load_balancer, Stereotype.web_application, Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.encrypted_connection", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1162595263 + }, { + "message" : "Incoming: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleserviceone, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Queue.commudigalmicroservicessampleservicetwo, Stereotype.gateway, Stereotype.load_balancer, Stereotype.web_application, Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.encrypted_connection", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1162595263 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Queue.commudigalmicroservicessampleservicetwo, Stereotype.gateway, Stereotype.load_balancer, Stereotype.web_application, Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.encrypted_connection", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1162595263 + }, { + "message" : "Incoming: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleserviceone, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Queue.commudigalmicroservicessampleservicetwo, Stereotype.gateway, Stereotype.load_balancer, Stereotype.web_application, Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.encrypted_connection", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1162595263 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, Stereotype.restful_http, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Queue.commudigalmicroservicessampleservicetwo, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 748673892 + }, { + "message" : "Incoming: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleserviceone, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Queue.commudigalmicroservicessampleservicetwo, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 748673892 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Queue.commudigalmicroservicessampleservicetwo, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 748673892 + }, { + "message" : "Incoming: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleserviceone, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Queue.commudigalmicroservicessampleservicetwo, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 748673892 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, Stereotype.restful_http, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Queue.commudigalmicroservicessampleservicetwo, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 669096398 + }, { + "message" : "Incoming: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleserviceone, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Queue.commudigalmicroservicessampleservicetwo, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 669096398 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Queue.commudigalmicroservicessampleservicetwo, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 669096398 + }, { + "message" : "Incoming: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleserviceone, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Queue.commudigalmicroservicessampleservicetwo, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 669096398 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, Stereotype.restful_http, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Queue.commudigalmicroservicessampleservicetwo, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 473655651 + }, { + "message" : "Incoming: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleserviceone, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Queue.commudigalmicroservicessampleservicetwo, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 473655651 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Queue.commudigalmicroservicessampleservicetwo, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 473655651 + }, { + "message" : "Incoming: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleserviceone, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Queue.commudigalmicroservicessampleservicetwo, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 473655651 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, Stereotype.restful_http, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Queue.commudigalmicroservicessampleservicetwo, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 120999784 + }, { + "message" : "Incoming: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleserviceone, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Queue.commudigalmicroservicessampleservicetwo, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 120999784 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Queue.commudigalmicroservicessampleservicetwo, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 120999784 + }, { + "message" : "Incoming: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleserviceone, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Queue.commudigalmicroservicessampleservicetwo, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 120999784 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, Stereotype.restful_http, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1436610577 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1436610577 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, Stereotype.restful_http, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Queue.commudigalmicroservicessampleservicetwo, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1436610577 + }, { + "message" : "Incoming: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleserviceone, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Queue.commudigalmicroservicessampleservicetwo, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1436610577 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Queue.commudigalmicroservicessampleservicetwo, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1436610577 + }, { + "message" : "Incoming: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleserviceone, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Queue.commudigalmicroservicessampleservicetwo, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1436610577 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, Stereotype.restful_http, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Queue.commudigalmicroservicessampleservicetwo, Stereotype.jdbc, Username.servicetwo, Password.servicetwo", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 2124688514 + }, { + "message" : "Incoming: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleserviceone, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Queue.commudigalmicroservicessampleservicetwo, Stereotype.jdbc, Username.servicetwo, Password.servicetwo", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 2124688514 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Queue.commudigalmicroservicessampleservicetwo, Stereotype.jdbc, Username.servicetwo, Password.servicetwo", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 2124688514 + }, { + "message" : "Incoming: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleserviceone, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Queue.commudigalmicroservicessampleservicetwo, Stereotype.jdbc, Username.servicetwo, Password.servicetwo", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 2124688514 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, Stereotype.restful_http, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Queue.commudigalmicroservicessampleservicetwo, Stereotype.gateway, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 957559364 + }, { + "message" : "Incoming: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleserviceone, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Queue.commudigalmicroservicessampleservicetwo, Stereotype.gateway, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 957559364 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Queue.commudigalmicroservicessampleservicetwo, Stereotype.gateway, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 957559364 + }, { + "message" : "Incoming: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleserviceone, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Queue.commudigalmicroservicessampleservicetwo, Stereotype.gateway, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 957559364 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, Stereotype.restful_http, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Queue.commudigalmicroservicessampleservicetwo, Stereotype.gateway, Stereotype.load_balancer, Stereotype.web_application, Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.encrypted_connection", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 216758017 + }, { + "message" : "Incoming: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleserviceone, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Queue.commudigalmicroservicessampleservicetwo, Stereotype.gateway, Stereotype.load_balancer, Stereotype.web_application, Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.encrypted_connection", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 216758017 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Queue.commudigalmicroservicessampleservicetwo, Stereotype.gateway, Stereotype.load_balancer, Stereotype.web_application, Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.encrypted_connection", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 216758017 + }, { + "message" : "Incoming: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleserviceone, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Queue.commudigalmicroservicessampleservicetwo, Stereotype.gateway, Stereotype.load_balancer, Stereotype.web_application, Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.encrypted_connection", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 216758017 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, Stereotype.restful_http, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Queue.commudigalmicroservicessampleservicetwo, Stereotype.gateway, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1578712821 + }, { + "message" : "Incoming: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleserviceone, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Queue.commudigalmicroservicessampleservicetwo, Stereotype.gateway, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1578712821 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Queue.commudigalmicroservicessampleservicetwo, Stereotype.gateway, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1578712821 + }, { + "message" : "Incoming: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleserviceone, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Queue.commudigalmicroservicessampleservicetwo, Stereotype.gateway, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1578712821 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, Stereotype.restful_http, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Queue.commudigalmicroservicessampleservicetwo, Stereotype.gateway, Stereotype.load_balancer, Stereotype.web_application, Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.encrypted_connection", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 17222024 + }, { + "message" : "Incoming: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleserviceone, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Queue.commudigalmicroservicessampleservicetwo, Stereotype.gateway, Stereotype.load_balancer, Stereotype.web_application, Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.encrypted_connection", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 17222024 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Queue.commudigalmicroservicessampleservicetwo, Stereotype.gateway, Stereotype.load_balancer, Stereotype.web_application, Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.encrypted_connection", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 17222024 + }, { + "message" : "Incoming: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleserviceone, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Queue.commudigalmicroservicessampleservicetwo, Stereotype.gateway, Stereotype.load_balancer, Stereotype.web_application, Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.encrypted_connection", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 17222024 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, Stereotype.restful_http, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Stereotype.jdbc, Username.servicetwo, Password.servicetwo", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 556223230 + }, { + "message" : "Incoming: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleserviceone, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.jdbc, Username.servicetwo, Password.servicetwo", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 556223230 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.jdbc, Username.servicetwo, Password.servicetwo", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 556223230 + }, { + "message" : "Incoming: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleserviceone, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.jdbc, Username.servicetwo, Password.servicetwo", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 556223230 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, Stereotype.restful_http, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Stereotype.gateway, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1990419108 + }, { + "message" : "Incoming: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleserviceone, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.gateway, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1990419108 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.gateway, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1990419108 + }, { + "message" : "Incoming: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleserviceone, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.gateway, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1990419108 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, Stereotype.restful_http, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1641677843 + }, { + "message" : "Incoming: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleserviceone, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1641677843 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1641677843 + }, { + "message" : "Incoming: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleserviceone, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1641677843 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, Stereotype.restful_http, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1445448489 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1445448489 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, Stereotype.restful_http, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Queue.commudigalmicroservicessampleservicetwo, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1445448489 + }, { + "message" : "Incoming: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleserviceone, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Queue.commudigalmicroservicessampleservicetwo, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1445448489 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Queue.commudigalmicroservicessampleservicetwo, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1445448489 + }, { + "message" : "Incoming: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleserviceone, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Queue.commudigalmicroservicessampleservicetwo, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1445448489 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, Stereotype.restful_http, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Stereotype.jdbc, Username.servicetwo, Password.servicetwo", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1296833449 + }, { + "message" : "Incoming: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleserviceone, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.jdbc, Username.servicetwo, Password.servicetwo", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1296833449 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.jdbc, Username.servicetwo, Password.servicetwo", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1296833449 + }, { + "message" : "Incoming: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleserviceone, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.jdbc, Username.servicetwo, Password.servicetwo", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1296833449 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, Stereotype.restful_http, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Stereotype.gateway, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 538441446 + }, { + "message" : "Incoming: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleserviceone, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.gateway, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 538441446 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.gateway, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 538441446 + }, { + "message" : "Incoming: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleserviceone, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.gateway, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 538441446 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, Stereotype.restful_http, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 291279979 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 291279979 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, Stereotype.restful_http, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 291279979 + }, { + "message" : "Incoming: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleserviceone, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 291279979 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 291279979 + }, { + "message" : "Incoming: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleserviceone, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 291279979 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, Stereotype.restful_http, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 2043313130 + }, { + "message" : "Incoming: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleserviceone, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 2043313130 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 2043313130 + }, { + "message" : "Incoming: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleserviceone, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 2043313130 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, Stereotype.restful_http, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.jdbc", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1425454633 + }, { + "message" : "Incoming: Stereotype.jdbc", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1425454633 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.jdbc", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1425454633 + }, { + "message" : "Incoming: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleserviceone, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.jdbc", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1425454633 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, Stereotype.restful_http, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1271515799 + }, { + "message" : "Incoming: Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.restful_http, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1271515799 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.gateway, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1271515799 + }, { + "message" : "Incoming: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleserviceone, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.gateway, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1271515799 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1044639817 + }, { + "message" : "Incoming: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleserviceone, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1044639817 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, Stereotype.restful_http, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 343722304 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 343722304 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 343722304 + }, { + "message" : "Incoming: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleserviceone, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 343722304 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1968861720 + }, { + "message" : "Incoming: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleserviceone, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1968861720 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.jdbc", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1891799894 + }, { + "message" : "Incoming: Stereotype.jdbc", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1891799894 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1361241279 + }, { + "message" : "Incoming: Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.restful_http, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1361241279 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.service_discovery, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 602280210 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 602280210 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 92962244 + }, { + "message" : "Incoming: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleserviceone, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 92962244 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.jdbc", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1639319040 + }, { + "message" : "Incoming: Stereotype.jdbc", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1639319040 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 670503317 + }, { + "message" : "Incoming: Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.restful_http, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 670503317 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, Stereotype.restful_http, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 862931361 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 862931361 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, Stereotype.restful_http, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 577592048 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 577592048 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, Stereotype.restful_http, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 626889335 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 626889335 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, Stereotype.restful_http, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 2115575770 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 2115575770 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.service_discovery, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 2014406233 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 2014406233 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, Stereotype.restful_http, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1898870910 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1898870910 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1898870910 + }, { + "message" : "Incoming: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleserviceone, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1898870910 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.jdbc", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1407858699 + }, { + "message" : "Incoming: Stereotype.jdbc", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1407858699 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1468809177 + }, { + "message" : "Incoming: Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.restful_http, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1468809177 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.service_discovery, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 610056415 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 610056415 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 649316770 + }, { + "message" : "Incoming: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleserviceone, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 649316770 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.jdbc", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 605787935 + }, { + "message" : "Incoming: Stereotype.jdbc", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 605787935 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 308221618 + }, { + "message" : "Incoming: Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.restful_http, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 308221618 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, Stereotype.restful_http, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1799545709 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1799545709 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, Stereotype.restful_http, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1891535340 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1891535340 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.service_discovery, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1329362952 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1329362952 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, Stereotype.restful_http, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1263102442 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1263102442 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1263102442 + }, { + "message" : "Incoming: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleserviceone, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1263102442 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.jdbc", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 298156448 + }, { + "message" : "Incoming: Stereotype.jdbc", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 298156448 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 627411361 + }, { + "message" : "Incoming: Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.restful_http, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 627411361 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.service_discovery, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 154487101 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 154487101 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 162752456 + }, { + "message" : "Incoming: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleserviceone, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 162752456 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.jdbc", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 885403615 + }, { + "message" : "Incoming: Stereotype.jdbc", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 885403615 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1038585959 + }, { + "message" : "Incoming: Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.restful_http, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1038585959 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, Stereotype.restful_http, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 212329343 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 212329343 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, Stereotype.restful_http, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1741092056 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1741092056 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.service_discovery, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1459462244 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1459462244 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.service_discovery, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1211071216 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1211071216 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.service_discovery, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 622497998 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 622497998 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.service_discovery, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1280081260 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1280081260 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.service_discovery, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 2131191535 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 2131191535 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.service_discovery, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 509000859 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 509000859 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.service_discovery, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1866191743 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1866191743 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.service_discovery, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 71782942 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 71782942 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.service_discovery, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1177568763 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1177568763 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, Stereotype.restful_http, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 41595398 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 41595398 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 41595398 + }, { + "message" : "Incoming: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleserviceone, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 41595398 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.jdbc", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 860148067 + }, { + "message" : "Incoming: Stereotype.jdbc", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 860148067 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1824819735 + }, { + "message" : "Incoming: Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.restful_http, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1824819735 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.service_discovery, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 681514473 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 681514473 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 2132961406 + }, { + "message" : "Incoming: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleserviceone, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 2132961406 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.jdbc", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1794666800 + }, { + "message" : "Incoming: Stereotype.jdbc", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1794666800 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 581225034 + }, { + "message" : "Incoming: Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.restful_http, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 581225034 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, Stereotype.restful_http, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 923911964 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 923911964 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, Stereotype.restful_http, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 155224151 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 155224151 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, Stereotype.restful_http, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1940407755 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1940407755 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, Stereotype.restful_http, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 131837504 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 131837504 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.service_discovery, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 350703813 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 350703813 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.service_discovery, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 607123271 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 607123271 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.service_discovery, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1395259059 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1395259059 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.service_discovery, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1501382858 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1501382858 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.service_discovery, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1999784536 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1999784536 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.service_discovery, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 813496676 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 813496676 + } ], + "children" : [ ], + "position" : { + "x" : 0.0, + "y" : 0.0 + }, + "size" : null + }, { + "text" : "service_two_0", + "id" : "_UWx99vunEfCYrdfxNyUhUA", + "type" : "node:function", + "labels" : [ { + "labelTypeId" : "17", + "labelTypeValueId" : "20" + }, { + "labelTypeId" : "17", + "labelTypeValueId" : "21" + }, { + "labelTypeId" : "22", + "labelTypeValueId" : "49" + } ], + "ports" : [ { + "id" : "_UWx9-PunEfCYrdfxNyUhUA", + "type" : "port:dfd-input", + "children" : [ ] + }, { + "behavior" : "assign Stereotype.internal,Stereotype.local_logging,Stereotype.restful_http if TRUE\nforward api_gateway_0|api_gateway_0-0|consul_0|consul_0-0|rabbit_0|rabbit_0-0|service_two_db_0|service_two_db_0-0", + "id" : "_UWx9-funEfCYrdfxNyUhUA", + "type" : "port:dfd-output", + "children" : [ ] + }, { + "behavior" : "assign Stereotype.internal,Stereotype.local_logging,Stereotype.message_producer_rabbitmq,Stereotype.restful_http,Stereotype.plaintext_credentials_link,RoutingKey.commudigalmicroservicessampleservice,ProducerExchange.commudigalmicroservicessampleservicesexchange if TRUE\nforward api_gateway_0|api_gateway_0-0|consul_0|consul_0-0|rabbit_0|rabbit_0-0|service_two_db_0|service_two_db_0-0", + "id" : "_UWx9-vunEfCYrdfxNyUhUA", + "type" : "port:dfd-output", + "children" : [ ] + }, { + "behavior" : "assign Stereotype.internal,Stereotype.local_logging,Stereotype.restful_http if TRUE\nforward api_gateway_0|api_gateway_0-0|consul_0|consul_0-0|rabbit_0|rabbit_0-0|service_two_db_0|service_two_db_0-0", + "id" : "_UWx9-_unEfCYrdfxNyUhUA", + "type" : "port:dfd-output", + "children" : [ ] + }, { + "behavior" : "assign Stereotype.internal,Stereotype.local_logging,Stereotype.restful_http if TRUE\nforward api_gateway_0|api_gateway_0-0|consul_0|consul_0-0|rabbit_0|rabbit_0-0|service_two_db_0|service_two_db_0-0", + "id" : "_UWx_J_unEfCYrdfxNyUhUA", + "type" : "port:dfd-output", + "children" : [ ] + }, { + "behavior" : "assign Stereotype.internal,Stereotype.local_logging,Stereotype.message_producer_rabbitmq,Stereotype.restful_http,Stereotype.plaintext_credentials_link,RoutingKey.commudigalmicroservicessampleservice,ProducerExchange.commudigalmicroservicessampleservicesexchange if TRUE\nforward api_gateway_0|api_gateway_0-0|consul_0|consul_0-0|rabbit_0|rabbit_0-0|service_two_db_0|service_two_db_0-0", + "id" : "_UWx_K_unEfCYrdfxNyUhUA", + "type" : "port:dfd-output", + "children" : [ ] + }, { + "behavior" : "assign Stereotype.internal,Stereotype.local_logging,Stereotype.restful_http if TRUE\nforward api_gateway_0|api_gateway_0-0|consul_0|consul_0-0|rabbit_0|rabbit_0-0|service_two_db_0|service_two_db_0-0", + "id" : "_UWx_X_unEfCYrdfxNyUhUA", + "type" : "port:dfd-output", + "children" : [ ] + } ], + "annotations" : [ { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.restful_http, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 93560356 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 93560356 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.restful_http, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1499437334 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1499437334 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.restful_http, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 542475071 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 542475071 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.restful_http, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 678858277 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 678858277 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.restful_http, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleservicetwo, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 822958001 + }, { + "message" : "Incoming: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleservicetwo, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 822958001 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.restful_http, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleservicetwo, Stereotype.jdbc", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 339734447 + }, { + "message" : "Incoming: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleservicetwo, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.jdbc", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 339734447 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.restful_http, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleservicetwo, Stereotype.gateway, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 419416684 + }, { + "message" : "Incoming: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleservicetwo, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.gateway, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 419416684 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.restful_http, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleservicetwo, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 73689328 + }, { + "message" : "Incoming: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleservicetwo, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 73689328 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.restful_http, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleservicetwo, Stereotype.jdbc", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1603213074 + }, { + "message" : "Incoming: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleservicetwo, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.jdbc", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1603213074 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.restful_http, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleservicetwo, Stereotype.gateway, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 883349979 + }, { + "message" : "Incoming: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleservicetwo, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.gateway, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 883349979 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.restful_http, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleservicetwo, Stereotype.gateway, Stereotype.load_balancer, Stereotype.web_application, Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.encrypted_connection", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1391249801 + }, { + "message" : "Incoming: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleservicetwo, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.gateway, Stereotype.load_balancer, Stereotype.web_application, Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.encrypted_connection", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1391249801 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.restful_http, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleservicetwo, Stereotype.gateway, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1969752268 + }, { + "message" : "Incoming: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleservicetwo, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.gateway, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1969752268 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.restful_http, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleservicetwo, Stereotype.gateway, Stereotype.load_balancer, Stereotype.web_application, Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.encrypted_connection", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1392027380 + }, { + "message" : "Incoming: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleservicetwo, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.gateway, Stereotype.load_balancer, Stereotype.web_application, Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.encrypted_connection", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1392027380 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.restful_http, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1343407473 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1343407473 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.restful_http, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleservicetwo, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1343407473 + }, { + "message" : "Incoming: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleservicetwo, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1343407473 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.restful_http, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.jdbc, Username.servicetwo, Password.servicetwo", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1686568571 + }, { + "message" : "Incoming: Stereotype.jdbc, Stereotype.plaintext_credentials_link, Username.servicetwo, Password.servicetwo", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1686568571 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.restful_http, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleservicetwo, Stereotype.jdbc, Username.servicetwo, Password.servicetwo", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1686568571 + }, { + "message" : "Incoming: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleservicetwo, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.jdbc, Username.servicetwo, Password.servicetwo", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1686568571 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.restful_http, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1360897103 + }, { + "message" : "Incoming: Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.restful_http, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1360897103 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.restful_http, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleservicetwo, Stereotype.gateway, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1360897103 + }, { + "message" : "Incoming: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleservicetwo, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.gateway, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1360897103 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.restful_http, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.web_application, Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.encrypted_connection", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1178953630 + }, { + "message" : "Incoming: Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.restful_http, Stereotype.web_application, Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.encrypted_connection", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1178953630 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.restful_http, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleservicetwo, Stereotype.gateway, Stereotype.load_balancer, Stereotype.web_application, Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.encrypted_connection", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1178953630 + }, { + "message" : "Incoming: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleservicetwo, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.gateway, Stereotype.load_balancer, Stereotype.web_application, Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.encrypted_connection", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1178953630 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.restful_http, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 3804010 + }, { + "message" : "Incoming: Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.restful_http, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 3804010 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.restful_http, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleservicetwo, Stereotype.gateway, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 3804010 + }, { + "message" : "Incoming: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleservicetwo, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.gateway, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 3804010 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.restful_http, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.web_application, Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.encrypted_connection", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1402751024 + }, { + "message" : "Incoming: Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.restful_http, Stereotype.web_application, Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.encrypted_connection", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1402751024 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.restful_http, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleservicetwo, Stereotype.gateway, Stereotype.load_balancer, Stereotype.web_application, Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.encrypted_connection", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1402751024 + }, { + "message" : "Incoming: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleservicetwo, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.gateway, Stereotype.load_balancer, Stereotype.web_application, Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.encrypted_connection", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1402751024 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.restful_http, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1864344016 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1864344016 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.restful_http, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleservicetwo, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1864344016 + }, { + "message" : "Incoming: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleservicetwo, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1864344016 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.restful_http, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 42684986 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 42684986 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.restful_http, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleservicetwo, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 42684986 + }, { + "message" : "Incoming: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleservicetwo, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 42684986 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.restful_http, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1387948122 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1387948122 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.restful_http, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleservicetwo, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1387948122 + }, { + "message" : "Incoming: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleservicetwo, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1387948122 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.restful_http, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1674999797 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1674999797 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.restful_http, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleservicetwo, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1674999797 + }, { + "message" : "Incoming: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleservicetwo, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1674999797 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.restful_http, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleservicetwo, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1909807998 + }, { + "message" : "Incoming: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleservicetwo, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1909807998 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.restful_http, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleservicetwo, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1909807998 + }, { + "message" : "Incoming: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleservicetwo, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1909807998 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.restful_http, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.jdbc, Username.servicetwo, Password.servicetwo", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 697818620 + }, { + "message" : "Incoming: Stereotype.jdbc, Stereotype.plaintext_credentials_link, Username.servicetwo, Password.servicetwo", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 697818620 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.restful_http, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleservicetwo, Stereotype.jdbc, Username.servicetwo, Password.servicetwo", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 697818620 + }, { + "message" : "Incoming: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleservicetwo, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.jdbc, Username.servicetwo, Password.servicetwo", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 697818620 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.restful_http, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 686721068 + }, { + "message" : "Incoming: Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.restful_http, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 686721068 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.restful_http, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleservicetwo, Stereotype.gateway, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 686721068 + }, { + "message" : "Incoming: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleservicetwo, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.gateway, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 686721068 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.restful_http, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.web_application, Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.encrypted_connection", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 2027371291 + }, { + "message" : "Incoming: Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.restful_http, Stereotype.web_application, Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.encrypted_connection", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 2027371291 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.restful_http, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleservicetwo, Stereotype.gateway, Stereotype.load_balancer, Stereotype.web_application, Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.encrypted_connection", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 2027371291 + }, { + "message" : "Incoming: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleservicetwo, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.gateway, Stereotype.load_balancer, Stereotype.web_application, Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.encrypted_connection", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 2027371291 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.restful_http, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 595759572 + }, { + "message" : "Incoming: Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.restful_http, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 595759572 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.restful_http, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleservicetwo, Stereotype.gateway, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 595759572 + }, { + "message" : "Incoming: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleservicetwo, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.gateway, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 595759572 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.restful_http, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.web_application, Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.encrypted_connection", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 888000613 + }, { + "message" : "Incoming: Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.restful_http, Stereotype.web_application, Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.encrypted_connection", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 888000613 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.restful_http, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleservicetwo, Stereotype.gateway, Stereotype.load_balancer, Stereotype.web_application, Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.encrypted_connection", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 888000613 + }, { + "message" : "Incoming: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleservicetwo, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.gateway, Stereotype.load_balancer, Stereotype.web_application, Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.encrypted_connection", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 888000613 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.restful_http, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.jdbc, Username.servicetwo, Password.servicetwo", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1746833724 + }, { + "message" : "Incoming: Stereotype.jdbc, Stereotype.plaintext_credentials_link, Username.servicetwo, Password.servicetwo", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1746833724 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.restful_http, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 701526215 + }, { + "message" : "Incoming: Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.restful_http, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 701526215 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.restful_http, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 518739992 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 518739992 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.restful_http, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleservicetwo, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1155521880 + }, { + "message" : "Incoming: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleservicetwo, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1155521880 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.restful_http, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.jdbc, Username.servicetwo, Password.servicetwo", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1490297742 + }, { + "message" : "Incoming: Stereotype.jdbc, Stereotype.plaintext_credentials_link, Username.servicetwo, Password.servicetwo", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1490297742 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.restful_http, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1923626523 + }, { + "message" : "Incoming: Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.restful_http, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1923626523 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.restful_http, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 206091587 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 206091587 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.restful_http, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1287728562 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1287728562 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.restful_http, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 970423785 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 970423785 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.restful_http, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 2019482012 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 2019482012 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.service_discovery, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 656898222 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 656898222 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleservicetwo, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 751628596 + }, { + "message" : "Incoming: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleservicetwo, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 751628596 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.jdbc, Stereotype.plaintext_credentials_link, Username.servicetwo, Password.servicetwo", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 63015234 + }, { + "message" : "Incoming: Stereotype.jdbc, Stereotype.plaintext_credentials_link, Username.servicetwo, Password.servicetwo", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 63015234 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1950102816 + }, { + "message" : "Incoming: Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.restful_http, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1950102816 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.service_discovery, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1749205249 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1749205249 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleservicetwo, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 592238700 + }, { + "message" : "Incoming: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleservicetwo, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 592238700 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.jdbc, Stereotype.plaintext_credentials_link, Username.servicetwo, Password.servicetwo", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 742969054 + }, { + "message" : "Incoming: Stereotype.jdbc, Stereotype.plaintext_credentials_link, Username.servicetwo, Password.servicetwo", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 742969054 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 969440066 + }, { + "message" : "Incoming: Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.restful_http, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 969440066 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.restful_http, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 850083982 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 850083982 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.restful_http, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 2024814472 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 2024814472 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.restful_http, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1890881203 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1890881203 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.service_discovery, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1997028929 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1997028929 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleservicetwo, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 589166341 + }, { + "message" : "Incoming: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleservicetwo, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 589166341 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.jdbc, Stereotype.plaintext_credentials_link, Username.servicetwo, Password.servicetwo", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 756222660 + }, { + "message" : "Incoming: Stereotype.jdbc, Stereotype.plaintext_credentials_link, Username.servicetwo, Password.servicetwo", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 756222660 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 789367604 + }, { + "message" : "Incoming: Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.restful_http, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 789367604 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.service_discovery, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 423629474 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 423629474 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleservicetwo, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1428777808 + }, { + "message" : "Incoming: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleservicetwo, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1428777808 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.jdbc, Stereotype.plaintext_credentials_link, Username.servicetwo, Password.servicetwo", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1616453147 + }, { + "message" : "Incoming: Stereotype.jdbc, Stereotype.plaintext_credentials_link, Username.servicetwo, Password.servicetwo", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1616453147 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 700791887 + }, { + "message" : "Incoming: Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.restful_http, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 700791887 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.restful_http, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1957175487 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1957175487 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.service_discovery, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 612686775 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 612686775 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleservicetwo, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 287095360 + }, { + "message" : "Incoming: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleservicetwo, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 287095360 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.jdbc, Stereotype.plaintext_credentials_link, Username.servicetwo, Password.servicetwo", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1222908765 + }, { + "message" : "Incoming: Stereotype.jdbc, Stereotype.plaintext_credentials_link, Username.servicetwo, Password.servicetwo", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1222908765 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1374212198 + }, { + "message" : "Incoming: Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.restful_http, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1374212198 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.service_discovery, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1395912847 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1395912847 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleservicetwo, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 663326227 + }, { + "message" : "Incoming: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleservicetwo, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 663326227 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.jdbc, Stereotype.plaintext_credentials_link, Username.servicetwo, Password.servicetwo", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1331644236 + }, { + "message" : "Incoming: Stereotype.jdbc, Stereotype.plaintext_credentials_link, Username.servicetwo, Password.servicetwo", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1331644236 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1487131937 + }, { + "message" : "Incoming: Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.restful_http, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1487131937 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.service_discovery, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 2135563436 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 2135563436 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.service_discovery, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 206999441 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 206999441 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.service_discovery, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 2032479363 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 2032479363 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.service_discovery, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1352294549 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1352294549 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.restful_http, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1227041903 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1227041903 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.service_discovery, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 2004952636 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 2004952636 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleservicetwo, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1608357825 + }, { + "message" : "Incoming: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleservicetwo, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1608357825 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.jdbc, Stereotype.plaintext_credentials_link, Username.servicetwo, Password.servicetwo", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 995760621 + }, { + "message" : "Incoming: Stereotype.jdbc, Stereotype.plaintext_credentials_link, Username.servicetwo, Password.servicetwo", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 995760621 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 366098173 + }, { + "message" : "Incoming: Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.restful_http, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 366098173 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.service_discovery, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1805402813 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1805402813 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleservicetwo, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1481417616 + }, { + "message" : "Incoming: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleservicetwo, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1481417616 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.jdbc, Stereotype.plaintext_credentials_link, Username.servicetwo, Password.servicetwo", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 858934277 + }, { + "message" : "Incoming: Stereotype.jdbc, Stereotype.plaintext_credentials_link, Username.servicetwo, Password.servicetwo", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 858934277 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 936632640 + }, { + "message" : "Incoming: Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.restful_http, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 936632640 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.restful_http, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 720007548 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 720007548 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.restful_http, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 311536309 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 311536309 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.service_discovery, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1357185836 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1357185836 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.service_discovery, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 307148861 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 307148861 + } ], + "children" : [ ], + "position" : { + "x" : 0.0, + "y" : 0.0 + }, + "size" : null + }, { + "text" : "service_two_1", + "id" : "_UWx-BfunEfCYrdfxNyUhUA", + "type" : "node:function", + "labels" : [ { + "labelTypeId" : "17", + "labelTypeValueId" : "20" + }, { + "labelTypeId" : "17", + "labelTypeValueId" : "21" + }, { + "labelTypeId" : "22", + "labelTypeValueId" : "49" + } ], + "ports" : [ { + "id" : "_UWx-B_unEfCYrdfxNyUhUA", + "type" : "port:dfd-input", + "children" : [ ] + }, { + "behavior" : "assign Stereotype.internal,Stereotype.local_logging,Stereotype.restful_http if TRUE\nforward api_gateway_1|api_gateway_1-0|consul_1|consul_1-0|rabbit_1|rabbit_1-0|service_two_db_1|service_two_db_1-0", + "id" : "_UWx-CPunEfCYrdfxNyUhUA", + "type" : "port:dfd-output", + "children" : [ ] + }, { + "behavior" : "assign Stereotype.internal,Stereotype.local_logging,Stereotype.message_producer_rabbitmq,Stereotype.restful_http,Stereotype.plaintext_credentials_link,RoutingKey.commudigalmicroservicessampleservice,ProducerExchange.commudigalmicroservicessampleservicesexchange if TRUE\nforward api_gateway_1|api_gateway_1-0|consul_1|consul_1-0|rabbit_1|rabbit_1-0|service_two_db_1|service_two_db_1-0", + "id" : "_UWx-CfunEfCYrdfxNyUhUA", + "type" : "port:dfd-output", + "children" : [ ] + }, { + "behavior" : "assign Stereotype.internal,Stereotype.local_logging,Stereotype.restful_http if TRUE\nforward api_gateway_1|api_gateway_1-0|consul_1|consul_1-0|rabbit_1|rabbit_1-0|service_two_db_1|service_two_db_1-0", + "id" : "_UWx-CvunEfCYrdfxNyUhUA", + "type" : "port:dfd-output", + "children" : [ ] + }, { + "behavior" : "assign Stereotype.internal,Stereotype.local_logging,Stereotype.restful_http if TRUE\nforward api_gateway_1|api_gateway_1-0|consul_1|consul_1-0|rabbit_1|rabbit_1-0|service_two_db_1|service_two_db_1-0", + "id" : "_UWx_KfunEfCYrdfxNyUhUA", + "type" : "port:dfd-output", + "children" : [ ] + }, { + "behavior" : "assign Stereotype.internal,Stereotype.local_logging,Stereotype.message_producer_rabbitmq,Stereotype.restful_http,Stereotype.plaintext_credentials_link,RoutingKey.commudigalmicroservicessampleservice,ProducerExchange.commudigalmicroservicessampleservicesexchange if TRUE\nforward api_gateway_1|api_gateway_1-0|consul_1|consul_1-0|rabbit_1|rabbit_1-0|service_two_db_1|service_two_db_1-0", + "id" : "_UWx_LfunEfCYrdfxNyUhUA", + "type" : "port:dfd-output", + "children" : [ ] + }, { + "behavior" : "assign Stereotype.internal,Stereotype.local_logging,Stereotype.restful_http if TRUE\nforward api_gateway_1|api_gateway_1-0|consul_1|consul_1-0|rabbit_1|rabbit_1-0|service_two_db_1|service_two_db_1-0", + "id" : "_UWx_YfunEfCYrdfxNyUhUA", + "type" : "port:dfd-output", + "children" : [ ] + } ], + "annotations" : [ { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.restful_http, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 67928167 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 67928167 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.restful_http, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1186663391 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1186663391 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.restful_http, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1444912530 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1444912530 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.restful_http, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 478468106 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 478468106 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.restful_http, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleservicetwo, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 2095803461 + }, { + "message" : "Incoming: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleservicetwo, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 2095803461 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.restful_http, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleservicetwo, Stereotype.jdbc", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1653634548 + }, { + "message" : "Incoming: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleservicetwo, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.jdbc", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1653634548 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.restful_http, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleservicetwo, Stereotype.gateway, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1212782393 + }, { + "message" : "Incoming: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleservicetwo, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.gateway, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1212782393 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.restful_http, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleservicetwo, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1916224178 + }, { + "message" : "Incoming: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleservicetwo, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1916224178 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.restful_http, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleservicetwo, Stereotype.jdbc", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1436127733 + }, { + "message" : "Incoming: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleservicetwo, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.jdbc", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1436127733 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.restful_http, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleservicetwo, Stereotype.gateway, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 885481831 + }, { + "message" : "Incoming: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleservicetwo, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.gateway, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 885481831 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.restful_http, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleservicetwo, Stereotype.gateway, Stereotype.load_balancer, Stereotype.web_application, Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.encrypted_connection", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 817092761 + }, { + "message" : "Incoming: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleservicetwo, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.gateway, Stereotype.load_balancer, Stereotype.web_application, Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.encrypted_connection", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 817092761 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.restful_http, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleservicetwo, Stereotype.gateway, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 2027499247 + }, { + "message" : "Incoming: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleservicetwo, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.gateway, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 2027499247 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.restful_http, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleservicetwo, Stereotype.gateway, Stereotype.load_balancer, Stereotype.web_application, Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.encrypted_connection", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1641418296 + }, { + "message" : "Incoming: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleservicetwo, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.gateway, Stereotype.load_balancer, Stereotype.web_application, Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.encrypted_connection", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1641418296 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.restful_http, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1855297340 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1855297340 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.restful_http, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleservicetwo, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1855297340 + }, { + "message" : "Incoming: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleservicetwo, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1855297340 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.restful_http, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.jdbc, Username.servicetwo, Password.servicetwo", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1078783335 + }, { + "message" : "Incoming: Stereotype.jdbc, Stereotype.plaintext_credentials_link, Username.servicetwo, Password.servicetwo", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1078783335 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.restful_http, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleservicetwo, Stereotype.jdbc, Username.servicetwo, Password.servicetwo", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1078783335 + }, { + "message" : "Incoming: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleservicetwo, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.jdbc, Username.servicetwo, Password.servicetwo", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1078783335 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.restful_http, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1901272535 + }, { + "message" : "Incoming: Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.restful_http, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1901272535 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.restful_http, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleservicetwo, Stereotype.gateway, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1901272535 + }, { + "message" : "Incoming: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleservicetwo, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.gateway, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1901272535 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.restful_http, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.web_application, Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.encrypted_connection", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 539322891 + }, { + "message" : "Incoming: Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.restful_http, Stereotype.web_application, Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.encrypted_connection", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 539322891 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.restful_http, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleservicetwo, Stereotype.gateway, Stereotype.load_balancer, Stereotype.web_application, Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.encrypted_connection", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 539322891 + }, { + "message" : "Incoming: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleservicetwo, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.gateway, Stereotype.load_balancer, Stereotype.web_application, Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.encrypted_connection", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 539322891 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.restful_http, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1649096004 + }, { + "message" : "Incoming: Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.restful_http, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1649096004 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.restful_http, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleservicetwo, Stereotype.gateway, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1649096004 + }, { + "message" : "Incoming: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleservicetwo, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.gateway, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1649096004 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.restful_http, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.web_application, Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.encrypted_connection", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1162595263 + }, { + "message" : "Incoming: Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.restful_http, Stereotype.web_application, Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.encrypted_connection", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1162595263 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.restful_http, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleservicetwo, Stereotype.gateway, Stereotype.load_balancer, Stereotype.web_application, Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.encrypted_connection", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1162595263 + }, { + "message" : "Incoming: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleservicetwo, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.gateway, Stereotype.load_balancer, Stereotype.web_application, Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.encrypted_connection", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1162595263 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.restful_http, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 748673892 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 748673892 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.restful_http, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleservicetwo, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 748673892 + }, { + "message" : "Incoming: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleservicetwo, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 748673892 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.restful_http, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 669096398 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 669096398 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.restful_http, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleservicetwo, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 669096398 + }, { + "message" : "Incoming: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleservicetwo, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 669096398 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.restful_http, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 473655651 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 473655651 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.restful_http, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleservicetwo, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 473655651 + }, { + "message" : "Incoming: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleservicetwo, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 473655651 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.restful_http, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 120999784 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 120999784 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.restful_http, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleservicetwo, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 120999784 + }, { + "message" : "Incoming: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleservicetwo, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 120999784 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.restful_http, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleservicetwo, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1436610577 + }, { + "message" : "Incoming: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleservicetwo, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1436610577 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.restful_http, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleservicetwo, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1436610577 + }, { + "message" : "Incoming: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleservicetwo, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1436610577 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.restful_http, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.jdbc, Username.servicetwo, Password.servicetwo", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 2124688514 + }, { + "message" : "Incoming: Stereotype.jdbc, Stereotype.plaintext_credentials_link, Username.servicetwo, Password.servicetwo", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 2124688514 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.restful_http, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleservicetwo, Stereotype.jdbc, Username.servicetwo, Password.servicetwo", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 2124688514 + }, { + "message" : "Incoming: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleservicetwo, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.jdbc, Username.servicetwo, Password.servicetwo", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 2124688514 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.restful_http, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 957559364 + }, { + "message" : "Incoming: Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.restful_http, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 957559364 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.restful_http, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleservicetwo, Stereotype.gateway, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 957559364 + }, { + "message" : "Incoming: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleservicetwo, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.gateway, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 957559364 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.restful_http, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.web_application, Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.encrypted_connection", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 216758017 + }, { + "message" : "Incoming: Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.restful_http, Stereotype.web_application, Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.encrypted_connection", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 216758017 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.restful_http, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleservicetwo, Stereotype.gateway, Stereotype.load_balancer, Stereotype.web_application, Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.encrypted_connection", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 216758017 + }, { + "message" : "Incoming: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleservicetwo, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.gateway, Stereotype.load_balancer, Stereotype.web_application, Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.encrypted_connection", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 216758017 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.restful_http, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1578712821 + }, { + "message" : "Incoming: Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.restful_http, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1578712821 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.restful_http, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleservicetwo, Stereotype.gateway, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1578712821 + }, { + "message" : "Incoming: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleservicetwo, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.gateway, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1578712821 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.restful_http, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.web_application, Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.encrypted_connection", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 17222024 + }, { + "message" : "Incoming: Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.restful_http, Stereotype.web_application, Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.encrypted_connection", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 17222024 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.restful_http, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleservicetwo, Stereotype.gateway, Stereotype.load_balancer, Stereotype.web_application, Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.encrypted_connection", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 17222024 + }, { + "message" : "Incoming: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleservicetwo, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.gateway, Stereotype.load_balancer, Stereotype.web_application, Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.encrypted_connection", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 17222024 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.restful_http, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.jdbc, Username.servicetwo, Password.servicetwo", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 556223230 + }, { + "message" : "Incoming: Stereotype.jdbc, Stereotype.plaintext_credentials_link, Username.servicetwo, Password.servicetwo", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 556223230 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.restful_http, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1990419108 + }, { + "message" : "Incoming: Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.restful_http, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1990419108 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.restful_http, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1641677843 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1641677843 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.restful_http, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleservicetwo, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1445448489 + }, { + "message" : "Incoming: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleservicetwo, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1445448489 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.restful_http, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.jdbc, Username.servicetwo, Password.servicetwo", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1296833449 + }, { + "message" : "Incoming: Stereotype.jdbc, Stereotype.plaintext_credentials_link, Username.servicetwo, Password.servicetwo", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1296833449 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.restful_http, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 538441446 + }, { + "message" : "Incoming: Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.restful_http, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 538441446 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.restful_http, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 2043313130 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 2043313130 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.restful_http, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1044639817 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1044639817 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.restful_http, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1968861720 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1968861720 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.restful_http, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 92962244 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 92962244 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.service_discovery, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1647891936 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1647891936 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleservicetwo, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 862931361 + }, { + "message" : "Incoming: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleservicetwo, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 862931361 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.jdbc, Stereotype.plaintext_credentials_link, Username.servicetwo, Password.servicetwo", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 747343328 + }, { + "message" : "Incoming: Stereotype.jdbc, Stereotype.plaintext_credentials_link, Username.servicetwo, Password.servicetwo", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 747343328 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1337294771 + }, { + "message" : "Incoming: Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.restful_http, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1337294771 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.service_discovery, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1795568752 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1795568752 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleservicetwo, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 577592048 + }, { + "message" : "Incoming: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleservicetwo, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 577592048 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.jdbc, Stereotype.plaintext_credentials_link, Username.servicetwo, Password.servicetwo", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1383675856 + }, { + "message" : "Incoming: Stereotype.jdbc, Stereotype.plaintext_credentials_link, Username.servicetwo, Password.servicetwo", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1383675856 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 919962315 + }, { + "message" : "Incoming: Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.restful_http, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 919962315 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.restful_http, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 501301044 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 501301044 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.restful_http, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1700973603 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1700973603 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.restful_http, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 649316770 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 649316770 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.service_discovery, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1401212518 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1401212518 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleservicetwo, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1799545709 + }, { + "message" : "Incoming: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleservicetwo, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1799545709 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.jdbc, Stereotype.plaintext_credentials_link, Username.servicetwo, Password.servicetwo", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 320414325 + }, { + "message" : "Incoming: Stereotype.jdbc, Stereotype.plaintext_credentials_link, Username.servicetwo, Password.servicetwo", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 320414325 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 2031705122 + }, { + "message" : "Incoming: Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.restful_http, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 2031705122 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.service_discovery, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 211507865 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 211507865 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleservicetwo, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1891535340 + }, { + "message" : "Incoming: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleservicetwo, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1891535340 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.jdbc, Stereotype.plaintext_credentials_link, Username.servicetwo, Password.servicetwo", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 720242436 + }, { + "message" : "Incoming: Stereotype.jdbc, Stereotype.plaintext_credentials_link, Username.servicetwo, Password.servicetwo", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 720242436 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 430290487 + }, { + "message" : "Incoming: Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.restful_http, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 430290487 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.restful_http, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 162752456 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 162752456 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.service_discovery, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 515398215 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 515398215 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleservicetwo, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 212329343 + }, { + "message" : "Incoming: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleservicetwo, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 212329343 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.jdbc, Stereotype.plaintext_credentials_link, Username.servicetwo, Password.servicetwo", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 161123811 + }, { + "message" : "Incoming: Stereotype.jdbc, Stereotype.plaintext_credentials_link, Username.servicetwo, Password.servicetwo", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 161123811 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 142561311 + }, { + "message" : "Incoming: Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.restful_http, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 142561311 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.service_discovery, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1414093109 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1414093109 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleservicetwo, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1741092056 + }, { + "message" : "Incoming: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleservicetwo, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1741092056 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.jdbc, Stereotype.plaintext_credentials_link, Username.servicetwo, Password.servicetwo", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 980326486 + }, { + "message" : "Incoming: Stereotype.jdbc, Stereotype.plaintext_credentials_link, Username.servicetwo, Password.servicetwo", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 980326486 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1214498988 + }, { + "message" : "Incoming: Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.restful_http, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1214498988 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.service_discovery, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 114159191 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 114159191 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.service_discovery, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 517991921 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 517991921 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.service_discovery, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1077109993 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1077109993 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.service_discovery, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 803116137 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 803116137 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.restful_http, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 2132961406 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 2132961406 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.service_discovery, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 508122132 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 508122132 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleservicetwo, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 923911964 + }, { + "message" : "Incoming: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleservicetwo, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 923911964 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.jdbc, Stereotype.plaintext_credentials_link, Username.servicetwo, Password.servicetwo", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 870563118 + }, { + "message" : "Incoming: Stereotype.jdbc, Stereotype.plaintext_credentials_link, Username.servicetwo, Password.servicetwo", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 870563118 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1684898059 + }, { + "message" : "Incoming: Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.restful_http, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1684898059 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.service_discovery, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 810582118 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 810582118 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleservicetwo, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 155224151 + }, { + "message" : "Incoming: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleservicetwo, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 155224151 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.jdbc, Stereotype.plaintext_credentials_link, Username.servicetwo, Password.servicetwo", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 669273756 + }, { + "message" : "Incoming: Stereotype.jdbc, Stereotype.plaintext_credentials_link, Username.servicetwo, Password.servicetwo", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 669273756 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 789178034 + }, { + "message" : "Incoming: Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.restful_http, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 789178034 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.restful_http, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 413763859 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 413763859 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.restful_http, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 888648783 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 888648783 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.service_discovery, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 746327606 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 746327606 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.service_discovery, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 57986233 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 57986233 + } ], + "children" : [ ], + "position" : { + "x" : 0.0, + "y" : 0.0 + }, + "size" : null + }, { + "text" : "service_one_db_0", + "id" : "_UWx-FPunEfCYrdfxNyUhUA", + "type" : "node:function", + "labels" : [ { + "labelTypeId" : "33", + "labelTypeValueId" : "90" + } ], + "ports" : [ { + "behavior" : "assign Stereotype.jdbc if TRUE", + "id" : "_UWx-FvunEfCYrdfxNyUhUA", + "type" : "port:dfd-output", + "children" : [ ] + }, { + "behavior" : "assign Stereotype.restful_http if TRUE", + "id" : "_UWx-F_unEfCYrdfxNyUhUA", + "type" : "port:dfd-output", + "children" : [ ] + }, { + "behavior" : "assign Stereotype.jdbc if TRUE", + "id" : "_UWx_M_unEfCYrdfxNyUhUA", + "type" : "port:dfd-output", + "children" : [ ] + }, { + "behavior" : "assign Stereotype.restful_http if TRUE", + "id" : "_UWx_W_unEfCYrdfxNyUhUA", + "type" : "port:dfd-output", + "children" : [ ] + } ], + "annotations" : [ { + "message" : "Propagated: Stereotype.jdbc", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1660536720 + }, { + "message" : "Propagated: Stereotype.jdbc", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 339734447 + }, { + "message" : "Propagated: Stereotype.jdbc", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1603213074 + }, { + "message" : "Propagated: Stereotype.jdbc", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1970880279 + }, { + "message" : "Propagated: Stereotype.jdbc", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1768926513 + }, { + "message" : "Propagated: Stereotype.jdbc", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1816978819 + }, { + "message" : "Propagated: Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 700171836 + }, { + "message" : "Propagated: Stereotype.jdbc", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1018618094 + }, { + "message" : "Propagated: Stereotype.jdbc", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 2072945115 + }, { + "message" : "Propagated: Stereotype.jdbc", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 107285100 + }, { + "message" : "Propagated: Stereotype.jdbc", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1513124396 + }, { + "message" : "Propagated: Stereotype.jdbc", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 984978888 + }, { + "message" : "Propagated: Stereotype.jdbc", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1605299030 + }, { + "message" : "Propagated: Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 663824117 + } ], + "children" : [ ], + "position" : { + "x" : 0.0, + "y" : 0.0 + }, + "size" : null + }, { + "text" : "service_one_db_1", + "id" : "_UWx-HPunEfCYrdfxNyUhUA", + "type" : "node:function", + "labels" : [ { + "labelTypeId" : "33", + "labelTypeValueId" : "90" + } ], + "ports" : [ { + "behavior" : "assign Stereotype.jdbc if TRUE", + "id" : "_UWx-HvunEfCYrdfxNyUhUA", + "type" : "port:dfd-output", + "children" : [ ] + }, { + "behavior" : "assign Stereotype.restful_http if TRUE", + "id" : "_UWx-H_unEfCYrdfxNyUhUA", + "type" : "port:dfd-output", + "children" : [ ] + }, { + "behavior" : "assign Stereotype.jdbc if TRUE", + "id" : "_UWx_NfunEfCYrdfxNyUhUA", + "type" : "port:dfd-output", + "children" : [ ] + }, { + "behavior" : "assign Stereotype.restful_http if TRUE", + "id" : "_UWx_XfunEfCYrdfxNyUhUA", + "type" : "port:dfd-output", + "children" : [ ] + } ], + "annotations" : [ { + "message" : "Propagated: Stereotype.jdbc", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1170735890 + }, { + "message" : "Propagated: Stereotype.jdbc", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1653634548 + }, { + "message" : "Propagated: Stereotype.jdbc", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1436127733 + }, { + "message" : "Propagated: Stereotype.jdbc", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1425454633 + }, { + "message" : "Propagated: Stereotype.jdbc", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1891799894 + }, { + "message" : "Propagated: Stereotype.jdbc", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1639319040 + }, { + "message" : "Propagated: Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 873134840 + }, { + "message" : "Propagated: Stereotype.jdbc", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1407858699 + }, { + "message" : "Propagated: Stereotype.jdbc", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 605787935 + }, { + "message" : "Propagated: Stereotype.jdbc", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 298156448 + }, { + "message" : "Propagated: Stereotype.jdbc", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 885403615 + }, { + "message" : "Propagated: Stereotype.jdbc", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 860148067 + }, { + "message" : "Propagated: Stereotype.jdbc", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1794666800 + }, { + "message" : "Propagated: Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1925489578 + } ], + "children" : [ ], + "position" : { + "x" : 0.0, + "y" : 0.0 + }, + "size" : null + }, { + "text" : "service_two_db_0", + "id" : "_UWx-JPunEfCYrdfxNyUhUA", + "type" : "node:function", + "labels" : [ { + "labelTypeId" : "33", + "labelTypeValueId" : "34" + } ], + "ports" : [ { + "behavior" : "assign Stereotype.jdbc,Stereotype.plaintext_credentials_link,Username.servicetwo,Password.servicetwo if TRUE", + "id" : "_UWx-JvunEfCYrdfxNyUhUA", + "type" : "port:dfd-output", + "children" : [ ] + }, { + "behavior" : "assign Stereotype.restful_http if TRUE", + "id" : "_UWx-J_unEfCYrdfxNyUhUA", + "type" : "port:dfd-output", + "children" : [ ] + }, { + "behavior" : "assign Stereotype.jdbc,Stereotype.plaintext_credentials_link,Username.servicetwo,Password.servicetwo if TRUE", + "id" : "_UWx_N_unEfCYrdfxNyUhUA", + "type" : "port:dfd-output", + "children" : [ ] + }, { + "behavior" : "assign Stereotype.restful_http if TRUE", + "id" : "_UWx_Y_unEfCYrdfxNyUhUA", + "type" : "port:dfd-output", + "children" : [ ] + } ], + "annotations" : [ { + "message" : "Propagated: Stereotype.jdbc, Stereotype.plaintext_credentials_link, Username.servicetwo, Password.servicetwo", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1686568571 + }, { + "message" : "Propagated: Stereotype.jdbc, Stereotype.plaintext_credentials_link, Username.servicetwo, Password.servicetwo", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 697818620 + }, { + "message" : "Propagated: Stereotype.jdbc, Stereotype.plaintext_credentials_link, Username.servicetwo, Password.servicetwo", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1746833724 + }, { + "message" : "Propagated: Stereotype.jdbc, Stereotype.plaintext_credentials_link, Username.servicetwo, Password.servicetwo", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1490297742 + }, { + "message" : "Propagated: Stereotype.jdbc, Stereotype.plaintext_credentials_link, Username.servicetwo, Password.servicetwo", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 63015234 + }, { + "message" : "Propagated: Stereotype.jdbc, Stereotype.plaintext_credentials_link, Username.servicetwo, Password.servicetwo", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 742969054 + }, { + "message" : "Propagated: Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1207758771 + }, { + "message" : "Propagated: Stereotype.jdbc, Stereotype.plaintext_credentials_link, Username.servicetwo, Password.servicetwo", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 756222660 + }, { + "message" : "Propagated: Stereotype.jdbc, Stereotype.plaintext_credentials_link, Username.servicetwo, Password.servicetwo", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1616453147 + }, { + "message" : "Propagated: Stereotype.jdbc, Stereotype.plaintext_credentials_link, Username.servicetwo, Password.servicetwo", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1222908765 + }, { + "message" : "Propagated: Stereotype.jdbc, Stereotype.plaintext_credentials_link, Username.servicetwo, Password.servicetwo", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1331644236 + }, { + "message" : "Propagated: Stereotype.jdbc, Stereotype.plaintext_credentials_link, Username.servicetwo, Password.servicetwo", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 995760621 + }, { + "message" : "Propagated: Stereotype.jdbc, Stereotype.plaintext_credentials_link, Username.servicetwo, Password.servicetwo", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 858934277 + }, { + "message" : "Propagated: Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1045677229 + } ], + "children" : [ ], + "position" : { + "x" : 0.0, + "y" : 0.0 + }, + "size" : null + }, { + "text" : "service_two_db_1", + "id" : "_UWx-LPunEfCYrdfxNyUhUA", + "type" : "node:function", + "labels" : [ { + "labelTypeId" : "33", + "labelTypeValueId" : "34" + } ], + "ports" : [ { + "behavior" : "assign Stereotype.jdbc,Stereotype.plaintext_credentials_link,Username.servicetwo,Password.servicetwo if TRUE", + "id" : "_UWx-LvunEfCYrdfxNyUhUA", + "type" : "port:dfd-output", + "children" : [ ] + }, { + "behavior" : "assign Stereotype.restful_http if TRUE", + "id" : "_UWx-L_unEfCYrdfxNyUhUA", + "type" : "port:dfd-output", + "children" : [ ] + }, { + "behavior" : "assign Stereotype.jdbc,Stereotype.plaintext_credentials_link,Username.servicetwo,Password.servicetwo if TRUE", + "id" : "_UWx_OfunEfCYrdfxNyUhUA", + "type" : "port:dfd-output", + "children" : [ ] + }, { + "behavior" : "assign Stereotype.restful_http if TRUE", + "id" : "_UWx_ZfunEfCYrdfxNyUhUA", + "type" : "port:dfd-output", + "children" : [ ] + } ], + "annotations" : [ { + "message" : "Propagated: Stereotype.jdbc, Stereotype.plaintext_credentials_link, Username.servicetwo, Password.servicetwo", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1078783335 + }, { + "message" : "Propagated: Stereotype.jdbc, Stereotype.plaintext_credentials_link, Username.servicetwo, Password.servicetwo", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 2124688514 + }, { + "message" : "Propagated: Stereotype.jdbc, Stereotype.plaintext_credentials_link, Username.servicetwo, Password.servicetwo", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 556223230 + }, { + "message" : "Propagated: Stereotype.jdbc, Stereotype.plaintext_credentials_link, Username.servicetwo, Password.servicetwo", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1296833449 + }, { + "message" : "Propagated: Stereotype.jdbc, Stereotype.plaintext_credentials_link, Username.servicetwo, Password.servicetwo", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 747343328 + }, { + "message" : "Propagated: Stereotype.jdbc, Stereotype.plaintext_credentials_link, Username.servicetwo, Password.servicetwo", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1383675856 + }, { + "message" : "Propagated: Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1814730197 + }, { + "message" : "Propagated: Stereotype.jdbc, Stereotype.plaintext_credentials_link, Username.servicetwo, Password.servicetwo", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 320414325 + }, { + "message" : "Propagated: Stereotype.jdbc, Stereotype.plaintext_credentials_link, Username.servicetwo, Password.servicetwo", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 720242436 + }, { + "message" : "Propagated: Stereotype.jdbc, Stereotype.plaintext_credentials_link, Username.servicetwo, Password.servicetwo", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 161123811 + }, { + "message" : "Propagated: Stereotype.jdbc, Stereotype.plaintext_credentials_link, Username.servicetwo, Password.servicetwo", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 980326486 + }, { + "message" : "Propagated: Stereotype.jdbc, Stereotype.plaintext_credentials_link, Username.servicetwo, Password.servicetwo", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 870563118 + }, { + "message" : "Propagated: Stereotype.jdbc, Stereotype.plaintext_credentials_link, Username.servicetwo, Password.servicetwo", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 669273756 + }, { + "message" : "Propagated: Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 468582533 + } ], + "children" : [ ], + "position" : { + "x" : 0.0, + "y" : 0.0 + }, + "size" : null + }, { + "text" : "api_gateway_0", + "id" : "_UWx-NPunEfCYrdfxNyUhUA", + "type" : "node:function", + "labels" : [ { + "labelTypeId" : "17", + "labelTypeValueId" : "75" + }, { + "labelTypeId" : "17", + "labelTypeValueId" : "27" + }, { + "labelTypeId" : "17", + "labelTypeValueId" : "76" + }, { + "labelTypeId" : "77", + "labelTypeValueId" : "78" + }, { + "labelTypeId" : "22", + "labelTypeValueId" : "79" + }, { + "labelTypeId" : "80", + "labelTypeValueId" : "81" + } ], + "ports" : [ { + "id" : "_UWx-NvunEfCYrdfxNyUhUA", + "type" : "port:dfd-input", + "children" : [ ] + }, { + "behavior" : "assign Stereotype.gateway,Stereotype.infrastructural,Stereotype.load_balancer,Stereotype.restful_http if TRUE\nforward consul_0|consul_0-0|web_application_0|web_application_0-0", + "id" : "_UWx-N_unEfCYrdfxNyUhUA", + "type" : "port:dfd-output", + "children" : [ ] + }, { + "behavior" : "assign Stereotype.gateway,Stereotype.infrastructural,Stereotype.load_balancer,Stereotype.restful_http if TRUE\nforward consul_0|consul_0-0|web_application_0|web_application_0-0", + "id" : "_UWx-OPunEfCYrdfxNyUhUA", + "type" : "port:dfd-output", + "children" : [ ] + }, { + "behavior" : "assign Stereotype.gateway,Stereotype.infrastructural,Stereotype.load_balancer,Stereotype.restful_http if TRUE\nforward consul_0|consul_0-0|web_application_0|web_application_0-0", + "id" : "_UWx-OfunEfCYrdfxNyUhUA", + "type" : "port:dfd-output", + "children" : [ ] + }, { + "behavior" : "assign Stereotype.gateway,Stereotype.infrastructural,Stereotype.load_balancer,Stereotype.restful_http if TRUE\nforward consul_0|consul_0-0|web_application_0|web_application_0-0", + "id" : "_UWx_O_unEfCYrdfxNyUhUA", + "type" : "port:dfd-output", + "children" : [ ] + }, { + "behavior" : "assign Stereotype.gateway,Stereotype.infrastructural,Stereotype.load_balancer,Stereotype.restful_http if TRUE\nforward consul_0|consul_0-0|web_application_0|web_application_0-0", + "id" : "_UWx_P_unEfCYrdfxNyUhUA", + "type" : "port:dfd-output", + "children" : [ ] + }, { + "behavior" : "assign Stereotype.gateway,Stereotype.infrastructural,Stereotype.load_balancer,Stereotype.restful_http if TRUE\nforward consul_0|consul_0-0|web_application_0|web_application_0-0", + "id" : "_UWx_U_unEfCYrdfxNyUhUA", + "type" : "port:dfd-output", + "children" : [ ] + } ], + "annotations" : [ { + "message" : "Propagated: Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.restful_http, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 2053555034 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 2053555034 + }, { + "message" : "Propagated: Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.restful_http, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 2039783633 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 2039783633 + }, { + "message" : "Propagated: Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.restful_http, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 121521031 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 121521031 + }, { + "message" : "Propagated: Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.restful_http, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 227005513 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 227005513 + }, { + "message" : "Propagated: Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.restful_http, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1094167216 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1094167216 + }, { + "message" : "Propagated: Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.restful_http, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 502863983 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 502863983 + }, { + "message" : "Propagated: Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.restful_http, Stereotype.web_application, Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.encrypted_connection", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1747862060 + }, { + "message" : "Incoming: Stereotype.web_application, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.encrypted_connection", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1747862060 + }, { + "message" : "Propagated: Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.restful_http, Stereotype.web_application, Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.encrypted_connection", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1538844412 + }, { + "message" : "Incoming: Stereotype.web_application, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.encrypted_connection", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1538844412 + }, { + "message" : "Propagated: Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.restful_http, Stereotype.web_application, Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.encrypted_connection", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 656844049 + }, { + "message" : "Incoming: Stereotype.web_application, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.encrypted_connection", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 656844049 + }, { + "message" : "Propagated: Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.restful_http, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1925835770 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1925835770 + }, { + "message" : "Propagated: Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.restful_http, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1751972013 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1751972013 + }, { + "message" : "Propagated: Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.restful_http, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1954507866 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1954507866 + }, { + "message" : "Propagated: Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.restful_http, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1726169577 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1726169577 + }, { + "message" : "Propagated: Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.restful_http, Stereotype.web_application, Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.encrypted_connection", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1531506932 + }, { + "message" : "Incoming: Stereotype.web_application, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.encrypted_connection", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1531506932 + }, { + "message" : "Propagated: Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.restful_http, Stereotype.web_application, Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.encrypted_connection", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1416549024 + }, { + "message" : "Incoming: Stereotype.web_application, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.encrypted_connection", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1416549024 + }, { + "message" : "Propagated: Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.restful_http, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 568717494 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 568717494 + }, { + "message" : "Propagated: Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.restful_http, Stereotype.web_application, Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.encrypted_connection", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 154923232 + }, { + "message" : "Incoming: Stereotype.web_application, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.encrypted_connection", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 154923232 + }, { + "message" : "Propagated: Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.restful_http, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1233246555 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1233246555 + }, { + "message" : "Propagated: Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.restful_http, Stereotype.web_application, Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.encrypted_connection", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1701331644 + }, { + "message" : "Incoming: Stereotype.web_application, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.encrypted_connection", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1701331644 + }, { + "message" : "Propagated: Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.restful_http, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 419416684 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 419416684 + }, { + "message" : "Propagated: Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.restful_http, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 883349979 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 883349979 + }, { + "message" : "Propagated: Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.restful_http, Stereotype.web_application, Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.encrypted_connection", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1391249801 + }, { + "message" : "Incoming: Stereotype.web_application, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.encrypted_connection", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1391249801 + }, { + "message" : "Propagated: Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.restful_http, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1969752268 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1969752268 + }, { + "message" : "Propagated: Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.restful_http, Stereotype.web_application, Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.encrypted_connection", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1392027380 + }, { + "message" : "Incoming: Stereotype.web_application, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.encrypted_connection", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1392027380 + }, { + "message" : "Propagated: Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.restful_http, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1360897103 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1360897103 + }, { + "message" : "Propagated: Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.restful_http, Stereotype.web_application, Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.encrypted_connection", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1178953630 + }, { + "message" : "Incoming: Stereotype.web_application, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.encrypted_connection", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1178953630 + }, { + "message" : "Propagated: Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.restful_http, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 3804010 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 3804010 + }, { + "message" : "Propagated: Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.restful_http, Stereotype.web_application, Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.encrypted_connection", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1402751024 + }, { + "message" : "Incoming: Stereotype.web_application, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.encrypted_connection", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1402751024 + }, { + "message" : "Propagated: Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.restful_http, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 686721068 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 686721068 + }, { + "message" : "Propagated: Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.restful_http, Stereotype.web_application, Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.encrypted_connection", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 2027371291 + }, { + "message" : "Incoming: Stereotype.web_application, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.encrypted_connection", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 2027371291 + }, { + "message" : "Propagated: Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.restful_http, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 595759572 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 595759572 + }, { + "message" : "Propagated: Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.restful_http, Stereotype.web_application, Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.encrypted_connection", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 888000613 + }, { + "message" : "Incoming: Stereotype.web_application, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.encrypted_connection", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 888000613 + }, { + "message" : "Propagated: Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.restful_http, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 701526215 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 701526215 + }, { + "message" : "Propagated: Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.restful_http, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1923626523 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1923626523 + }, { + "message" : "Propagated: Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.restful_http, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1179830093 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1179830093 + }, { + "message" : "Propagated: Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.restful_http, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 738636051 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 738636051 + }, { + "message" : "Propagated: Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.restful_http, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1968922416 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1968922416 + }, { + "message" : "Propagated: Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.restful_http, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1950102816 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1950102816 + }, { + "message" : "Propagated: Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.restful_http, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 969440066 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 969440066 + }, { + "message" : "Propagated: Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.restful_http, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 2069971440 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 2069971440 + }, { + "message" : "Propagated: Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.restful_http, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 177279387 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 177279387 + }, { + "message" : "Propagated: Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.restful_http, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 789367604 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 789367604 + }, { + "message" : "Propagated: Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.restful_http, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 700791887 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 700791887 + }, { + "message" : "Propagated: Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.restful_http, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 105019819 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 105019819 + }, { + "message" : "Propagated: Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.restful_http, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1328203744 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1328203744 + }, { + "message" : "Propagated: Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.restful_http, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1374212198 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1374212198 + }, { + "message" : "Propagated: Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.restful_http, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1487131937 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1487131937 + }, { + "message" : "Propagated: Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.restful_http, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1472904643 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1472904643 + }, { + "message" : "Propagated: Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.restful_http, Stereotype.web_application, Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.encrypted_connection", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 123458189 + }, { + "message" : "Incoming: Stereotype.web_application, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.encrypted_connection", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 123458189 + }, { + "message" : "Propagated: Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.restful_http, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 312233241 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 312233241 + }, { + "message" : "Propagated: Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.restful_http, Stereotype.web_application, Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.encrypted_connection", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 293669143 + }, { + "message" : "Incoming: Stereotype.web_application, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.encrypted_connection", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 293669143 + }, { + "message" : "Propagated: Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.restful_http, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 593881656 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 593881656 + }, { + "message" : "Propagated: Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.restful_http, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1402400433 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1402400433 + }, { + "message" : "Propagated: Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.restful_http, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 366098173 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 366098173 + }, { + "message" : "Propagated: Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.restful_http, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 936632640 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 936632640 + } ], + "children" : [ ], + "position" : { + "x" : 0.0, + "y" : 0.0 + }, + "size" : null + }, { + "text" : "api_gateway_1", + "id" : "_UWx-Q_unEfCYrdfxNyUhUA", + "type" : "node:function", + "labels" : [ { + "labelTypeId" : "17", + "labelTypeValueId" : "75" + }, { + "labelTypeId" : "17", + "labelTypeValueId" : "27" + }, { + "labelTypeId" : "17", + "labelTypeValueId" : "76" + }, { + "labelTypeId" : "77", + "labelTypeValueId" : "78" + }, { + "labelTypeId" : "22", + "labelTypeValueId" : "79" + }, { + "labelTypeId" : "80", + "labelTypeValueId" : "81" + } ], + "ports" : [ { + "id" : "_UWx-RfunEfCYrdfxNyUhUA", + "type" : "port:dfd-input", + "children" : [ ] + }, { + "behavior" : "assign Stereotype.gateway,Stereotype.infrastructural,Stereotype.load_balancer,Stereotype.restful_http if TRUE\nforward consul_1|consul_1-0|web_application_1|web_application_1-0", + "id" : "_UWx-RvunEfCYrdfxNyUhUA", + "type" : "port:dfd-output", + "children" : [ ] + }, { + "behavior" : "assign Stereotype.gateway,Stereotype.infrastructural,Stereotype.load_balancer,Stereotype.restful_http if TRUE\nforward consul_1|consul_1-0|web_application_1|web_application_1-0", + "id" : "_UWx-R_unEfCYrdfxNyUhUA", + "type" : "port:dfd-output", + "children" : [ ] + }, { + "behavior" : "assign Stereotype.gateway,Stereotype.infrastructural,Stereotype.load_balancer,Stereotype.restful_http if TRUE\nforward consul_1|consul_1-0|web_application_1|web_application_1-0", + "id" : "_UWx-SPunEfCYrdfxNyUhUA", + "type" : "port:dfd-output", + "children" : [ ] + }, { + "behavior" : "assign Stereotype.gateway,Stereotype.infrastructural,Stereotype.load_balancer,Stereotype.restful_http if TRUE\nforward consul_1|consul_1-0|web_application_1|web_application_1-0", + "id" : "_UWx_PfunEfCYrdfxNyUhUA", + "type" : "port:dfd-output", + "children" : [ ] + }, { + "behavior" : "assign Stereotype.gateway,Stereotype.infrastructural,Stereotype.load_balancer,Stereotype.restful_http if TRUE\nforward consul_1|consul_1-0|web_application_1|web_application_1-0", + "id" : "_UWx_QfunEfCYrdfxNyUhUA", + "type" : "port:dfd-output", + "children" : [ ] + }, { + "behavior" : "assign Stereotype.gateway,Stereotype.infrastructural,Stereotype.load_balancer,Stereotype.restful_http if TRUE\nforward consul_1|consul_1-0|web_application_1|web_application_1-0", + "id" : "_UWx_VfunEfCYrdfxNyUhUA", + "type" : "port:dfd-output", + "children" : [ ] + } ], + "annotations" : [ { + "message" : "Propagated: Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.restful_http, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1753607449 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1753607449 + }, { + "message" : "Propagated: Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.restful_http, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 276922182 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 276922182 + }, { + "message" : "Propagated: Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.restful_http, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 759840275 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 759840275 + }, { + "message" : "Propagated: Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.restful_http, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1243800791 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1243800791 + }, { + "message" : "Propagated: Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.restful_http, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 227030447 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 227030447 + }, { + "message" : "Propagated: Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.restful_http, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 375918615 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 375918615 + }, { + "message" : "Propagated: Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.restful_http, Stereotype.web_application, Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.encrypted_connection", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1789791855 + }, { + "message" : "Incoming: Stereotype.web_application, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.encrypted_connection", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1789791855 + }, { + "message" : "Propagated: Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.restful_http, Stereotype.web_application, Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.encrypted_connection", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 930569137 + }, { + "message" : "Incoming: Stereotype.web_application, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.encrypted_connection", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 930569137 + }, { + "message" : "Propagated: Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.restful_http, Stereotype.web_application, Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.encrypted_connection", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 2073961917 + }, { + "message" : "Incoming: Stereotype.web_application, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.encrypted_connection", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 2073961917 + }, { + "message" : "Propagated: Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.restful_http, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 757099121 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 757099121 + }, { + "message" : "Propagated: Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.restful_http, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 937936076 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 937936076 + }, { + "message" : "Propagated: Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.restful_http, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 977320786 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 977320786 + }, { + "message" : "Propagated: Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.restful_http, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 813285994 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 813285994 + }, { + "message" : "Propagated: Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.restful_http, Stereotype.web_application, Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.encrypted_connection", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 505693686 + }, { + "message" : "Incoming: Stereotype.web_application, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.encrypted_connection", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 505693686 + }, { + "message" : "Propagated: Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.restful_http, Stereotype.web_application, Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.encrypted_connection", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 401355610 + }, { + "message" : "Incoming: Stereotype.web_application, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.encrypted_connection", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 401355610 + }, { + "message" : "Propagated: Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.restful_http, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 2077462509 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 2077462509 + }, { + "message" : "Propagated: Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.restful_http, Stereotype.web_application, Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.encrypted_connection", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 931003277 + }, { + "message" : "Incoming: Stereotype.web_application, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.encrypted_connection", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 931003277 + }, { + "message" : "Propagated: Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.restful_http, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1117812847 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1117812847 + }, { + "message" : "Propagated: Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.restful_http, Stereotype.web_application, Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.encrypted_connection", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1198859194 + }, { + "message" : "Incoming: Stereotype.web_application, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.encrypted_connection", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1198859194 + }, { + "message" : "Propagated: Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.restful_http, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1212782393 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1212782393 + }, { + "message" : "Propagated: Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.restful_http, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 885481831 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 885481831 + }, { + "message" : "Propagated: Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.restful_http, Stereotype.web_application, Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.encrypted_connection", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 817092761 + }, { + "message" : "Incoming: Stereotype.web_application, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.encrypted_connection", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 817092761 + }, { + "message" : "Propagated: Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.restful_http, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 2027499247 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 2027499247 + }, { + "message" : "Propagated: Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.restful_http, Stereotype.web_application, Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.encrypted_connection", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1641418296 + }, { + "message" : "Incoming: Stereotype.web_application, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.encrypted_connection", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1641418296 + }, { + "message" : "Propagated: Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.restful_http, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1901272535 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1901272535 + }, { + "message" : "Propagated: Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.restful_http, Stereotype.web_application, Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.encrypted_connection", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 539322891 + }, { + "message" : "Incoming: Stereotype.web_application, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.encrypted_connection", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 539322891 + }, { + "message" : "Propagated: Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.restful_http, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1649096004 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1649096004 + }, { + "message" : "Propagated: Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.restful_http, Stereotype.web_application, Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.encrypted_connection", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1162595263 + }, { + "message" : "Incoming: Stereotype.web_application, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.encrypted_connection", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1162595263 + }, { + "message" : "Propagated: Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.restful_http, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 957559364 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 957559364 + }, { + "message" : "Propagated: Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.restful_http, Stereotype.web_application, Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.encrypted_connection", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 216758017 + }, { + "message" : "Incoming: Stereotype.web_application, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.encrypted_connection", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 216758017 + }, { + "message" : "Propagated: Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.restful_http, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1578712821 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1578712821 + }, { + "message" : "Propagated: Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.restful_http, Stereotype.web_application, Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.encrypted_connection", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 17222024 + }, { + "message" : "Incoming: Stereotype.web_application, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.encrypted_connection", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 17222024 + }, { + "message" : "Propagated: Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.restful_http, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1990419108 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1990419108 + }, { + "message" : "Propagated: Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.restful_http, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 538441446 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 538441446 + }, { + "message" : "Propagated: Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.restful_http, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1271515799 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1271515799 + }, { + "message" : "Propagated: Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.restful_http, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1361241279 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1361241279 + }, { + "message" : "Propagated: Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.restful_http, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 670503317 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 670503317 + }, { + "message" : "Propagated: Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.restful_http, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1337294771 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1337294771 + }, { + "message" : "Propagated: Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.restful_http, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 919962315 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 919962315 + }, { + "message" : "Propagated: Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.restful_http, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1468809177 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1468809177 + }, { + "message" : "Propagated: Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.restful_http, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 308221618 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 308221618 + }, { + "message" : "Propagated: Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.restful_http, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 2031705122 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 2031705122 + }, { + "message" : "Propagated: Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.restful_http, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 430290487 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 430290487 + }, { + "message" : "Propagated: Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.restful_http, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 627411361 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 627411361 + }, { + "message" : "Propagated: Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.restful_http, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1038585959 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1038585959 + }, { + "message" : "Propagated: Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.restful_http, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 142561311 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 142561311 + }, { + "message" : "Propagated: Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.restful_http, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1214498988 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1214498988 + }, { + "message" : "Propagated: Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.restful_http, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 516885190 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 516885190 + }, { + "message" : "Propagated: Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.restful_http, Stereotype.web_application, Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.encrypted_connection", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1166029274 + }, { + "message" : "Incoming: Stereotype.web_application, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.encrypted_connection", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1166029274 + }, { + "message" : "Propagated: Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.restful_http, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 2078887126 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 2078887126 + }, { + "message" : "Propagated: Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.restful_http, Stereotype.web_application, Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.encrypted_connection", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 550498846 + }, { + "message" : "Incoming: Stereotype.web_application, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.encrypted_connection", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 550498846 + }, { + "message" : "Propagated: Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.restful_http, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1824819735 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1824819735 + }, { + "message" : "Propagated: Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.restful_http, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 581225034 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 581225034 + }, { + "message" : "Propagated: Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.restful_http, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1684898059 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1684898059 + }, { + "message" : "Propagated: Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.restful_http, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 789178034 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 789178034 + } ], + "children" : [ ], + "position" : { + "x" : 0.0, + "y" : 0.0 + }, + "size" : null + }, { + "text" : "web_application_0", + "id" : "_UWx-UvunEfCYrdfxNyUhUA", + "type" : "node:function", + "labels" : [ { + "labelTypeId" : "17", + "labelTypeValueId" : "37" + }, { + "labelTypeId" : "17", + "labelTypeValueId" : "27" + }, { + "labelTypeId" : "22", + "labelTypeValueId" : "38" + }, { + "labelTypeId" : "39", + "labelTypeValueId" : "40" + } ], + "ports" : [ { + "id" : "_UWx-VPunEfCYrdfxNyUhUA", + "type" : "port:dfd-input", + "children" : [ ] + }, { + "behavior" : "assign Stereotype.web_application,Stereotype.infrastructural,Stereotype.restful_http,Stereotype.encrypted_connection if TRUE\nforward user_0|user_0-0", + "id" : "_UWx-VfunEfCYrdfxNyUhUA", + "type" : "port:dfd-output", + "children" : [ ] + }, { + "behavior" : "assign Stereotype.web_application,Stereotype.infrastructural,Stereotype.restful_http if TRUE\nforward user_0|user_0-0", + "id" : "_UWx-VvunEfCYrdfxNyUhUA", + "type" : "port:dfd-output", + "children" : [ ] + }, { + "behavior" : "assign Stereotype.web_application,Stereotype.infrastructural,Stereotype.restful_http if TRUE\nforward user_0|user_0-0", + "id" : "_UWx-V_unEfCYrdfxNyUhUA", + "type" : "port:dfd-output", + "children" : [ ] + }, { + "behavior" : "assign Stereotype.web_application,Stereotype.infrastructural,Stereotype.restful_http,Stereotype.encrypted_connection if TRUE\nforward user_0|user_0-0", + "id" : "_UWx_S_unEfCYrdfxNyUhUA", + "type" : "port:dfd-output", + "children" : [ ] + }, { + "behavior" : "assign Stereotype.web_application,Stereotype.infrastructural,Stereotype.restful_http if TRUE\nforward user_0|user_0-0", + "id" : "_UWx_T_unEfCYrdfxNyUhUA", + "type" : "port:dfd-output", + "children" : [ ] + }, { + "behavior" : "assign Stereotype.web_application,Stereotype.infrastructural,Stereotype.restful_http if TRUE\nforward user_0|user_0-0", + "id" : "_UWx_Z_unEfCYrdfxNyUhUA", + "type" : "port:dfd-output", + "children" : [ ] + } ], + "annotations" : [ { + "message" : "Propagated: Stereotype.web_application, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.encrypted_connection", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1747862060 + }, { + "message" : "Propagated: Stereotype.web_application, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.encrypted_connection, Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1747862060 + }, { + "message" : "Incoming: Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.restful_http, Stereotype.encrypted_connection, Stereotype.web_application, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1747862060 + }, { + "message" : "Propagated: Stereotype.web_application, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.encrypted_connection", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1747862060 + }, { + "message" : "Incoming: Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.restful_http, Stereotype.encrypted_connection, Stereotype.web_application, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1747862060 + }, { + "message" : "Propagated: Stereotype.web_application, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.encrypted_connection", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1538844412 + }, { + "message" : "Propagated: Stereotype.web_application, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.encrypted_connection", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1538844412 + }, { + "message" : "Incoming: Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.restful_http, Stereotype.encrypted_connection, Stereotype.web_application, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1538844412 + }, { + "message" : "Propagated: Stereotype.web_application, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.encrypted_connection", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 656844049 + }, { + "message" : "Propagated: Stereotype.web_application, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.encrypted_connection", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 656844049 + }, { + "message" : "Incoming: Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.restful_http, Stereotype.encrypted_connection, Stereotype.web_application, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 656844049 + }, { + "message" : "Propagated: Stereotype.web_application, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.encrypted_connection", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1531506932 + }, { + "message" : "Propagated: Stereotype.web_application, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.encrypted_connection, Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1531506932 + }, { + "message" : "Incoming: Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.restful_http, Stereotype.encrypted_connection, Stereotype.web_application, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1531506932 + }, { + "message" : "Propagated: Stereotype.web_application, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.encrypted_connection", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1531506932 + }, { + "message" : "Incoming: Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.restful_http, Stereotype.encrypted_connection, Stereotype.web_application, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1531506932 + }, { + "message" : "Propagated: Stereotype.web_application, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.encrypted_connection", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1416549024 + }, { + "message" : "Propagated: Stereotype.web_application, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.encrypted_connection", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1416549024 + }, { + "message" : "Incoming: Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.restful_http, Stereotype.encrypted_connection, Stereotype.web_application, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1416549024 + }, { + "message" : "Propagated: Stereotype.web_application, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.encrypted_connection", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 154923232 + }, { + "message" : "Propagated: Stereotype.web_application, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.encrypted_connection, Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 154923232 + }, { + "message" : "Incoming: Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.restful_http, Stereotype.encrypted_connection, Stereotype.web_application, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 154923232 + }, { + "message" : "Propagated: Stereotype.web_application, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.encrypted_connection", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 154923232 + }, { + "message" : "Incoming: Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.restful_http, Stereotype.encrypted_connection, Stereotype.web_application, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 154923232 + }, { + "message" : "Propagated: Stereotype.web_application, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.encrypted_connection", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1701331644 + }, { + "message" : "Propagated: Stereotype.web_application, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.encrypted_connection, Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1701331644 + }, { + "message" : "Incoming: Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.restful_http, Stereotype.encrypted_connection, Stereotype.web_application, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1701331644 + }, { + "message" : "Propagated: Stereotype.web_application, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.encrypted_connection", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1701331644 + }, { + "message" : "Incoming: Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.restful_http, Stereotype.encrypted_connection, Stereotype.web_application, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1701331644 + }, { + "message" : "Propagated: Stereotype.web_application, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.encrypted_connection", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1391249801 + }, { + "message" : "Propagated: Stereotype.web_application, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.encrypted_connection, Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1391249801 + }, { + "message" : "Incoming: Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.restful_http, Stereotype.encrypted_connection, Stereotype.web_application, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1391249801 + }, { + "message" : "Propagated: Stereotype.web_application, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.encrypted_connection", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1391249801 + }, { + "message" : "Incoming: Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.restful_http, Stereotype.encrypted_connection, Stereotype.web_application, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1391249801 + }, { + "message" : "Propagated: Stereotype.web_application, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.encrypted_connection", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1392027380 + }, { + "message" : "Propagated: Stereotype.web_application, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.encrypted_connection, Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1392027380 + }, { + "message" : "Incoming: Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.restful_http, Stereotype.encrypted_connection, Stereotype.web_application, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1392027380 + }, { + "message" : "Propagated: Stereotype.web_application, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.encrypted_connection", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1392027380 + }, { + "message" : "Incoming: Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.restful_http, Stereotype.encrypted_connection, Stereotype.web_application, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1392027380 + }, { + "message" : "Propagated: Stereotype.web_application, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.encrypted_connection", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1178953630 + }, { + "message" : "Propagated: Stereotype.web_application, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.encrypted_connection, Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1178953630 + }, { + "message" : "Incoming: Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.restful_http, Stereotype.encrypted_connection, Stereotype.web_application, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1178953630 + }, { + "message" : "Propagated: Stereotype.web_application, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.encrypted_connection", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1178953630 + }, { + "message" : "Incoming: Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.restful_http, Stereotype.encrypted_connection, Stereotype.web_application, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1178953630 + }, { + "message" : "Propagated: Stereotype.web_application, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.encrypted_connection", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1402751024 + }, { + "message" : "Propagated: Stereotype.web_application, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.encrypted_connection, Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1402751024 + }, { + "message" : "Incoming: Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.restful_http, Stereotype.encrypted_connection, Stereotype.web_application, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1402751024 + }, { + "message" : "Propagated: Stereotype.web_application, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.encrypted_connection", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1402751024 + }, { + "message" : "Incoming: Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.restful_http, Stereotype.encrypted_connection, Stereotype.web_application, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1402751024 + }, { + "message" : "Propagated: Stereotype.web_application, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.encrypted_connection", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 2027371291 + }, { + "message" : "Propagated: Stereotype.web_application, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.encrypted_connection, Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 2027371291 + }, { + "message" : "Incoming: Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.restful_http, Stereotype.encrypted_connection, Stereotype.web_application, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 2027371291 + }, { + "message" : "Propagated: Stereotype.web_application, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.encrypted_connection", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 2027371291 + }, { + "message" : "Incoming: Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.restful_http, Stereotype.encrypted_connection, Stereotype.web_application, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 2027371291 + }, { + "message" : "Propagated: Stereotype.web_application, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.encrypted_connection", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 888000613 + }, { + "message" : "Propagated: Stereotype.web_application, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.encrypted_connection, Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 888000613 + }, { + "message" : "Incoming: Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.restful_http, Stereotype.encrypted_connection, Stereotype.web_application, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 888000613 + }, { + "message" : "Propagated: Stereotype.web_application, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.encrypted_connection", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 888000613 + }, { + "message" : "Incoming: Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.restful_http, Stereotype.encrypted_connection, Stereotype.web_application, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 888000613 + }, { + "message" : "Propagated: Stereotype.web_application, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.encrypted_connection", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 37142680 + }, { + "message" : "Propagated: Stereotype.web_application, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.encrypted_connection, Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 37142680 + }, { + "message" : "Incoming: Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.restful_http, Stereotype.encrypted_connection, Stereotype.web_application, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 37142680 + }, { + "message" : "Propagated: Stereotype.web_application, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.encrypted_connection", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 37142680 + }, { + "message" : "Incoming: Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.restful_http, Stereotype.encrypted_connection, Stereotype.web_application, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 37142680 + }, { + "message" : "Propagated: Stereotype.web_application, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.encrypted_connection", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1759694910 + }, { + "message" : "Propagated: Stereotype.web_application, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.encrypted_connection", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1759694910 + }, { + "message" : "Incoming: Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.restful_http, Stereotype.encrypted_connection, Stereotype.web_application, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1759694910 + }, { + "message" : "Propagated: Stereotype.web_application, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.encrypted_connection", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 123458189 + }, { + "message" : "Propagated: Stereotype.web_application, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.encrypted_connection, Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 123458189 + }, { + "message" : "Incoming: Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.restful_http, Stereotype.encrypted_connection, Stereotype.web_application, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 123458189 + }, { + "message" : "Propagated: Stereotype.web_application, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.encrypted_connection", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 123458189 + }, { + "message" : "Incoming: Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.restful_http, Stereotype.encrypted_connection, Stereotype.web_application, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 123458189 + }, { + "message" : "Propagated: Stereotype.web_application, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.encrypted_connection", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 293669143 + }, { + "message" : "Propagated: Stereotype.web_application, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.encrypted_connection, Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 293669143 + }, { + "message" : "Incoming: Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.restful_http, Stereotype.encrypted_connection, Stereotype.web_application, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 293669143 + }, { + "message" : "Propagated: Stereotype.web_application, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.encrypted_connection", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 293669143 + }, { + "message" : "Incoming: Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.restful_http, Stereotype.encrypted_connection, Stereotype.web_application, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 293669143 + }, { + "message" : "Propagated: Stereotype.web_application, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.encrypted_connection", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 54440148 + }, { + "message" : "Propagated: Stereotype.web_application, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.encrypted_connection, Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 54440148 + }, { + "message" : "Incoming: Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.restful_http, Stereotype.encrypted_connection, Stereotype.web_application, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 54440148 + }, { + "message" : "Propagated: Stereotype.web_application, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.encrypted_connection", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 54440148 + }, { + "message" : "Incoming: Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.restful_http, Stereotype.encrypted_connection, Stereotype.web_application, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 54440148 + }, { + "message" : "Propagated: Stereotype.web_application, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.encrypted_connection", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 575506130 + }, { + "message" : "Propagated: Stereotype.web_application, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.encrypted_connection", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 575506130 + }, { + "message" : "Incoming: Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.restful_http, Stereotype.encrypted_connection, Stereotype.web_application, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 575506130 + } ], + "children" : [ ], + "position" : { + "x" : 0.0, + "y" : 0.0 + }, + "size" : null + }, { + "text" : "web_application_1", + "id" : "_UWx-YfunEfCYrdfxNyUhUA", + "type" : "node:function", + "labels" : [ { + "labelTypeId" : "17", + "labelTypeValueId" : "37" + }, { + "labelTypeId" : "17", + "labelTypeValueId" : "27" + }, { + "labelTypeId" : "22", + "labelTypeValueId" : "38" + }, { + "labelTypeId" : "39", + "labelTypeValueId" : "40" + } ], + "ports" : [ { + "id" : "_UWx-Y_unEfCYrdfxNyUhUA", + "type" : "port:dfd-input", + "children" : [ ] + }, { + "behavior" : "assign Stereotype.web_application,Stereotype.infrastructural,Stereotype.restful_http,Stereotype.encrypted_connection if TRUE\nforward user_1|user_1-0", + "id" : "_UWx-ZPunEfCYrdfxNyUhUA", + "type" : "port:dfd-output", + "children" : [ ] + }, { + "behavior" : "assign Stereotype.web_application,Stereotype.infrastructural,Stereotype.restful_http if TRUE\nforward user_1|user_1-0", + "id" : "_UWx-ZfunEfCYrdfxNyUhUA", + "type" : "port:dfd-output", + "children" : [ ] + }, { + "behavior" : "assign Stereotype.web_application,Stereotype.infrastructural,Stereotype.restful_http if TRUE\nforward user_1|user_1-0", + "id" : "_UWx-ZvunEfCYrdfxNyUhUA", + "type" : "port:dfd-output", + "children" : [ ] + }, { + "behavior" : "assign Stereotype.web_application,Stereotype.infrastructural,Stereotype.restful_http,Stereotype.encrypted_connection if TRUE\nforward user_1|user_1-0", + "id" : "_UWx_TfunEfCYrdfxNyUhUA", + "type" : "port:dfd-output", + "children" : [ ] + }, { + "behavior" : "assign Stereotype.web_application,Stereotype.infrastructural,Stereotype.restful_http if TRUE\nforward user_1|user_1-0", + "id" : "_UWx_UfunEfCYrdfxNyUhUA", + "type" : "port:dfd-output", + "children" : [ ] + }, { + "behavior" : "assign Stereotype.web_application,Stereotype.infrastructural,Stereotype.restful_http if TRUE\nforward user_1|user_1-0", + "id" : "_UWx_afunEfCYrdfxNyUhUA", + "type" : "port:dfd-output", + "children" : [ ] + } ], + "annotations" : [ { + "message" : "Propagated: Stereotype.web_application, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.encrypted_connection", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1789791855 + }, { + "message" : "Propagated: Stereotype.web_application, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.encrypted_connection, Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1789791855 + }, { + "message" : "Incoming: Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.restful_http, Stereotype.encrypted_connection, Stereotype.web_application, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1789791855 + }, { + "message" : "Propagated: Stereotype.web_application, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.encrypted_connection", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1789791855 + }, { + "message" : "Incoming: Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.restful_http, Stereotype.encrypted_connection, Stereotype.web_application, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1789791855 + }, { + "message" : "Propagated: Stereotype.web_application, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.encrypted_connection", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 930569137 + }, { + "message" : "Propagated: Stereotype.web_application, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.encrypted_connection", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 930569137 + }, { + "message" : "Incoming: Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.restful_http, Stereotype.encrypted_connection, Stereotype.web_application, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 930569137 + }, { + "message" : "Propagated: Stereotype.web_application, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.encrypted_connection", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 2073961917 + }, { + "message" : "Propagated: Stereotype.web_application, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.encrypted_connection", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 2073961917 + }, { + "message" : "Incoming: Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.restful_http, Stereotype.encrypted_connection, Stereotype.web_application, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 2073961917 + }, { + "message" : "Propagated: Stereotype.web_application, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.encrypted_connection", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 505693686 + }, { + "message" : "Propagated: Stereotype.web_application, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.encrypted_connection, Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 505693686 + }, { + "message" : "Incoming: Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.restful_http, Stereotype.encrypted_connection, Stereotype.web_application, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 505693686 + }, { + "message" : "Propagated: Stereotype.web_application, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.encrypted_connection", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 505693686 + }, { + "message" : "Incoming: Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.restful_http, Stereotype.encrypted_connection, Stereotype.web_application, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 505693686 + }, { + "message" : "Propagated: Stereotype.web_application, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.encrypted_connection", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 401355610 + }, { + "message" : "Propagated: Stereotype.web_application, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.encrypted_connection", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 401355610 + }, { + "message" : "Incoming: Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.restful_http, Stereotype.encrypted_connection, Stereotype.web_application, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 401355610 + }, { + "message" : "Propagated: Stereotype.web_application, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.encrypted_connection", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 931003277 + }, { + "message" : "Propagated: Stereotype.web_application, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.encrypted_connection, Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 931003277 + }, { + "message" : "Incoming: Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.restful_http, Stereotype.encrypted_connection, Stereotype.web_application, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 931003277 + }, { + "message" : "Propagated: Stereotype.web_application, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.encrypted_connection", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 931003277 + }, { + "message" : "Incoming: Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.restful_http, Stereotype.encrypted_connection, Stereotype.web_application, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 931003277 + }, { + "message" : "Propagated: Stereotype.web_application, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.encrypted_connection", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1198859194 + }, { + "message" : "Propagated: Stereotype.web_application, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.encrypted_connection, Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1198859194 + }, { + "message" : "Incoming: Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.restful_http, Stereotype.encrypted_connection, Stereotype.web_application, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1198859194 + }, { + "message" : "Propagated: Stereotype.web_application, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.encrypted_connection", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1198859194 + }, { + "message" : "Incoming: Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.restful_http, Stereotype.encrypted_connection, Stereotype.web_application, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1198859194 + }, { + "message" : "Propagated: Stereotype.web_application, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.encrypted_connection", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 817092761 + }, { + "message" : "Propagated: Stereotype.web_application, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.encrypted_connection, Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 817092761 + }, { + "message" : "Incoming: Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.restful_http, Stereotype.encrypted_connection, Stereotype.web_application, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 817092761 + }, { + "message" : "Propagated: Stereotype.web_application, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.encrypted_connection", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 817092761 + }, { + "message" : "Incoming: Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.restful_http, Stereotype.encrypted_connection, Stereotype.web_application, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 817092761 + }, { + "message" : "Propagated: Stereotype.web_application, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.encrypted_connection", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1641418296 + }, { + "message" : "Propagated: Stereotype.web_application, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.encrypted_connection, Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1641418296 + }, { + "message" : "Incoming: Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.restful_http, Stereotype.encrypted_connection, Stereotype.web_application, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1641418296 + }, { + "message" : "Propagated: Stereotype.web_application, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.encrypted_connection", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1641418296 + }, { + "message" : "Incoming: Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.restful_http, Stereotype.encrypted_connection, Stereotype.web_application, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1641418296 + }, { + "message" : "Propagated: Stereotype.web_application, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.encrypted_connection", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 539322891 + }, { + "message" : "Propagated: Stereotype.web_application, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.encrypted_connection, Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 539322891 + }, { + "message" : "Incoming: Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.restful_http, Stereotype.encrypted_connection, Stereotype.web_application, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 539322891 + }, { + "message" : "Propagated: Stereotype.web_application, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.encrypted_connection", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 539322891 + }, { + "message" : "Incoming: Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.restful_http, Stereotype.encrypted_connection, Stereotype.web_application, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 539322891 + }, { + "message" : "Propagated: Stereotype.web_application, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.encrypted_connection", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1162595263 + }, { + "message" : "Propagated: Stereotype.web_application, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.encrypted_connection, Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1162595263 + }, { + "message" : "Incoming: Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.restful_http, Stereotype.encrypted_connection, Stereotype.web_application, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1162595263 + }, { + "message" : "Propagated: Stereotype.web_application, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.encrypted_connection", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1162595263 + }, { + "message" : "Incoming: Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.restful_http, Stereotype.encrypted_connection, Stereotype.web_application, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1162595263 + }, { + "message" : "Propagated: Stereotype.web_application, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.encrypted_connection", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 216758017 + }, { + "message" : "Propagated: Stereotype.web_application, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.encrypted_connection, Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 216758017 + }, { + "message" : "Incoming: Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.restful_http, Stereotype.encrypted_connection, Stereotype.web_application, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 216758017 + }, { + "message" : "Propagated: Stereotype.web_application, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.encrypted_connection", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 216758017 + }, { + "message" : "Incoming: Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.restful_http, Stereotype.encrypted_connection, Stereotype.web_application, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 216758017 + }, { + "message" : "Propagated: Stereotype.web_application, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.encrypted_connection", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 17222024 + }, { + "message" : "Propagated: Stereotype.web_application, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.encrypted_connection, Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 17222024 + }, { + "message" : "Incoming: Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.restful_http, Stereotype.encrypted_connection, Stereotype.web_application, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 17222024 + }, { + "message" : "Propagated: Stereotype.web_application, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.encrypted_connection", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 17222024 + }, { + "message" : "Incoming: Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.restful_http, Stereotype.encrypted_connection, Stereotype.web_application, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 17222024 + }, { + "message" : "Propagated: Stereotype.web_application, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.encrypted_connection", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 618199162 + }, { + "message" : "Propagated: Stereotype.web_application, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.encrypted_connection, Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 618199162 + }, { + "message" : "Incoming: Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.restful_http, Stereotype.encrypted_connection, Stereotype.web_application, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 618199162 + }, { + "message" : "Propagated: Stereotype.web_application, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.encrypted_connection", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 618199162 + }, { + "message" : "Incoming: Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.restful_http, Stereotype.encrypted_connection, Stereotype.web_application, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 618199162 + }, { + "message" : "Propagated: Stereotype.web_application, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.encrypted_connection", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1057262726 + }, { + "message" : "Propagated: Stereotype.web_application, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.encrypted_connection", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1057262726 + }, { + "message" : "Incoming: Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.restful_http, Stereotype.encrypted_connection, Stereotype.web_application, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1057262726 + }, { + "message" : "Propagated: Stereotype.web_application, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.encrypted_connection", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1166029274 + }, { + "message" : "Propagated: Stereotype.web_application, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.encrypted_connection, Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1166029274 + }, { + "message" : "Incoming: Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.restful_http, Stereotype.encrypted_connection, Stereotype.web_application, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1166029274 + }, { + "message" : "Propagated: Stereotype.web_application, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.encrypted_connection", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1166029274 + }, { + "message" : "Incoming: Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.restful_http, Stereotype.encrypted_connection, Stereotype.web_application, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1166029274 + }, { + "message" : "Propagated: Stereotype.web_application, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.encrypted_connection", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 550498846 + }, { + "message" : "Propagated: Stereotype.web_application, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.encrypted_connection, Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 550498846 + }, { + "message" : "Incoming: Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.restful_http, Stereotype.encrypted_connection, Stereotype.web_application, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 550498846 + }, { + "message" : "Propagated: Stereotype.web_application, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.encrypted_connection", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 550498846 + }, { + "message" : "Incoming: Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.restful_http, Stereotype.encrypted_connection, Stereotype.web_application, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 550498846 + }, { + "message" : "Propagated: Stereotype.web_application, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.encrypted_connection", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 383852959 + }, { + "message" : "Propagated: Stereotype.web_application, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.encrypted_connection, Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 383852959 + }, { + "message" : "Incoming: Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.restful_http, Stereotype.encrypted_connection, Stereotype.web_application, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 383852959 + }, { + "message" : "Propagated: Stereotype.web_application, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.encrypted_connection", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 383852959 + }, { + "message" : "Incoming: Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.restful_http, Stereotype.encrypted_connection, Stereotype.web_application, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 383852959 + }, { + "message" : "Propagated: Stereotype.web_application, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.encrypted_connection", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 334761329 + }, { + "message" : "Propagated: Stereotype.web_application, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.encrypted_connection", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 334761329 + }, { + "message" : "Incoming: Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.restful_http, Stereotype.encrypted_connection, Stereotype.web_application, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 334761329 + } ], + "children" : [ ], + "position" : { + "x" : 0.0, + "y" : 0.0 + }, + "size" : null + }, { + "text" : "scope_0", + "id" : "_UWx-cPunEfCYrdfxNyUhUA", + "type" : "node:function", + "labels" : [ { + "labelTypeId" : "17", + "labelTypeValueId" : "69" + }, { + "labelTypeId" : "17", + "labelTypeValueId" : "27" + }, { + "labelTypeId" : "70", + "labelTypeValueId" : "71" + }, { + "labelTypeId" : "22", + "labelTypeValueId" : "72" + } ], + "ports" : [ { + "id" : "_UWx-cvunEfCYrdfxNyUhUA", + "type" : "port:dfd-input", + "children" : [ ] + } ], + "annotations" : [ { + "message" : "Incoming: Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.restful_http, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 2053555034 + }, { + "message" : "Incoming: Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.restful_http, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 2039783633 + }, { + "message" : "Incoming: Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.restful_http, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 121521031 + }, { + "message" : "Incoming: Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.restful_http, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 227005513 + }, { + "message" : "Incoming: Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.restful_http, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1094167216 + }, { + "message" : "Incoming: Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.restful_http, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 502863983 + }, { + "message" : "Incoming: Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.restful_http, Stereotype.web_application, Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.encrypted_connection", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1747862060 + }, { + "message" : "Incoming: Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.restful_http, Stereotype.web_application, Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.encrypted_connection", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1538844412 + }, { + "message" : "Incoming: Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.restful_http, Stereotype.web_application, Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.encrypted_connection", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 656844049 + }, { + "message" : "Incoming: Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.restful_http, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1925835770 + }, { + "message" : "Incoming: Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.restful_http, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1751972013 + }, { + "message" : "Incoming: Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.restful_http, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1954507866 + }, { + "message" : "Incoming: Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.restful_http, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1726169577 + }, { + "message" : "Incoming: Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.restful_http, Stereotype.web_application, Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.encrypted_connection", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1531506932 + }, { + "message" : "Incoming: Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.restful_http, Stereotype.web_application, Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.encrypted_connection", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1416549024 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.service_discovery, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1543272907 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.service_discovery, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 669812564 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.service_discovery, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1002380301 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.service_discovery, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 426123784 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 560734926 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.jdbc", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1660536720 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.gateway, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 568717494 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.gateway, Stereotype.load_balancer, Stereotype.web_application, Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.encrypted_connection", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 154923232 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.gateway, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1233246555 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.gateway, Stereotype.load_balancer, Stereotype.web_application, Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.encrypted_connection", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1701331644 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1803976423 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1038892935 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 2053136992 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1572516402 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 93560356 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1499437334 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 542475071 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 678858277 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Queue.commudigalmicroservicessampleservicetwo, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 822958001 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Queue.commudigalmicroservicessampleservicetwo, Stereotype.jdbc", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 339734447 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Queue.commudigalmicroservicessampleservicetwo, Stereotype.gateway, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 419416684 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Queue.commudigalmicroservicessampleservicetwo, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 73689328 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Queue.commudigalmicroservicessampleservicetwo, Stereotype.jdbc", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1603213074 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Queue.commudigalmicroservicessampleservicetwo, Stereotype.gateway, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 883349979 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Queue.commudigalmicroservicessampleservicetwo, Stereotype.gateway, Stereotype.load_balancer, Stereotype.web_application, Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.encrypted_connection", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1391249801 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Queue.commudigalmicroservicessampleservicetwo, Stereotype.gateway, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1969752268 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Queue.commudigalmicroservicessampleservicetwo, Stereotype.gateway, Stereotype.load_balancer, Stereotype.web_application, Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.encrypted_connection", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1392027380 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Queue.commudigalmicroservicessampleservicetwo, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1343407473 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Queue.commudigalmicroservicessampleservicetwo, Stereotype.jdbc, Username.servicetwo, Password.servicetwo", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1686568571 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Queue.commudigalmicroservicessampleservicetwo, Stereotype.gateway, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1360897103 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Queue.commudigalmicroservicessampleservicetwo, Stereotype.gateway, Stereotype.load_balancer, Stereotype.web_application, Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.encrypted_connection", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1178953630 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Queue.commudigalmicroservicessampleservicetwo, Stereotype.gateway, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 3804010 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Queue.commudigalmicroservicessampleservicetwo, Stereotype.gateway, Stereotype.load_balancer, Stereotype.web_application, Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.encrypted_connection", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1402751024 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Queue.commudigalmicroservicessampleservicetwo, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1864344016 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Queue.commudigalmicroservicessampleservicetwo, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 42684986 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Queue.commudigalmicroservicessampleservicetwo, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1387948122 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Queue.commudigalmicroservicessampleservicetwo, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1674999797 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Queue.commudigalmicroservicessampleservicetwo, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1909807998 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Queue.commudigalmicroservicessampleservicetwo, Stereotype.jdbc, Username.servicetwo, Password.servicetwo", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 697818620 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Queue.commudigalmicroservicessampleservicetwo, Stereotype.gateway, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 686721068 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Queue.commudigalmicroservicessampleservicetwo, Stereotype.gateway, Stereotype.load_balancer, Stereotype.web_application, Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.encrypted_connection", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 2027371291 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Queue.commudigalmicroservicessampleservicetwo, Stereotype.gateway, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 595759572 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Queue.commudigalmicroservicessampleservicetwo, Stereotype.gateway, Stereotype.load_balancer, Stereotype.web_application, Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.encrypted_connection", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 888000613 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.jdbc, Username.servicetwo, Password.servicetwo", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1746833724 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.gateway, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 701526215 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 518739992 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Queue.commudigalmicroservicessampleservicetwo, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1155521880 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.jdbc, Username.servicetwo, Password.servicetwo", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1490297742 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.gateway, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1923626523 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 910658510 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 206091587 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.jdbc", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1970880279 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.gateway, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1179830093 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1287728562 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 99253188 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 970423785 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.jdbc", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1768926513 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 738636051 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.service_discovery, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 2053425932 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 2019482012 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.jdbc", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1816978819 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1968922416 + }, { + "message" : "Incoming: Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 700171836 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.service_discovery, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 656898222 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleservicetwo, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 751628596 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.jdbc, Stereotype.plaintext_credentials_link, Username.servicetwo, Password.servicetwo", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 63015234 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1950102816 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.service_discovery, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1749205249 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleservicetwo, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 592238700 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.jdbc, Stereotype.plaintext_credentials_link, Username.servicetwo, Password.servicetwo", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 742969054 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 969440066 + }, { + "message" : "Incoming: Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1207758771 + }, { + "message" : "Incoming: Stereotype.web_application, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.encrypted_connection", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 37142680 + }, { + "message" : "Incoming: Stereotype.web_application, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.encrypted_connection", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1759694910 + }, { + "message" : "Incoming: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 302687243 + }, { + "message" : "Incoming: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 850083982 + }, { + "message" : "Incoming: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 112026691 + }, { + "message" : "Incoming: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 2024814472 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1063124585 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1461347900 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 980979680 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1124987728 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 326362094 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 391928890 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1772471998 + }, { + "message" : "Incoming: Stereotype.monitoring_dashboard, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.search_engine, Stereotype.logging_server, Stereotype.internal, Stereotype.local_logging, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1159606185 + }, { + "message" : "Incoming: Stereotype.monitoring_dashboard, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.search_engine, Stereotype.logging_server, Stereotype.internal, Stereotype.local_logging, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1233049719 + }, { + "message" : "Incoming: Stereotype.monitoring_dashboard, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.search_engine, Stereotype.logging_server, Stereotype.internal, Stereotype.local_logging, Stereotype.jdbc", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1018618094 + }, { + "message" : "Incoming: Stereotype.monitoring_dashboard, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.search_engine, Stereotype.logging_server, Stereotype.internal, Stereotype.local_logging, Stereotype.gateway, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 2069971440 + }, { + "message" : "Incoming: Stereotype.monitoring_dashboard, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.search_engine, Stereotype.logging_server, Stereotype.internal, Stereotype.local_logging, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1337346642 + }, { + "message" : "Incoming: Stereotype.monitoring_dashboard, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.search_engine, Stereotype.logging_server, Stereotype.internal, Stereotype.local_logging, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1890881203 + }, { + "message" : "Incoming: Stereotype.monitoring_dashboard, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.search_engine, Stereotype.logging_server, Stereotype.internal, Stereotype.local_logging, Stereotype.jdbc", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 2072945115 + }, { + "message" : "Incoming: Stereotype.monitoring_dashboard, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.search_engine, Stereotype.logging_server, Stereotype.internal, Stereotype.local_logging, Stereotype.gateway, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 177279387 + }, { + "message" : "Incoming: Stereotype.monitoring_dashboard, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.search_engine, Stereotype.logging_server, Stereotype.internal, Stereotype.local_logging, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1997028929 + }, { + "message" : "Incoming: Stereotype.monitoring_dashboard, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.search_engine, Stereotype.logging_server, Stereotype.internal, Stereotype.local_logging, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleservicetwo, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 589166341 + }, { + "message" : "Incoming: Stereotype.monitoring_dashboard, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.search_engine, Stereotype.logging_server, Stereotype.internal, Stereotype.local_logging, Stereotype.jdbc, Stereotype.plaintext_credentials_link, Username.servicetwo, Password.servicetwo", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 756222660 + }, { + "message" : "Incoming: Stereotype.monitoring_dashboard, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.search_engine, Stereotype.logging_server, Stereotype.internal, Stereotype.local_logging, Stereotype.gateway, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 789367604 + }, { + "message" : "Incoming: Stereotype.monitoring_dashboard, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.search_engine, Stereotype.logging_server, Stereotype.internal, Stereotype.local_logging, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 423629474 + }, { + "message" : "Incoming: Stereotype.monitoring_dashboard, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.search_engine, Stereotype.logging_server, Stereotype.internal, Stereotype.local_logging, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleservicetwo, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1428777808 + }, { + "message" : "Incoming: Stereotype.monitoring_dashboard, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.search_engine, Stereotype.logging_server, Stereotype.internal, Stereotype.local_logging, Stereotype.jdbc, Stereotype.plaintext_credentials_link, Username.servicetwo, Password.servicetwo", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1616453147 + }, { + "message" : "Incoming: Stereotype.monitoring_dashboard, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.search_engine, Stereotype.logging_server, Stereotype.internal, Stereotype.local_logging, Stereotype.gateway, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 700791887 + }, { + "message" : "Incoming: Stereotype.monitoring_dashboard, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.search_engine, Stereotype.logging_server, Stereotype.internal, Stereotype.local_logging, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 805957335 + }, { + "message" : "Incoming: Stereotype.monitoring_dashboard, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.search_engine, Stereotype.logging_server, Stereotype.internal, Stereotype.local_logging, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 786722925 + }, { + "message" : "Incoming: Stereotype.monitoring_dashboard, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.search_engine, Stereotype.logging_server, Stereotype.internal, Stereotype.local_logging, Stereotype.jdbc", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 107285100 + }, { + "message" : "Incoming: Stereotype.monitoring_dashboard, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.search_engine, Stereotype.logging_server, Stereotype.internal, Stereotype.local_logging, Stereotype.gateway, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 105019819 + }, { + "message" : "Incoming: Stereotype.monitoring_dashboard, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.search_engine, Stereotype.logging_server, Stereotype.internal, Stereotype.local_logging, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 2034385122 + }, { + "message" : "Incoming: Stereotype.monitoring_dashboard, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.search_engine, Stereotype.logging_server, Stereotype.internal, Stereotype.local_logging, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1957175487 + }, { + "message" : "Incoming: Stereotype.monitoring_dashboard, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.search_engine, Stereotype.logging_server, Stereotype.internal, Stereotype.local_logging, Stereotype.jdbc", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1513124396 + }, { + "message" : "Incoming: Stereotype.monitoring_dashboard, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.search_engine, Stereotype.logging_server, Stereotype.internal, Stereotype.local_logging, Stereotype.gateway, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1328203744 + }, { + "message" : "Incoming: Stereotype.monitoring_dashboard, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.search_engine, Stereotype.logging_server, Stereotype.internal, Stereotype.local_logging, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 612686775 + }, { + "message" : "Incoming: Stereotype.monitoring_dashboard, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.search_engine, Stereotype.logging_server, Stereotype.internal, Stereotype.local_logging, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleservicetwo, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 287095360 + }, { + "message" : "Incoming: Stereotype.monitoring_dashboard, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.search_engine, Stereotype.logging_server, Stereotype.internal, Stereotype.local_logging, Stereotype.jdbc, Stereotype.plaintext_credentials_link, Username.servicetwo, Password.servicetwo", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1222908765 + }, { + "message" : "Incoming: Stereotype.monitoring_dashboard, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.search_engine, Stereotype.logging_server, Stereotype.internal, Stereotype.local_logging, Stereotype.gateway, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1374212198 + }, { + "message" : "Incoming: Stereotype.monitoring_dashboard, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.search_engine, Stereotype.logging_server, Stereotype.internal, Stereotype.local_logging, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1395912847 + }, { + "message" : "Incoming: Stereotype.monitoring_dashboard, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.search_engine, Stereotype.logging_server, Stereotype.internal, Stereotype.local_logging, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleservicetwo, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 663326227 + }, { + "message" : "Incoming: Stereotype.monitoring_dashboard, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.search_engine, Stereotype.logging_server, Stereotype.internal, Stereotype.local_logging, Stereotype.jdbc, Stereotype.plaintext_credentials_link, Username.servicetwo, Password.servicetwo", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1331644236 + }, { + "message" : "Incoming: Stereotype.monitoring_dashboard, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.search_engine, Stereotype.logging_server, Stereotype.internal, Stereotype.local_logging, Stereotype.gateway, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1487131937 + }, { + "message" : "Incoming: Stereotype.monitoring_dashboard, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.search_engine, Stereotype.logging_server, Stereotype.internal, Stereotype.local_logging, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 349757746 + }, { + "message" : "Incoming: Stereotype.monitoring_dashboard, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.search_engine, Stereotype.logging_server, Stereotype.internal, Stereotype.local_logging, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 2135563436 + }, { + "message" : "Incoming: Stereotype.monitoring_dashboard, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.search_engine, Stereotype.logging_server, Stereotype.internal, Stereotype.local_logging, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1243234606 + }, { + "message" : "Incoming: Stereotype.monitoring_dashboard, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.search_engine, Stereotype.logging_server, Stereotype.internal, Stereotype.local_logging, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 206999441 + }, { + "message" : "Incoming: Stereotype.monitoring_dashboard, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.search_engine, Stereotype.logging_server, Stereotype.internal, Stereotype.local_logging, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1607745112 + }, { + "message" : "Incoming: Stereotype.monitoring_dashboard, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.search_engine, Stereotype.logging_server, Stereotype.internal, Stereotype.local_logging, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1893004914 + }, { + "message" : "Incoming: Stereotype.search_engine, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.logging_server, Stereotype.internal, Stereotype.local_logging, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1759500919 + }, { + "message" : "Incoming: Stereotype.search_engine, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.logging_server, Stereotype.internal, Stereotype.local_logging, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1355676410 + }, { + "message" : "Incoming: Stereotype.logging_server, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.internal, Stereotype.local_logging, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 781527109 + }, { + "message" : "Incoming: Stereotype.logging_server, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.internal, Stereotype.local_logging, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 2032479363 + }, { + "message" : "Incoming: Stereotype.logging_server, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.internal, Stereotype.local_logging, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1874812338 + }, { + "message" : "Incoming: Stereotype.logging_server, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.internal, Stereotype.local_logging, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1352294549 + }, { + "message" : "Incoming: Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.restful_http, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1472904643 + }, { + "message" : "Incoming: Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.restful_http, Stereotype.web_application, Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.encrypted_connection", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 123458189 + }, { + "message" : "Incoming: Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.restful_http, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 312233241 + }, { + "message" : "Incoming: Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.restful_http, Stereotype.web_application, Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.encrypted_connection", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 293669143 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.service_discovery, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 321358401 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1244785938 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.jdbc", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 984978888 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 593881656 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.service_discovery, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 213850519 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1227041903 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.jdbc", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1605299030 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1402400433 + }, { + "message" : "Incoming: Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 663824117 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.service_discovery, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 2004952636 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleservicetwo, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1608357825 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.jdbc, Stereotype.plaintext_credentials_link, Username.servicetwo, Password.servicetwo", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 995760621 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 366098173 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.service_discovery, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1805402813 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleservicetwo, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1481417616 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.jdbc, Stereotype.plaintext_credentials_link, Username.servicetwo, Password.servicetwo", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 858934277 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 936632640 + }, { + "message" : "Incoming: Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1045677229 + }, { + "message" : "Incoming: Stereotype.web_application, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.encrypted_connection", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 54440148 + }, { + "message" : "Incoming: Stereotype.web_application, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.encrypted_connection", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 575506130 + }, { + "message" : "Incoming: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 171751994 + }, { + "message" : "Incoming: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 720007548 + }, { + "message" : "Incoming: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1554308325 + }, { + "message" : "Incoming: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 311536309 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 2098413495 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 67883256 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 2125625192 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1634319881 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 98818836 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1605715776 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 844194537 + }, { + "message" : "Incoming: Stereotype.monitoring_dashboard, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.search_engine, Stereotype.logging_server, Stereotype.internal, Stereotype.local_logging, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 518261596 + }, { + "message" : "Incoming: Stereotype.monitoring_dashboard, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.search_engine, Stereotype.logging_server, Stereotype.internal, Stereotype.local_logging, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 96749807 + }, { + "message" : "Incoming: Stereotype.search_engine, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.logging_server, Stereotype.internal, Stereotype.local_logging, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1883144272 + }, { + "message" : "Incoming: Stereotype.search_engine, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.logging_server, Stereotype.internal, Stereotype.local_logging, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1237443220 + }, { + "message" : "Incoming: Stereotype.logging_server, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.internal, Stereotype.local_logging, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 2000793115 + }, { + "message" : "Incoming: Stereotype.logging_server, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.internal, Stereotype.local_logging, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1357185836 + }, { + "message" : "Incoming: Stereotype.logging_server, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.internal, Stereotype.local_logging, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1415390560 + }, { + "message" : "Incoming: Stereotype.logging_server, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.internal, Stereotype.local_logging, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 307148861 + } ], + "children" : [ ], + "position" : { + "x" : 0.0, + "y" : 0.0 + }, + "size" : null + }, { + "text" : "scope_1", + "id" : "_UWx-c_unEfCYrdfxNyUhUA", + "type" : "node:function", + "labels" : [ { + "labelTypeId" : "17", + "labelTypeValueId" : "69" + }, { + "labelTypeId" : "17", + "labelTypeValueId" : "27" + }, { + "labelTypeId" : "70", + "labelTypeValueId" : "71" + }, { + "labelTypeId" : "22", + "labelTypeValueId" : "72" + } ], + "ports" : [ { + "id" : "_UWx-dfunEfCYrdfxNyUhUA", + "type" : "port:dfd-input", + "children" : [ ] + } ], + "annotations" : [ { + "message" : "Incoming: Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.restful_http, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1753607449 + }, { + "message" : "Incoming: Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.restful_http, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 276922182 + }, { + "message" : "Incoming: Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.restful_http, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 759840275 + }, { + "message" : "Incoming: Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.restful_http, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1243800791 + }, { + "message" : "Incoming: Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.restful_http, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 227030447 + }, { + "message" : "Incoming: Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.restful_http, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 375918615 + }, { + "message" : "Incoming: Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.restful_http, Stereotype.web_application, Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.encrypted_connection", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1789791855 + }, { + "message" : "Incoming: Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.restful_http, Stereotype.web_application, Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.encrypted_connection", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 930569137 + }, { + "message" : "Incoming: Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.restful_http, Stereotype.web_application, Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.encrypted_connection", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 2073961917 + }, { + "message" : "Incoming: Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.restful_http, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 757099121 + }, { + "message" : "Incoming: Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.restful_http, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 937936076 + }, { + "message" : "Incoming: Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.restful_http, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 977320786 + }, { + "message" : "Incoming: Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.restful_http, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 813285994 + }, { + "message" : "Incoming: Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.restful_http, Stereotype.web_application, Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.encrypted_connection", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 505693686 + }, { + "message" : "Incoming: Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.restful_http, Stereotype.web_application, Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.encrypted_connection", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 401355610 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.service_discovery, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 675909854 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.service_discovery, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1448967471 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.service_discovery, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1793759719 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.service_discovery, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 476709123 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 2017574192 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.jdbc", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1170735890 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.gateway, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 2077462509 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.gateway, Stereotype.load_balancer, Stereotype.web_application, Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.encrypted_connection", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 931003277 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.gateway, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1117812847 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.gateway, Stereotype.load_balancer, Stereotype.web_application, Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.encrypted_connection", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1198859194 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 540962910 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 2026325575 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 962931248 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1466148437 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 67928167 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1186663391 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1444912530 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 478468106 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Queue.commudigalmicroservicessampleservicetwo, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 2095803461 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Queue.commudigalmicroservicessampleservicetwo, Stereotype.jdbc", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1653634548 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Queue.commudigalmicroservicessampleservicetwo, Stereotype.gateway, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1212782393 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Queue.commudigalmicroservicessampleservicetwo, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1916224178 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Queue.commudigalmicroservicessampleservicetwo, Stereotype.jdbc", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1436127733 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Queue.commudigalmicroservicessampleservicetwo, Stereotype.gateway, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 885481831 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Queue.commudigalmicroservicessampleservicetwo, Stereotype.gateway, Stereotype.load_balancer, Stereotype.web_application, Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.encrypted_connection", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 817092761 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Queue.commudigalmicroservicessampleservicetwo, Stereotype.gateway, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 2027499247 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Queue.commudigalmicroservicessampleservicetwo, Stereotype.gateway, Stereotype.load_balancer, Stereotype.web_application, Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.encrypted_connection", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1641418296 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Queue.commudigalmicroservicessampleservicetwo, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1855297340 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Queue.commudigalmicroservicessampleservicetwo, Stereotype.jdbc, Username.servicetwo, Password.servicetwo", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1078783335 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Queue.commudigalmicroservicessampleservicetwo, Stereotype.gateway, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1901272535 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Queue.commudigalmicroservicessampleservicetwo, Stereotype.gateway, Stereotype.load_balancer, Stereotype.web_application, Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.encrypted_connection", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 539322891 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Queue.commudigalmicroservicessampleservicetwo, Stereotype.gateway, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1649096004 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Queue.commudigalmicroservicessampleservicetwo, Stereotype.gateway, Stereotype.load_balancer, Stereotype.web_application, Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.encrypted_connection", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1162595263 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Queue.commudigalmicroservicessampleservicetwo, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 748673892 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Queue.commudigalmicroservicessampleservicetwo, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 669096398 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Queue.commudigalmicroservicessampleservicetwo, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 473655651 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Queue.commudigalmicroservicessampleservicetwo, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 120999784 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Queue.commudigalmicroservicessampleservicetwo, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1436610577 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Queue.commudigalmicroservicessampleservicetwo, Stereotype.jdbc, Username.servicetwo, Password.servicetwo", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 2124688514 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Queue.commudigalmicroservicessampleservicetwo, Stereotype.gateway, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 957559364 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Queue.commudigalmicroservicessampleservicetwo, Stereotype.gateway, Stereotype.load_balancer, Stereotype.web_application, Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.encrypted_connection", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 216758017 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Queue.commudigalmicroservicessampleservicetwo, Stereotype.gateway, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1578712821 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Queue.commudigalmicroservicessampleservicetwo, Stereotype.gateway, Stereotype.load_balancer, Stereotype.web_application, Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.encrypted_connection", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 17222024 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.jdbc, Username.servicetwo, Password.servicetwo", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 556223230 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.gateway, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1990419108 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1641677843 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Queue.commudigalmicroservicessampleservicetwo, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1445448489 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.jdbc, Username.servicetwo, Password.servicetwo", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1296833449 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.gateway, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 538441446 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 291279979 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 2043313130 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.jdbc", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1425454633 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.gateway, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1271515799 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1044639817 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 343722304 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1968861720 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.jdbc", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1891799894 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1361241279 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.service_discovery, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 602280210 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 92962244 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.jdbc", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1639319040 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 670503317 + }, { + "message" : "Incoming: Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 873134840 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.service_discovery, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1647891936 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleservicetwo, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 862931361 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.jdbc, Stereotype.plaintext_credentials_link, Username.servicetwo, Password.servicetwo", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 747343328 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1337294771 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.service_discovery, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1795568752 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleservicetwo, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 577592048 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.jdbc, Stereotype.plaintext_credentials_link, Username.servicetwo, Password.servicetwo", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1383675856 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 919962315 + }, { + "message" : "Incoming: Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1814730197 + }, { + "message" : "Incoming: Stereotype.web_application, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.encrypted_connection", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 618199162 + }, { + "message" : "Incoming: Stereotype.web_application, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.encrypted_connection", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1057262726 + }, { + "message" : "Incoming: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 626889335 + }, { + "message" : "Incoming: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 501301044 + }, { + "message" : "Incoming: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 2115575770 + }, { + "message" : "Incoming: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1700973603 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 753214674 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 946448101 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 238590461 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 2101891021 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 2022586114 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 220588152 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1192787792 + }, { + "message" : "Incoming: Stereotype.monitoring_dashboard, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.search_engine, Stereotype.logging_server, Stereotype.internal, Stereotype.local_logging, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 2014406233 + }, { + "message" : "Incoming: Stereotype.monitoring_dashboard, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.search_engine, Stereotype.logging_server, Stereotype.internal, Stereotype.local_logging, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1898870910 + }, { + "message" : "Incoming: Stereotype.monitoring_dashboard, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.search_engine, Stereotype.logging_server, Stereotype.internal, Stereotype.local_logging, Stereotype.jdbc", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1407858699 + }, { + "message" : "Incoming: Stereotype.monitoring_dashboard, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.search_engine, Stereotype.logging_server, Stereotype.internal, Stereotype.local_logging, Stereotype.gateway, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1468809177 + }, { + "message" : "Incoming: Stereotype.monitoring_dashboard, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.search_engine, Stereotype.logging_server, Stereotype.internal, Stereotype.local_logging, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 610056415 + }, { + "message" : "Incoming: Stereotype.monitoring_dashboard, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.search_engine, Stereotype.logging_server, Stereotype.internal, Stereotype.local_logging, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 649316770 + }, { + "message" : "Incoming: Stereotype.monitoring_dashboard, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.search_engine, Stereotype.logging_server, Stereotype.internal, Stereotype.local_logging, Stereotype.jdbc", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 605787935 + }, { + "message" : "Incoming: Stereotype.monitoring_dashboard, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.search_engine, Stereotype.logging_server, Stereotype.internal, Stereotype.local_logging, Stereotype.gateway, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 308221618 + }, { + "message" : "Incoming: Stereotype.monitoring_dashboard, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.search_engine, Stereotype.logging_server, Stereotype.internal, Stereotype.local_logging, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1401212518 + }, { + "message" : "Incoming: Stereotype.monitoring_dashboard, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.search_engine, Stereotype.logging_server, Stereotype.internal, Stereotype.local_logging, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleservicetwo, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1799545709 + }, { + "message" : "Incoming: Stereotype.monitoring_dashboard, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.search_engine, Stereotype.logging_server, Stereotype.internal, Stereotype.local_logging, Stereotype.jdbc, Stereotype.plaintext_credentials_link, Username.servicetwo, Password.servicetwo", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 320414325 + }, { + "message" : "Incoming: Stereotype.monitoring_dashboard, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.search_engine, Stereotype.logging_server, Stereotype.internal, Stereotype.local_logging, Stereotype.gateway, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 2031705122 + }, { + "message" : "Incoming: Stereotype.monitoring_dashboard, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.search_engine, Stereotype.logging_server, Stereotype.internal, Stereotype.local_logging, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 211507865 + }, { + "message" : "Incoming: Stereotype.monitoring_dashboard, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.search_engine, Stereotype.logging_server, Stereotype.internal, Stereotype.local_logging, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleservicetwo, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1891535340 + }, { + "message" : "Incoming: Stereotype.monitoring_dashboard, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.search_engine, Stereotype.logging_server, Stereotype.internal, Stereotype.local_logging, Stereotype.jdbc, Stereotype.plaintext_credentials_link, Username.servicetwo, Password.servicetwo", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 720242436 + }, { + "message" : "Incoming: Stereotype.monitoring_dashboard, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.search_engine, Stereotype.logging_server, Stereotype.internal, Stereotype.local_logging, Stereotype.gateway, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 430290487 + }, { + "message" : "Incoming: Stereotype.monitoring_dashboard, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.search_engine, Stereotype.logging_server, Stereotype.internal, Stereotype.local_logging, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1329362952 + }, { + "message" : "Incoming: Stereotype.monitoring_dashboard, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.search_engine, Stereotype.logging_server, Stereotype.internal, Stereotype.local_logging, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1263102442 + }, { + "message" : "Incoming: Stereotype.monitoring_dashboard, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.search_engine, Stereotype.logging_server, Stereotype.internal, Stereotype.local_logging, Stereotype.jdbc", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 298156448 + }, { + "message" : "Incoming: Stereotype.monitoring_dashboard, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.search_engine, Stereotype.logging_server, Stereotype.internal, Stereotype.local_logging, Stereotype.gateway, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 627411361 + }, { + "message" : "Incoming: Stereotype.monitoring_dashboard, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.search_engine, Stereotype.logging_server, Stereotype.internal, Stereotype.local_logging, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 154487101 + }, { + "message" : "Incoming: Stereotype.monitoring_dashboard, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.search_engine, Stereotype.logging_server, Stereotype.internal, Stereotype.local_logging, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 162752456 + }, { + "message" : "Incoming: Stereotype.monitoring_dashboard, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.search_engine, Stereotype.logging_server, Stereotype.internal, Stereotype.local_logging, Stereotype.jdbc", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 885403615 + }, { + "message" : "Incoming: Stereotype.monitoring_dashboard, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.search_engine, Stereotype.logging_server, Stereotype.internal, Stereotype.local_logging, Stereotype.gateway, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1038585959 + }, { + "message" : "Incoming: Stereotype.monitoring_dashboard, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.search_engine, Stereotype.logging_server, Stereotype.internal, Stereotype.local_logging, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 515398215 + }, { + "message" : "Incoming: Stereotype.monitoring_dashboard, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.search_engine, Stereotype.logging_server, Stereotype.internal, Stereotype.local_logging, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleservicetwo, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 212329343 + }, { + "message" : "Incoming: Stereotype.monitoring_dashboard, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.search_engine, Stereotype.logging_server, Stereotype.internal, Stereotype.local_logging, Stereotype.jdbc, Stereotype.plaintext_credentials_link, Username.servicetwo, Password.servicetwo", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 161123811 + }, { + "message" : "Incoming: Stereotype.monitoring_dashboard, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.search_engine, Stereotype.logging_server, Stereotype.internal, Stereotype.local_logging, Stereotype.gateway, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 142561311 + }, { + "message" : "Incoming: Stereotype.monitoring_dashboard, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.search_engine, Stereotype.logging_server, Stereotype.internal, Stereotype.local_logging, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1414093109 + }, { + "message" : "Incoming: Stereotype.monitoring_dashboard, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.search_engine, Stereotype.logging_server, Stereotype.internal, Stereotype.local_logging, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleservicetwo, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1741092056 + }, { + "message" : "Incoming: Stereotype.monitoring_dashboard, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.search_engine, Stereotype.logging_server, Stereotype.internal, Stereotype.local_logging, Stereotype.jdbc, Stereotype.plaintext_credentials_link, Username.servicetwo, Password.servicetwo", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 980326486 + }, { + "message" : "Incoming: Stereotype.monitoring_dashboard, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.search_engine, Stereotype.logging_server, Stereotype.internal, Stereotype.local_logging, Stereotype.gateway, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1214498988 + }, { + "message" : "Incoming: Stereotype.monitoring_dashboard, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.search_engine, Stereotype.logging_server, Stereotype.internal, Stereotype.local_logging, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1459462244 + }, { + "message" : "Incoming: Stereotype.monitoring_dashboard, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.search_engine, Stereotype.logging_server, Stereotype.internal, Stereotype.local_logging, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 114159191 + }, { + "message" : "Incoming: Stereotype.monitoring_dashboard, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.search_engine, Stereotype.logging_server, Stereotype.internal, Stereotype.local_logging, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1211071216 + }, { + "message" : "Incoming: Stereotype.monitoring_dashboard, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.search_engine, Stereotype.logging_server, Stereotype.internal, Stereotype.local_logging, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 517991921 + }, { + "message" : "Incoming: Stereotype.monitoring_dashboard, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.search_engine, Stereotype.logging_server, Stereotype.internal, Stereotype.local_logging, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 622497998 + }, { + "message" : "Incoming: Stereotype.monitoring_dashboard, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.search_engine, Stereotype.logging_server, Stereotype.internal, Stereotype.local_logging, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1280081260 + }, { + "message" : "Incoming: Stereotype.search_engine, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.logging_server, Stereotype.internal, Stereotype.local_logging, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 2131191535 + }, { + "message" : "Incoming: Stereotype.search_engine, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.logging_server, Stereotype.internal, Stereotype.local_logging, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 509000859 + }, { + "message" : "Incoming: Stereotype.logging_server, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.internal, Stereotype.local_logging, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1866191743 + }, { + "message" : "Incoming: Stereotype.logging_server, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.internal, Stereotype.local_logging, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1077109993 + }, { + "message" : "Incoming: Stereotype.logging_server, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.internal, Stereotype.local_logging, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 71782942 + }, { + "message" : "Incoming: Stereotype.logging_server, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.internal, Stereotype.local_logging, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 803116137 + }, { + "message" : "Incoming: Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.restful_http, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 516885190 + }, { + "message" : "Incoming: Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.restful_http, Stereotype.web_application, Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.encrypted_connection", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1166029274 + }, { + "message" : "Incoming: Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.restful_http, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 2078887126 + }, { + "message" : "Incoming: Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.restful_http, Stereotype.web_application, Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.encrypted_connection", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 550498846 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.service_discovery, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1177568763 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 41595398 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.jdbc", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 860148067 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1824819735 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.service_discovery, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 681514473 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 2132961406 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.jdbc", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1794666800 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 581225034 + }, { + "message" : "Incoming: Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1925489578 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.service_discovery, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 508122132 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleservicetwo, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 923911964 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.jdbc, Stereotype.plaintext_credentials_link, Username.servicetwo, Password.servicetwo", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 870563118 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1684898059 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.service_discovery, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 810582118 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleservicetwo, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 155224151 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.jdbc, Stereotype.plaintext_credentials_link, Username.servicetwo, Password.servicetwo", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 669273756 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 789178034 + }, { + "message" : "Incoming: Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 468582533 + }, { + "message" : "Incoming: Stereotype.web_application, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.encrypted_connection", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 383852959 + }, { + "message" : "Incoming: Stereotype.web_application, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.encrypted_connection", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 334761329 + }, { + "message" : "Incoming: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1940407755 + }, { + "message" : "Incoming: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 413763859 + }, { + "message" : "Incoming: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 131837504 + }, { + "message" : "Incoming: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 888648783 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 88094983 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1366677933 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 184996973 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 39476366 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 106350019 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 2031209493 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1141492454 + }, { + "message" : "Incoming: Stereotype.monitoring_dashboard, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.search_engine, Stereotype.logging_server, Stereotype.internal, Stereotype.local_logging, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 350703813 + }, { + "message" : "Incoming: Stereotype.monitoring_dashboard, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.search_engine, Stereotype.logging_server, Stereotype.internal, Stereotype.local_logging, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 607123271 + }, { + "message" : "Incoming: Stereotype.search_engine, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.logging_server, Stereotype.internal, Stereotype.local_logging, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1395259059 + }, { + "message" : "Incoming: Stereotype.search_engine, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.logging_server, Stereotype.internal, Stereotype.local_logging, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1501382858 + }, { + "message" : "Incoming: Stereotype.logging_server, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.internal, Stereotype.local_logging, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1999784536 + }, { + "message" : "Incoming: Stereotype.logging_server, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.internal, Stereotype.local_logging, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 746327606 + }, { + "message" : "Incoming: Stereotype.logging_server, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.internal, Stereotype.local_logging, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 813496676 + }, { + "message" : "Incoming: Stereotype.logging_server, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.internal, Stereotype.local_logging, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 57986233 + } ], + "children" : [ ], + "position" : { + "x" : 0.0, + "y" : 0.0 + }, + "size" : null + } ] + }, + "labelTypes" : [ { + "id" : "17", + "name" : "Stereotype", + "values" : [ { + "id" : "20", + "text" : "internal" + }, { + "id" : "21", + "text" : "local_logging" + }, { + "id" : "26", + "text" : "logging_server" + }, { + "id" : "27", + "text" : "infrastructural" + }, { + "id" : "37", + "text" : "web_application" + }, { + "id" : "43", + "text" : "search_engine" + }, { + "id" : "52", + "text" : "service_discovery" + }, { + "id" : "58", + "text" : "message_broker" + }, { + "id" : "59", + "text" : "plaintext_credentials" + }, { + "id" : "69", + "text" : "monitoring_dashboard" + }, { + "id" : "75", + "text" : "gateway" + }, { + "id" : "76", + "text" : "load_balancer" + }, { + "id" : "93", + "text" : "user_stereotype" + }, { + "id" : "94", + "text" : "entrypoint" + }, { + "id" : "95", + "text" : "exitpoint" + }, { + "id" : "101", + "text" : "restful_http" + }, { + "id" : "122", + "text" : "message_producer_rabbitmq" + }, { + "id" : "123", + "text" : "plaintext_credentials_link" + }, { + "id" : "130", + "text" : "message_consumer_rabbitmq" + }, { + "id" : "145", + "text" : "jdbc" + }, { + "id" : "160", + "text" : "encrypted_connection" + } ] + }, { + "id" : "22", + "name" : "Port", + "values" : [ { + "id" : "23", + "text" : "8082" + }, { + "id" : "28", + "text" : "5000" + }, { + "id" : "38", + "text" : "4200" + }, { + "id" : "46", + "text" : "9200" + }, { + "id" : "49", + "text" : "8084" + }, { + "id" : "53", + "text" : "8500" + }, { + "id" : "64", + "text" : "15672" + }, { + "id" : "72", + "text" : "4040" + }, { + "id" : "79", + "text" : "8080" + }, { + "id" : "87", + "text" : "5601" + } ] + }, { + "id" : "29", + "name" : "LoggingServer", + "values" : [ { + "id" : "30", + "text" : "Logstash" + } ] + }, { + "id" : "33", + "name" : "Process", + "values" : [ { + "id" : "34", + "text" : "service_two_db" + }, { + "id" : "90", + "text" : "service_one_db" + } ] + }, { + "id" : "39", + "name" : "WebApplication", + "values" : [ { + "id" : "40", + "text" : "Nginx" + } ] + }, { + "id" : "44", + "name" : "SearchEngine", + "values" : [ { + "id" : "45", + "text" : "Elasticsearch" + } ] + }, { + "id" : "54", + "name" : "ServiceDiscovery", + "values" : [ { + "id" : "55", + "text" : "Consul" + } ] + }, { + "id" : "60", + "name" : "MessageBroker", + "values" : [ { + "id" : "61", + "text" : "RabbitMQ" + } ] + }, { + "id" : "62", + "name" : "Username", + "values" : [ { + "id" : "63", + "text" : "mudigal" + }, { + "id" : "148", + "text" : "servicetwo" + } ] + }, { + "id" : "65", + "name" : "Password", + "values" : [ { + "id" : "66", + "text" : "mudigal" + }, { + "id" : "149", + "text" : "servicetwo" + } ] + }, { + "id" : "70", + "name" : "MonitoringDashboard", + "values" : [ { + "id" : "71", + "text" : "WeaveScope" + }, { + "id" : "86", + "text" : "Kibana" + } ] + }, { + "id" : "77", + "name" : "Gateway", + "values" : [ { + "id" : "78", + "text" : "Zuul" + } ] + }, { + "id" : "80", + "name" : "LoadBalancer", + "values" : [ { + "id" : "81", + "text" : "Ribbon" + } ] + }, { + "id" : "124", + "name" : "RoutingKey", + "values" : [ { + "id" : "125", + "text" : "commudigalmicroservicessampleservice" + } ] + }, { + "id" : "126", + "name" : "ProducerExchange", + "values" : [ { + "id" : "127", + "text" : "commudigalmicroservicessampleservicesexchange" + } ] + }, { + "id" : "131", + "name" : "Queue", + "values" : [ { + "id" : "132", + "text" : "commudigalmicroservicessampleserviceone" + }, { + "id" : "142", + "text" : "commudigalmicroservicessampleservicetwo" + } ] + } ], + "mode" : "edit", + "constraints" : [ ] +} \ No newline at end of file diff --git a/tests/dev.arcovia.mitigation.utils.tests/testresults/scaledALL.json b/tests/dev.arcovia.mitigation.utils.tests/testresults/scaledALL.json new file mode 100644 index 00000000..25eda5e3 --- /dev/null +++ b/tests/dev.arcovia.mitigation.utils.tests/testresults/scaledALL.json @@ -0,0 +1,8588 @@ +{ + "model" : { + "type" : "graph", + "id" : "root", + "children" : [ { + "text" : "consul2", + "id" : "100", + "type" : "edge:arrow", + "sourceId" : "99", + "targetId" : "98", + "labels" : null, + "ports" : null, + "annotations" : null, + "children" : [ ], + "routingPoints" : [ ] + }, { + "text" : "consul3", + "id" : "103", + "type" : "edge:arrow", + "sourceId" : "102", + "targetId" : "98", + "labels" : null, + "ports" : null, + "annotations" : null, + "children" : [ ], + "routingPoints" : [ ] + }, { + "text" : "consul3", + "id" : "106", + "type" : "edge:arrow", + "sourceId" : "105", + "targetId" : "104", + "labels" : null, + "ports" : null, + "annotations" : null, + "children" : [ ], + "routingPoints" : [ ] + }, { + "text" : "logstash", + "id" : "109", + "type" : "edge:arrow", + "sourceId" : "108", + "targetId" : "107", + "labels" : null, + "ports" : null, + "annotations" : null, + "children" : [ ], + "routingPoints" : [ ] + }, { + "text" : "elasticsearch", + "id" : "112", + "type" : "edge:arrow", + "sourceId" : "111", + "targetId" : "110", + "labels" : null, + "ports" : null, + "annotations" : null, + "children" : [ ], + "routingPoints" : [ ] + }, { + "text" : "consul", + "id" : "115", + "type" : "edge:arrow", + "sourceId" : "114", + "targetId" : "113", + "labels" : null, + "ports" : null, + "annotations" : null, + "children" : [ ], + "routingPoints" : [ ] + }, { + "text" : "service_one", + "id" : "118", + "type" : "edge:arrow", + "sourceId" : "117", + "targetId" : "116", + "labels" : null, + "ports" : null, + "annotations" : null, + "children" : [ ], + "routingPoints" : [ ] + }, { + "text" : "service_one", + "id" : "121", + "type" : "edge:arrow", + "sourceId" : "120", + "targetId" : "119", + "labels" : null, + "ports" : null, + "annotations" : null, + "children" : [ ], + "routingPoints" : [ ] + }, { + "text" : "rabbit", + "id" : "129", + "type" : "edge:arrow", + "sourceId" : "128", + "targetId" : "113", + "labels" : null, + "ports" : null, + "annotations" : null, + "children" : [ ], + "routingPoints" : [ ] + }, { + "text" : "consul", + "id" : "135", + "type" : "edge:arrow", + "sourceId" : "134", + "targetId" : "133", + "labels" : null, + "ports" : null, + "annotations" : null, + "children" : [ ], + "routingPoints" : [ ] + }, { + "text" : "service_two", + "id" : "137", + "type" : "edge:arrow", + "sourceId" : "136", + "targetId" : "116", + "labels" : null, + "ports" : null, + "annotations" : null, + "children" : [ ], + "routingPoints" : [ ] + }, { + "text" : "service_two", + "id" : "139", + "type" : "edge:arrow", + "sourceId" : "138", + "targetId" : "119", + "labels" : null, + "ports" : null, + "annotations" : null, + "children" : [ ], + "routingPoints" : [ ] + }, { + "text" : "rabbit", + "id" : "141", + "type" : "edge:arrow", + "sourceId" : "140", + "targetId" : "133", + "labels" : null, + "ports" : null, + "annotations" : null, + "children" : [ ], + "routingPoints" : [ ] + }, { + "text" : "service_one_db", + "id" : "144", + "type" : "edge:arrow", + "sourceId" : "143", + "targetId" : "113", + "labels" : null, + "ports" : null, + "annotations" : null, + "children" : [ ], + "routingPoints" : [ ] + }, { + "text" : "service_two_db", + "id" : "147", + "type" : "edge:arrow", + "sourceId" : "146", + "targetId" : "133", + "labels" : null, + "ports" : null, + "annotations" : null, + "children" : [ ], + "routingPoints" : [ ] + }, { + "text" : "api_gateway", + "id" : "151", + "type" : "edge:arrow", + "sourceId" : "150", + "targetId" : "113", + "labels" : null, + "ports" : null, + "annotations" : null, + "children" : [ ], + "routingPoints" : [ ] + }, { + "text" : "api_gateway", + "id" : "153", + "type" : "edge:arrow", + "sourceId" : "152", + "targetId" : "133", + "labels" : null, + "ports" : null, + "annotations" : null, + "children" : [ ], + "routingPoints" : [ ] + }, { + "text" : "consul", + "id" : "156", + "type" : "edge:arrow", + "sourceId" : "155", + "targetId" : "154", + "labels" : null, + "ports" : null, + "annotations" : null, + "children" : [ ], + "routingPoints" : [ ] + }, { + "text" : "user", + "id" : "159", + "type" : "edge:arrow", + "sourceId" : "158", + "targetId" : "157", + "labels" : null, + "ports" : null, + "annotations" : null, + "children" : [ ], + "routingPoints" : [ ] + }, { + "text" : "web_application", + "id" : "163", + "type" : "edge:arrow", + "sourceId" : "162", + "targetId" : "161", + "labels" : null, + "ports" : null, + "annotations" : null, + "children" : [ ], + "routingPoints" : [ ] + }, { + "text" : "web_application", + "id" : "165", + "type" : "edge:arrow", + "sourceId" : "164", + "targetId" : "154", + "labels" : null, + "ports" : null, + "annotations" : null, + "children" : [ ], + "routingPoints" : [ ] + }, { + "text" : "api_gateway", + "id" : "168", + "type" : "edge:arrow", + "sourceId" : "167", + "targetId" : "166", + "labels" : null, + "ports" : null, + "annotations" : null, + "children" : [ ], + "routingPoints" : [ ] + }, { + "text" : "service_one", + "id" : "170", + "type" : "edge:arrow", + "sourceId" : "169", + "targetId" : "166", + "labels" : null, + "ports" : null, + "annotations" : null, + "children" : [ ], + "routingPoints" : [ ] + }, { + "text" : "service_one_db", + "id" : "172", + "type" : "edge:arrow", + "sourceId" : "171", + "targetId" : "166", + "labels" : null, + "ports" : null, + "annotations" : null, + "children" : [ ], + "routingPoints" : [ ] + }, { + "text" : "service_two", + "id" : "174", + "type" : "edge:arrow", + "sourceId" : "173", + "targetId" : "166", + "labels" : null, + "ports" : null, + "annotations" : null, + "children" : [ ], + "routingPoints" : [ ] + }, { + "text" : "service_two_db", + "id" : "176", + "type" : "edge:arrow", + "sourceId" : "175", + "targetId" : "166", + "labels" : null, + "ports" : null, + "annotations" : null, + "children" : [ ], + "routingPoints" : [ ] + }, { + "text" : "web_application", + "id" : "178", + "type" : "edge:arrow", + "sourceId" : "177", + "targetId" : "166", + "labels" : null, + "ports" : null, + "annotations" : null, + "children" : [ ], + "routingPoints" : [ ] + }, { + "text" : "rabbit", + "id" : "180", + "type" : "edge:arrow", + "sourceId" : "179", + "targetId" : "166", + "labels" : null, + "ports" : null, + "annotations" : null, + "children" : [ ], + "routingPoints" : [ ] + }, { + "text" : "consul", + "id" : "182", + "type" : "edge:arrow", + "sourceId" : "181", + "targetId" : "166", + "labels" : null, + "ports" : null, + "annotations" : null, + "children" : [ ], + "routingPoints" : [ ] + }, { + "text" : "consul2", + "id" : "184", + "type" : "edge:arrow", + "sourceId" : "183", + "targetId" : "166", + "labels" : null, + "ports" : null, + "annotations" : null, + "children" : [ ], + "routingPoints" : [ ] + }, { + "text" : "consul3", + "id" : "186", + "type" : "edge:arrow", + "sourceId" : "185", + "targetId" : "166", + "labels" : null, + "ports" : null, + "annotations" : null, + "children" : [ ], + "routingPoints" : [ ] + }, { + "text" : "kibana", + "id" : "188", + "type" : "edge:arrow", + "sourceId" : "187", + "targetId" : "166", + "labels" : null, + "ports" : null, + "annotations" : null, + "children" : [ ], + "routingPoints" : [ ] + }, { + "text" : "elasticsearch", + "id" : "190", + "type" : "edge:arrow", + "sourceId" : "189", + "targetId" : "166", + "labels" : null, + "ports" : null, + "annotations" : null, + "children" : [ ], + "routingPoints" : [ ] + }, { + "text" : "logstash", + "id" : "192", + "type" : "edge:arrow", + "sourceId" : "191", + "targetId" : "166", + "labels" : null, + "ports" : null, + "annotations" : null, + "children" : [ ], + "routingPoints" : [ ] + }, { + "text" : "dummyFlow_0", + "id" : "_UV5MVfunEfCYrdfxNyUhUA", + "type" : "edge:arrow", + "sourceId" : "_UV5MU_unEfCYrdfxNyUhUA", + "targetId" : "_UV5MUvunEfCYrdfxNyUhUA", + "labels" : null, + "ports" : null, + "annotations" : null, + "children" : [ ], + "routingPoints" : [ ] + }, { + "text" : "dummyFlow_1", + "id" : "_UV5MW_unEfCYrdfxNyUhUA", + "type" : "edge:arrow", + "sourceId" : "_UV5MWfunEfCYrdfxNyUhUA", + "targetId" : "_UV5MWPunEfCYrdfxNyUhUA", + "labels" : null, + "ports" : null, + "annotations" : null, + "children" : [ ], + "routingPoints" : [ ] + }, { + "text" : "dummyFlow_2", + "id" : "_UV5MYfunEfCYrdfxNyUhUA", + "type" : "edge:arrow", + "sourceId" : "_UV5MX_unEfCYrdfxNyUhUA", + "targetId" : "_UV5MXvunEfCYrdfxNyUhUA", + "labels" : null, + "ports" : null, + "annotations" : null, + "children" : [ ], + "routingPoints" : [ ] + }, { + "text" : "dummyFlow_3", + "id" : "_UV5MZ_unEfCYrdfxNyUhUA", + "type" : "edge:arrow", + "sourceId" : "_UV5MZfunEfCYrdfxNyUhUA", + "targetId" : "_UV5MZPunEfCYrdfxNyUhUA", + "labels" : null, + "ports" : null, + "annotations" : null, + "children" : [ ], + "routingPoints" : [ ] + }, { + "text" : "dummyFlow_4", + "id" : "_UV5MbfunEfCYrdfxNyUhUA", + "type" : "edge:arrow", + "sourceId" : "_UV5Ma_unEfCYrdfxNyUhUA", + "targetId" : "_UV5MavunEfCYrdfxNyUhUA", + "labels" : null, + "ports" : null, + "annotations" : null, + "children" : [ ], + "routingPoints" : [ ] + }, { + "text" : "dummyFlow_0", + "id" : "_UV5zYPunEfCYrdfxNyUhUA", + "type" : "edge:arrow", + "sourceId" : "_UV5zYfunEfCYrdfxNyUhUA", + "targetId" : "_UV5MavunEfCYrdfxNyUhUA", + "labels" : null, + "ports" : null, + "annotations" : null, + "children" : [ ], + "routingPoints" : [ ] + }, { + "text" : "dummyFlow_1", + "id" : "_UV5zY_unEfCYrdfxNyUhUA", + "type" : "edge:arrow", + "sourceId" : "_UV5zZPunEfCYrdfxNyUhUA", + "targetId" : "_UV5MavunEfCYrdfxNyUhUA", + "labels" : null, + "ports" : null, + "annotations" : null, + "children" : [ ], + "routingPoints" : [ ] + }, { + "text" : "dummyFlow_2", + "id" : "_UV5zZvunEfCYrdfxNyUhUA", + "type" : "edge:arrow", + "sourceId" : "_UV5zZ_unEfCYrdfxNyUhUA", + "targetId" : "_UV5MavunEfCYrdfxNyUhUA", + "labels" : null, + "ports" : null, + "annotations" : null, + "children" : [ ], + "routingPoints" : [ ] + }, { + "text" : "dummyFlow_3", + "id" : "_UV5zafunEfCYrdfxNyUhUA", + "type" : "edge:arrow", + "sourceId" : "_UV5zavunEfCYrdfxNyUhUA", + "targetId" : "_UV5MavunEfCYrdfxNyUhUA", + "labels" : null, + "ports" : null, + "annotations" : null, + "children" : [ ], + "routingPoints" : [ ] + }, { + "text" : "dummyFlow_4", + "id" : "_UV5zbPunEfCYrdfxNyUhUA", + "type" : "edge:arrow", + "sourceId" : "_UV5zbfunEfCYrdfxNyUhUA", + "targetId" : "_UV5MavunEfCYrdfxNyUhUA", + "labels" : null, + "ports" : null, + "annotations" : null, + "children" : [ ], + "routingPoints" : [ ] + }, { + "text" : "user", + "id" : "2", + "type" : "node:input-output", + "labels" : [ { + "labelTypeId" : "17", + "labelTypeValueId" : "93" + }, { + "labelTypeId" : "17", + "labelTypeValueId" : "94" + }, { + "labelTypeId" : "17", + "labelTypeValueId" : "95" + }, { + "labelTypeId" : "_UV3-MPunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_UV3-MfunEfCYrdfxNyUhUA" + }, { + "labelTypeId" : "_UV3-MPunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_UV3-MvunEfCYrdfxNyUhUA" + }, { + "labelTypeId" : "_UV3-MPunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_UV3-M_unEfCYrdfxNyUhUA" + }, { + "labelTypeId" : "_UV3-MPunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_UV3-NPunEfCYrdfxNyUhUA" + }, { + "labelTypeId" : "_UV3-MPunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_UV3-NfunEfCYrdfxNyUhUA" + }, { + "labelTypeId" : "_UV3-MPunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_UV3-NvunEfCYrdfxNyUhUA" + }, { + "labelTypeId" : "_UV3-MPunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_UV3-N_unEfCYrdfxNyUhUA" + }, { + "labelTypeId" : "_UV3-MPunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_UV3-OPunEfCYrdfxNyUhUA" + }, { + "labelTypeId" : "_UV3-MPunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_UV3-OfunEfCYrdfxNyUhUA" + }, { + "labelTypeId" : "_UV3-MPunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_UV3-OvunEfCYrdfxNyUhUA" + }, { + "labelTypeId" : "_UV3-MPunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_UV3-O_unEfCYrdfxNyUhUA" + }, { + "labelTypeId" : "_UV3-MPunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_UV3-PPunEfCYrdfxNyUhUA" + }, { + "labelTypeId" : "_UV3-MPunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_UV3-PfunEfCYrdfxNyUhUA" + }, { + "labelTypeId" : "_UV3-MPunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_UV3-PvunEfCYrdfxNyUhUA" + }, { + "labelTypeId" : "_UV3-MPunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_UV3-P_unEfCYrdfxNyUhUA" + }, { + "labelTypeId" : "_UV3-MPunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_UV3-QPunEfCYrdfxNyUhUA" + }, { + "labelTypeId" : "_UV3-MPunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_UV3-QfunEfCYrdfxNyUhUA" + }, { + "labelTypeId" : "_UV3-MPunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_UV3-QvunEfCYrdfxNyUhUA" + }, { + "labelTypeId" : "_UV3-MPunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_UV3-Q_unEfCYrdfxNyUhUA" + }, { + "labelTypeId" : "_UV3-MPunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_UV3-RPunEfCYrdfxNyUhUA" + }, { + "labelTypeId" : "_UV3-RvunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_UV3-RfunEfCYrdfxNyUhUA" + }, { + "labelTypeId" : "_UV3-SPunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_UV3-R_unEfCYrdfxNyUhUA" + }, { + "labelTypeId" : "_UV3-SvunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_UV3-SfunEfCYrdfxNyUhUA" + }, { + "labelTypeId" : "_UV3-TPunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_UV3-S_unEfCYrdfxNyUhUA" + }, { + "labelTypeId" : "_UV3-TvunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_UV3-TfunEfCYrdfxNyUhUA" + }, { + "labelTypeId" : "_UV3-UPunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_UV3-T_unEfCYrdfxNyUhUA" + }, { + "labelTypeId" : "_UV3-UvunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_UV3-UfunEfCYrdfxNyUhUA" + }, { + "labelTypeId" : "_UV3-VPunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_UV3-U_unEfCYrdfxNyUhUA" + }, { + "labelTypeId" : "_UV3-VvunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_UV3-VfunEfCYrdfxNyUhUA" + }, { + "labelTypeId" : "_UV3-WPunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_UV3-V_unEfCYrdfxNyUhUA" + }, { + "labelTypeId" : "_UV3-WvunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_UV3-WfunEfCYrdfxNyUhUA" + }, { + "labelTypeId" : "_UV3-XPunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_UV3-W_unEfCYrdfxNyUhUA" + }, { + "labelTypeId" : "_UV3-XvunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_UV3-XfunEfCYrdfxNyUhUA" + }, { + "labelTypeId" : "_UV3-YPunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_UV3-X_unEfCYrdfxNyUhUA" + }, { + "labelTypeId" : "_UV3-YvunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_UV3-YfunEfCYrdfxNyUhUA" + }, { + "labelTypeId" : "_UV3-ZPunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_UV3-Y_unEfCYrdfxNyUhUA" + }, { + "labelTypeId" : "_UV3-ZvunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_UV3-ZfunEfCYrdfxNyUhUA" + }, { + "labelTypeId" : "_UV3-aPunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_UV3-Z_unEfCYrdfxNyUhUA" + }, { + "labelTypeId" : "_UV3-avunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_UV3-afunEfCYrdfxNyUhUA" + }, { + "labelTypeId" : "_UV3-bPunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_UV3-a_unEfCYrdfxNyUhUA" + } ], + "ports" : [ { + "id" : "161", + "type" : "port:dfd-input", + "children" : [ ] + }, { + "behavior" : "assign Stereotype.user_stereotype,Stereotype.entrypoint,Stereotype.exitpoint,Stereotype.restful_http,Stereotype.encrypted_connection,dummyCategory.dummy_0,dummyCategory.dummy_1,dummyCategory.dummy_2,dummyCategory.dummy_3,dummyCategory.dummy_4,dummyCategory.dummy_5,dummyCategory.dummy_6,dummyCategory.dummy_7,dummyCategory.dummy_8,dummyCategory.dummy_9,dummyCategory.dummy_10,dummyCategory.dummy_11,dummyCategory.dummy_12,dummyCategory.dummy_13,dummyCategory.dummy_14,dummyCategory.dummy_15,dummyCategory.dummy_16,dummyCategory.dummy_17,dummyCategory.dummy_18,dummyCategory.dummy_19,dummyType_0.dummyLabelofType_0,dummyType_1.dummyLabelofType_1,dummyType_2.dummyLabelofType_2,dummyType_3.dummyLabelofType_3,dummyType_4.dummyLabelofType_4,dummyType_5.dummyLabelofType_5,dummyType_6.dummyLabelofType_6,dummyType_7.dummyLabelofType_7,dummyType_8.dummyLabelofType_8,dummyType_9.dummyLabelofType_9,dummyType_10.dummyLabelofType_10,dummyType_11.dummyLabelofType_11,dummyType_12.dummyLabelofType_12,dummyType_13.dummyLabelofType_13,dummyType_14.dummyLabelofType_14,dummyType_15.dummyLabelofType_15,dummyType_16.dummyLabelofType_16,dummyType_17.dummyLabelofType_17,dummyType_18.dummyLabelofType_18,dummyType_19.dummyLabelofType_19 if TRUE from web_application\nforward web_application", + "id" : "158", + "type" : "port:dfd-output", + "children" : [ ] + } ], + "annotations" : [ { + "message" : "Propagated: Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.restful_http, Stereotype.encrypted_connection, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19, Stereotype.web_application, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1550080835 + }, { + "message" : "Incoming: Stereotype.web_application, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.encrypted_connection, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1550080835 + }, { + "message" : "Propagated: Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.restful_http, Stereotype.encrypted_connection, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19, Stereotype.web_application, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 62915435 + }, { + "message" : "Incoming: Stereotype.web_application, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.encrypted_connection, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 62915435 + }, { + "message" : "Propagated: Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.restful_http, Stereotype.encrypted_connection, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19, Stereotype.web_application, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1378592036 + }, { + "message" : "Incoming: Stereotype.web_application, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.encrypted_connection, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1378592036 + }, { + "message" : "Propagated: Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.restful_http, Stereotype.encrypted_connection, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19, Stereotype.web_application, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1701646500 + }, { + "message" : "Incoming: Stereotype.web_application, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.encrypted_connection, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1701646500 + } ], + "children" : [ ], + "position" : { + "x" : 0.0, + "y" : 0.0 + }, + "size" : null + }, { + "text" : "consul", + "id" : "3", + "type" : "node:function", + "labels" : [ { + "labelTypeId" : "17", + "labelTypeValueId" : "52" + }, { + "labelTypeId" : "17", + "labelTypeValueId" : "27" + }, { + "labelTypeId" : "22", + "labelTypeValueId" : "53" + }, { + "labelTypeId" : "54", + "labelTypeValueId" : "55" + }, { + "labelTypeId" : "_UV3-MPunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_UV3-MfunEfCYrdfxNyUhUA" + }, { + "labelTypeId" : "_UV3-MPunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_UV3-MvunEfCYrdfxNyUhUA" + }, { + "labelTypeId" : "_UV3-MPunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_UV3-M_unEfCYrdfxNyUhUA" + }, { + "labelTypeId" : "_UV3-MPunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_UV3-NPunEfCYrdfxNyUhUA" + }, { + "labelTypeId" : "_UV3-MPunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_UV3-NfunEfCYrdfxNyUhUA" + }, { + "labelTypeId" : "_UV3-MPunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_UV3-NvunEfCYrdfxNyUhUA" + }, { + "labelTypeId" : "_UV3-MPunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_UV3-N_unEfCYrdfxNyUhUA" + }, { + "labelTypeId" : "_UV3-MPunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_UV3-OPunEfCYrdfxNyUhUA" + }, { + "labelTypeId" : "_UV3-MPunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_UV3-OfunEfCYrdfxNyUhUA" + }, { + "labelTypeId" : "_UV3-MPunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_UV3-OvunEfCYrdfxNyUhUA" + }, { + "labelTypeId" : "_UV3-MPunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_UV3-O_unEfCYrdfxNyUhUA" + }, { + "labelTypeId" : "_UV3-MPunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_UV3-PPunEfCYrdfxNyUhUA" + }, { + "labelTypeId" : "_UV3-MPunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_UV3-PfunEfCYrdfxNyUhUA" + }, { + "labelTypeId" : "_UV3-MPunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_UV3-PvunEfCYrdfxNyUhUA" + }, { + "labelTypeId" : "_UV3-MPunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_UV3-P_unEfCYrdfxNyUhUA" + }, { + "labelTypeId" : "_UV3-MPunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_UV3-QPunEfCYrdfxNyUhUA" + }, { + "labelTypeId" : "_UV3-MPunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_UV3-QfunEfCYrdfxNyUhUA" + }, { + "labelTypeId" : "_UV3-MPunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_UV3-QvunEfCYrdfxNyUhUA" + }, { + "labelTypeId" : "_UV3-MPunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_UV3-Q_unEfCYrdfxNyUhUA" + }, { + "labelTypeId" : "_UV3-MPunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_UV3-RPunEfCYrdfxNyUhUA" + }, { + "labelTypeId" : "_UV3-RvunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_UV3-RfunEfCYrdfxNyUhUA" + }, { + "labelTypeId" : "_UV3-SPunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_UV3-R_unEfCYrdfxNyUhUA" + }, { + "labelTypeId" : "_UV3-SvunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_UV3-SfunEfCYrdfxNyUhUA" + }, { + "labelTypeId" : "_UV3-TPunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_UV3-S_unEfCYrdfxNyUhUA" + }, { + "labelTypeId" : "_UV3-TvunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_UV3-TfunEfCYrdfxNyUhUA" + }, { + "labelTypeId" : "_UV3-UPunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_UV3-T_unEfCYrdfxNyUhUA" + }, { + "labelTypeId" : "_UV3-UvunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_UV3-UfunEfCYrdfxNyUhUA" + }, { + "labelTypeId" : "_UV3-VPunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_UV3-U_unEfCYrdfxNyUhUA" + }, { + "labelTypeId" : "_UV3-VvunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_UV3-VfunEfCYrdfxNyUhUA" + }, { + "labelTypeId" : "_UV3-WPunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_UV3-V_unEfCYrdfxNyUhUA" + }, { + "labelTypeId" : "_UV3-WvunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_UV3-WfunEfCYrdfxNyUhUA" + }, { + "labelTypeId" : "_UV3-XPunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_UV3-W_unEfCYrdfxNyUhUA" + }, { + "labelTypeId" : "_UV3-XvunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_UV3-XfunEfCYrdfxNyUhUA" + }, { + "labelTypeId" : "_UV3-YPunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_UV3-X_unEfCYrdfxNyUhUA" + }, { + "labelTypeId" : "_UV3-YvunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_UV3-YfunEfCYrdfxNyUhUA" + }, { + "labelTypeId" : "_UV3-ZPunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_UV3-Y_unEfCYrdfxNyUhUA" + }, { + "labelTypeId" : "_UV3-ZvunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_UV3-ZfunEfCYrdfxNyUhUA" + }, { + "labelTypeId" : "_UV3-aPunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_UV3-Z_unEfCYrdfxNyUhUA" + }, { + "labelTypeId" : "_UV3-avunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_UV3-afunEfCYrdfxNyUhUA" + }, { + "labelTypeId" : "_UV3-bPunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_UV3-a_unEfCYrdfxNyUhUA" + } ], + "ports" : [ { + "id" : "98", + "type" : "port:dfd-input", + "children" : [ ] + }, { + "behavior" : "assign Stereotype.service_discovery,Stereotype.infrastructural,Stereotype.restful_http,dummyCategory.dummy_0,dummyCategory.dummy_1,dummyCategory.dummy_2,dummyCategory.dummy_3,dummyCategory.dummy_4,dummyCategory.dummy_5,dummyCategory.dummy_6,dummyCategory.dummy_7,dummyCategory.dummy_8,dummyCategory.dummy_9,dummyCategory.dummy_10,dummyCategory.dummy_11,dummyCategory.dummy_12,dummyCategory.dummy_13,dummyCategory.dummy_14,dummyCategory.dummy_15,dummyCategory.dummy_16,dummyCategory.dummy_17,dummyCategory.dummy_18,dummyCategory.dummy_19,dummyType_0.dummyLabelofType_0,dummyType_1.dummyLabelofType_1,dummyType_2.dummyLabelofType_2,dummyType_3.dummyLabelofType_3,dummyType_4.dummyLabelofType_4,dummyType_5.dummyLabelofType_5,dummyType_6.dummyLabelofType_6,dummyType_7.dummyLabelofType_7,dummyType_8.dummyLabelofType_8,dummyType_9.dummyLabelofType_9,dummyType_10.dummyLabelofType_10,dummyType_11.dummyLabelofType_11,dummyType_12.dummyLabelofType_12,dummyType_13.dummyLabelofType_13,dummyType_14.dummyLabelofType_14,dummyType_15.dummyLabelofType_15,dummyType_16.dummyLabelofType_16,dummyType_17.dummyLabelofType_17,dummyType_18.dummyLabelofType_18,dummyType_19.dummyLabelofType_19 if TRUE from consul2|consul3\nforward consul2|consul3", + "id" : "114", + "type" : "port:dfd-output", + "children" : [ ] + }, { + "behavior" : "assign Stereotype.service_discovery,Stereotype.infrastructural,Stereotype.restful_http,dummyCategory.dummy_0,dummyCategory.dummy_1,dummyCategory.dummy_2,dummyCategory.dummy_3,dummyCategory.dummy_4,dummyCategory.dummy_5,dummyCategory.dummy_6,dummyCategory.dummy_7,dummyCategory.dummy_8,dummyCategory.dummy_9,dummyCategory.dummy_10,dummyCategory.dummy_11,dummyCategory.dummy_12,dummyCategory.dummy_13,dummyCategory.dummy_14,dummyCategory.dummy_15,dummyCategory.dummy_16,dummyCategory.dummy_17,dummyCategory.dummy_18,dummyCategory.dummy_19,dummyType_0.dummyLabelofType_0,dummyType_1.dummyLabelofType_1,dummyType_2.dummyLabelofType_2,dummyType_3.dummyLabelofType_3,dummyType_4.dummyLabelofType_4,dummyType_5.dummyLabelofType_5,dummyType_6.dummyLabelofType_6,dummyType_7.dummyLabelofType_7,dummyType_8.dummyLabelofType_8,dummyType_9.dummyLabelofType_9,dummyType_10.dummyLabelofType_10,dummyType_11.dummyLabelofType_11,dummyType_12.dummyLabelofType_12,dummyType_13.dummyLabelofType_13,dummyType_14.dummyLabelofType_14,dummyType_15.dummyLabelofType_15,dummyType_16.dummyLabelofType_16,dummyType_17.dummyLabelofType_17,dummyType_18.dummyLabelofType_18,dummyType_19.dummyLabelofType_19 if TRUE from consul2|consul3\nforward consul2|consul3", + "id" : "134", + "type" : "port:dfd-output", + "children" : [ ] + }, { + "behavior" : "assign Stereotype.service_discovery,Stereotype.infrastructural,Stereotype.restful_http,dummyCategory.dummy_0,dummyCategory.dummy_1,dummyCategory.dummy_2,dummyCategory.dummy_3,dummyCategory.dummy_4,dummyCategory.dummy_5,dummyCategory.dummy_6,dummyCategory.dummy_7,dummyCategory.dummy_8,dummyCategory.dummy_9,dummyCategory.dummy_10,dummyCategory.dummy_11,dummyCategory.dummy_12,dummyCategory.dummy_13,dummyCategory.dummy_14,dummyCategory.dummy_15,dummyCategory.dummy_16,dummyCategory.dummy_17,dummyCategory.dummy_18,dummyCategory.dummy_19,dummyType_0.dummyLabelofType_0,dummyType_1.dummyLabelofType_1,dummyType_2.dummyLabelofType_2,dummyType_3.dummyLabelofType_3,dummyType_4.dummyLabelofType_4,dummyType_5.dummyLabelofType_5,dummyType_6.dummyLabelofType_6,dummyType_7.dummyLabelofType_7,dummyType_8.dummyLabelofType_8,dummyType_9.dummyLabelofType_9,dummyType_10.dummyLabelofType_10,dummyType_11.dummyLabelofType_11,dummyType_12.dummyLabelofType_12,dummyType_13.dummyLabelofType_13,dummyType_14.dummyLabelofType_14,dummyType_15.dummyLabelofType_15,dummyType_16.dummyLabelofType_16,dummyType_17.dummyLabelofType_17,dummyType_18.dummyLabelofType_18,dummyType_19.dummyLabelofType_19 if TRUE from consul2|consul3\nforward consul2|consul3", + "id" : "155", + "type" : "port:dfd-output", + "children" : [ ] + }, { + "behavior" : "assign Stereotype.service_discovery,Stereotype.infrastructural,Stereotype.restful_http,dummyCategory.dummy_0,dummyCategory.dummy_1,dummyCategory.dummy_2,dummyCategory.dummy_3,dummyCategory.dummy_4,dummyCategory.dummy_5,dummyCategory.dummy_6,dummyCategory.dummy_7,dummyCategory.dummy_8,dummyCategory.dummy_9,dummyCategory.dummy_10,dummyCategory.dummy_11,dummyCategory.dummy_12,dummyCategory.dummy_13,dummyCategory.dummy_14,dummyCategory.dummy_15,dummyCategory.dummy_16,dummyCategory.dummy_17,dummyCategory.dummy_18,dummyCategory.dummy_19,dummyType_0.dummyLabelofType_0,dummyType_1.dummyLabelofType_1,dummyType_2.dummyLabelofType_2,dummyType_3.dummyLabelofType_3,dummyType_4.dummyLabelofType_4,dummyType_5.dummyLabelofType_5,dummyType_6.dummyLabelofType_6,dummyType_7.dummyLabelofType_7,dummyType_8.dummyLabelofType_8,dummyType_9.dummyLabelofType_9,dummyType_10.dummyLabelofType_10,dummyType_11.dummyLabelofType_11,dummyType_12.dummyLabelofType_12,dummyType_13.dummyLabelofType_13,dummyType_14.dummyLabelofType_14,dummyType_15.dummyLabelofType_15,dummyType_16.dummyLabelofType_16,dummyType_17.dummyLabelofType_17,dummyType_18.dummyLabelofType_18,dummyType_19.dummyLabelofType_19 if TRUE from consul2|consul3\nforward consul2|consul3", + "id" : "181", + "type" : "port:dfd-output", + "children" : [ ] + } ], + "annotations" : [ { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1367503763 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1367503763 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 62803825 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 62803825 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1808884231 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1808884231 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 697145861 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 697145861 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1480170882 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1480170882 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1188623367 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1188623367 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 394349340 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 394349340 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 2060037930 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 2060037930 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 2075133112 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 2075133112 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1697441364 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1697441364 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 365864880 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 365864880 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 408909888 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 408909888 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 510445648 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 510445648 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 2126876651 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 2126876651 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1676428380 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1676428380 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 822359325 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 822359325 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 2010221835 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 2010221835 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 2050247525 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 2050247525 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 277164482 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 277164482 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1219637204 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1219637204 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 990442552 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 990442552 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 45795770 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 45795770 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1529842358 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1529842358 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 663277822 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 663277822 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1940601516 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1940601516 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1425433685 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1425433685 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1705904476 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1705904476 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 79706679 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 79706679 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 773066329 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 773066329 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1235686146 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1235686146 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1557534595 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1557534595 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1497538476 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1497538476 + } ], + "children" : [ ], + "position" : { + "x" : 0.0, + "y" : 0.0 + }, + "size" : null + }, { + "text" : "consul2", + "id" : "4", + "type" : "node:function", + "labels" : [ { + "labelTypeId" : "17", + "labelTypeValueId" : "52" + }, { + "labelTypeId" : "17", + "labelTypeValueId" : "27" + }, { + "labelTypeId" : "22", + "labelTypeValueId" : "53" + }, { + "labelTypeId" : "54", + "labelTypeValueId" : "55" + }, { + "labelTypeId" : "_UV3-MPunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_UV3-MfunEfCYrdfxNyUhUA" + }, { + "labelTypeId" : "_UV3-MPunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_UV3-MvunEfCYrdfxNyUhUA" + }, { + "labelTypeId" : "_UV3-MPunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_UV3-M_unEfCYrdfxNyUhUA" + }, { + "labelTypeId" : "_UV3-MPunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_UV3-NPunEfCYrdfxNyUhUA" + }, { + "labelTypeId" : "_UV3-MPunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_UV3-NfunEfCYrdfxNyUhUA" + }, { + "labelTypeId" : "_UV3-MPunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_UV3-NvunEfCYrdfxNyUhUA" + }, { + "labelTypeId" : "_UV3-MPunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_UV3-N_unEfCYrdfxNyUhUA" + }, { + "labelTypeId" : "_UV3-MPunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_UV3-OPunEfCYrdfxNyUhUA" + }, { + "labelTypeId" : "_UV3-MPunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_UV3-OfunEfCYrdfxNyUhUA" + }, { + "labelTypeId" : "_UV3-MPunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_UV3-OvunEfCYrdfxNyUhUA" + }, { + "labelTypeId" : "_UV3-MPunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_UV3-O_unEfCYrdfxNyUhUA" + }, { + "labelTypeId" : "_UV3-MPunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_UV3-PPunEfCYrdfxNyUhUA" + }, { + "labelTypeId" : "_UV3-MPunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_UV3-PfunEfCYrdfxNyUhUA" + }, { + "labelTypeId" : "_UV3-MPunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_UV3-PvunEfCYrdfxNyUhUA" + }, { + "labelTypeId" : "_UV3-MPunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_UV3-P_unEfCYrdfxNyUhUA" + }, { + "labelTypeId" : "_UV3-MPunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_UV3-QPunEfCYrdfxNyUhUA" + }, { + "labelTypeId" : "_UV3-MPunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_UV3-QfunEfCYrdfxNyUhUA" + }, { + "labelTypeId" : "_UV3-MPunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_UV3-QvunEfCYrdfxNyUhUA" + }, { + "labelTypeId" : "_UV3-MPunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_UV3-Q_unEfCYrdfxNyUhUA" + }, { + "labelTypeId" : "_UV3-MPunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_UV3-RPunEfCYrdfxNyUhUA" + }, { + "labelTypeId" : "_UV3-RvunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_UV3-RfunEfCYrdfxNyUhUA" + }, { + "labelTypeId" : "_UV3-SPunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_UV3-R_unEfCYrdfxNyUhUA" + }, { + "labelTypeId" : "_UV3-SvunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_UV3-SfunEfCYrdfxNyUhUA" + }, { + "labelTypeId" : "_UV3-TPunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_UV3-S_unEfCYrdfxNyUhUA" + }, { + "labelTypeId" : "_UV3-TvunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_UV3-TfunEfCYrdfxNyUhUA" + }, { + "labelTypeId" : "_UV3-UPunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_UV3-T_unEfCYrdfxNyUhUA" + }, { + "labelTypeId" : "_UV3-UvunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_UV3-UfunEfCYrdfxNyUhUA" + }, { + "labelTypeId" : "_UV3-VPunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_UV3-U_unEfCYrdfxNyUhUA" + }, { + "labelTypeId" : "_UV3-VvunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_UV3-VfunEfCYrdfxNyUhUA" + }, { + "labelTypeId" : "_UV3-WPunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_UV3-V_unEfCYrdfxNyUhUA" + }, { + "labelTypeId" : "_UV3-WvunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_UV3-WfunEfCYrdfxNyUhUA" + }, { + "labelTypeId" : "_UV3-XPunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_UV3-W_unEfCYrdfxNyUhUA" + }, { + "labelTypeId" : "_UV3-XvunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_UV3-XfunEfCYrdfxNyUhUA" + }, { + "labelTypeId" : "_UV3-YPunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_UV3-X_unEfCYrdfxNyUhUA" + }, { + "labelTypeId" : "_UV3-YvunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_UV3-YfunEfCYrdfxNyUhUA" + }, { + "labelTypeId" : "_UV3-ZPunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_UV3-Y_unEfCYrdfxNyUhUA" + }, { + "labelTypeId" : "_UV3-ZvunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_UV3-ZfunEfCYrdfxNyUhUA" + }, { + "labelTypeId" : "_UV3-aPunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_UV3-Z_unEfCYrdfxNyUhUA" + }, { + "labelTypeId" : "_UV3-avunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_UV3-afunEfCYrdfxNyUhUA" + }, { + "labelTypeId" : "_UV3-bPunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_UV3-a_unEfCYrdfxNyUhUA" + } ], + "ports" : [ { + "id" : "104", + "type" : "port:dfd-input", + "children" : [ ] + }, { + "behavior" : "assign Stereotype.service_discovery,Stereotype.infrastructural,Stereotype.restful_http,dummyCategory.dummy_0,dummyCategory.dummy_1,dummyCategory.dummy_2,dummyCategory.dummy_3,dummyCategory.dummy_4,dummyCategory.dummy_5,dummyCategory.dummy_6,dummyCategory.dummy_7,dummyCategory.dummy_8,dummyCategory.dummy_9,dummyCategory.dummy_10,dummyCategory.dummy_11,dummyCategory.dummy_12,dummyCategory.dummy_13,dummyCategory.dummy_14,dummyCategory.dummy_15,dummyCategory.dummy_16,dummyCategory.dummy_17,dummyCategory.dummy_18,dummyCategory.dummy_19,dummyType_0.dummyLabelofType_0,dummyType_1.dummyLabelofType_1,dummyType_2.dummyLabelofType_2,dummyType_3.dummyLabelofType_3,dummyType_4.dummyLabelofType_4,dummyType_5.dummyLabelofType_5,dummyType_6.dummyLabelofType_6,dummyType_7.dummyLabelofType_7,dummyType_8.dummyLabelofType_8,dummyType_9.dummyLabelofType_9,dummyType_10.dummyLabelofType_10,dummyType_11.dummyLabelofType_11,dummyType_12.dummyLabelofType_12,dummyType_13.dummyLabelofType_13,dummyType_14.dummyLabelofType_14,dummyType_15.dummyLabelofType_15,dummyType_16.dummyLabelofType_16,dummyType_17.dummyLabelofType_17,dummyType_18.dummyLabelofType_18,dummyType_19.dummyLabelofType_19 if TRUE from consul3\nforward consul3", + "id" : "99", + "type" : "port:dfd-output", + "children" : [ ] + }, { + "behavior" : "assign Stereotype.service_discovery,Stereotype.infrastructural,Stereotype.restful_http,dummyCategory.dummy_0,dummyCategory.dummy_1,dummyCategory.dummy_2,dummyCategory.dummy_3,dummyCategory.dummy_4,dummyCategory.dummy_5,dummyCategory.dummy_6,dummyCategory.dummy_7,dummyCategory.dummy_8,dummyCategory.dummy_9,dummyCategory.dummy_10,dummyCategory.dummy_11,dummyCategory.dummy_12,dummyCategory.dummy_13,dummyCategory.dummy_14,dummyCategory.dummy_15,dummyCategory.dummy_16,dummyCategory.dummy_17,dummyCategory.dummy_18,dummyCategory.dummy_19,dummyType_0.dummyLabelofType_0,dummyType_1.dummyLabelofType_1,dummyType_2.dummyLabelofType_2,dummyType_3.dummyLabelofType_3,dummyType_4.dummyLabelofType_4,dummyType_5.dummyLabelofType_5,dummyType_6.dummyLabelofType_6,dummyType_7.dummyLabelofType_7,dummyType_8.dummyLabelofType_8,dummyType_9.dummyLabelofType_9,dummyType_10.dummyLabelofType_10,dummyType_11.dummyLabelofType_11,dummyType_12.dummyLabelofType_12,dummyType_13.dummyLabelofType_13,dummyType_14.dummyLabelofType_14,dummyType_15.dummyLabelofType_15,dummyType_16.dummyLabelofType_16,dummyType_17.dummyLabelofType_17,dummyType_18.dummyLabelofType_18,dummyType_19.dummyLabelofType_19 if TRUE from consul3\nforward consul3", + "id" : "183", + "type" : "port:dfd-output", + "children" : [ ] + } ], + "annotations" : [ { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1367503763 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1367503763 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1808884231 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1808884231 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1480170882 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1480170882 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1188623367 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1188623367 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 394349340 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 394349340 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 2075133112 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 2075133112 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1697441364 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1697441364 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 365864880 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 365864880 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 408909888 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 408909888 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 510445648 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 510445648 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 2126876651 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 2126876651 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1676428380 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1676428380 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 822359325 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 822359325 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 2010221835 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 2010221835 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 2071674587 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 2071674587 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 277164482 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 277164482 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1219637204 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1219637204 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 990442552 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 990442552 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 45795770 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 45795770 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1529842358 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1529842358 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 663277822 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 663277822 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1940601516 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1940601516 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1425433685 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1425433685 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1705904476 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1705904476 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 79706679 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 79706679 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 773066329 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 773066329 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1235686146 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1235686146 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1557534595 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1557534595 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1497538476 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1497538476 + } ], + "children" : [ ], + "position" : { + "x" : 0.0, + "y" : 0.0 + }, + "size" : null + }, { + "text" : "consul3", + "id" : "5", + "type" : "node:function", + "labels" : [ { + "labelTypeId" : "17", + "labelTypeValueId" : "52" + }, { + "labelTypeId" : "17", + "labelTypeValueId" : "27" + }, { + "labelTypeId" : "22", + "labelTypeValueId" : "53" + }, { + "labelTypeId" : "54", + "labelTypeValueId" : "55" + }, { + "labelTypeId" : "_UV3-MPunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_UV3-MfunEfCYrdfxNyUhUA" + }, { + "labelTypeId" : "_UV3-MPunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_UV3-MvunEfCYrdfxNyUhUA" + }, { + "labelTypeId" : "_UV3-MPunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_UV3-M_unEfCYrdfxNyUhUA" + }, { + "labelTypeId" : "_UV3-MPunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_UV3-NPunEfCYrdfxNyUhUA" + }, { + "labelTypeId" : "_UV3-MPunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_UV3-NfunEfCYrdfxNyUhUA" + }, { + "labelTypeId" : "_UV3-MPunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_UV3-NvunEfCYrdfxNyUhUA" + }, { + "labelTypeId" : "_UV3-MPunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_UV3-N_unEfCYrdfxNyUhUA" + }, { + "labelTypeId" : "_UV3-MPunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_UV3-OPunEfCYrdfxNyUhUA" + }, { + "labelTypeId" : "_UV3-MPunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_UV3-OfunEfCYrdfxNyUhUA" + }, { + "labelTypeId" : "_UV3-MPunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_UV3-OvunEfCYrdfxNyUhUA" + }, { + "labelTypeId" : "_UV3-MPunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_UV3-O_unEfCYrdfxNyUhUA" + }, { + "labelTypeId" : "_UV3-MPunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_UV3-PPunEfCYrdfxNyUhUA" + }, { + "labelTypeId" : "_UV3-MPunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_UV3-PfunEfCYrdfxNyUhUA" + }, { + "labelTypeId" : "_UV3-MPunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_UV3-PvunEfCYrdfxNyUhUA" + }, { + "labelTypeId" : "_UV3-MPunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_UV3-P_unEfCYrdfxNyUhUA" + }, { + "labelTypeId" : "_UV3-MPunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_UV3-QPunEfCYrdfxNyUhUA" + }, { + "labelTypeId" : "_UV3-MPunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_UV3-QfunEfCYrdfxNyUhUA" + }, { + "labelTypeId" : "_UV3-MPunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_UV3-QvunEfCYrdfxNyUhUA" + }, { + "labelTypeId" : "_UV3-MPunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_UV3-Q_unEfCYrdfxNyUhUA" + }, { + "labelTypeId" : "_UV3-MPunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_UV3-RPunEfCYrdfxNyUhUA" + }, { + "labelTypeId" : "_UV3-RvunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_UV3-RfunEfCYrdfxNyUhUA" + }, { + "labelTypeId" : "_UV3-SPunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_UV3-R_unEfCYrdfxNyUhUA" + }, { + "labelTypeId" : "_UV3-SvunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_UV3-SfunEfCYrdfxNyUhUA" + }, { + "labelTypeId" : "_UV3-TPunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_UV3-S_unEfCYrdfxNyUhUA" + }, { + "labelTypeId" : "_UV3-TvunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_UV3-TfunEfCYrdfxNyUhUA" + }, { + "labelTypeId" : "_UV3-UPunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_UV3-T_unEfCYrdfxNyUhUA" + }, { + "labelTypeId" : "_UV3-UvunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_UV3-UfunEfCYrdfxNyUhUA" + }, { + "labelTypeId" : "_UV3-VPunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_UV3-U_unEfCYrdfxNyUhUA" + }, { + "labelTypeId" : "_UV3-VvunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_UV3-VfunEfCYrdfxNyUhUA" + }, { + "labelTypeId" : "_UV3-WPunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_UV3-V_unEfCYrdfxNyUhUA" + }, { + "labelTypeId" : "_UV3-WvunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_UV3-WfunEfCYrdfxNyUhUA" + }, { + "labelTypeId" : "_UV3-XPunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_UV3-W_unEfCYrdfxNyUhUA" + }, { + "labelTypeId" : "_UV3-XvunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_UV3-XfunEfCYrdfxNyUhUA" + }, { + "labelTypeId" : "_UV3-YPunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_UV3-X_unEfCYrdfxNyUhUA" + }, { + "labelTypeId" : "_UV3-YvunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_UV3-YfunEfCYrdfxNyUhUA" + }, { + "labelTypeId" : "_UV3-ZPunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_UV3-Y_unEfCYrdfxNyUhUA" + }, { + "labelTypeId" : "_UV3-ZvunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_UV3-ZfunEfCYrdfxNyUhUA" + }, { + "labelTypeId" : "_UV3-aPunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_UV3-Z_unEfCYrdfxNyUhUA" + }, { + "labelTypeId" : "_UV3-avunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_UV3-afunEfCYrdfxNyUhUA" + }, { + "labelTypeId" : "_UV3-bPunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_UV3-a_unEfCYrdfxNyUhUA" + } ], + "ports" : [ { + "behavior" : "assign Stereotype.service_discovery,Stereotype.infrastructural,Stereotype.restful_http,dummyCategory.dummy_0,dummyCategory.dummy_1,dummyCategory.dummy_2,dummyCategory.dummy_3,dummyCategory.dummy_4,dummyCategory.dummy_5,dummyCategory.dummy_6,dummyCategory.dummy_7,dummyCategory.dummy_8,dummyCategory.dummy_9,dummyCategory.dummy_10,dummyCategory.dummy_11,dummyCategory.dummy_12,dummyCategory.dummy_13,dummyCategory.dummy_14,dummyCategory.dummy_15,dummyCategory.dummy_16,dummyCategory.dummy_17,dummyCategory.dummy_18,dummyCategory.dummy_19,dummyType_0.dummyLabelofType_0,dummyType_1.dummyLabelofType_1,dummyType_2.dummyLabelofType_2,dummyType_3.dummyLabelofType_3,dummyType_4.dummyLabelofType_4,dummyType_5.dummyLabelofType_5,dummyType_6.dummyLabelofType_6,dummyType_7.dummyLabelofType_7,dummyType_8.dummyLabelofType_8,dummyType_9.dummyLabelofType_9,dummyType_10.dummyLabelofType_10,dummyType_11.dummyLabelofType_11,dummyType_12.dummyLabelofType_12,dummyType_13.dummyLabelofType_13,dummyType_14.dummyLabelofType_14,dummyType_15.dummyLabelofType_15,dummyType_16.dummyLabelofType_16,dummyType_17.dummyLabelofType_17,dummyType_18.dummyLabelofType_18,dummyType_19.dummyLabelofType_19 if TRUE", + "id" : "102", + "type" : "port:dfd-output", + "children" : [ ] + }, { + "behavior" : "assign Stereotype.service_discovery,Stereotype.infrastructural,Stereotype.restful_http,dummyCategory.dummy_0,dummyCategory.dummy_1,dummyCategory.dummy_2,dummyCategory.dummy_3,dummyCategory.dummy_4,dummyCategory.dummy_5,dummyCategory.dummy_6,dummyCategory.dummy_7,dummyCategory.dummy_8,dummyCategory.dummy_9,dummyCategory.dummy_10,dummyCategory.dummy_11,dummyCategory.dummy_12,dummyCategory.dummy_13,dummyCategory.dummy_14,dummyCategory.dummy_15,dummyCategory.dummy_16,dummyCategory.dummy_17,dummyCategory.dummy_18,dummyCategory.dummy_19,dummyType_0.dummyLabelofType_0,dummyType_1.dummyLabelofType_1,dummyType_2.dummyLabelofType_2,dummyType_3.dummyLabelofType_3,dummyType_4.dummyLabelofType_4,dummyType_5.dummyLabelofType_5,dummyType_6.dummyLabelofType_6,dummyType_7.dummyLabelofType_7,dummyType_8.dummyLabelofType_8,dummyType_9.dummyLabelofType_9,dummyType_10.dummyLabelofType_10,dummyType_11.dummyLabelofType_11,dummyType_12.dummyLabelofType_12,dummyType_13.dummyLabelofType_13,dummyType_14.dummyLabelofType_14,dummyType_15.dummyLabelofType_15,dummyType_16.dummyLabelofType_16,dummyType_17.dummyLabelofType_17,dummyType_18.dummyLabelofType_18,dummyType_19.dummyLabelofType_19 if TRUE", + "id" : "105", + "type" : "port:dfd-output", + "children" : [ ] + }, { + "behavior" : "assign Stereotype.service_discovery,Stereotype.infrastructural,Stereotype.restful_http,dummyCategory.dummy_0,dummyCategory.dummy_1,dummyCategory.dummy_2,dummyCategory.dummy_3,dummyCategory.dummy_4,dummyCategory.dummy_5,dummyCategory.dummy_6,dummyCategory.dummy_7,dummyCategory.dummy_8,dummyCategory.dummy_9,dummyCategory.dummy_10,dummyCategory.dummy_11,dummyCategory.dummy_12,dummyCategory.dummy_13,dummyCategory.dummy_14,dummyCategory.dummy_15,dummyCategory.dummy_16,dummyCategory.dummy_17,dummyCategory.dummy_18,dummyCategory.dummy_19,dummyType_0.dummyLabelofType_0,dummyType_1.dummyLabelofType_1,dummyType_2.dummyLabelofType_2,dummyType_3.dummyLabelofType_3,dummyType_4.dummyLabelofType_4,dummyType_5.dummyLabelofType_5,dummyType_6.dummyLabelofType_6,dummyType_7.dummyLabelofType_7,dummyType_8.dummyLabelofType_8,dummyType_9.dummyLabelofType_9,dummyType_10.dummyLabelofType_10,dummyType_11.dummyLabelofType_11,dummyType_12.dummyLabelofType_12,dummyType_13.dummyLabelofType_13,dummyType_14.dummyLabelofType_14,dummyType_15.dummyLabelofType_15,dummyType_16.dummyLabelofType_16,dummyType_17.dummyLabelofType_17,dummyType_18.dummyLabelofType_18,dummyType_19.dummyLabelofType_19 if TRUE", + "id" : "185", + "type" : "port:dfd-output", + "children" : [ ] + } ], + "annotations" : [ { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1367503763 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 62803825 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1808884231 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 697145861 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1480170882 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1188623367 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 394349340 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 2060037930 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 2075133112 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1697441364 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 365864880 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 408909888 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 510445648 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 2126876651 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1676428380 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 822359325 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 2010221835 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 2050247525 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 2071674587 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1799831668 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 277164482 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1219637204 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 990442552 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 45795770 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1529842358 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 663277822 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1940601516 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1425433685 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1705904476 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 79706679 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 773066329 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1235686146 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1557534595 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1497538476 + } ], + "children" : [ ], + "position" : { + "x" : 0.0, + "y" : 0.0 + }, + "size" : null + }, { + "text" : "elasticsearch", + "id" : "6", + "type" : "node:function", + "labels" : [ { + "labelTypeId" : "17", + "labelTypeValueId" : "43" + }, { + "labelTypeId" : "17", + "labelTypeValueId" : "27" + }, { + "labelTypeId" : "44", + "labelTypeValueId" : "45" + }, { + "labelTypeId" : "22", + "labelTypeValueId" : "46" + }, { + "labelTypeId" : "_UV3-MPunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_UV3-MfunEfCYrdfxNyUhUA" + }, { + "labelTypeId" : "_UV3-MPunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_UV3-MvunEfCYrdfxNyUhUA" + }, { + "labelTypeId" : "_UV3-MPunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_UV3-M_unEfCYrdfxNyUhUA" + }, { + "labelTypeId" : "_UV3-MPunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_UV3-NPunEfCYrdfxNyUhUA" + }, { + "labelTypeId" : "_UV3-MPunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_UV3-NfunEfCYrdfxNyUhUA" + }, { + "labelTypeId" : "_UV3-MPunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_UV3-NvunEfCYrdfxNyUhUA" + }, { + "labelTypeId" : "_UV3-MPunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_UV3-N_unEfCYrdfxNyUhUA" + }, { + "labelTypeId" : "_UV3-MPunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_UV3-OPunEfCYrdfxNyUhUA" + }, { + "labelTypeId" : "_UV3-MPunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_UV3-OfunEfCYrdfxNyUhUA" + }, { + "labelTypeId" : "_UV3-MPunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_UV3-OvunEfCYrdfxNyUhUA" + }, { + "labelTypeId" : "_UV3-MPunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_UV3-O_unEfCYrdfxNyUhUA" + }, { + "labelTypeId" : "_UV3-MPunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_UV3-PPunEfCYrdfxNyUhUA" + }, { + "labelTypeId" : "_UV3-MPunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_UV3-PfunEfCYrdfxNyUhUA" + }, { + "labelTypeId" : "_UV3-MPunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_UV3-PvunEfCYrdfxNyUhUA" + }, { + "labelTypeId" : "_UV3-MPunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_UV3-P_unEfCYrdfxNyUhUA" + }, { + "labelTypeId" : "_UV3-MPunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_UV3-QPunEfCYrdfxNyUhUA" + }, { + "labelTypeId" : "_UV3-MPunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_UV3-QfunEfCYrdfxNyUhUA" + }, { + "labelTypeId" : "_UV3-MPunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_UV3-QvunEfCYrdfxNyUhUA" + }, { + "labelTypeId" : "_UV3-MPunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_UV3-Q_unEfCYrdfxNyUhUA" + }, { + "labelTypeId" : "_UV3-MPunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_UV3-RPunEfCYrdfxNyUhUA" + }, { + "labelTypeId" : "_UV3-RvunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_UV3-RfunEfCYrdfxNyUhUA" + }, { + "labelTypeId" : "_UV3-SPunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_UV3-R_unEfCYrdfxNyUhUA" + }, { + "labelTypeId" : "_UV3-SvunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_UV3-SfunEfCYrdfxNyUhUA" + }, { + "labelTypeId" : "_UV3-TPunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_UV3-S_unEfCYrdfxNyUhUA" + }, { + "labelTypeId" : "_UV3-TvunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_UV3-TfunEfCYrdfxNyUhUA" + }, { + "labelTypeId" : "_UV3-UPunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_UV3-T_unEfCYrdfxNyUhUA" + }, { + "labelTypeId" : "_UV3-UvunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_UV3-UfunEfCYrdfxNyUhUA" + }, { + "labelTypeId" : "_UV3-VPunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_UV3-U_unEfCYrdfxNyUhUA" + }, { + "labelTypeId" : "_UV3-VvunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_UV3-VfunEfCYrdfxNyUhUA" + }, { + "labelTypeId" : "_UV3-WPunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_UV3-V_unEfCYrdfxNyUhUA" + }, { + "labelTypeId" : "_UV3-WvunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_UV3-WfunEfCYrdfxNyUhUA" + }, { + "labelTypeId" : "_UV3-XPunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_UV3-W_unEfCYrdfxNyUhUA" + }, { + "labelTypeId" : "_UV3-XvunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_UV3-XfunEfCYrdfxNyUhUA" + }, { + "labelTypeId" : "_UV3-YPunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_UV3-X_unEfCYrdfxNyUhUA" + }, { + "labelTypeId" : "_UV3-YvunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_UV3-YfunEfCYrdfxNyUhUA" + }, { + "labelTypeId" : "_UV3-ZPunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_UV3-Y_unEfCYrdfxNyUhUA" + }, { + "labelTypeId" : "_UV3-ZvunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_UV3-ZfunEfCYrdfxNyUhUA" + }, { + "labelTypeId" : "_UV3-aPunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_UV3-Z_unEfCYrdfxNyUhUA" + }, { + "labelTypeId" : "_UV3-avunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_UV3-afunEfCYrdfxNyUhUA" + }, { + "labelTypeId" : "_UV3-bPunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_UV3-a_unEfCYrdfxNyUhUA" + } ], + "ports" : [ { + "id" : "107", + "type" : "port:dfd-input", + "children" : [ ] + }, { + "behavior" : "assign Stereotype.search_engine,Stereotype.infrastructural,Stereotype.restful_http,dummyCategory.dummy_0,dummyCategory.dummy_1,dummyCategory.dummy_2,dummyCategory.dummy_3,dummyCategory.dummy_4,dummyCategory.dummy_5,dummyCategory.dummy_6,dummyCategory.dummy_7,dummyCategory.dummy_8,dummyCategory.dummy_9,dummyCategory.dummy_10,dummyCategory.dummy_11,dummyCategory.dummy_12,dummyCategory.dummy_13,dummyCategory.dummy_14,dummyCategory.dummy_15,dummyCategory.dummy_16,dummyCategory.dummy_17,dummyCategory.dummy_18,dummyCategory.dummy_19,dummyType_0.dummyLabelofType_0,dummyType_1.dummyLabelofType_1,dummyType_2.dummyLabelofType_2,dummyType_3.dummyLabelofType_3,dummyType_4.dummyLabelofType_4,dummyType_5.dummyLabelofType_5,dummyType_6.dummyLabelofType_6,dummyType_7.dummyLabelofType_7,dummyType_8.dummyLabelofType_8,dummyType_9.dummyLabelofType_9,dummyType_10.dummyLabelofType_10,dummyType_11.dummyLabelofType_11,dummyType_12.dummyLabelofType_12,dummyType_13.dummyLabelofType_13,dummyType_14.dummyLabelofType_14,dummyType_15.dummyLabelofType_15,dummyType_16.dummyLabelofType_16,dummyType_17.dummyLabelofType_17,dummyType_18.dummyLabelofType_18,dummyType_19.dummyLabelofType_19 if TRUE from logstash\nforward logstash", + "id" : "111", + "type" : "port:dfd-output", + "children" : [ ] + }, { + "behavior" : "assign Stereotype.search_engine,Stereotype.infrastructural,Stereotype.restful_http,dummyCategory.dummy_0,dummyCategory.dummy_1,dummyCategory.dummy_2,dummyCategory.dummy_3,dummyCategory.dummy_4,dummyCategory.dummy_5,dummyCategory.dummy_6,dummyCategory.dummy_7,dummyCategory.dummy_8,dummyCategory.dummy_9,dummyCategory.dummy_10,dummyCategory.dummy_11,dummyCategory.dummy_12,dummyCategory.dummy_13,dummyCategory.dummy_14,dummyCategory.dummy_15,dummyCategory.dummy_16,dummyCategory.dummy_17,dummyCategory.dummy_18,dummyCategory.dummy_19,dummyType_0.dummyLabelofType_0,dummyType_1.dummyLabelofType_1,dummyType_2.dummyLabelofType_2,dummyType_3.dummyLabelofType_3,dummyType_4.dummyLabelofType_4,dummyType_5.dummyLabelofType_5,dummyType_6.dummyLabelofType_6,dummyType_7.dummyLabelofType_7,dummyType_8.dummyLabelofType_8,dummyType_9.dummyLabelofType_9,dummyType_10.dummyLabelofType_10,dummyType_11.dummyLabelofType_11,dummyType_12.dummyLabelofType_12,dummyType_13.dummyLabelofType_13,dummyType_14.dummyLabelofType_14,dummyType_15.dummyLabelofType_15,dummyType_16.dummyLabelofType_16,dummyType_17.dummyLabelofType_17,dummyType_18.dummyLabelofType_18,dummyType_19.dummyLabelofType_19 if TRUE from logstash\nforward logstash", + "id" : "189", + "type" : "port:dfd-output", + "children" : [ ] + } ], + "annotations" : [ { + "message" : "Propagated: Stereotype.search_engine, Stereotype.infrastructural, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19, Stereotype.logging_server, Stereotype.internal, Stereotype.local_logging, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 277164482 + }, { + "message" : "Incoming: Stereotype.logging_server, Stereotype.infrastructural, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19, Stereotype.internal, Stereotype.local_logging, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 277164482 + }, { + "message" : "Propagated: Stereotype.search_engine, Stereotype.infrastructural, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19, Stereotype.logging_server, Stereotype.internal, Stereotype.local_logging, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1219637204 + }, { + "message" : "Incoming: Stereotype.logging_server, Stereotype.infrastructural, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19, Stereotype.internal, Stereotype.local_logging, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1219637204 + }, { + "message" : "Propagated: Stereotype.search_engine, Stereotype.infrastructural, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19, Stereotype.logging_server, Stereotype.internal, Stereotype.local_logging, Stereotype.jdbc", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1788698111 + }, { + "message" : "Incoming: Stereotype.logging_server, Stereotype.infrastructural, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19, Stereotype.internal, Stereotype.local_logging, Stereotype.jdbc", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1788698111 + }, { + "message" : "Propagated: Stereotype.search_engine, Stereotype.infrastructural, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19, Stereotype.logging_server, Stereotype.internal, Stereotype.local_logging, Stereotype.gateway, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 990442552 + }, { + "message" : "Incoming: Stereotype.logging_server, Stereotype.infrastructural, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19, Stereotype.internal, Stereotype.local_logging, Stereotype.gateway, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 990442552 + }, { + "message" : "Propagated: Stereotype.search_engine, Stereotype.infrastructural, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19, Stereotype.logging_server, Stereotype.internal, Stereotype.local_logging, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 45795770 + }, { + "message" : "Incoming: Stereotype.logging_server, Stereotype.infrastructural, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19, Stereotype.internal, Stereotype.local_logging, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 45795770 + }, { + "message" : "Propagated: Stereotype.search_engine, Stereotype.infrastructural, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19, Stereotype.logging_server, Stereotype.internal, Stereotype.local_logging, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleservicetwo, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1529842358 + }, { + "message" : "Incoming: Stereotype.logging_server, Stereotype.infrastructural, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19, Stereotype.internal, Stereotype.local_logging, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleservicetwo, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1529842358 + }, { + "message" : "Propagated: Stereotype.search_engine, Stereotype.infrastructural, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19, Stereotype.logging_server, Stereotype.internal, Stereotype.local_logging, Stereotype.jdbc, Stereotype.plaintext_credentials_link, Username.servicetwo, Password.servicetwo", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1541232265 + }, { + "message" : "Incoming: Stereotype.logging_server, Stereotype.infrastructural, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19, Stereotype.internal, Stereotype.local_logging, Stereotype.jdbc, Stereotype.plaintext_credentials_link, Username.servicetwo, Password.servicetwo", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1541232265 + }, { + "message" : "Propagated: Stereotype.search_engine, Stereotype.infrastructural, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19, Stereotype.logging_server, Stereotype.internal, Stereotype.local_logging, Stereotype.gateway, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 663277822 + }, { + "message" : "Incoming: Stereotype.logging_server, Stereotype.infrastructural, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19, Stereotype.internal, Stereotype.local_logging, Stereotype.gateway, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 663277822 + }, { + "message" : "Propagated: Stereotype.search_engine, Stereotype.infrastructural, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19, Stereotype.logging_server, Stereotype.internal, Stereotype.local_logging, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1940601516 + }, { + "message" : "Incoming: Stereotype.logging_server, Stereotype.infrastructural, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19, Stereotype.internal, Stereotype.local_logging, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1940601516 + } ], + "children" : [ ], + "position" : { + "x" : 0.0, + "y" : 0.0 + }, + "size" : null + }, { + "text" : "logstash", + "id" : "7", + "type" : "node:function", + "labels" : [ { + "labelTypeId" : "17", + "labelTypeValueId" : "26" + }, { + "labelTypeId" : "17", + "labelTypeValueId" : "27" + }, { + "labelTypeId" : "22", + "labelTypeValueId" : "28" + }, { + "labelTypeId" : "29", + "labelTypeValueId" : "30" + }, { + "labelTypeId" : "_UV3-MPunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_UV3-MfunEfCYrdfxNyUhUA" + }, { + "labelTypeId" : "_UV3-MPunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_UV3-MvunEfCYrdfxNyUhUA" + }, { + "labelTypeId" : "_UV3-MPunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_UV3-M_unEfCYrdfxNyUhUA" + }, { + "labelTypeId" : "_UV3-MPunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_UV3-NPunEfCYrdfxNyUhUA" + }, { + "labelTypeId" : "_UV3-MPunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_UV3-NfunEfCYrdfxNyUhUA" + }, { + "labelTypeId" : "_UV3-MPunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_UV3-NvunEfCYrdfxNyUhUA" + }, { + "labelTypeId" : "_UV3-MPunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_UV3-N_unEfCYrdfxNyUhUA" + }, { + "labelTypeId" : "_UV3-MPunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_UV3-OPunEfCYrdfxNyUhUA" + }, { + "labelTypeId" : "_UV3-MPunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_UV3-OfunEfCYrdfxNyUhUA" + }, { + "labelTypeId" : "_UV3-MPunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_UV3-OvunEfCYrdfxNyUhUA" + }, { + "labelTypeId" : "_UV3-MPunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_UV3-O_unEfCYrdfxNyUhUA" + }, { + "labelTypeId" : "_UV3-MPunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_UV3-PPunEfCYrdfxNyUhUA" + }, { + "labelTypeId" : "_UV3-MPunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_UV3-PfunEfCYrdfxNyUhUA" + }, { + "labelTypeId" : "_UV3-MPunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_UV3-PvunEfCYrdfxNyUhUA" + }, { + "labelTypeId" : "_UV3-MPunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_UV3-P_unEfCYrdfxNyUhUA" + }, { + "labelTypeId" : "_UV3-MPunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_UV3-QPunEfCYrdfxNyUhUA" + }, { + "labelTypeId" : "_UV3-MPunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_UV3-QfunEfCYrdfxNyUhUA" + }, { + "labelTypeId" : "_UV3-MPunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_UV3-QvunEfCYrdfxNyUhUA" + }, { + "labelTypeId" : "_UV3-MPunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_UV3-Q_unEfCYrdfxNyUhUA" + }, { + "labelTypeId" : "_UV3-MPunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_UV3-RPunEfCYrdfxNyUhUA" + }, { + "labelTypeId" : "_UV3-RvunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_UV3-RfunEfCYrdfxNyUhUA" + }, { + "labelTypeId" : "_UV3-SPunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_UV3-R_unEfCYrdfxNyUhUA" + }, { + "labelTypeId" : "_UV3-SvunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_UV3-SfunEfCYrdfxNyUhUA" + }, { + "labelTypeId" : "_UV3-TPunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_UV3-S_unEfCYrdfxNyUhUA" + }, { + "labelTypeId" : "_UV3-TvunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_UV3-TfunEfCYrdfxNyUhUA" + }, { + "labelTypeId" : "_UV3-UPunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_UV3-T_unEfCYrdfxNyUhUA" + }, { + "labelTypeId" : "_UV3-UvunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_UV3-UfunEfCYrdfxNyUhUA" + }, { + "labelTypeId" : "_UV3-VPunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_UV3-U_unEfCYrdfxNyUhUA" + }, { + "labelTypeId" : "_UV3-VvunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_UV3-VfunEfCYrdfxNyUhUA" + }, { + "labelTypeId" : "_UV3-WPunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_UV3-V_unEfCYrdfxNyUhUA" + }, { + "labelTypeId" : "_UV3-WvunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_UV3-WfunEfCYrdfxNyUhUA" + }, { + "labelTypeId" : "_UV3-XPunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_UV3-W_unEfCYrdfxNyUhUA" + }, { + "labelTypeId" : "_UV3-XvunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_UV3-XfunEfCYrdfxNyUhUA" + }, { + "labelTypeId" : "_UV3-YPunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_UV3-X_unEfCYrdfxNyUhUA" + }, { + "labelTypeId" : "_UV3-YvunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_UV3-YfunEfCYrdfxNyUhUA" + }, { + "labelTypeId" : "_UV3-ZPunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_UV3-Y_unEfCYrdfxNyUhUA" + }, { + "labelTypeId" : "_UV3-ZvunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_UV3-ZfunEfCYrdfxNyUhUA" + }, { + "labelTypeId" : "_UV3-aPunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_UV3-Z_unEfCYrdfxNyUhUA" + }, { + "labelTypeId" : "_UV3-avunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_UV3-afunEfCYrdfxNyUhUA" + }, { + "labelTypeId" : "_UV3-bPunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_UV3-a_unEfCYrdfxNyUhUA" + } ], + "ports" : [ { + "id" : "116", + "type" : "port:dfd-input", + "children" : [ ] + }, { + "behavior" : "assign Stereotype.logging_server,Stereotype.infrastructural,Stereotype.restful_http,dummyCategory.dummy_0,dummyCategory.dummy_1,dummyCategory.dummy_2,dummyCategory.dummy_3,dummyCategory.dummy_4,dummyCategory.dummy_5,dummyCategory.dummy_6,dummyCategory.dummy_7,dummyCategory.dummy_8,dummyCategory.dummy_9,dummyCategory.dummy_10,dummyCategory.dummy_11,dummyCategory.dummy_12,dummyCategory.dummy_13,dummyCategory.dummy_14,dummyCategory.dummy_15,dummyCategory.dummy_16,dummyCategory.dummy_17,dummyCategory.dummy_18,dummyCategory.dummy_19,dummyType_0.dummyLabelofType_0,dummyType_1.dummyLabelofType_1,dummyType_2.dummyLabelofType_2,dummyType_3.dummyLabelofType_3,dummyType_4.dummyLabelofType_4,dummyType_5.dummyLabelofType_5,dummyType_6.dummyLabelofType_6,dummyType_7.dummyLabelofType_7,dummyType_8.dummyLabelofType_8,dummyType_9.dummyLabelofType_9,dummyType_10.dummyLabelofType_10,dummyType_11.dummyLabelofType_11,dummyType_12.dummyLabelofType_12,dummyType_13.dummyLabelofType_13,dummyType_14.dummyLabelofType_14,dummyType_15.dummyLabelofType_15,dummyType_16.dummyLabelofType_16,dummyType_17.dummyLabelofType_17,dummyType_18.dummyLabelofType_18,dummyType_19.dummyLabelofType_19 if TRUE from service_one|service_two\nforward service_one|service_two", + "id" : "108", + "type" : "port:dfd-output", + "children" : [ ] + }, { + "behavior" : "assign Stereotype.logging_server,Stereotype.infrastructural,Stereotype.restful_http,dummyCategory.dummy_0,dummyCategory.dummy_1,dummyCategory.dummy_2,dummyCategory.dummy_3,dummyCategory.dummy_4,dummyCategory.dummy_5,dummyCategory.dummy_6,dummyCategory.dummy_7,dummyCategory.dummy_8,dummyCategory.dummy_9,dummyCategory.dummy_10,dummyCategory.dummy_11,dummyCategory.dummy_12,dummyCategory.dummy_13,dummyCategory.dummy_14,dummyCategory.dummy_15,dummyCategory.dummy_16,dummyCategory.dummy_17,dummyCategory.dummy_18,dummyCategory.dummy_19,dummyType_0.dummyLabelofType_0,dummyType_1.dummyLabelofType_1,dummyType_2.dummyLabelofType_2,dummyType_3.dummyLabelofType_3,dummyType_4.dummyLabelofType_4,dummyType_5.dummyLabelofType_5,dummyType_6.dummyLabelofType_6,dummyType_7.dummyLabelofType_7,dummyType_8.dummyLabelofType_8,dummyType_9.dummyLabelofType_9,dummyType_10.dummyLabelofType_10,dummyType_11.dummyLabelofType_11,dummyType_12.dummyLabelofType_12,dummyType_13.dummyLabelofType_13,dummyType_14.dummyLabelofType_14,dummyType_15.dummyLabelofType_15,dummyType_16.dummyLabelofType_16,dummyType_17.dummyLabelofType_17,dummyType_18.dummyLabelofType_18,dummyType_19.dummyLabelofType_19 if TRUE from service_one|service_two\nforward service_one|service_two", + "id" : "191", + "type" : "port:dfd-output", + "children" : [ ] + } ], + "annotations" : [ { + "message" : "Propagated: Stereotype.logging_server, Stereotype.infrastructural, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19, Stereotype.internal, Stereotype.local_logging, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 277164482 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19, Stereotype.service_discovery, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 277164482 + }, { + "message" : "Propagated: Stereotype.logging_server, Stereotype.infrastructural, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19, Stereotype.internal, Stereotype.local_logging, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1219637204 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1219637204 + }, { + "message" : "Propagated: Stereotype.logging_server, Stereotype.infrastructural, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19, Stereotype.internal, Stereotype.local_logging, Stereotype.jdbc", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1788698111 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19, Stereotype.jdbc", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1788698111 + }, { + "message" : "Propagated: Stereotype.logging_server, Stereotype.infrastructural, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19, Stereotype.internal, Stereotype.local_logging, Stereotype.gateway, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 990442552 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19, Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 990442552 + }, { + "message" : "Propagated: Stereotype.logging_server, Stereotype.infrastructural, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19, Stereotype.internal, Stereotype.local_logging, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 45795770 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19, Stereotype.service_discovery, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 45795770 + }, { + "message" : "Propagated: Stereotype.logging_server, Stereotype.infrastructural, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19, Stereotype.internal, Stereotype.local_logging, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleservicetwo, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1529842358 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleservicetwo, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1529842358 + }, { + "message" : "Propagated: Stereotype.logging_server, Stereotype.infrastructural, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19, Stereotype.internal, Stereotype.local_logging, Stereotype.jdbc, Stereotype.plaintext_credentials_link, Username.servicetwo, Password.servicetwo", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1541232265 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19, Stereotype.jdbc, Stereotype.plaintext_credentials_link, Username.servicetwo, Password.servicetwo", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1541232265 + }, { + "message" : "Propagated: Stereotype.logging_server, Stereotype.infrastructural, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19, Stereotype.internal, Stereotype.local_logging, Stereotype.gateway, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 663277822 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19, Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 663277822 + }, { + "message" : "Propagated: Stereotype.logging_server, Stereotype.infrastructural, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19, Stereotype.internal, Stereotype.local_logging, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1940601516 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19, Stereotype.service_discovery, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1940601516 + }, { + "message" : "Propagated: Stereotype.logging_server, Stereotype.infrastructural, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19, Stereotype.internal, Stereotype.local_logging, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1425433685 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19, Stereotype.service_discovery, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1425433685 + }, { + "message" : "Propagated: Stereotype.logging_server, Stereotype.infrastructural, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19, Stereotype.internal, Stereotype.local_logging, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1705904476 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19, Stereotype.service_discovery, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1705904476 + } ], + "children" : [ ], + "position" : { + "x" : 0.0, + "y" : 0.0 + }, + "size" : null + }, { + "text" : "kibana", + "id" : "8", + "type" : "node:function", + "labels" : [ { + "labelTypeId" : "17", + "labelTypeValueId" : "69" + }, { + "labelTypeId" : "17", + "labelTypeValueId" : "27" + }, { + "labelTypeId" : "70", + "labelTypeValueId" : "86" + }, { + "labelTypeId" : "22", + "labelTypeValueId" : "87" + }, { + "labelTypeId" : "_UV3-MPunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_UV3-MfunEfCYrdfxNyUhUA" + }, { + "labelTypeId" : "_UV3-MPunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_UV3-MvunEfCYrdfxNyUhUA" + }, { + "labelTypeId" : "_UV3-MPunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_UV3-M_unEfCYrdfxNyUhUA" + }, { + "labelTypeId" : "_UV3-MPunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_UV3-NPunEfCYrdfxNyUhUA" + }, { + "labelTypeId" : "_UV3-MPunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_UV3-NfunEfCYrdfxNyUhUA" + }, { + "labelTypeId" : "_UV3-MPunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_UV3-NvunEfCYrdfxNyUhUA" + }, { + "labelTypeId" : "_UV3-MPunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_UV3-N_unEfCYrdfxNyUhUA" + }, { + "labelTypeId" : "_UV3-MPunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_UV3-OPunEfCYrdfxNyUhUA" + }, { + "labelTypeId" : "_UV3-MPunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_UV3-OfunEfCYrdfxNyUhUA" + }, { + "labelTypeId" : "_UV3-MPunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_UV3-OvunEfCYrdfxNyUhUA" + }, { + "labelTypeId" : "_UV3-MPunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_UV3-O_unEfCYrdfxNyUhUA" + }, { + "labelTypeId" : "_UV3-MPunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_UV3-PPunEfCYrdfxNyUhUA" + }, { + "labelTypeId" : "_UV3-MPunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_UV3-PfunEfCYrdfxNyUhUA" + }, { + "labelTypeId" : "_UV3-MPunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_UV3-PvunEfCYrdfxNyUhUA" + }, { + "labelTypeId" : "_UV3-MPunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_UV3-P_unEfCYrdfxNyUhUA" + }, { + "labelTypeId" : "_UV3-MPunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_UV3-QPunEfCYrdfxNyUhUA" + }, { + "labelTypeId" : "_UV3-MPunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_UV3-QfunEfCYrdfxNyUhUA" + }, { + "labelTypeId" : "_UV3-MPunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_UV3-QvunEfCYrdfxNyUhUA" + }, { + "labelTypeId" : "_UV3-MPunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_UV3-Q_unEfCYrdfxNyUhUA" + }, { + "labelTypeId" : "_UV3-MPunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_UV3-RPunEfCYrdfxNyUhUA" + }, { + "labelTypeId" : "_UV3-RvunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_UV3-RfunEfCYrdfxNyUhUA" + }, { + "labelTypeId" : "_UV3-SPunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_UV3-R_unEfCYrdfxNyUhUA" + }, { + "labelTypeId" : "_UV3-SvunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_UV3-SfunEfCYrdfxNyUhUA" + }, { + "labelTypeId" : "_UV3-TPunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_UV3-S_unEfCYrdfxNyUhUA" + }, { + "labelTypeId" : "_UV3-TvunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_UV3-TfunEfCYrdfxNyUhUA" + }, { + "labelTypeId" : "_UV3-UPunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_UV3-T_unEfCYrdfxNyUhUA" + }, { + "labelTypeId" : "_UV3-UvunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_UV3-UfunEfCYrdfxNyUhUA" + }, { + "labelTypeId" : "_UV3-VPunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_UV3-U_unEfCYrdfxNyUhUA" + }, { + "labelTypeId" : "_UV3-VvunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_UV3-VfunEfCYrdfxNyUhUA" + }, { + "labelTypeId" : "_UV3-WPunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_UV3-V_unEfCYrdfxNyUhUA" + }, { + "labelTypeId" : "_UV3-WvunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_UV3-WfunEfCYrdfxNyUhUA" + }, { + "labelTypeId" : "_UV3-XPunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_UV3-W_unEfCYrdfxNyUhUA" + }, { + "labelTypeId" : "_UV3-XvunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_UV3-XfunEfCYrdfxNyUhUA" + }, { + "labelTypeId" : "_UV3-YPunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_UV3-X_unEfCYrdfxNyUhUA" + }, { + "labelTypeId" : "_UV3-YvunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_UV3-YfunEfCYrdfxNyUhUA" + }, { + "labelTypeId" : "_UV3-ZPunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_UV3-Y_unEfCYrdfxNyUhUA" + }, { + "labelTypeId" : "_UV3-ZvunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_UV3-ZfunEfCYrdfxNyUhUA" + }, { + "labelTypeId" : "_UV3-aPunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_UV3-Z_unEfCYrdfxNyUhUA" + }, { + "labelTypeId" : "_UV3-avunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_UV3-afunEfCYrdfxNyUhUA" + }, { + "labelTypeId" : "_UV3-bPunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_UV3-a_unEfCYrdfxNyUhUA" + } ], + "ports" : [ { + "id" : "110", + "type" : "port:dfd-input", + "children" : [ ] + }, { + "behavior" : "assign Stereotype.monitoring_dashboard,Stereotype.infrastructural,Stereotype.restful_http,dummyCategory.dummy_0,dummyCategory.dummy_1,dummyCategory.dummy_2,dummyCategory.dummy_3,dummyCategory.dummy_4,dummyCategory.dummy_5,dummyCategory.dummy_6,dummyCategory.dummy_7,dummyCategory.dummy_8,dummyCategory.dummy_9,dummyCategory.dummy_10,dummyCategory.dummy_11,dummyCategory.dummy_12,dummyCategory.dummy_13,dummyCategory.dummy_14,dummyCategory.dummy_15,dummyCategory.dummy_16,dummyCategory.dummy_17,dummyCategory.dummy_18,dummyCategory.dummy_19,dummyType_0.dummyLabelofType_0,dummyType_1.dummyLabelofType_1,dummyType_2.dummyLabelofType_2,dummyType_3.dummyLabelofType_3,dummyType_4.dummyLabelofType_4,dummyType_5.dummyLabelofType_5,dummyType_6.dummyLabelofType_6,dummyType_7.dummyLabelofType_7,dummyType_8.dummyLabelofType_8,dummyType_9.dummyLabelofType_9,dummyType_10.dummyLabelofType_10,dummyType_11.dummyLabelofType_11,dummyType_12.dummyLabelofType_12,dummyType_13.dummyLabelofType_13,dummyType_14.dummyLabelofType_14,dummyType_15.dummyLabelofType_15,dummyType_16.dummyLabelofType_16,dummyType_17.dummyLabelofType_17,dummyType_18.dummyLabelofType_18,dummyType_19.dummyLabelofType_19 if TRUE from elasticsearch\nforward elasticsearch", + "id" : "187", + "type" : "port:dfd-output", + "children" : [ ] + } ], + "annotations" : [ { + "message" : "Propagated: Stereotype.monitoring_dashboard, Stereotype.infrastructural, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19, Stereotype.search_engine, Stereotype.logging_server, Stereotype.internal, Stereotype.local_logging, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 277164482 + }, { + "message" : "Incoming: Stereotype.search_engine, Stereotype.infrastructural, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19, Stereotype.logging_server, Stereotype.internal, Stereotype.local_logging, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 277164482 + }, { + "message" : "Propagated: Stereotype.monitoring_dashboard, Stereotype.infrastructural, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19, Stereotype.search_engine, Stereotype.logging_server, Stereotype.internal, Stereotype.local_logging, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1219637204 + }, { + "message" : "Incoming: Stereotype.search_engine, Stereotype.infrastructural, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19, Stereotype.logging_server, Stereotype.internal, Stereotype.local_logging, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1219637204 + }, { + "message" : "Propagated: Stereotype.monitoring_dashboard, Stereotype.infrastructural, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19, Stereotype.search_engine, Stereotype.logging_server, Stereotype.internal, Stereotype.local_logging, Stereotype.jdbc", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1788698111 + }, { + "message" : "Incoming: Stereotype.search_engine, Stereotype.infrastructural, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19, Stereotype.logging_server, Stereotype.internal, Stereotype.local_logging, Stereotype.jdbc", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1788698111 + }, { + "message" : "Propagated: Stereotype.monitoring_dashboard, Stereotype.infrastructural, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19, Stereotype.search_engine, Stereotype.logging_server, Stereotype.internal, Stereotype.local_logging, Stereotype.gateway, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 990442552 + }, { + "message" : "Incoming: Stereotype.search_engine, Stereotype.infrastructural, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19, Stereotype.logging_server, Stereotype.internal, Stereotype.local_logging, Stereotype.gateway, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 990442552 + }, { + "message" : "Propagated: Stereotype.monitoring_dashboard, Stereotype.infrastructural, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19, Stereotype.search_engine, Stereotype.logging_server, Stereotype.internal, Stereotype.local_logging, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 45795770 + }, { + "message" : "Incoming: Stereotype.search_engine, Stereotype.infrastructural, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19, Stereotype.logging_server, Stereotype.internal, Stereotype.local_logging, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 45795770 + }, { + "message" : "Propagated: Stereotype.monitoring_dashboard, Stereotype.infrastructural, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19, Stereotype.search_engine, Stereotype.logging_server, Stereotype.internal, Stereotype.local_logging, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleservicetwo, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1529842358 + }, { + "message" : "Incoming: Stereotype.search_engine, Stereotype.infrastructural, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19, Stereotype.logging_server, Stereotype.internal, Stereotype.local_logging, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleservicetwo, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1529842358 + }, { + "message" : "Propagated: Stereotype.monitoring_dashboard, Stereotype.infrastructural, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19, Stereotype.search_engine, Stereotype.logging_server, Stereotype.internal, Stereotype.local_logging, Stereotype.jdbc, Stereotype.plaintext_credentials_link, Username.servicetwo, Password.servicetwo", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1541232265 + }, { + "message" : "Incoming: Stereotype.search_engine, Stereotype.infrastructural, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19, Stereotype.logging_server, Stereotype.internal, Stereotype.local_logging, Stereotype.jdbc, Stereotype.plaintext_credentials_link, Username.servicetwo, Password.servicetwo", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1541232265 + }, { + "message" : "Propagated: Stereotype.monitoring_dashboard, Stereotype.infrastructural, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19, Stereotype.search_engine, Stereotype.logging_server, Stereotype.internal, Stereotype.local_logging, Stereotype.gateway, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 663277822 + }, { + "message" : "Incoming: Stereotype.search_engine, Stereotype.infrastructural, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19, Stereotype.logging_server, Stereotype.internal, Stereotype.local_logging, Stereotype.gateway, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 663277822 + } ], + "children" : [ ], + "position" : { + "x" : 0.0, + "y" : 0.0 + }, + "size" : null + }, { + "text" : "rabbit", + "id" : "9", + "type" : "node:function", + "labels" : [ { + "labelTypeId" : "17", + "labelTypeValueId" : "58" + }, { + "labelTypeId" : "17", + "labelTypeValueId" : "59" + }, { + "labelTypeId" : "17", + "labelTypeValueId" : "27" + }, { + "labelTypeId" : "60", + "labelTypeValueId" : "61" + }, { + "labelTypeId" : "62", + "labelTypeValueId" : "63" + }, { + "labelTypeId" : "22", + "labelTypeValueId" : "64" + }, { + "labelTypeId" : "65", + "labelTypeValueId" : "66" + }, { + "labelTypeId" : "_UV3-MPunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_UV3-MfunEfCYrdfxNyUhUA" + }, { + "labelTypeId" : "_UV3-MPunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_UV3-MvunEfCYrdfxNyUhUA" + }, { + "labelTypeId" : "_UV3-MPunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_UV3-M_unEfCYrdfxNyUhUA" + }, { + "labelTypeId" : "_UV3-MPunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_UV3-NPunEfCYrdfxNyUhUA" + }, { + "labelTypeId" : "_UV3-MPunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_UV3-NfunEfCYrdfxNyUhUA" + }, { + "labelTypeId" : "_UV3-MPunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_UV3-NvunEfCYrdfxNyUhUA" + }, { + "labelTypeId" : "_UV3-MPunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_UV3-N_unEfCYrdfxNyUhUA" + }, { + "labelTypeId" : "_UV3-MPunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_UV3-OPunEfCYrdfxNyUhUA" + }, { + "labelTypeId" : "_UV3-MPunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_UV3-OfunEfCYrdfxNyUhUA" + }, { + "labelTypeId" : "_UV3-MPunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_UV3-OvunEfCYrdfxNyUhUA" + }, { + "labelTypeId" : "_UV3-MPunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_UV3-O_unEfCYrdfxNyUhUA" + }, { + "labelTypeId" : "_UV3-MPunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_UV3-PPunEfCYrdfxNyUhUA" + }, { + "labelTypeId" : "_UV3-MPunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_UV3-PfunEfCYrdfxNyUhUA" + }, { + "labelTypeId" : "_UV3-MPunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_UV3-PvunEfCYrdfxNyUhUA" + }, { + "labelTypeId" : "_UV3-MPunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_UV3-P_unEfCYrdfxNyUhUA" + }, { + "labelTypeId" : "_UV3-MPunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_UV3-QPunEfCYrdfxNyUhUA" + }, { + "labelTypeId" : "_UV3-MPunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_UV3-QfunEfCYrdfxNyUhUA" + }, { + "labelTypeId" : "_UV3-MPunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_UV3-QvunEfCYrdfxNyUhUA" + }, { + "labelTypeId" : "_UV3-MPunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_UV3-Q_unEfCYrdfxNyUhUA" + }, { + "labelTypeId" : "_UV3-MPunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_UV3-RPunEfCYrdfxNyUhUA" + }, { + "labelTypeId" : "_UV3-RvunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_UV3-RfunEfCYrdfxNyUhUA" + }, { + "labelTypeId" : "_UV3-SPunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_UV3-R_unEfCYrdfxNyUhUA" + }, { + "labelTypeId" : "_UV3-SvunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_UV3-SfunEfCYrdfxNyUhUA" + }, { + "labelTypeId" : "_UV3-TPunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_UV3-S_unEfCYrdfxNyUhUA" + }, { + "labelTypeId" : "_UV3-TvunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_UV3-TfunEfCYrdfxNyUhUA" + }, { + "labelTypeId" : "_UV3-UPunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_UV3-T_unEfCYrdfxNyUhUA" + }, { + "labelTypeId" : "_UV3-UvunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_UV3-UfunEfCYrdfxNyUhUA" + }, { + "labelTypeId" : "_UV3-VPunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_UV3-U_unEfCYrdfxNyUhUA" + }, { + "labelTypeId" : "_UV3-VvunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_UV3-VfunEfCYrdfxNyUhUA" + }, { + "labelTypeId" : "_UV3-WPunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_UV3-V_unEfCYrdfxNyUhUA" + }, { + "labelTypeId" : "_UV3-WvunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_UV3-WfunEfCYrdfxNyUhUA" + }, { + "labelTypeId" : "_UV3-XPunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_UV3-W_unEfCYrdfxNyUhUA" + }, { + "labelTypeId" : "_UV3-XvunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_UV3-XfunEfCYrdfxNyUhUA" + }, { + "labelTypeId" : "_UV3-YPunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_UV3-X_unEfCYrdfxNyUhUA" + }, { + "labelTypeId" : "_UV3-YvunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_UV3-YfunEfCYrdfxNyUhUA" + }, { + "labelTypeId" : "_UV3-ZPunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_UV3-Y_unEfCYrdfxNyUhUA" + }, { + "labelTypeId" : "_UV3-ZvunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_UV3-ZfunEfCYrdfxNyUhUA" + }, { + "labelTypeId" : "_UV3-aPunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_UV3-Z_unEfCYrdfxNyUhUA" + }, { + "labelTypeId" : "_UV3-avunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_UV3-afunEfCYrdfxNyUhUA" + }, { + "labelTypeId" : "_UV3-bPunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_UV3-a_unEfCYrdfxNyUhUA" + } ], + "ports" : [ { + "id" : "119", + "type" : "port:dfd-input", + "children" : [ ] + }, { + "behavior" : "assign Stereotype.message_broker,Stereotype.plaintext_credentials,Stereotype.infrastructural,Stereotype.message_consumer_rabbitmq,Stereotype.restful_http,Queue.commudigalmicroservicessampleserviceone,dummyCategory.dummy_0,dummyCategory.dummy_1,dummyCategory.dummy_2,dummyCategory.dummy_3,dummyCategory.dummy_4,dummyCategory.dummy_5,dummyCategory.dummy_6,dummyCategory.dummy_7,dummyCategory.dummy_8,dummyCategory.dummy_9,dummyCategory.dummy_10,dummyCategory.dummy_11,dummyCategory.dummy_12,dummyCategory.dummy_13,dummyCategory.dummy_14,dummyCategory.dummy_15,dummyCategory.dummy_16,dummyCategory.dummy_17,dummyCategory.dummy_18,dummyCategory.dummy_19,dummyType_0.dummyLabelofType_0,dummyType_1.dummyLabelofType_1,dummyType_2.dummyLabelofType_2,dummyType_3.dummyLabelofType_3,dummyType_4.dummyLabelofType_4,dummyType_5.dummyLabelofType_5,dummyType_6.dummyLabelofType_6,dummyType_7.dummyLabelofType_7,dummyType_8.dummyLabelofType_8,dummyType_9.dummyLabelofType_9,dummyType_10.dummyLabelofType_10,dummyType_11.dummyLabelofType_11,dummyType_12.dummyLabelofType_12,dummyType_13.dummyLabelofType_13,dummyType_14.dummyLabelofType_14,dummyType_15.dummyLabelofType_15,dummyType_16.dummyLabelofType_16,dummyType_17.dummyLabelofType_17,dummyType_18.dummyLabelofType_18,dummyType_19.dummyLabelofType_19 if TRUE from service_one|service_two\nforward service_one|service_two", + "id" : "128", + "type" : "port:dfd-output", + "children" : [ ] + }, { + "behavior" : "assign Stereotype.message_broker,Stereotype.plaintext_credentials,Stereotype.infrastructural,Stereotype.message_consumer_rabbitmq,Stereotype.restful_http,Queue.commudigalmicroservicessampleservicetwo,dummyCategory.dummy_0,dummyCategory.dummy_1,dummyCategory.dummy_2,dummyCategory.dummy_3,dummyCategory.dummy_4,dummyCategory.dummy_5,dummyCategory.dummy_6,dummyCategory.dummy_7,dummyCategory.dummy_8,dummyCategory.dummy_9,dummyCategory.dummy_10,dummyCategory.dummy_11,dummyCategory.dummy_12,dummyCategory.dummy_13,dummyCategory.dummy_14,dummyCategory.dummy_15,dummyCategory.dummy_16,dummyCategory.dummy_17,dummyCategory.dummy_18,dummyCategory.dummy_19,dummyType_0.dummyLabelofType_0,dummyType_1.dummyLabelofType_1,dummyType_2.dummyLabelofType_2,dummyType_3.dummyLabelofType_3,dummyType_4.dummyLabelofType_4,dummyType_5.dummyLabelofType_5,dummyType_6.dummyLabelofType_6,dummyType_7.dummyLabelofType_7,dummyType_8.dummyLabelofType_8,dummyType_9.dummyLabelofType_9,dummyType_10.dummyLabelofType_10,dummyType_11.dummyLabelofType_11,dummyType_12.dummyLabelofType_12,dummyType_13.dummyLabelofType_13,dummyType_14.dummyLabelofType_14,dummyType_15.dummyLabelofType_15,dummyType_16.dummyLabelofType_16,dummyType_17.dummyLabelofType_17,dummyType_18.dummyLabelofType_18,dummyType_19.dummyLabelofType_19 if TRUE from service_one|service_two\nforward service_one|service_two", + "id" : "140", + "type" : "port:dfd-output", + "children" : [ ] + }, { + "behavior" : "assign Stereotype.message_broker,Stereotype.plaintext_credentials,Stereotype.infrastructural,Stereotype.restful_http,dummyCategory.dummy_0,dummyCategory.dummy_1,dummyCategory.dummy_2,dummyCategory.dummy_3,dummyCategory.dummy_4,dummyCategory.dummy_5,dummyCategory.dummy_6,dummyCategory.dummy_7,dummyCategory.dummy_8,dummyCategory.dummy_9,dummyCategory.dummy_10,dummyCategory.dummy_11,dummyCategory.dummy_12,dummyCategory.dummy_13,dummyCategory.dummy_14,dummyCategory.dummy_15,dummyCategory.dummy_16,dummyCategory.dummy_17,dummyCategory.dummy_18,dummyCategory.dummy_19,dummyType_0.dummyLabelofType_0,dummyType_1.dummyLabelofType_1,dummyType_2.dummyLabelofType_2,dummyType_3.dummyLabelofType_3,dummyType_4.dummyLabelofType_4,dummyType_5.dummyLabelofType_5,dummyType_6.dummyLabelofType_6,dummyType_7.dummyLabelofType_7,dummyType_8.dummyLabelofType_8,dummyType_9.dummyLabelofType_9,dummyType_10.dummyLabelofType_10,dummyType_11.dummyLabelofType_11,dummyType_12.dummyLabelofType_12,dummyType_13.dummyLabelofType_13,dummyType_14.dummyLabelofType_14,dummyType_15.dummyLabelofType_15,dummyType_16.dummyLabelofType_16,dummyType_17.dummyLabelofType_17,dummyType_18.dummyLabelofType_18,dummyType_19.dummyLabelofType_19 if TRUE from service_one|service_two\nforward service_one|service_two", + "id" : "179", + "type" : "port:dfd-output", + "children" : [ ] + } ], + "annotations" : [ { + "message" : "Propagated: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleserviceone, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1480170882 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, Stereotype.restful_http, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19, Stereotype.service_discovery, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1480170882 + }, { + "message" : "Propagated: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleserviceone, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.jdbc", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 653880197 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, Stereotype.restful_http, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19, Stereotype.jdbc", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 653880197 + }, { + "message" : "Propagated: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleserviceone, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.gateway, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1188623367 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, Stereotype.restful_http, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19, Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1188623367 + }, { + "message" : "Propagated: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleserviceone, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.gateway, Stereotype.load_balancer, Stereotype.web_application, Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.encrypted_connection", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 62915435 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, Stereotype.restful_http, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19, Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.web_application, Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.encrypted_connection", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 62915435 + }, { + "message" : "Propagated: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleserviceone, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 394349340 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.restful_http, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19, Stereotype.service_discovery, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 394349340 + }, { + "message" : "Propagated: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleserviceone, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 2060037930 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.restful_http, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19, Stereotype.service_discovery, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 2060037930 + }, { + "message" : "Propagated: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleservicetwo, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 2075133112 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, Stereotype.restful_http, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19, Stereotype.service_discovery, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 2075133112 + }, { + "message" : "Propagated: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleserviceone, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Queue.commudigalmicroservicessampleservicetwo, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 2075133112 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.restful_http, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleservicetwo, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 2075133112 + }, { + "message" : "Propagated: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleserviceone, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.jdbc, Username.servicetwo, Password.servicetwo", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 2028510206 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.restful_http, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19, Stereotype.jdbc, Username.servicetwo, Password.servicetwo", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 2028510206 + }, { + "message" : "Propagated: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleserviceone, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.gateway, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1697441364 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.restful_http, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19, Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1697441364 + }, { + "message" : "Propagated: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleserviceone, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.gateway, Stereotype.load_balancer, Stereotype.web_application, Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.encrypted_connection", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1378592036 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.restful_http, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19, Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.web_application, Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.encrypted_connection", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1378592036 + }, { + "message" : "Propagated: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleservicetwo, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 510445648 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, Stereotype.restful_http, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19, Stereotype.service_discovery, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 510445648 + }, { + "message" : "Propagated: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1676428380 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, Stereotype.restful_http, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19, Stereotype.service_discovery, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1676428380 + }, { + "message" : "Propagated: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 822359325 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.restful_http, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19, Stereotype.service_discovery, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 822359325 + }, { + "message" : "Propagated: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleserviceone, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1219637204 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, Stereotype.restful_http, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19, Stereotype.service_discovery, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1219637204 + }, { + "message" : "Propagated: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleservicetwo, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1529842358 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, Stereotype.restful_http, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19, Stereotype.service_discovery, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1529842358 + } ], + "children" : [ ], + "position" : { + "x" : 0.0, + "y" : 0.0 + }, + "size" : null + }, { + "text" : "service_one", + "id" : "10", + "type" : "node:function", + "labels" : [ { + "labelTypeId" : "17", + "labelTypeValueId" : "20" + }, { + "labelTypeId" : "17", + "labelTypeValueId" : "21" + }, { + "labelTypeId" : "22", + "labelTypeValueId" : "23" + }, { + "labelTypeId" : "_UV3-MPunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_UV3-MfunEfCYrdfxNyUhUA" + }, { + "labelTypeId" : "_UV3-MPunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_UV3-MvunEfCYrdfxNyUhUA" + }, { + "labelTypeId" : "_UV3-MPunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_UV3-M_unEfCYrdfxNyUhUA" + }, { + "labelTypeId" : "_UV3-MPunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_UV3-NPunEfCYrdfxNyUhUA" + }, { + "labelTypeId" : "_UV3-MPunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_UV3-NfunEfCYrdfxNyUhUA" + }, { + "labelTypeId" : "_UV3-MPunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_UV3-NvunEfCYrdfxNyUhUA" + }, { + "labelTypeId" : "_UV3-MPunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_UV3-N_unEfCYrdfxNyUhUA" + }, { + "labelTypeId" : "_UV3-MPunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_UV3-OPunEfCYrdfxNyUhUA" + }, { + "labelTypeId" : "_UV3-MPunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_UV3-OfunEfCYrdfxNyUhUA" + }, { + "labelTypeId" : "_UV3-MPunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_UV3-OvunEfCYrdfxNyUhUA" + }, { + "labelTypeId" : "_UV3-MPunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_UV3-O_unEfCYrdfxNyUhUA" + }, { + "labelTypeId" : "_UV3-MPunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_UV3-PPunEfCYrdfxNyUhUA" + }, { + "labelTypeId" : "_UV3-MPunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_UV3-PfunEfCYrdfxNyUhUA" + }, { + "labelTypeId" : "_UV3-MPunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_UV3-PvunEfCYrdfxNyUhUA" + }, { + "labelTypeId" : "_UV3-MPunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_UV3-P_unEfCYrdfxNyUhUA" + }, { + "labelTypeId" : "_UV3-MPunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_UV3-QPunEfCYrdfxNyUhUA" + }, { + "labelTypeId" : "_UV3-MPunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_UV3-QfunEfCYrdfxNyUhUA" + }, { + "labelTypeId" : "_UV3-MPunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_UV3-QvunEfCYrdfxNyUhUA" + }, { + "labelTypeId" : "_UV3-MPunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_UV3-Q_unEfCYrdfxNyUhUA" + }, { + "labelTypeId" : "_UV3-MPunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_UV3-RPunEfCYrdfxNyUhUA" + }, { + "labelTypeId" : "_UV3-RvunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_UV3-RfunEfCYrdfxNyUhUA" + }, { + "labelTypeId" : "_UV3-SPunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_UV3-R_unEfCYrdfxNyUhUA" + }, { + "labelTypeId" : "_UV3-SvunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_UV3-SfunEfCYrdfxNyUhUA" + }, { + "labelTypeId" : "_UV3-TPunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_UV3-S_unEfCYrdfxNyUhUA" + }, { + "labelTypeId" : "_UV3-TvunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_UV3-TfunEfCYrdfxNyUhUA" + }, { + "labelTypeId" : "_UV3-UPunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_UV3-T_unEfCYrdfxNyUhUA" + }, { + "labelTypeId" : "_UV3-UvunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_UV3-UfunEfCYrdfxNyUhUA" + }, { + "labelTypeId" : "_UV3-VPunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_UV3-U_unEfCYrdfxNyUhUA" + }, { + "labelTypeId" : "_UV3-VvunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_UV3-VfunEfCYrdfxNyUhUA" + }, { + "labelTypeId" : "_UV3-WPunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_UV3-V_unEfCYrdfxNyUhUA" + }, { + "labelTypeId" : "_UV3-WvunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_UV3-WfunEfCYrdfxNyUhUA" + }, { + "labelTypeId" : "_UV3-XPunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_UV3-W_unEfCYrdfxNyUhUA" + }, { + "labelTypeId" : "_UV3-XvunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_UV3-XfunEfCYrdfxNyUhUA" + }, { + "labelTypeId" : "_UV3-YPunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_UV3-X_unEfCYrdfxNyUhUA" + }, { + "labelTypeId" : "_UV3-YvunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_UV3-YfunEfCYrdfxNyUhUA" + }, { + "labelTypeId" : "_UV3-ZPunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_UV3-Y_unEfCYrdfxNyUhUA" + }, { + "labelTypeId" : "_UV3-ZvunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_UV3-ZfunEfCYrdfxNyUhUA" + }, { + "labelTypeId" : "_UV3-aPunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_UV3-Z_unEfCYrdfxNyUhUA" + }, { + "labelTypeId" : "_UV3-avunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_UV3-afunEfCYrdfxNyUhUA" + }, { + "labelTypeId" : "_UV3-bPunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_UV3-a_unEfCYrdfxNyUhUA" + } ], + "ports" : [ { + "id" : "113", + "type" : "port:dfd-input", + "children" : [ ] + }, { + "behavior" : "assign Stereotype.internal,Stereotype.local_logging,Stereotype.restful_http,dummyCategory.dummy_0,dummyCategory.dummy_1,dummyCategory.dummy_2,dummyCategory.dummy_3,dummyCategory.dummy_4,dummyCategory.dummy_5,dummyCategory.dummy_6,dummyCategory.dummy_7,dummyCategory.dummy_8,dummyCategory.dummy_9,dummyCategory.dummy_10,dummyCategory.dummy_11,dummyCategory.dummy_12,dummyCategory.dummy_13,dummyCategory.dummy_14,dummyCategory.dummy_15,dummyCategory.dummy_16,dummyCategory.dummy_17,dummyCategory.dummy_18,dummyCategory.dummy_19,dummyType_0.dummyLabelofType_0,dummyType_1.dummyLabelofType_1,dummyType_2.dummyLabelofType_2,dummyType_3.dummyLabelofType_3,dummyType_4.dummyLabelofType_4,dummyType_5.dummyLabelofType_5,dummyType_6.dummyLabelofType_6,dummyType_7.dummyLabelofType_7,dummyType_8.dummyLabelofType_8,dummyType_9.dummyLabelofType_9,dummyType_10.dummyLabelofType_10,dummyType_11.dummyLabelofType_11,dummyType_12.dummyLabelofType_12,dummyType_13.dummyLabelofType_13,dummyType_14.dummyLabelofType_14,dummyType_15.dummyLabelofType_15,dummyType_16.dummyLabelofType_16,dummyType_17.dummyLabelofType_17,dummyType_18.dummyLabelofType_18,dummyType_19.dummyLabelofType_19 if TRUE from api_gateway|consul|rabbit|service_one_db\nforward api_gateway|consul|rabbit|service_one_db", + "id" : "117", + "type" : "port:dfd-output", + "children" : [ ] + }, { + "behavior" : "assign Stereotype.internal,Stereotype.local_logging,Stereotype.message_producer_rabbitmq,Stereotype.plaintext_credentials_link,Stereotype.restful_http,RoutingKey.commudigalmicroservicessampleservice,ProducerExchange.commudigalmicroservicessampleservicesexchange,dummyCategory.dummy_0,dummyCategory.dummy_1,dummyCategory.dummy_2,dummyCategory.dummy_3,dummyCategory.dummy_4,dummyCategory.dummy_5,dummyCategory.dummy_6,dummyCategory.dummy_7,dummyCategory.dummy_8,dummyCategory.dummy_9,dummyCategory.dummy_10,dummyCategory.dummy_11,dummyCategory.dummy_12,dummyCategory.dummy_13,dummyCategory.dummy_14,dummyCategory.dummy_15,dummyCategory.dummy_16,dummyCategory.dummy_17,dummyCategory.dummy_18,dummyCategory.dummy_19,dummyType_0.dummyLabelofType_0,dummyType_1.dummyLabelofType_1,dummyType_2.dummyLabelofType_2,dummyType_3.dummyLabelofType_3,dummyType_4.dummyLabelofType_4,dummyType_5.dummyLabelofType_5,dummyType_6.dummyLabelofType_6,dummyType_7.dummyLabelofType_7,dummyType_8.dummyLabelofType_8,dummyType_9.dummyLabelofType_9,dummyType_10.dummyLabelofType_10,dummyType_11.dummyLabelofType_11,dummyType_12.dummyLabelofType_12,dummyType_13.dummyLabelofType_13,dummyType_14.dummyLabelofType_14,dummyType_15.dummyLabelofType_15,dummyType_16.dummyLabelofType_16,dummyType_17.dummyLabelofType_17,dummyType_18.dummyLabelofType_18,dummyType_19.dummyLabelofType_19 if TRUE from api_gateway|consul|rabbit|service_one_db\nforward api_gateway|consul|rabbit|service_one_db", + "id" : "120", + "type" : "port:dfd-output", + "children" : [ ] + }, { + "behavior" : "assign Stereotype.internal,Stereotype.local_logging,Stereotype.restful_http,dummyCategory.dummy_0,dummyCategory.dummy_1,dummyCategory.dummy_2,dummyCategory.dummy_3,dummyCategory.dummy_4,dummyCategory.dummy_5,dummyCategory.dummy_6,dummyCategory.dummy_7,dummyCategory.dummy_8,dummyCategory.dummy_9,dummyCategory.dummy_10,dummyCategory.dummy_11,dummyCategory.dummy_12,dummyCategory.dummy_13,dummyCategory.dummy_14,dummyCategory.dummy_15,dummyCategory.dummy_16,dummyCategory.dummy_17,dummyCategory.dummy_18,dummyCategory.dummy_19,dummyType_0.dummyLabelofType_0,dummyType_1.dummyLabelofType_1,dummyType_2.dummyLabelofType_2,dummyType_3.dummyLabelofType_3,dummyType_4.dummyLabelofType_4,dummyType_5.dummyLabelofType_5,dummyType_6.dummyLabelofType_6,dummyType_7.dummyLabelofType_7,dummyType_8.dummyLabelofType_8,dummyType_9.dummyLabelofType_9,dummyType_10.dummyLabelofType_10,dummyType_11.dummyLabelofType_11,dummyType_12.dummyLabelofType_12,dummyType_13.dummyLabelofType_13,dummyType_14.dummyLabelofType_14,dummyType_15.dummyLabelofType_15,dummyType_16.dummyLabelofType_16,dummyType_17.dummyLabelofType_17,dummyType_18.dummyLabelofType_18,dummyType_19.dummyLabelofType_19 if TRUE from api_gateway|consul|rabbit|service_one_db\nforward api_gateway|consul|rabbit|service_one_db", + "id" : "169", + "type" : "port:dfd-output", + "children" : [ ] + } ], + "annotations" : [ { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19, Stereotype.service_discovery, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1808884231 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1808884231 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19, Stereotype.service_discovery, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 697145861 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 697145861 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, Stereotype.restful_http, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19, Stereotype.service_discovery, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1480170882 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1480170882 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1480170882 + }, { + "message" : "Incoming: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleserviceone, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1480170882 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, Stereotype.restful_http, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19, Stereotype.jdbc", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 653880197 + }, { + "message" : "Incoming: Stereotype.jdbc, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 653880197 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.jdbc", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 653880197 + }, { + "message" : "Incoming: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleserviceone, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.jdbc", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 653880197 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, Stereotype.restful_http, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19, Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1188623367 + }, { + "message" : "Incoming: Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1188623367 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.gateway, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1188623367 + }, { + "message" : "Incoming: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleserviceone, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.gateway, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1188623367 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, Stereotype.restful_http, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19, Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.web_application, Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.encrypted_connection", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 62915435 + }, { + "message" : "Incoming: Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19, Stereotype.web_application, Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.encrypted_connection", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 62915435 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.gateway, Stereotype.load_balancer, Stereotype.web_application, Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.encrypted_connection", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 62915435 + }, { + "message" : "Incoming: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleserviceone, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.gateway, Stereotype.load_balancer, Stereotype.web_application, Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.encrypted_connection", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 62915435 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 394349340 + }, { + "message" : "Incoming: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleserviceone, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 394349340 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 2060037930 + }, { + "message" : "Incoming: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleserviceone, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 2060037930 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, Stereotype.restful_http, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19, Stereotype.service_discovery, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 2075133112 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 2075133112 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Queue.commudigalmicroservicessampleservicetwo, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 2075133112 + }, { + "message" : "Incoming: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleserviceone, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Queue.commudigalmicroservicessampleservicetwo, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 2075133112 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.jdbc, Username.servicetwo, Password.servicetwo", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 2028510206 + }, { + "message" : "Incoming: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleserviceone, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.jdbc, Username.servicetwo, Password.servicetwo", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 2028510206 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.gateway, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1697441364 + }, { + "message" : "Incoming: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleserviceone, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.gateway, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1697441364 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.gateway, Stereotype.load_balancer, Stereotype.web_application, Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.encrypted_connection", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1378592036 + }, { + "message" : "Incoming: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleserviceone, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.gateway, Stereotype.load_balancer, Stereotype.web_application, Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.encrypted_connection", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1378592036 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19, Stereotype.jdbc", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 700837405 + }, { + "message" : "Incoming: Stereotype.jdbc, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 700837405 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19, Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 365864880 + }, { + "message" : "Incoming: Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 365864880 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, Stereotype.restful_http, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19, Stereotype.service_discovery, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 510445648 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 510445648 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, Stereotype.restful_http, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19, Stereotype.service_discovery, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1676428380 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1676428380 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19, Stereotype.service_discovery, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 277164482 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 277164482 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, Stereotype.restful_http, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19, Stereotype.service_discovery, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1219637204 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1219637204 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1219637204 + }, { + "message" : "Incoming: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleserviceone, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1219637204 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19, Stereotype.jdbc", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1788698111 + }, { + "message" : "Incoming: Stereotype.jdbc, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1788698111 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19, Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 990442552 + }, { + "message" : "Incoming: Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 990442552 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, Stereotype.restful_http, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19, Stereotype.service_discovery, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1529842358 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1529842358 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19, Stereotype.service_discovery, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1940601516 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1940601516 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19, Stereotype.service_discovery, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1425433685 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1425433685 + } ], + "children" : [ ], + "position" : { + "x" : 0.0, + "y" : 0.0 + }, + "size" : null + }, { + "text" : "service_two", + "id" : "11", + "type" : "node:function", + "labels" : [ { + "labelTypeId" : "17", + "labelTypeValueId" : "20" + }, { + "labelTypeId" : "17", + "labelTypeValueId" : "21" + }, { + "labelTypeId" : "22", + "labelTypeValueId" : "49" + }, { + "labelTypeId" : "_UV3-MPunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_UV3-MfunEfCYrdfxNyUhUA" + }, { + "labelTypeId" : "_UV3-MPunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_UV3-MvunEfCYrdfxNyUhUA" + }, { + "labelTypeId" : "_UV3-MPunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_UV3-M_unEfCYrdfxNyUhUA" + }, { + "labelTypeId" : "_UV3-MPunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_UV3-NPunEfCYrdfxNyUhUA" + }, { + "labelTypeId" : "_UV3-MPunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_UV3-NfunEfCYrdfxNyUhUA" + }, { + "labelTypeId" : "_UV3-MPunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_UV3-NvunEfCYrdfxNyUhUA" + }, { + "labelTypeId" : "_UV3-MPunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_UV3-N_unEfCYrdfxNyUhUA" + }, { + "labelTypeId" : "_UV3-MPunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_UV3-OPunEfCYrdfxNyUhUA" + }, { + "labelTypeId" : "_UV3-MPunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_UV3-OfunEfCYrdfxNyUhUA" + }, { + "labelTypeId" : "_UV3-MPunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_UV3-OvunEfCYrdfxNyUhUA" + }, { + "labelTypeId" : "_UV3-MPunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_UV3-O_unEfCYrdfxNyUhUA" + }, { + "labelTypeId" : "_UV3-MPunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_UV3-PPunEfCYrdfxNyUhUA" + }, { + "labelTypeId" : "_UV3-MPunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_UV3-PfunEfCYrdfxNyUhUA" + }, { + "labelTypeId" : "_UV3-MPunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_UV3-PvunEfCYrdfxNyUhUA" + }, { + "labelTypeId" : "_UV3-MPunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_UV3-P_unEfCYrdfxNyUhUA" + }, { + "labelTypeId" : "_UV3-MPunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_UV3-QPunEfCYrdfxNyUhUA" + }, { + "labelTypeId" : "_UV3-MPunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_UV3-QfunEfCYrdfxNyUhUA" + }, { + "labelTypeId" : "_UV3-MPunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_UV3-QvunEfCYrdfxNyUhUA" + }, { + "labelTypeId" : "_UV3-MPunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_UV3-Q_unEfCYrdfxNyUhUA" + }, { + "labelTypeId" : "_UV3-MPunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_UV3-RPunEfCYrdfxNyUhUA" + }, { + "labelTypeId" : "_UV3-RvunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_UV3-RfunEfCYrdfxNyUhUA" + }, { + "labelTypeId" : "_UV3-SPunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_UV3-R_unEfCYrdfxNyUhUA" + }, { + "labelTypeId" : "_UV3-SvunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_UV3-SfunEfCYrdfxNyUhUA" + }, { + "labelTypeId" : "_UV3-TPunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_UV3-S_unEfCYrdfxNyUhUA" + }, { + "labelTypeId" : "_UV3-TvunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_UV3-TfunEfCYrdfxNyUhUA" + }, { + "labelTypeId" : "_UV3-UPunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_UV3-T_unEfCYrdfxNyUhUA" + }, { + "labelTypeId" : "_UV3-UvunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_UV3-UfunEfCYrdfxNyUhUA" + }, { + "labelTypeId" : "_UV3-VPunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_UV3-U_unEfCYrdfxNyUhUA" + }, { + "labelTypeId" : "_UV3-VvunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_UV3-VfunEfCYrdfxNyUhUA" + }, { + "labelTypeId" : "_UV3-WPunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_UV3-V_unEfCYrdfxNyUhUA" + }, { + "labelTypeId" : "_UV3-WvunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_UV3-WfunEfCYrdfxNyUhUA" + }, { + "labelTypeId" : "_UV3-XPunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_UV3-W_unEfCYrdfxNyUhUA" + }, { + "labelTypeId" : "_UV3-XvunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_UV3-XfunEfCYrdfxNyUhUA" + }, { + "labelTypeId" : "_UV3-YPunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_UV3-X_unEfCYrdfxNyUhUA" + }, { + "labelTypeId" : "_UV3-YvunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_UV3-YfunEfCYrdfxNyUhUA" + }, { + "labelTypeId" : "_UV3-ZPunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_UV3-Y_unEfCYrdfxNyUhUA" + }, { + "labelTypeId" : "_UV3-ZvunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_UV3-ZfunEfCYrdfxNyUhUA" + }, { + "labelTypeId" : "_UV3-aPunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_UV3-Z_unEfCYrdfxNyUhUA" + }, { + "labelTypeId" : "_UV3-avunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_UV3-afunEfCYrdfxNyUhUA" + }, { + "labelTypeId" : "_UV3-bPunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_UV3-a_unEfCYrdfxNyUhUA" + } ], + "ports" : [ { + "id" : "133", + "type" : "port:dfd-input", + "children" : [ ] + }, { + "behavior" : "assign Stereotype.internal,Stereotype.local_logging,Stereotype.restful_http,dummyCategory.dummy_0,dummyCategory.dummy_1,dummyCategory.dummy_2,dummyCategory.dummy_3,dummyCategory.dummy_4,dummyCategory.dummy_5,dummyCategory.dummy_6,dummyCategory.dummy_7,dummyCategory.dummy_8,dummyCategory.dummy_9,dummyCategory.dummy_10,dummyCategory.dummy_11,dummyCategory.dummy_12,dummyCategory.dummy_13,dummyCategory.dummy_14,dummyCategory.dummy_15,dummyCategory.dummy_16,dummyCategory.dummy_17,dummyCategory.dummy_18,dummyCategory.dummy_19,dummyType_0.dummyLabelofType_0,dummyType_1.dummyLabelofType_1,dummyType_2.dummyLabelofType_2,dummyType_3.dummyLabelofType_3,dummyType_4.dummyLabelofType_4,dummyType_5.dummyLabelofType_5,dummyType_6.dummyLabelofType_6,dummyType_7.dummyLabelofType_7,dummyType_8.dummyLabelofType_8,dummyType_9.dummyLabelofType_9,dummyType_10.dummyLabelofType_10,dummyType_11.dummyLabelofType_11,dummyType_12.dummyLabelofType_12,dummyType_13.dummyLabelofType_13,dummyType_14.dummyLabelofType_14,dummyType_15.dummyLabelofType_15,dummyType_16.dummyLabelofType_16,dummyType_17.dummyLabelofType_17,dummyType_18.dummyLabelofType_18,dummyType_19.dummyLabelofType_19 if TRUE from api_gateway|consul|rabbit|service_two_db\nforward api_gateway|consul|rabbit|service_two_db", + "id" : "136", + "type" : "port:dfd-output", + "children" : [ ] + }, { + "behavior" : "assign Stereotype.internal,Stereotype.local_logging,Stereotype.message_producer_rabbitmq,Stereotype.restful_http,Stereotype.plaintext_credentials_link,RoutingKey.commudigalmicroservicessampleservice,ProducerExchange.commudigalmicroservicessampleservicesexchange,dummyCategory.dummy_0,dummyCategory.dummy_1,dummyCategory.dummy_2,dummyCategory.dummy_3,dummyCategory.dummy_4,dummyCategory.dummy_5,dummyCategory.dummy_6,dummyCategory.dummy_7,dummyCategory.dummy_8,dummyCategory.dummy_9,dummyCategory.dummy_10,dummyCategory.dummy_11,dummyCategory.dummy_12,dummyCategory.dummy_13,dummyCategory.dummy_14,dummyCategory.dummy_15,dummyCategory.dummy_16,dummyCategory.dummy_17,dummyCategory.dummy_18,dummyCategory.dummy_19,dummyType_0.dummyLabelofType_0,dummyType_1.dummyLabelofType_1,dummyType_2.dummyLabelofType_2,dummyType_3.dummyLabelofType_3,dummyType_4.dummyLabelofType_4,dummyType_5.dummyLabelofType_5,dummyType_6.dummyLabelofType_6,dummyType_7.dummyLabelofType_7,dummyType_8.dummyLabelofType_8,dummyType_9.dummyLabelofType_9,dummyType_10.dummyLabelofType_10,dummyType_11.dummyLabelofType_11,dummyType_12.dummyLabelofType_12,dummyType_13.dummyLabelofType_13,dummyType_14.dummyLabelofType_14,dummyType_15.dummyLabelofType_15,dummyType_16.dummyLabelofType_16,dummyType_17.dummyLabelofType_17,dummyType_18.dummyLabelofType_18,dummyType_19.dummyLabelofType_19 if TRUE from api_gateway|consul|rabbit|service_two_db\nforward api_gateway|consul|rabbit|service_two_db", + "id" : "138", + "type" : "port:dfd-output", + "children" : [ ] + }, { + "behavior" : "assign Stereotype.internal,Stereotype.local_logging,Stereotype.restful_http,dummyCategory.dummy_0,dummyCategory.dummy_1,dummyCategory.dummy_2,dummyCategory.dummy_3,dummyCategory.dummy_4,dummyCategory.dummy_5,dummyCategory.dummy_6,dummyCategory.dummy_7,dummyCategory.dummy_8,dummyCategory.dummy_9,dummyCategory.dummy_10,dummyCategory.dummy_11,dummyCategory.dummy_12,dummyCategory.dummy_13,dummyCategory.dummy_14,dummyCategory.dummy_15,dummyCategory.dummy_16,dummyCategory.dummy_17,dummyCategory.dummy_18,dummyCategory.dummy_19,dummyType_0.dummyLabelofType_0,dummyType_1.dummyLabelofType_1,dummyType_2.dummyLabelofType_2,dummyType_3.dummyLabelofType_3,dummyType_4.dummyLabelofType_4,dummyType_5.dummyLabelofType_5,dummyType_6.dummyLabelofType_6,dummyType_7.dummyLabelofType_7,dummyType_8.dummyLabelofType_8,dummyType_9.dummyLabelofType_9,dummyType_10.dummyLabelofType_10,dummyType_11.dummyLabelofType_11,dummyType_12.dummyLabelofType_12,dummyType_13.dummyLabelofType_13,dummyType_14.dummyLabelofType_14,dummyType_15.dummyLabelofType_15,dummyType_16.dummyLabelofType_16,dummyType_17.dummyLabelofType_17,dummyType_18.dummyLabelofType_18,dummyType_19.dummyLabelofType_19 if TRUE from api_gateway|consul|rabbit|service_two_db\nforward api_gateway|consul|rabbit|service_two_db", + "id" : "173", + "type" : "port:dfd-output", + "children" : [ ] + } ], + "annotations" : [ { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.restful_http, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19, Stereotype.service_discovery, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 394349340 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 394349340 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.restful_http, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19, Stereotype.service_discovery, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 2060037930 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 2060037930 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.restful_http, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleservicetwo, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 2075133112 + }, { + "message" : "Incoming: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleservicetwo, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 2075133112 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.restful_http, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19, Stereotype.jdbc, Username.servicetwo, Password.servicetwo", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 2028510206 + }, { + "message" : "Incoming: Stereotype.jdbc, Stereotype.plaintext_credentials_link, Username.servicetwo, Password.servicetwo, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 2028510206 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.restful_http, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19, Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1697441364 + }, { + "message" : "Incoming: Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1697441364 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.restful_http, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19, Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.web_application, Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.encrypted_connection", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1378592036 + }, { + "message" : "Incoming: Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19, Stereotype.web_application, Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.encrypted_connection", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1378592036 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19, Stereotype.service_discovery, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 408909888 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 408909888 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleservicetwo, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 510445648 + }, { + "message" : "Incoming: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleservicetwo, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 510445648 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19, Stereotype.jdbc, Stereotype.plaintext_credentials_link, Username.servicetwo, Password.servicetwo", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 2122256138 + }, { + "message" : "Incoming: Stereotype.jdbc, Stereotype.plaintext_credentials_link, Username.servicetwo, Password.servicetwo, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 2122256138 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19, Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 2126876651 + }, { + "message" : "Incoming: Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 2126876651 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.restful_http, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19, Stereotype.service_discovery, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 822359325 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 822359325 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19, Stereotype.service_discovery, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 45795770 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 45795770 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleservicetwo, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1529842358 + }, { + "message" : "Incoming: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleservicetwo, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1529842358 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19, Stereotype.jdbc, Stereotype.plaintext_credentials_link, Username.servicetwo, Password.servicetwo", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1541232265 + }, { + "message" : "Incoming: Stereotype.jdbc, Stereotype.plaintext_credentials_link, Username.servicetwo, Password.servicetwo, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1541232265 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19, Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 663277822 + }, { + "message" : "Incoming: Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 663277822 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19, Stereotype.service_discovery, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1705904476 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1705904476 + } ], + "children" : [ ], + "position" : { + "x" : 0.0, + "y" : 0.0 + }, + "size" : null + }, { + "text" : "service_one_db", + "id" : "12", + "type" : "node:function", + "labels" : [ { + "labelTypeId" : "33", + "labelTypeValueId" : "90" + }, { + "labelTypeId" : "_UV3-MPunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_UV3-MfunEfCYrdfxNyUhUA" + }, { + "labelTypeId" : "_UV3-MPunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_UV3-MvunEfCYrdfxNyUhUA" + }, { + "labelTypeId" : "_UV3-MPunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_UV3-M_unEfCYrdfxNyUhUA" + }, { + "labelTypeId" : "_UV3-MPunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_UV3-NPunEfCYrdfxNyUhUA" + }, { + "labelTypeId" : "_UV3-MPunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_UV3-NfunEfCYrdfxNyUhUA" + }, { + "labelTypeId" : "_UV3-MPunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_UV3-NvunEfCYrdfxNyUhUA" + }, { + "labelTypeId" : "_UV3-MPunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_UV3-N_unEfCYrdfxNyUhUA" + }, { + "labelTypeId" : "_UV3-MPunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_UV3-OPunEfCYrdfxNyUhUA" + }, { + "labelTypeId" : "_UV3-MPunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_UV3-OfunEfCYrdfxNyUhUA" + }, { + "labelTypeId" : "_UV3-MPunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_UV3-OvunEfCYrdfxNyUhUA" + }, { + "labelTypeId" : "_UV3-MPunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_UV3-O_unEfCYrdfxNyUhUA" + }, { + "labelTypeId" : "_UV3-MPunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_UV3-PPunEfCYrdfxNyUhUA" + }, { + "labelTypeId" : "_UV3-MPunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_UV3-PfunEfCYrdfxNyUhUA" + }, { + "labelTypeId" : "_UV3-MPunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_UV3-PvunEfCYrdfxNyUhUA" + }, { + "labelTypeId" : "_UV3-MPunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_UV3-P_unEfCYrdfxNyUhUA" + }, { + "labelTypeId" : "_UV3-MPunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_UV3-QPunEfCYrdfxNyUhUA" + }, { + "labelTypeId" : "_UV3-MPunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_UV3-QfunEfCYrdfxNyUhUA" + }, { + "labelTypeId" : "_UV3-MPunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_UV3-QvunEfCYrdfxNyUhUA" + }, { + "labelTypeId" : "_UV3-MPunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_UV3-Q_unEfCYrdfxNyUhUA" + }, { + "labelTypeId" : "_UV3-MPunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_UV3-RPunEfCYrdfxNyUhUA" + }, { + "labelTypeId" : "_UV3-RvunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_UV3-RfunEfCYrdfxNyUhUA" + }, { + "labelTypeId" : "_UV3-SPunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_UV3-R_unEfCYrdfxNyUhUA" + }, { + "labelTypeId" : "_UV3-SvunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_UV3-SfunEfCYrdfxNyUhUA" + }, { + "labelTypeId" : "_UV3-TPunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_UV3-S_unEfCYrdfxNyUhUA" + }, { + "labelTypeId" : "_UV3-TvunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_UV3-TfunEfCYrdfxNyUhUA" + }, { + "labelTypeId" : "_UV3-UPunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_UV3-T_unEfCYrdfxNyUhUA" + }, { + "labelTypeId" : "_UV3-UvunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_UV3-UfunEfCYrdfxNyUhUA" + }, { + "labelTypeId" : "_UV3-VPunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_UV3-U_unEfCYrdfxNyUhUA" + }, { + "labelTypeId" : "_UV3-VvunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_UV3-VfunEfCYrdfxNyUhUA" + }, { + "labelTypeId" : "_UV3-WPunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_UV3-V_unEfCYrdfxNyUhUA" + }, { + "labelTypeId" : "_UV3-WvunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_UV3-WfunEfCYrdfxNyUhUA" + }, { + "labelTypeId" : "_UV3-XPunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_UV3-W_unEfCYrdfxNyUhUA" + }, { + "labelTypeId" : "_UV3-XvunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_UV3-XfunEfCYrdfxNyUhUA" + }, { + "labelTypeId" : "_UV3-YPunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_UV3-X_unEfCYrdfxNyUhUA" + }, { + "labelTypeId" : "_UV3-YvunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_UV3-YfunEfCYrdfxNyUhUA" + }, { + "labelTypeId" : "_UV3-ZPunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_UV3-Y_unEfCYrdfxNyUhUA" + }, { + "labelTypeId" : "_UV3-ZvunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_UV3-ZfunEfCYrdfxNyUhUA" + }, { + "labelTypeId" : "_UV3-aPunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_UV3-Z_unEfCYrdfxNyUhUA" + }, { + "labelTypeId" : "_UV3-avunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_UV3-afunEfCYrdfxNyUhUA" + }, { + "labelTypeId" : "_UV3-bPunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_UV3-a_unEfCYrdfxNyUhUA" + } ], + "ports" : [ { + "behavior" : "assign Stereotype.jdbc,dummyCategory.dummy_0,dummyCategory.dummy_1,dummyCategory.dummy_2,dummyCategory.dummy_3,dummyCategory.dummy_4,dummyCategory.dummy_5,dummyCategory.dummy_6,dummyCategory.dummy_7,dummyCategory.dummy_8,dummyCategory.dummy_9,dummyCategory.dummy_10,dummyCategory.dummy_11,dummyCategory.dummy_12,dummyCategory.dummy_13,dummyCategory.dummy_14,dummyCategory.dummy_15,dummyCategory.dummy_16,dummyCategory.dummy_17,dummyCategory.dummy_18,dummyCategory.dummy_19,dummyType_0.dummyLabelofType_0,dummyType_1.dummyLabelofType_1,dummyType_2.dummyLabelofType_2,dummyType_3.dummyLabelofType_3,dummyType_4.dummyLabelofType_4,dummyType_5.dummyLabelofType_5,dummyType_6.dummyLabelofType_6,dummyType_7.dummyLabelofType_7,dummyType_8.dummyLabelofType_8,dummyType_9.dummyLabelofType_9,dummyType_10.dummyLabelofType_10,dummyType_11.dummyLabelofType_11,dummyType_12.dummyLabelofType_12,dummyType_13.dummyLabelofType_13,dummyType_14.dummyLabelofType_14,dummyType_15.dummyLabelofType_15,dummyType_16.dummyLabelofType_16,dummyType_17.dummyLabelofType_17,dummyType_18.dummyLabelofType_18,dummyType_19.dummyLabelofType_19 if TRUE", + "id" : "143", + "type" : "port:dfd-output", + "children" : [ ] + }, { + "behavior" : "assign Stereotype.restful_http,dummyCategory.dummy_0,dummyCategory.dummy_1,dummyCategory.dummy_2,dummyCategory.dummy_3,dummyCategory.dummy_4,dummyCategory.dummy_5,dummyCategory.dummy_6,dummyCategory.dummy_7,dummyCategory.dummy_8,dummyCategory.dummy_9,dummyCategory.dummy_10,dummyCategory.dummy_11,dummyCategory.dummy_12,dummyCategory.dummy_13,dummyCategory.dummy_14,dummyCategory.dummy_15,dummyCategory.dummy_16,dummyCategory.dummy_17,dummyCategory.dummy_18,dummyCategory.dummy_19,dummyType_0.dummyLabelofType_0,dummyType_1.dummyLabelofType_1,dummyType_2.dummyLabelofType_2,dummyType_3.dummyLabelofType_3,dummyType_4.dummyLabelofType_4,dummyType_5.dummyLabelofType_5,dummyType_6.dummyLabelofType_6,dummyType_7.dummyLabelofType_7,dummyType_8.dummyLabelofType_8,dummyType_9.dummyLabelofType_9,dummyType_10.dummyLabelofType_10,dummyType_11.dummyLabelofType_11,dummyType_12.dummyLabelofType_12,dummyType_13.dummyLabelofType_13,dummyType_14.dummyLabelofType_14,dummyType_15.dummyLabelofType_15,dummyType_16.dummyLabelofType_16,dummyType_17.dummyLabelofType_17,dummyType_18.dummyLabelofType_18,dummyType_19.dummyLabelofType_19 if TRUE", + "id" : "171", + "type" : "port:dfd-output", + "children" : [ ] + } ], + "annotations" : [ { + "message" : "Propagated: Stereotype.jdbc, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 653880197 + }, { + "message" : "Propagated: Stereotype.jdbc, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 700837405 + }, { + "message" : "Propagated: Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 399699227 + }, { + "message" : "Propagated: Stereotype.jdbc, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1788698111 + } ], + "children" : [ ], + "position" : { + "x" : 0.0, + "y" : 0.0 + }, + "size" : null + }, { + "text" : "service_two_db", + "id" : "13", + "type" : "node:function", + "labels" : [ { + "labelTypeId" : "33", + "labelTypeValueId" : "34" + }, { + "labelTypeId" : "_UV3-MPunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_UV3-MfunEfCYrdfxNyUhUA" + }, { + "labelTypeId" : "_UV3-MPunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_UV3-MvunEfCYrdfxNyUhUA" + }, { + "labelTypeId" : "_UV3-MPunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_UV3-M_unEfCYrdfxNyUhUA" + }, { + "labelTypeId" : "_UV3-MPunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_UV3-NPunEfCYrdfxNyUhUA" + }, { + "labelTypeId" : "_UV3-MPunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_UV3-NfunEfCYrdfxNyUhUA" + }, { + "labelTypeId" : "_UV3-MPunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_UV3-NvunEfCYrdfxNyUhUA" + }, { + "labelTypeId" : "_UV3-MPunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_UV3-N_unEfCYrdfxNyUhUA" + }, { + "labelTypeId" : "_UV3-MPunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_UV3-OPunEfCYrdfxNyUhUA" + }, { + "labelTypeId" : "_UV3-MPunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_UV3-OfunEfCYrdfxNyUhUA" + }, { + "labelTypeId" : "_UV3-MPunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_UV3-OvunEfCYrdfxNyUhUA" + }, { + "labelTypeId" : "_UV3-MPunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_UV3-O_unEfCYrdfxNyUhUA" + }, { + "labelTypeId" : "_UV3-MPunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_UV3-PPunEfCYrdfxNyUhUA" + }, { + "labelTypeId" : "_UV3-MPunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_UV3-PfunEfCYrdfxNyUhUA" + }, { + "labelTypeId" : "_UV3-MPunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_UV3-PvunEfCYrdfxNyUhUA" + }, { + "labelTypeId" : "_UV3-MPunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_UV3-P_unEfCYrdfxNyUhUA" + }, { + "labelTypeId" : "_UV3-MPunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_UV3-QPunEfCYrdfxNyUhUA" + }, { + "labelTypeId" : "_UV3-MPunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_UV3-QfunEfCYrdfxNyUhUA" + }, { + "labelTypeId" : "_UV3-MPunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_UV3-QvunEfCYrdfxNyUhUA" + }, { + "labelTypeId" : "_UV3-MPunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_UV3-Q_unEfCYrdfxNyUhUA" + }, { + "labelTypeId" : "_UV3-MPunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_UV3-RPunEfCYrdfxNyUhUA" + }, { + "labelTypeId" : "_UV3-RvunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_UV3-RfunEfCYrdfxNyUhUA" + }, { + "labelTypeId" : "_UV3-SPunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_UV3-R_unEfCYrdfxNyUhUA" + }, { + "labelTypeId" : "_UV3-SvunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_UV3-SfunEfCYrdfxNyUhUA" + }, { + "labelTypeId" : "_UV3-TPunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_UV3-S_unEfCYrdfxNyUhUA" + }, { + "labelTypeId" : "_UV3-TvunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_UV3-TfunEfCYrdfxNyUhUA" + }, { + "labelTypeId" : "_UV3-UPunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_UV3-T_unEfCYrdfxNyUhUA" + }, { + "labelTypeId" : "_UV3-UvunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_UV3-UfunEfCYrdfxNyUhUA" + }, { + "labelTypeId" : "_UV3-VPunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_UV3-U_unEfCYrdfxNyUhUA" + }, { + "labelTypeId" : "_UV3-VvunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_UV3-VfunEfCYrdfxNyUhUA" + }, { + "labelTypeId" : "_UV3-WPunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_UV3-V_unEfCYrdfxNyUhUA" + }, { + "labelTypeId" : "_UV3-WvunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_UV3-WfunEfCYrdfxNyUhUA" + }, { + "labelTypeId" : "_UV3-XPunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_UV3-W_unEfCYrdfxNyUhUA" + }, { + "labelTypeId" : "_UV3-XvunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_UV3-XfunEfCYrdfxNyUhUA" + }, { + "labelTypeId" : "_UV3-YPunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_UV3-X_unEfCYrdfxNyUhUA" + }, { + "labelTypeId" : "_UV3-YvunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_UV3-YfunEfCYrdfxNyUhUA" + }, { + "labelTypeId" : "_UV3-ZPunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_UV3-Y_unEfCYrdfxNyUhUA" + }, { + "labelTypeId" : "_UV3-ZvunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_UV3-ZfunEfCYrdfxNyUhUA" + }, { + "labelTypeId" : "_UV3-aPunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_UV3-Z_unEfCYrdfxNyUhUA" + }, { + "labelTypeId" : "_UV3-avunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_UV3-afunEfCYrdfxNyUhUA" + }, { + "labelTypeId" : "_UV3-bPunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_UV3-a_unEfCYrdfxNyUhUA" + } ], + "ports" : [ { + "behavior" : "assign Stereotype.jdbc,Stereotype.plaintext_credentials_link,Username.servicetwo,Password.servicetwo,dummyCategory.dummy_0,dummyCategory.dummy_1,dummyCategory.dummy_2,dummyCategory.dummy_3,dummyCategory.dummy_4,dummyCategory.dummy_5,dummyCategory.dummy_6,dummyCategory.dummy_7,dummyCategory.dummy_8,dummyCategory.dummy_9,dummyCategory.dummy_10,dummyCategory.dummy_11,dummyCategory.dummy_12,dummyCategory.dummy_13,dummyCategory.dummy_14,dummyCategory.dummy_15,dummyCategory.dummy_16,dummyCategory.dummy_17,dummyCategory.dummy_18,dummyCategory.dummy_19,dummyType_0.dummyLabelofType_0,dummyType_1.dummyLabelofType_1,dummyType_2.dummyLabelofType_2,dummyType_3.dummyLabelofType_3,dummyType_4.dummyLabelofType_4,dummyType_5.dummyLabelofType_5,dummyType_6.dummyLabelofType_6,dummyType_7.dummyLabelofType_7,dummyType_8.dummyLabelofType_8,dummyType_9.dummyLabelofType_9,dummyType_10.dummyLabelofType_10,dummyType_11.dummyLabelofType_11,dummyType_12.dummyLabelofType_12,dummyType_13.dummyLabelofType_13,dummyType_14.dummyLabelofType_14,dummyType_15.dummyLabelofType_15,dummyType_16.dummyLabelofType_16,dummyType_17.dummyLabelofType_17,dummyType_18.dummyLabelofType_18,dummyType_19.dummyLabelofType_19 if TRUE", + "id" : "146", + "type" : "port:dfd-output", + "children" : [ ] + }, { + "behavior" : "assign Stereotype.restful_http,dummyCategory.dummy_0,dummyCategory.dummy_1,dummyCategory.dummy_2,dummyCategory.dummy_3,dummyCategory.dummy_4,dummyCategory.dummy_5,dummyCategory.dummy_6,dummyCategory.dummy_7,dummyCategory.dummy_8,dummyCategory.dummy_9,dummyCategory.dummy_10,dummyCategory.dummy_11,dummyCategory.dummy_12,dummyCategory.dummy_13,dummyCategory.dummy_14,dummyCategory.dummy_15,dummyCategory.dummy_16,dummyCategory.dummy_17,dummyCategory.dummy_18,dummyCategory.dummy_19,dummyType_0.dummyLabelofType_0,dummyType_1.dummyLabelofType_1,dummyType_2.dummyLabelofType_2,dummyType_3.dummyLabelofType_3,dummyType_4.dummyLabelofType_4,dummyType_5.dummyLabelofType_5,dummyType_6.dummyLabelofType_6,dummyType_7.dummyLabelofType_7,dummyType_8.dummyLabelofType_8,dummyType_9.dummyLabelofType_9,dummyType_10.dummyLabelofType_10,dummyType_11.dummyLabelofType_11,dummyType_12.dummyLabelofType_12,dummyType_13.dummyLabelofType_13,dummyType_14.dummyLabelofType_14,dummyType_15.dummyLabelofType_15,dummyType_16.dummyLabelofType_16,dummyType_17.dummyLabelofType_17,dummyType_18.dummyLabelofType_18,dummyType_19.dummyLabelofType_19 if TRUE", + "id" : "175", + "type" : "port:dfd-output", + "children" : [ ] + } ], + "annotations" : [ { + "message" : "Propagated: Stereotype.jdbc, Stereotype.plaintext_credentials_link, Username.servicetwo, Password.servicetwo, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 2028510206 + }, { + "message" : "Propagated: Stereotype.jdbc, Stereotype.plaintext_credentials_link, Username.servicetwo, Password.servicetwo, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 2122256138 + }, { + "message" : "Propagated: Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 498820363 + }, { + "message" : "Propagated: Stereotype.jdbc, Stereotype.plaintext_credentials_link, Username.servicetwo, Password.servicetwo, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1541232265 + } ], + "children" : [ ], + "position" : { + "x" : 0.0, + "y" : 0.0 + }, + "size" : null + }, { + "text" : "api_gateway", + "id" : "14", + "type" : "node:function", + "labels" : [ { + "labelTypeId" : "17", + "labelTypeValueId" : "75" + }, { + "labelTypeId" : "17", + "labelTypeValueId" : "27" + }, { + "labelTypeId" : "17", + "labelTypeValueId" : "76" + }, { + "labelTypeId" : "77", + "labelTypeValueId" : "78" + }, { + "labelTypeId" : "22", + "labelTypeValueId" : "79" + }, { + "labelTypeId" : "80", + "labelTypeValueId" : "81" + }, { + "labelTypeId" : "_UV3-MPunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_UV3-MfunEfCYrdfxNyUhUA" + }, { + "labelTypeId" : "_UV3-MPunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_UV3-MvunEfCYrdfxNyUhUA" + }, { + "labelTypeId" : "_UV3-MPunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_UV3-M_unEfCYrdfxNyUhUA" + }, { + "labelTypeId" : "_UV3-MPunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_UV3-NPunEfCYrdfxNyUhUA" + }, { + "labelTypeId" : "_UV3-MPunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_UV3-NfunEfCYrdfxNyUhUA" + }, { + "labelTypeId" : "_UV3-MPunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_UV3-NvunEfCYrdfxNyUhUA" + }, { + "labelTypeId" : "_UV3-MPunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_UV3-N_unEfCYrdfxNyUhUA" + }, { + "labelTypeId" : "_UV3-MPunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_UV3-OPunEfCYrdfxNyUhUA" + }, { + "labelTypeId" : "_UV3-MPunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_UV3-OfunEfCYrdfxNyUhUA" + }, { + "labelTypeId" : "_UV3-MPunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_UV3-OvunEfCYrdfxNyUhUA" + }, { + "labelTypeId" : "_UV3-MPunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_UV3-O_unEfCYrdfxNyUhUA" + }, { + "labelTypeId" : "_UV3-MPunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_UV3-PPunEfCYrdfxNyUhUA" + }, { + "labelTypeId" : "_UV3-MPunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_UV3-PfunEfCYrdfxNyUhUA" + }, { + "labelTypeId" : "_UV3-MPunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_UV3-PvunEfCYrdfxNyUhUA" + }, { + "labelTypeId" : "_UV3-MPunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_UV3-P_unEfCYrdfxNyUhUA" + }, { + "labelTypeId" : "_UV3-MPunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_UV3-QPunEfCYrdfxNyUhUA" + }, { + "labelTypeId" : "_UV3-MPunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_UV3-QfunEfCYrdfxNyUhUA" + }, { + "labelTypeId" : "_UV3-MPunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_UV3-QvunEfCYrdfxNyUhUA" + }, { + "labelTypeId" : "_UV3-MPunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_UV3-Q_unEfCYrdfxNyUhUA" + }, { + "labelTypeId" : "_UV3-MPunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_UV3-RPunEfCYrdfxNyUhUA" + }, { + "labelTypeId" : "_UV3-RvunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_UV3-RfunEfCYrdfxNyUhUA" + }, { + "labelTypeId" : "_UV3-SPunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_UV3-R_unEfCYrdfxNyUhUA" + }, { + "labelTypeId" : "_UV3-SvunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_UV3-SfunEfCYrdfxNyUhUA" + }, { + "labelTypeId" : "_UV3-TPunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_UV3-S_unEfCYrdfxNyUhUA" + }, { + "labelTypeId" : "_UV3-TvunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_UV3-TfunEfCYrdfxNyUhUA" + }, { + "labelTypeId" : "_UV3-UPunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_UV3-T_unEfCYrdfxNyUhUA" + }, { + "labelTypeId" : "_UV3-UvunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_UV3-UfunEfCYrdfxNyUhUA" + }, { + "labelTypeId" : "_UV3-VPunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_UV3-U_unEfCYrdfxNyUhUA" + }, { + "labelTypeId" : "_UV3-VvunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_UV3-VfunEfCYrdfxNyUhUA" + }, { + "labelTypeId" : "_UV3-WPunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_UV3-V_unEfCYrdfxNyUhUA" + }, { + "labelTypeId" : "_UV3-WvunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_UV3-WfunEfCYrdfxNyUhUA" + }, { + "labelTypeId" : "_UV3-XPunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_UV3-W_unEfCYrdfxNyUhUA" + }, { + "labelTypeId" : "_UV3-XvunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_UV3-XfunEfCYrdfxNyUhUA" + }, { + "labelTypeId" : "_UV3-YPunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_UV3-X_unEfCYrdfxNyUhUA" + }, { + "labelTypeId" : "_UV3-YvunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_UV3-YfunEfCYrdfxNyUhUA" + }, { + "labelTypeId" : "_UV3-ZPunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_UV3-Y_unEfCYrdfxNyUhUA" + }, { + "labelTypeId" : "_UV3-ZvunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_UV3-ZfunEfCYrdfxNyUhUA" + }, { + "labelTypeId" : "_UV3-aPunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_UV3-Z_unEfCYrdfxNyUhUA" + }, { + "labelTypeId" : "_UV3-avunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_UV3-afunEfCYrdfxNyUhUA" + }, { + "labelTypeId" : "_UV3-bPunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_UV3-a_unEfCYrdfxNyUhUA" + } ], + "ports" : [ { + "id" : "154", + "type" : "port:dfd-input", + "children" : [ ] + }, { + "behavior" : "assign Stereotype.gateway,Stereotype.infrastructural,Stereotype.load_balancer,Stereotype.restful_http,dummyCategory.dummy_0,dummyCategory.dummy_1,dummyCategory.dummy_2,dummyCategory.dummy_3,dummyCategory.dummy_4,dummyCategory.dummy_5,dummyCategory.dummy_6,dummyCategory.dummy_7,dummyCategory.dummy_8,dummyCategory.dummy_9,dummyCategory.dummy_10,dummyCategory.dummy_11,dummyCategory.dummy_12,dummyCategory.dummy_13,dummyCategory.dummy_14,dummyCategory.dummy_15,dummyCategory.dummy_16,dummyCategory.dummy_17,dummyCategory.dummy_18,dummyCategory.dummy_19,dummyType_0.dummyLabelofType_0,dummyType_1.dummyLabelofType_1,dummyType_2.dummyLabelofType_2,dummyType_3.dummyLabelofType_3,dummyType_4.dummyLabelofType_4,dummyType_5.dummyLabelofType_5,dummyType_6.dummyLabelofType_6,dummyType_7.dummyLabelofType_7,dummyType_8.dummyLabelofType_8,dummyType_9.dummyLabelofType_9,dummyType_10.dummyLabelofType_10,dummyType_11.dummyLabelofType_11,dummyType_12.dummyLabelofType_12,dummyType_13.dummyLabelofType_13,dummyType_14.dummyLabelofType_14,dummyType_15.dummyLabelofType_15,dummyType_16.dummyLabelofType_16,dummyType_17.dummyLabelofType_17,dummyType_18.dummyLabelofType_18,dummyType_19.dummyLabelofType_19 if TRUE from consul|web_application\nforward consul|web_application", + "id" : "150", + "type" : "port:dfd-output", + "children" : [ ] + }, { + "behavior" : "assign Stereotype.gateway,Stereotype.infrastructural,Stereotype.load_balancer,Stereotype.restful_http,dummyCategory.dummy_0,dummyCategory.dummy_1,dummyCategory.dummy_2,dummyCategory.dummy_3,dummyCategory.dummy_4,dummyCategory.dummy_5,dummyCategory.dummy_6,dummyCategory.dummy_7,dummyCategory.dummy_8,dummyCategory.dummy_9,dummyCategory.dummy_10,dummyCategory.dummy_11,dummyCategory.dummy_12,dummyCategory.dummy_13,dummyCategory.dummy_14,dummyCategory.dummy_15,dummyCategory.dummy_16,dummyCategory.dummy_17,dummyCategory.dummy_18,dummyCategory.dummy_19,dummyType_0.dummyLabelofType_0,dummyType_1.dummyLabelofType_1,dummyType_2.dummyLabelofType_2,dummyType_3.dummyLabelofType_3,dummyType_4.dummyLabelofType_4,dummyType_5.dummyLabelofType_5,dummyType_6.dummyLabelofType_6,dummyType_7.dummyLabelofType_7,dummyType_8.dummyLabelofType_8,dummyType_9.dummyLabelofType_9,dummyType_10.dummyLabelofType_10,dummyType_11.dummyLabelofType_11,dummyType_12.dummyLabelofType_12,dummyType_13.dummyLabelofType_13,dummyType_14.dummyLabelofType_14,dummyType_15.dummyLabelofType_15,dummyType_16.dummyLabelofType_16,dummyType_17.dummyLabelofType_17,dummyType_18.dummyLabelofType_18,dummyType_19.dummyLabelofType_19 if TRUE from consul|web_application\nforward consul|web_application", + "id" : "152", + "type" : "port:dfd-output", + "children" : [ ] + }, { + "behavior" : "assign Stereotype.gateway,Stereotype.infrastructural,Stereotype.load_balancer,Stereotype.restful_http,dummyCategory.dummy_0,dummyCategory.dummy_1,dummyCategory.dummy_2,dummyCategory.dummy_3,dummyCategory.dummy_4,dummyCategory.dummy_5,dummyCategory.dummy_6,dummyCategory.dummy_7,dummyCategory.dummy_8,dummyCategory.dummy_9,dummyCategory.dummy_10,dummyCategory.dummy_11,dummyCategory.dummy_12,dummyCategory.dummy_13,dummyCategory.dummy_14,dummyCategory.dummy_15,dummyCategory.dummy_16,dummyCategory.dummy_17,dummyCategory.dummy_18,dummyCategory.dummy_19,dummyType_0.dummyLabelofType_0,dummyType_1.dummyLabelofType_1,dummyType_2.dummyLabelofType_2,dummyType_3.dummyLabelofType_3,dummyType_4.dummyLabelofType_4,dummyType_5.dummyLabelofType_5,dummyType_6.dummyLabelofType_6,dummyType_7.dummyLabelofType_7,dummyType_8.dummyLabelofType_8,dummyType_9.dummyLabelofType_9,dummyType_10.dummyLabelofType_10,dummyType_11.dummyLabelofType_11,dummyType_12.dummyLabelofType_12,dummyType_13.dummyLabelofType_13,dummyType_14.dummyLabelofType_14,dummyType_15.dummyLabelofType_15,dummyType_16.dummyLabelofType_16,dummyType_17.dummyLabelofType_17,dummyType_18.dummyLabelofType_18,dummyType_19.dummyLabelofType_19 if TRUE from consul|web_application\nforward consul|web_application", + "id" : "167", + "type" : "port:dfd-output", + "children" : [ ] + } ], + "annotations" : [ { + "message" : "Propagated: Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1367503763 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1367503763 + }, { + "message" : "Propagated: Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 62803825 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 62803825 + }, { + "message" : "Propagated: Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19, Stereotype.web_application, Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.encrypted_connection", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1550080835 + }, { + "message" : "Incoming: Stereotype.web_application, Stereotype.infrastructural, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19, Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.encrypted_connection", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1550080835 + }, { + "message" : "Propagated: Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1188623367 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1188623367 + }, { + "message" : "Propagated: Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19, Stereotype.web_application, Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.encrypted_connection", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 62915435 + }, { + "message" : "Incoming: Stereotype.web_application, Stereotype.infrastructural, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19, Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.encrypted_connection", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 62915435 + }, { + "message" : "Propagated: Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1697441364 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1697441364 + }, { + "message" : "Propagated: Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19, Stereotype.web_application, Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.encrypted_connection", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1378592036 + }, { + "message" : "Incoming: Stereotype.web_application, Stereotype.infrastructural, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19, Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.encrypted_connection", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1378592036 + }, { + "message" : "Propagated: Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 365864880 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 365864880 + }, { + "message" : "Propagated: Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 2126876651 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 2126876651 + }, { + "message" : "Propagated: Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 990442552 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 990442552 + }, { + "message" : "Propagated: Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 663277822 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 663277822 + }, { + "message" : "Propagated: Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 79706679 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 79706679 + }, { + "message" : "Propagated: Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 773066329 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 773066329 + }, { + "message" : "Propagated: Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1235686146 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1235686146 + }, { + "message" : "Propagated: Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1557534595 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1557534595 + }, { + "message" : "Propagated: Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1497538476 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1497538476 + } ], + "children" : [ ], + "position" : { + "x" : 0.0, + "y" : 0.0 + }, + "size" : null + }, { + "text" : "web_application", + "id" : "15", + "type" : "node:function", + "labels" : [ { + "labelTypeId" : "17", + "labelTypeValueId" : "37" + }, { + "labelTypeId" : "17", + "labelTypeValueId" : "27" + }, { + "labelTypeId" : "22", + "labelTypeValueId" : "38" + }, { + "labelTypeId" : "39", + "labelTypeValueId" : "40" + }, { + "labelTypeId" : "_UV3-MPunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_UV3-MfunEfCYrdfxNyUhUA" + }, { + "labelTypeId" : "_UV3-MPunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_UV3-MvunEfCYrdfxNyUhUA" + }, { + "labelTypeId" : "_UV3-MPunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_UV3-M_unEfCYrdfxNyUhUA" + }, { + "labelTypeId" : "_UV3-MPunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_UV3-NPunEfCYrdfxNyUhUA" + }, { + "labelTypeId" : "_UV3-MPunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_UV3-NfunEfCYrdfxNyUhUA" + }, { + "labelTypeId" : "_UV3-MPunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_UV3-NvunEfCYrdfxNyUhUA" + }, { + "labelTypeId" : "_UV3-MPunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_UV3-N_unEfCYrdfxNyUhUA" + }, { + "labelTypeId" : "_UV3-MPunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_UV3-OPunEfCYrdfxNyUhUA" + }, { + "labelTypeId" : "_UV3-MPunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_UV3-OfunEfCYrdfxNyUhUA" + }, { + "labelTypeId" : "_UV3-MPunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_UV3-OvunEfCYrdfxNyUhUA" + }, { + "labelTypeId" : "_UV3-MPunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_UV3-O_unEfCYrdfxNyUhUA" + }, { + "labelTypeId" : "_UV3-MPunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_UV3-PPunEfCYrdfxNyUhUA" + }, { + "labelTypeId" : "_UV3-MPunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_UV3-PfunEfCYrdfxNyUhUA" + }, { + "labelTypeId" : "_UV3-MPunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_UV3-PvunEfCYrdfxNyUhUA" + }, { + "labelTypeId" : "_UV3-MPunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_UV3-P_unEfCYrdfxNyUhUA" + }, { + "labelTypeId" : "_UV3-MPunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_UV3-QPunEfCYrdfxNyUhUA" + }, { + "labelTypeId" : "_UV3-MPunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_UV3-QfunEfCYrdfxNyUhUA" + }, { + "labelTypeId" : "_UV3-MPunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_UV3-QvunEfCYrdfxNyUhUA" + }, { + "labelTypeId" : "_UV3-MPunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_UV3-Q_unEfCYrdfxNyUhUA" + }, { + "labelTypeId" : "_UV3-MPunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_UV3-RPunEfCYrdfxNyUhUA" + }, { + "labelTypeId" : "_UV3-RvunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_UV3-RfunEfCYrdfxNyUhUA" + }, { + "labelTypeId" : "_UV3-SPunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_UV3-R_unEfCYrdfxNyUhUA" + }, { + "labelTypeId" : "_UV3-SvunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_UV3-SfunEfCYrdfxNyUhUA" + }, { + "labelTypeId" : "_UV3-TPunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_UV3-S_unEfCYrdfxNyUhUA" + }, { + "labelTypeId" : "_UV3-TvunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_UV3-TfunEfCYrdfxNyUhUA" + }, { + "labelTypeId" : "_UV3-UPunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_UV3-T_unEfCYrdfxNyUhUA" + }, { + "labelTypeId" : "_UV3-UvunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_UV3-UfunEfCYrdfxNyUhUA" + }, { + "labelTypeId" : "_UV3-VPunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_UV3-U_unEfCYrdfxNyUhUA" + }, { + "labelTypeId" : "_UV3-VvunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_UV3-VfunEfCYrdfxNyUhUA" + }, { + "labelTypeId" : "_UV3-WPunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_UV3-V_unEfCYrdfxNyUhUA" + }, { + "labelTypeId" : "_UV3-WvunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_UV3-WfunEfCYrdfxNyUhUA" + }, { + "labelTypeId" : "_UV3-XPunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_UV3-W_unEfCYrdfxNyUhUA" + }, { + "labelTypeId" : "_UV3-XvunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_UV3-XfunEfCYrdfxNyUhUA" + }, { + "labelTypeId" : "_UV3-YPunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_UV3-X_unEfCYrdfxNyUhUA" + }, { + "labelTypeId" : "_UV3-YvunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_UV3-YfunEfCYrdfxNyUhUA" + }, { + "labelTypeId" : "_UV3-ZPunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_UV3-Y_unEfCYrdfxNyUhUA" + }, { + "labelTypeId" : "_UV3-ZvunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_UV3-ZfunEfCYrdfxNyUhUA" + }, { + "labelTypeId" : "_UV3-aPunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_UV3-Z_unEfCYrdfxNyUhUA" + }, { + "labelTypeId" : "_UV3-avunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_UV3-afunEfCYrdfxNyUhUA" + }, { + "labelTypeId" : "_UV3-bPunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_UV3-a_unEfCYrdfxNyUhUA" + } ], + "ports" : [ { + "id" : "157", + "type" : "port:dfd-input", + "children" : [ ] + }, { + "behavior" : "assign Stereotype.web_application,Stereotype.infrastructural,Stereotype.restful_http,Stereotype.encrypted_connection,dummyCategory.dummy_0,dummyCategory.dummy_1,dummyCategory.dummy_2,dummyCategory.dummy_3,dummyCategory.dummy_4,dummyCategory.dummy_5,dummyCategory.dummy_6,dummyCategory.dummy_7,dummyCategory.dummy_8,dummyCategory.dummy_9,dummyCategory.dummy_10,dummyCategory.dummy_11,dummyCategory.dummy_12,dummyCategory.dummy_13,dummyCategory.dummy_14,dummyCategory.dummy_15,dummyCategory.dummy_16,dummyCategory.dummy_17,dummyCategory.dummy_18,dummyCategory.dummy_19,dummyType_0.dummyLabelofType_0,dummyType_1.dummyLabelofType_1,dummyType_2.dummyLabelofType_2,dummyType_3.dummyLabelofType_3,dummyType_4.dummyLabelofType_4,dummyType_5.dummyLabelofType_5,dummyType_6.dummyLabelofType_6,dummyType_7.dummyLabelofType_7,dummyType_8.dummyLabelofType_8,dummyType_9.dummyLabelofType_9,dummyType_10.dummyLabelofType_10,dummyType_11.dummyLabelofType_11,dummyType_12.dummyLabelofType_12,dummyType_13.dummyLabelofType_13,dummyType_14.dummyLabelofType_14,dummyType_15.dummyLabelofType_15,dummyType_16.dummyLabelofType_16,dummyType_17.dummyLabelofType_17,dummyType_18.dummyLabelofType_18,dummyType_19.dummyLabelofType_19 if TRUE from user\nforward user", + "id" : "162", + "type" : "port:dfd-output", + "children" : [ ] + }, { + "behavior" : "assign Stereotype.web_application,Stereotype.infrastructural,Stereotype.restful_http,dummyCategory.dummy_0,dummyCategory.dummy_1,dummyCategory.dummy_2,dummyCategory.dummy_3,dummyCategory.dummy_4,dummyCategory.dummy_5,dummyCategory.dummy_6,dummyCategory.dummy_7,dummyCategory.dummy_8,dummyCategory.dummy_9,dummyCategory.dummy_10,dummyCategory.dummy_11,dummyCategory.dummy_12,dummyCategory.dummy_13,dummyCategory.dummy_14,dummyCategory.dummy_15,dummyCategory.dummy_16,dummyCategory.dummy_17,dummyCategory.dummy_18,dummyCategory.dummy_19,dummyType_0.dummyLabelofType_0,dummyType_1.dummyLabelofType_1,dummyType_2.dummyLabelofType_2,dummyType_3.dummyLabelofType_3,dummyType_4.dummyLabelofType_4,dummyType_5.dummyLabelofType_5,dummyType_6.dummyLabelofType_6,dummyType_7.dummyLabelofType_7,dummyType_8.dummyLabelofType_8,dummyType_9.dummyLabelofType_9,dummyType_10.dummyLabelofType_10,dummyType_11.dummyLabelofType_11,dummyType_12.dummyLabelofType_12,dummyType_13.dummyLabelofType_13,dummyType_14.dummyLabelofType_14,dummyType_15.dummyLabelofType_15,dummyType_16.dummyLabelofType_16,dummyType_17.dummyLabelofType_17,dummyType_18.dummyLabelofType_18,dummyType_19.dummyLabelofType_19 if TRUE from user\nforward user", + "id" : "164", + "type" : "port:dfd-output", + "children" : [ ] + }, { + "behavior" : "assign Stereotype.web_application,Stereotype.infrastructural,Stereotype.restful_http,dummyCategory.dummy_0,dummyCategory.dummy_1,dummyCategory.dummy_2,dummyCategory.dummy_3,dummyCategory.dummy_4,dummyCategory.dummy_5,dummyCategory.dummy_6,dummyCategory.dummy_7,dummyCategory.dummy_8,dummyCategory.dummy_9,dummyCategory.dummy_10,dummyCategory.dummy_11,dummyCategory.dummy_12,dummyCategory.dummy_13,dummyCategory.dummy_14,dummyCategory.dummy_15,dummyCategory.dummy_16,dummyCategory.dummy_17,dummyCategory.dummy_18,dummyCategory.dummy_19,dummyType_0.dummyLabelofType_0,dummyType_1.dummyLabelofType_1,dummyType_2.dummyLabelofType_2,dummyType_3.dummyLabelofType_3,dummyType_4.dummyLabelofType_4,dummyType_5.dummyLabelofType_5,dummyType_6.dummyLabelofType_6,dummyType_7.dummyLabelofType_7,dummyType_8.dummyLabelofType_8,dummyType_9.dummyLabelofType_9,dummyType_10.dummyLabelofType_10,dummyType_11.dummyLabelofType_11,dummyType_12.dummyLabelofType_12,dummyType_13.dummyLabelofType_13,dummyType_14.dummyLabelofType_14,dummyType_15.dummyLabelofType_15,dummyType_16.dummyLabelofType_16,dummyType_17.dummyLabelofType_17,dummyType_18.dummyLabelofType_18,dummyType_19.dummyLabelofType_19 if TRUE from user\nforward user", + "id" : "177", + "type" : "port:dfd-output", + "children" : [ ] + } ], + "annotations" : [ { + "message" : "Propagated: Stereotype.web_application, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.encrypted_connection, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1550080835 + }, { + "message" : "Propagated: Stereotype.web_application, Stereotype.infrastructural, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19, Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.encrypted_connection", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1550080835 + }, { + "message" : "Incoming: Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.restful_http, Stereotype.encrypted_connection, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19, Stereotype.web_application, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1550080835 + }, { + "message" : "Propagated: Stereotype.web_application, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.encrypted_connection, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 62915435 + }, { + "message" : "Propagated: Stereotype.web_application, Stereotype.infrastructural, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19, Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.encrypted_connection", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 62915435 + }, { + "message" : "Incoming: Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.restful_http, Stereotype.encrypted_connection, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19, Stereotype.web_application, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 62915435 + }, { + "message" : "Propagated: Stereotype.web_application, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.encrypted_connection, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1378592036 + }, { + "message" : "Propagated: Stereotype.web_application, Stereotype.infrastructural, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19, Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.encrypted_connection", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1378592036 + }, { + "message" : "Incoming: Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.restful_http, Stereotype.encrypted_connection, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19, Stereotype.web_application, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1378592036 + }, { + "message" : "Propagated: Stereotype.web_application, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.encrypted_connection, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1701646500 + }, { + "message" : "Propagated: Stereotype.web_application, Stereotype.infrastructural, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19, Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.encrypted_connection", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1701646500 + }, { + "message" : "Incoming: Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.restful_http, Stereotype.encrypted_connection, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19, Stereotype.web_application, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1701646500 + } ], + "children" : [ ], + "position" : { + "x" : 0.0, + "y" : 0.0 + }, + "size" : null + }, { + "text" : "scope", + "id" : "16", + "type" : "node:function", + "labels" : [ { + "labelTypeId" : "17", + "labelTypeValueId" : "69" + }, { + "labelTypeId" : "17", + "labelTypeValueId" : "27" + }, { + "labelTypeId" : "70", + "labelTypeValueId" : "71" + }, { + "labelTypeId" : "22", + "labelTypeValueId" : "72" + }, { + "labelTypeId" : "_UV3-MPunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_UV3-MfunEfCYrdfxNyUhUA" + }, { + "labelTypeId" : "_UV3-MPunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_UV3-MvunEfCYrdfxNyUhUA" + }, { + "labelTypeId" : "_UV3-MPunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_UV3-M_unEfCYrdfxNyUhUA" + }, { + "labelTypeId" : "_UV3-MPunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_UV3-NPunEfCYrdfxNyUhUA" + }, { + "labelTypeId" : "_UV3-MPunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_UV3-NfunEfCYrdfxNyUhUA" + }, { + "labelTypeId" : "_UV3-MPunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_UV3-NvunEfCYrdfxNyUhUA" + }, { + "labelTypeId" : "_UV3-MPunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_UV3-N_unEfCYrdfxNyUhUA" + }, { + "labelTypeId" : "_UV3-MPunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_UV3-OPunEfCYrdfxNyUhUA" + }, { + "labelTypeId" : "_UV3-MPunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_UV3-OfunEfCYrdfxNyUhUA" + }, { + "labelTypeId" : "_UV3-MPunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_UV3-OvunEfCYrdfxNyUhUA" + }, { + "labelTypeId" : "_UV3-MPunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_UV3-O_unEfCYrdfxNyUhUA" + }, { + "labelTypeId" : "_UV3-MPunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_UV3-PPunEfCYrdfxNyUhUA" + }, { + "labelTypeId" : "_UV3-MPunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_UV3-PfunEfCYrdfxNyUhUA" + }, { + "labelTypeId" : "_UV3-MPunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_UV3-PvunEfCYrdfxNyUhUA" + }, { + "labelTypeId" : "_UV3-MPunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_UV3-P_unEfCYrdfxNyUhUA" + }, { + "labelTypeId" : "_UV3-MPunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_UV3-QPunEfCYrdfxNyUhUA" + }, { + "labelTypeId" : "_UV3-MPunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_UV3-QfunEfCYrdfxNyUhUA" + }, { + "labelTypeId" : "_UV3-MPunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_UV3-QvunEfCYrdfxNyUhUA" + }, { + "labelTypeId" : "_UV3-MPunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_UV3-Q_unEfCYrdfxNyUhUA" + }, { + "labelTypeId" : "_UV3-MPunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_UV3-RPunEfCYrdfxNyUhUA" + }, { + "labelTypeId" : "_UV3-RvunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_UV3-RfunEfCYrdfxNyUhUA" + }, { + "labelTypeId" : "_UV3-SPunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_UV3-R_unEfCYrdfxNyUhUA" + }, { + "labelTypeId" : "_UV3-SvunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_UV3-SfunEfCYrdfxNyUhUA" + }, { + "labelTypeId" : "_UV3-TPunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_UV3-S_unEfCYrdfxNyUhUA" + }, { + "labelTypeId" : "_UV3-TvunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_UV3-TfunEfCYrdfxNyUhUA" + }, { + "labelTypeId" : "_UV3-UPunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_UV3-T_unEfCYrdfxNyUhUA" + }, { + "labelTypeId" : "_UV3-UvunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_UV3-UfunEfCYrdfxNyUhUA" + }, { + "labelTypeId" : "_UV3-VPunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_UV3-U_unEfCYrdfxNyUhUA" + }, { + "labelTypeId" : "_UV3-VvunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_UV3-VfunEfCYrdfxNyUhUA" + }, { + "labelTypeId" : "_UV3-WPunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_UV3-V_unEfCYrdfxNyUhUA" + }, { + "labelTypeId" : "_UV3-WvunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_UV3-WfunEfCYrdfxNyUhUA" + }, { + "labelTypeId" : "_UV3-XPunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_UV3-W_unEfCYrdfxNyUhUA" + }, { + "labelTypeId" : "_UV3-XvunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_UV3-XfunEfCYrdfxNyUhUA" + }, { + "labelTypeId" : "_UV3-YPunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_UV3-X_unEfCYrdfxNyUhUA" + }, { + "labelTypeId" : "_UV3-YvunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_UV3-YfunEfCYrdfxNyUhUA" + }, { + "labelTypeId" : "_UV3-ZPunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_UV3-Y_unEfCYrdfxNyUhUA" + }, { + "labelTypeId" : "_UV3-ZvunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_UV3-ZfunEfCYrdfxNyUhUA" + }, { + "labelTypeId" : "_UV3-aPunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_UV3-Z_unEfCYrdfxNyUhUA" + }, { + "labelTypeId" : "_UV3-avunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_UV3-afunEfCYrdfxNyUhUA" + }, { + "labelTypeId" : "_UV3-bPunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_UV3-a_unEfCYrdfxNyUhUA" + } ], + "ports" : [ { + "id" : "166", + "type" : "port:dfd-input", + "children" : [ ] + }, { + "behavior" : "forward api_gateway|consul|consul2|consul3|elasticsearch|kibana|logstash|rabbit|service_one|service_one_db|service_two|service_two_db|web_application", + "id" : "_UV5MU_unEfCYrdfxNyUhUA", + "type" : "port:dfd-output", + "children" : [ ] + } ], + "annotations" : [ { + "message" : "Propagated: Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1367503763 + }, { + "message" : "Incoming: Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1367503763 + }, { + "message" : "Propagated: Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 62803825 + }, { + "message" : "Incoming: Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 62803825 + }, { + "message" : "Propagated: Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19, Stereotype.web_application, Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.encrypted_connection", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1550080835 + }, { + "message" : "Incoming: Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19, Stereotype.web_application, Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.encrypted_connection", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1550080835 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19, Stereotype.service_discovery, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1808884231 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19, Stereotype.service_discovery, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1808884231 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19, Stereotype.service_discovery, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 697145861 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19, Stereotype.service_discovery, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 697145861 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1480170882 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1480170882 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.jdbc", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 653880197 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.jdbc", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 653880197 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.gateway, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1188623367 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.gateway, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1188623367 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.gateway, Stereotype.load_balancer, Stereotype.web_application, Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.encrypted_connection", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 62915435 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.gateway, Stereotype.load_balancer, Stereotype.web_application, Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.encrypted_connection", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 62915435 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 394349340 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 394349340 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 2060037930 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 2060037930 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Queue.commudigalmicroservicessampleservicetwo, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 2075133112 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Queue.commudigalmicroservicessampleservicetwo, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 2075133112 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.jdbc, Username.servicetwo, Password.servicetwo", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 2028510206 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.jdbc, Username.servicetwo, Password.servicetwo", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 2028510206 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.gateway, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1697441364 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.gateway, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1697441364 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.gateway, Stereotype.load_balancer, Stereotype.web_application, Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.encrypted_connection", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1378592036 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.gateway, Stereotype.load_balancer, Stereotype.web_application, Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.encrypted_connection", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1378592036 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19, Stereotype.jdbc", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 700837405 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19, Stereotype.jdbc", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 700837405 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19, Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 365864880 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19, Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 365864880 + }, { + "message" : "Propagated: Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 399699227 + }, { + "message" : "Incoming: Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 399699227 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19, Stereotype.service_discovery, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 408909888 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19, Stereotype.service_discovery, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 408909888 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleservicetwo, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 510445648 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleservicetwo, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 510445648 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19, Stereotype.jdbc, Stereotype.plaintext_credentials_link, Username.servicetwo, Password.servicetwo", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 2122256138 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19, Stereotype.jdbc, Stereotype.plaintext_credentials_link, Username.servicetwo, Password.servicetwo", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 2122256138 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19, Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 2126876651 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19, Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 2126876651 + }, { + "message" : "Propagated: Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 498820363 + }, { + "message" : "Incoming: Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 498820363 + }, { + "message" : "Propagated: Stereotype.web_application, Stereotype.infrastructural, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19, Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.encrypted_connection", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1701646500 + }, { + "message" : "Incoming: Stereotype.web_application, Stereotype.infrastructural, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19, Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.encrypted_connection", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1701646500 + }, { + "message" : "Propagated: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1676428380 + }, { + "message" : "Incoming: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1676428380 + }, { + "message" : "Propagated: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 822359325 + }, { + "message" : "Incoming: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 822359325 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 2010221835 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 2010221835 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 2050247525 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 2050247525 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 2071674587 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 2071674587 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1799831668 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1799831668 + }, { + "message" : "Propagated: Stereotype.monitoring_dashboard, Stereotype.infrastructural, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19, Stereotype.search_engine, Stereotype.logging_server, Stereotype.internal, Stereotype.local_logging, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 277164482 + }, { + "message" : "Incoming: Stereotype.monitoring_dashboard, Stereotype.infrastructural, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19, Stereotype.search_engine, Stereotype.logging_server, Stereotype.internal, Stereotype.local_logging, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 277164482 + }, { + "message" : "Propagated: Stereotype.monitoring_dashboard, Stereotype.infrastructural, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19, Stereotype.search_engine, Stereotype.logging_server, Stereotype.internal, Stereotype.local_logging, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1219637204 + }, { + "message" : "Incoming: Stereotype.monitoring_dashboard, Stereotype.infrastructural, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19, Stereotype.search_engine, Stereotype.logging_server, Stereotype.internal, Stereotype.local_logging, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1219637204 + }, { + "message" : "Propagated: Stereotype.monitoring_dashboard, Stereotype.infrastructural, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19, Stereotype.search_engine, Stereotype.logging_server, Stereotype.internal, Stereotype.local_logging, Stereotype.jdbc", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1788698111 + }, { + "message" : "Incoming: Stereotype.monitoring_dashboard, Stereotype.infrastructural, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19, Stereotype.search_engine, Stereotype.logging_server, Stereotype.internal, Stereotype.local_logging, Stereotype.jdbc", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1788698111 + }, { + "message" : "Propagated: Stereotype.monitoring_dashboard, Stereotype.infrastructural, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19, Stereotype.search_engine, Stereotype.logging_server, Stereotype.internal, Stereotype.local_logging, Stereotype.gateway, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 990442552 + }, { + "message" : "Incoming: Stereotype.monitoring_dashboard, Stereotype.infrastructural, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19, Stereotype.search_engine, Stereotype.logging_server, Stereotype.internal, Stereotype.local_logging, Stereotype.gateway, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 990442552 + }, { + "message" : "Propagated: Stereotype.monitoring_dashboard, Stereotype.infrastructural, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19, Stereotype.search_engine, Stereotype.logging_server, Stereotype.internal, Stereotype.local_logging, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 45795770 + }, { + "message" : "Incoming: Stereotype.monitoring_dashboard, Stereotype.infrastructural, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19, Stereotype.search_engine, Stereotype.logging_server, Stereotype.internal, Stereotype.local_logging, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 45795770 + }, { + "message" : "Propagated: Stereotype.monitoring_dashboard, Stereotype.infrastructural, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19, Stereotype.search_engine, Stereotype.logging_server, Stereotype.internal, Stereotype.local_logging, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleservicetwo, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1529842358 + }, { + "message" : "Incoming: Stereotype.monitoring_dashboard, Stereotype.infrastructural, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19, Stereotype.search_engine, Stereotype.logging_server, Stereotype.internal, Stereotype.local_logging, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleservicetwo, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1529842358 + }, { + "message" : "Propagated: Stereotype.monitoring_dashboard, Stereotype.infrastructural, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19, Stereotype.search_engine, Stereotype.logging_server, Stereotype.internal, Stereotype.local_logging, Stereotype.jdbc, Stereotype.plaintext_credentials_link, Username.servicetwo, Password.servicetwo", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1541232265 + }, { + "message" : "Incoming: Stereotype.monitoring_dashboard, Stereotype.infrastructural, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19, Stereotype.search_engine, Stereotype.logging_server, Stereotype.internal, Stereotype.local_logging, Stereotype.jdbc, Stereotype.plaintext_credentials_link, Username.servicetwo, Password.servicetwo", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1541232265 + }, { + "message" : "Propagated: Stereotype.monitoring_dashboard, Stereotype.infrastructural, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19, Stereotype.search_engine, Stereotype.logging_server, Stereotype.internal, Stereotype.local_logging, Stereotype.gateway, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 663277822 + }, { + "message" : "Incoming: Stereotype.monitoring_dashboard, Stereotype.infrastructural, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19, Stereotype.search_engine, Stereotype.logging_server, Stereotype.internal, Stereotype.local_logging, Stereotype.gateway, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 663277822 + }, { + "message" : "Propagated: Stereotype.search_engine, Stereotype.infrastructural, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19, Stereotype.logging_server, Stereotype.internal, Stereotype.local_logging, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1940601516 + }, { + "message" : "Incoming: Stereotype.search_engine, Stereotype.infrastructural, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19, Stereotype.logging_server, Stereotype.internal, Stereotype.local_logging, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1940601516 + }, { + "message" : "Propagated: Stereotype.logging_server, Stereotype.infrastructural, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19, Stereotype.internal, Stereotype.local_logging, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1425433685 + }, { + "message" : "Incoming: Stereotype.logging_server, Stereotype.infrastructural, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19, Stereotype.internal, Stereotype.local_logging, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1425433685 + }, { + "message" : "Propagated: Stereotype.logging_server, Stereotype.infrastructural, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19, Stereotype.internal, Stereotype.local_logging, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1705904476 + }, { + "message" : "Incoming: Stereotype.logging_server, Stereotype.infrastructural, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19, Stereotype.internal, Stereotype.local_logging, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1705904476 + }, { + "message" : "Propagated: Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 79706679 + }, { + "message" : "Incoming: Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 79706679 + }, { + "message" : "Propagated: Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 773066329 + }, { + "message" : "Incoming: Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 773066329 + }, { + "message" : "Propagated: Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1235686146 + }, { + "message" : "Incoming: Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1235686146 + }, { + "message" : "Propagated: Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1557534595 + }, { + "message" : "Incoming: Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1557534595 + }, { + "message" : "Propagated: Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1497538476 + }, { + "message" : "Incoming: Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1497538476 + } ], + "children" : [ ], + "position" : { + "x" : 0.0, + "y" : 0.0 + }, + "size" : null + }, { + "text" : "dummyNode_0", + "id" : "_UV5MUPunEfCYrdfxNyUhUA", + "type" : "node:storage", + "labels" : [ { + "labelTypeId" : "17", + "labelTypeValueId" : "69" + }, { + "labelTypeId" : "17", + "labelTypeValueId" : "27" + }, { + "labelTypeId" : "70", + "labelTypeValueId" : "71" + }, { + "labelTypeId" : "22", + "labelTypeValueId" : "72" + }, { + "labelTypeId" : "_UV3-MPunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_UV3-MfunEfCYrdfxNyUhUA" + }, { + "labelTypeId" : "_UV3-MPunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_UV3-MvunEfCYrdfxNyUhUA" + }, { + "labelTypeId" : "_UV3-MPunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_UV3-M_unEfCYrdfxNyUhUA" + }, { + "labelTypeId" : "_UV3-MPunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_UV3-NPunEfCYrdfxNyUhUA" + }, { + "labelTypeId" : "_UV3-MPunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_UV3-NfunEfCYrdfxNyUhUA" + }, { + "labelTypeId" : "_UV3-MPunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_UV3-NvunEfCYrdfxNyUhUA" + }, { + "labelTypeId" : "_UV3-MPunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_UV3-N_unEfCYrdfxNyUhUA" + }, { + "labelTypeId" : "_UV3-MPunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_UV3-OPunEfCYrdfxNyUhUA" + }, { + "labelTypeId" : "_UV3-MPunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_UV3-OfunEfCYrdfxNyUhUA" + }, { + "labelTypeId" : "_UV3-MPunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_UV3-OvunEfCYrdfxNyUhUA" + }, { + "labelTypeId" : "_UV3-MPunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_UV3-O_unEfCYrdfxNyUhUA" + }, { + "labelTypeId" : "_UV3-MPunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_UV3-PPunEfCYrdfxNyUhUA" + }, { + "labelTypeId" : "_UV3-MPunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_UV3-PfunEfCYrdfxNyUhUA" + }, { + "labelTypeId" : "_UV3-MPunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_UV3-PvunEfCYrdfxNyUhUA" + }, { + "labelTypeId" : "_UV3-MPunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_UV3-P_unEfCYrdfxNyUhUA" + }, { + "labelTypeId" : "_UV3-MPunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_UV3-QPunEfCYrdfxNyUhUA" + }, { + "labelTypeId" : "_UV3-MPunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_UV3-QfunEfCYrdfxNyUhUA" + }, { + "labelTypeId" : "_UV3-MPunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_UV3-QvunEfCYrdfxNyUhUA" + }, { + "labelTypeId" : "_UV3-MPunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_UV3-Q_unEfCYrdfxNyUhUA" + }, { + "labelTypeId" : "_UV3-MPunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_UV3-RPunEfCYrdfxNyUhUA" + }, { + "labelTypeId" : "_UV3-RvunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_UV3-RfunEfCYrdfxNyUhUA" + }, { + "labelTypeId" : "_UV3-SPunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_UV3-R_unEfCYrdfxNyUhUA" + }, { + "labelTypeId" : "_UV3-SvunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_UV3-SfunEfCYrdfxNyUhUA" + }, { + "labelTypeId" : "_UV3-TPunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_UV3-S_unEfCYrdfxNyUhUA" + }, { + "labelTypeId" : "_UV3-TvunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_UV3-TfunEfCYrdfxNyUhUA" + }, { + "labelTypeId" : "_UV3-UPunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_UV3-T_unEfCYrdfxNyUhUA" + }, { + "labelTypeId" : "_UV3-UvunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_UV3-UfunEfCYrdfxNyUhUA" + }, { + "labelTypeId" : "_UV3-VPunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_UV3-U_unEfCYrdfxNyUhUA" + }, { + "labelTypeId" : "_UV3-VvunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_UV3-VfunEfCYrdfxNyUhUA" + }, { + "labelTypeId" : "_UV3-WPunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_UV3-V_unEfCYrdfxNyUhUA" + }, { + "labelTypeId" : "_UV3-WvunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_UV3-WfunEfCYrdfxNyUhUA" + }, { + "labelTypeId" : "_UV3-XPunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_UV3-W_unEfCYrdfxNyUhUA" + }, { + "labelTypeId" : "_UV3-XvunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_UV3-XfunEfCYrdfxNyUhUA" + }, { + "labelTypeId" : "_UV3-YPunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_UV3-X_unEfCYrdfxNyUhUA" + }, { + "labelTypeId" : "_UV3-YvunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_UV3-YfunEfCYrdfxNyUhUA" + }, { + "labelTypeId" : "_UV3-ZPunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_UV3-Y_unEfCYrdfxNyUhUA" + }, { + "labelTypeId" : "_UV3-ZvunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_UV3-ZfunEfCYrdfxNyUhUA" + }, { + "labelTypeId" : "_UV3-aPunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_UV3-Z_unEfCYrdfxNyUhUA" + }, { + "labelTypeId" : "_UV3-avunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_UV3-afunEfCYrdfxNyUhUA" + }, { + "labelTypeId" : "_UV3-bPunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_UV3-a_unEfCYrdfxNyUhUA" + } ], + "ports" : [ { + "id" : "_UV5MUvunEfCYrdfxNyUhUA", + "type" : "port:dfd-input", + "children" : [ ] + }, { + "behavior" : "forward dummyFlow_0", + "id" : "_UV5MWfunEfCYrdfxNyUhUA", + "type" : "port:dfd-output", + "children" : [ ] + } ], + "annotations" : [ { + "message" : "Propagated: Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1367503763 + }, { + "message" : "Incoming: Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1367503763 + }, { + "message" : "Propagated: Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 62803825 + }, { + "message" : "Incoming: Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 62803825 + }, { + "message" : "Propagated: Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19, Stereotype.web_application, Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.encrypted_connection", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1550080835 + }, { + "message" : "Incoming: Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19, Stereotype.web_application, Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.encrypted_connection", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1550080835 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19, Stereotype.service_discovery, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1808884231 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19, Stereotype.service_discovery, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1808884231 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19, Stereotype.service_discovery, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 697145861 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19, Stereotype.service_discovery, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 697145861 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1480170882 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1480170882 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.jdbc", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 653880197 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.jdbc", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 653880197 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.gateway, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1188623367 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.gateway, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1188623367 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.gateway, Stereotype.load_balancer, Stereotype.web_application, Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.encrypted_connection", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 62915435 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.gateway, Stereotype.load_balancer, Stereotype.web_application, Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.encrypted_connection", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 62915435 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 394349340 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 394349340 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 2060037930 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 2060037930 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Queue.commudigalmicroservicessampleservicetwo, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 2075133112 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Queue.commudigalmicroservicessampleservicetwo, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 2075133112 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.jdbc, Username.servicetwo, Password.servicetwo", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 2028510206 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.jdbc, Username.servicetwo, Password.servicetwo", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 2028510206 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.gateway, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1697441364 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.gateway, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1697441364 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.gateway, Stereotype.load_balancer, Stereotype.web_application, Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.encrypted_connection", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1378592036 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.gateway, Stereotype.load_balancer, Stereotype.web_application, Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.encrypted_connection", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1378592036 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19, Stereotype.jdbc", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 700837405 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19, Stereotype.jdbc", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 700837405 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19, Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 365864880 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19, Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 365864880 + }, { + "message" : "Propagated: Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 399699227 + }, { + "message" : "Incoming: Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 399699227 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19, Stereotype.service_discovery, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 408909888 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19, Stereotype.service_discovery, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 408909888 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleservicetwo, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 510445648 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleservicetwo, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 510445648 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19, Stereotype.jdbc, Stereotype.plaintext_credentials_link, Username.servicetwo, Password.servicetwo", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 2122256138 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19, Stereotype.jdbc, Stereotype.plaintext_credentials_link, Username.servicetwo, Password.servicetwo", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 2122256138 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19, Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 2126876651 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19, Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 2126876651 + }, { + "message" : "Propagated: Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 498820363 + }, { + "message" : "Incoming: Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 498820363 + }, { + "message" : "Propagated: Stereotype.web_application, Stereotype.infrastructural, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19, Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.encrypted_connection", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1701646500 + }, { + "message" : "Incoming: Stereotype.web_application, Stereotype.infrastructural, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19, Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.encrypted_connection", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1701646500 + }, { + "message" : "Propagated: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1676428380 + }, { + "message" : "Incoming: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1676428380 + }, { + "message" : "Propagated: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 822359325 + }, { + "message" : "Incoming: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 822359325 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 2010221835 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 2010221835 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 2050247525 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 2050247525 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 2071674587 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 2071674587 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1799831668 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1799831668 + }, { + "message" : "Propagated: Stereotype.monitoring_dashboard, Stereotype.infrastructural, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19, Stereotype.search_engine, Stereotype.logging_server, Stereotype.internal, Stereotype.local_logging, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 277164482 + }, { + "message" : "Incoming: Stereotype.monitoring_dashboard, Stereotype.infrastructural, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19, Stereotype.search_engine, Stereotype.logging_server, Stereotype.internal, Stereotype.local_logging, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 277164482 + }, { + "message" : "Propagated: Stereotype.monitoring_dashboard, Stereotype.infrastructural, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19, Stereotype.search_engine, Stereotype.logging_server, Stereotype.internal, Stereotype.local_logging, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1219637204 + }, { + "message" : "Incoming: Stereotype.monitoring_dashboard, Stereotype.infrastructural, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19, Stereotype.search_engine, Stereotype.logging_server, Stereotype.internal, Stereotype.local_logging, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1219637204 + }, { + "message" : "Propagated: Stereotype.monitoring_dashboard, Stereotype.infrastructural, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19, Stereotype.search_engine, Stereotype.logging_server, Stereotype.internal, Stereotype.local_logging, Stereotype.jdbc", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1788698111 + }, { + "message" : "Incoming: Stereotype.monitoring_dashboard, Stereotype.infrastructural, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19, Stereotype.search_engine, Stereotype.logging_server, Stereotype.internal, Stereotype.local_logging, Stereotype.jdbc", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1788698111 + }, { + "message" : "Propagated: Stereotype.monitoring_dashboard, Stereotype.infrastructural, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19, Stereotype.search_engine, Stereotype.logging_server, Stereotype.internal, Stereotype.local_logging, Stereotype.gateway, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 990442552 + }, { + "message" : "Incoming: Stereotype.monitoring_dashboard, Stereotype.infrastructural, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19, Stereotype.search_engine, Stereotype.logging_server, Stereotype.internal, Stereotype.local_logging, Stereotype.gateway, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 990442552 + }, { + "message" : "Propagated: Stereotype.monitoring_dashboard, Stereotype.infrastructural, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19, Stereotype.search_engine, Stereotype.logging_server, Stereotype.internal, Stereotype.local_logging, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 45795770 + }, { + "message" : "Incoming: Stereotype.monitoring_dashboard, Stereotype.infrastructural, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19, Stereotype.search_engine, Stereotype.logging_server, Stereotype.internal, Stereotype.local_logging, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 45795770 + }, { + "message" : "Propagated: Stereotype.monitoring_dashboard, Stereotype.infrastructural, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19, Stereotype.search_engine, Stereotype.logging_server, Stereotype.internal, Stereotype.local_logging, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleservicetwo, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1529842358 + }, { + "message" : "Incoming: Stereotype.monitoring_dashboard, Stereotype.infrastructural, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19, Stereotype.search_engine, Stereotype.logging_server, Stereotype.internal, Stereotype.local_logging, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleservicetwo, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1529842358 + }, { + "message" : "Propagated: Stereotype.monitoring_dashboard, Stereotype.infrastructural, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19, Stereotype.search_engine, Stereotype.logging_server, Stereotype.internal, Stereotype.local_logging, Stereotype.jdbc, Stereotype.plaintext_credentials_link, Username.servicetwo, Password.servicetwo", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1541232265 + }, { + "message" : "Incoming: Stereotype.monitoring_dashboard, Stereotype.infrastructural, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19, Stereotype.search_engine, Stereotype.logging_server, Stereotype.internal, Stereotype.local_logging, Stereotype.jdbc, Stereotype.plaintext_credentials_link, Username.servicetwo, Password.servicetwo", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1541232265 + }, { + "message" : "Propagated: Stereotype.monitoring_dashboard, Stereotype.infrastructural, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19, Stereotype.search_engine, Stereotype.logging_server, Stereotype.internal, Stereotype.local_logging, Stereotype.gateway, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 663277822 + }, { + "message" : "Incoming: Stereotype.monitoring_dashboard, Stereotype.infrastructural, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19, Stereotype.search_engine, Stereotype.logging_server, Stereotype.internal, Stereotype.local_logging, Stereotype.gateway, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 663277822 + }, { + "message" : "Propagated: Stereotype.search_engine, Stereotype.infrastructural, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19, Stereotype.logging_server, Stereotype.internal, Stereotype.local_logging, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1940601516 + }, { + "message" : "Incoming: Stereotype.search_engine, Stereotype.infrastructural, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19, Stereotype.logging_server, Stereotype.internal, Stereotype.local_logging, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1940601516 + }, { + "message" : "Propagated: Stereotype.logging_server, Stereotype.infrastructural, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19, Stereotype.internal, Stereotype.local_logging, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1425433685 + }, { + "message" : "Incoming: Stereotype.logging_server, Stereotype.infrastructural, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19, Stereotype.internal, Stereotype.local_logging, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1425433685 + }, { + "message" : "Propagated: Stereotype.logging_server, Stereotype.infrastructural, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19, Stereotype.internal, Stereotype.local_logging, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1705904476 + }, { + "message" : "Incoming: Stereotype.logging_server, Stereotype.infrastructural, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19, Stereotype.internal, Stereotype.local_logging, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1705904476 + }, { + "message" : "Propagated: Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 79706679 + }, { + "message" : "Incoming: Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 79706679 + }, { + "message" : "Propagated: Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 773066329 + }, { + "message" : "Incoming: Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 773066329 + }, { + "message" : "Propagated: Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1235686146 + }, { + "message" : "Incoming: Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1235686146 + }, { + "message" : "Propagated: Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1557534595 + }, { + "message" : "Incoming: Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1557534595 + }, { + "message" : "Propagated: Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1497538476 + }, { + "message" : "Incoming: Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1497538476 + } ], + "children" : [ ], + "position" : { + "x" : 0.0, + "y" : 0.0 + }, + "size" : null + }, { + "text" : "dummyNode_1", + "id" : "_UV5MVvunEfCYrdfxNyUhUA", + "type" : "node:storage", + "labels" : [ { + "labelTypeId" : "17", + "labelTypeValueId" : "69" + }, { + "labelTypeId" : "17", + "labelTypeValueId" : "27" + }, { + "labelTypeId" : "70", + "labelTypeValueId" : "71" + }, { + "labelTypeId" : "22", + "labelTypeValueId" : "72" + }, { + "labelTypeId" : "_UV3-MPunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_UV3-MfunEfCYrdfxNyUhUA" + }, { + "labelTypeId" : "_UV3-MPunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_UV3-MvunEfCYrdfxNyUhUA" + }, { + "labelTypeId" : "_UV3-MPunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_UV3-M_unEfCYrdfxNyUhUA" + }, { + "labelTypeId" : "_UV3-MPunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_UV3-NPunEfCYrdfxNyUhUA" + }, { + "labelTypeId" : "_UV3-MPunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_UV3-NfunEfCYrdfxNyUhUA" + }, { + "labelTypeId" : "_UV3-MPunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_UV3-NvunEfCYrdfxNyUhUA" + }, { + "labelTypeId" : "_UV3-MPunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_UV3-N_unEfCYrdfxNyUhUA" + }, { + "labelTypeId" : "_UV3-MPunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_UV3-OPunEfCYrdfxNyUhUA" + }, { + "labelTypeId" : "_UV3-MPunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_UV3-OfunEfCYrdfxNyUhUA" + }, { + "labelTypeId" : "_UV3-MPunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_UV3-OvunEfCYrdfxNyUhUA" + }, { + "labelTypeId" : "_UV3-MPunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_UV3-O_unEfCYrdfxNyUhUA" + }, { + "labelTypeId" : "_UV3-MPunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_UV3-PPunEfCYrdfxNyUhUA" + }, { + "labelTypeId" : "_UV3-MPunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_UV3-PfunEfCYrdfxNyUhUA" + }, { + "labelTypeId" : "_UV3-MPunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_UV3-PvunEfCYrdfxNyUhUA" + }, { + "labelTypeId" : "_UV3-MPunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_UV3-P_unEfCYrdfxNyUhUA" + }, { + "labelTypeId" : "_UV3-MPunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_UV3-QPunEfCYrdfxNyUhUA" + }, { + "labelTypeId" : "_UV3-MPunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_UV3-QfunEfCYrdfxNyUhUA" + }, { + "labelTypeId" : "_UV3-MPunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_UV3-QvunEfCYrdfxNyUhUA" + }, { + "labelTypeId" : "_UV3-MPunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_UV3-Q_unEfCYrdfxNyUhUA" + }, { + "labelTypeId" : "_UV3-MPunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_UV3-RPunEfCYrdfxNyUhUA" + }, { + "labelTypeId" : "_UV3-RvunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_UV3-RfunEfCYrdfxNyUhUA" + }, { + "labelTypeId" : "_UV3-SPunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_UV3-R_unEfCYrdfxNyUhUA" + }, { + "labelTypeId" : "_UV3-SvunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_UV3-SfunEfCYrdfxNyUhUA" + }, { + "labelTypeId" : "_UV3-TPunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_UV3-S_unEfCYrdfxNyUhUA" + }, { + "labelTypeId" : "_UV3-TvunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_UV3-TfunEfCYrdfxNyUhUA" + }, { + "labelTypeId" : "_UV3-UPunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_UV3-T_unEfCYrdfxNyUhUA" + }, { + "labelTypeId" : "_UV3-UvunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_UV3-UfunEfCYrdfxNyUhUA" + }, { + "labelTypeId" : "_UV3-VPunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_UV3-U_unEfCYrdfxNyUhUA" + }, { + "labelTypeId" : "_UV3-VvunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_UV3-VfunEfCYrdfxNyUhUA" + }, { + "labelTypeId" : "_UV3-WPunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_UV3-V_unEfCYrdfxNyUhUA" + }, { + "labelTypeId" : "_UV3-WvunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_UV3-WfunEfCYrdfxNyUhUA" + }, { + "labelTypeId" : "_UV3-XPunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_UV3-W_unEfCYrdfxNyUhUA" + }, { + "labelTypeId" : "_UV3-XvunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_UV3-XfunEfCYrdfxNyUhUA" + }, { + "labelTypeId" : "_UV3-YPunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_UV3-X_unEfCYrdfxNyUhUA" + }, { + "labelTypeId" : "_UV3-YvunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_UV3-YfunEfCYrdfxNyUhUA" + }, { + "labelTypeId" : "_UV3-ZPunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_UV3-Y_unEfCYrdfxNyUhUA" + }, { + "labelTypeId" : "_UV3-ZvunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_UV3-ZfunEfCYrdfxNyUhUA" + }, { + "labelTypeId" : "_UV3-aPunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_UV3-Z_unEfCYrdfxNyUhUA" + }, { + "labelTypeId" : "_UV3-avunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_UV3-afunEfCYrdfxNyUhUA" + }, { + "labelTypeId" : "_UV3-bPunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_UV3-a_unEfCYrdfxNyUhUA" + } ], + "ports" : [ { + "id" : "_UV5MWPunEfCYrdfxNyUhUA", + "type" : "port:dfd-input", + "children" : [ ] + }, { + "behavior" : "forward dummyFlow_1", + "id" : "_UV5MX_unEfCYrdfxNyUhUA", + "type" : "port:dfd-output", + "children" : [ ] + } ], + "annotations" : [ { + "message" : "Propagated: Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1367503763 + }, { + "message" : "Incoming: Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1367503763 + }, { + "message" : "Propagated: Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 62803825 + }, { + "message" : "Incoming: Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 62803825 + }, { + "message" : "Propagated: Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19, Stereotype.web_application, Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.encrypted_connection", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1550080835 + }, { + "message" : "Incoming: Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19, Stereotype.web_application, Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.encrypted_connection", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1550080835 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19, Stereotype.service_discovery, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1808884231 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19, Stereotype.service_discovery, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1808884231 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19, Stereotype.service_discovery, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 697145861 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19, Stereotype.service_discovery, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 697145861 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1480170882 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1480170882 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.jdbc", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 653880197 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.jdbc", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 653880197 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.gateway, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1188623367 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.gateway, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1188623367 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.gateway, Stereotype.load_balancer, Stereotype.web_application, Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.encrypted_connection", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 62915435 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.gateway, Stereotype.load_balancer, Stereotype.web_application, Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.encrypted_connection", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 62915435 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 394349340 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 394349340 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 2060037930 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 2060037930 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Queue.commudigalmicroservicessampleservicetwo, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 2075133112 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Queue.commudigalmicroservicessampleservicetwo, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 2075133112 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.jdbc, Username.servicetwo, Password.servicetwo", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 2028510206 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.jdbc, Username.servicetwo, Password.servicetwo", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 2028510206 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.gateway, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1697441364 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.gateway, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1697441364 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.gateway, Stereotype.load_balancer, Stereotype.web_application, Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.encrypted_connection", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1378592036 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.gateway, Stereotype.load_balancer, Stereotype.web_application, Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.encrypted_connection", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1378592036 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19, Stereotype.jdbc", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 700837405 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19, Stereotype.jdbc", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 700837405 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19, Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 365864880 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19, Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 365864880 + }, { + "message" : "Propagated: Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 399699227 + }, { + "message" : "Incoming: Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 399699227 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19, Stereotype.service_discovery, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 408909888 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19, Stereotype.service_discovery, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 408909888 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleservicetwo, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 510445648 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleservicetwo, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 510445648 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19, Stereotype.jdbc, Stereotype.plaintext_credentials_link, Username.servicetwo, Password.servicetwo", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 2122256138 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19, Stereotype.jdbc, Stereotype.plaintext_credentials_link, Username.servicetwo, Password.servicetwo", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 2122256138 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19, Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 2126876651 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19, Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 2126876651 + }, { + "message" : "Propagated: Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 498820363 + }, { + "message" : "Incoming: Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 498820363 + }, { + "message" : "Propagated: Stereotype.web_application, Stereotype.infrastructural, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19, Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.encrypted_connection", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1701646500 + }, { + "message" : "Incoming: Stereotype.web_application, Stereotype.infrastructural, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19, Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.encrypted_connection", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1701646500 + }, { + "message" : "Propagated: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1676428380 + }, { + "message" : "Incoming: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1676428380 + }, { + "message" : "Propagated: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 822359325 + }, { + "message" : "Incoming: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 822359325 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 2010221835 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 2010221835 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 2050247525 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 2050247525 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 2071674587 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 2071674587 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1799831668 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1799831668 + }, { + "message" : "Propagated: Stereotype.monitoring_dashboard, Stereotype.infrastructural, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19, Stereotype.search_engine, Stereotype.logging_server, Stereotype.internal, Stereotype.local_logging, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 277164482 + }, { + "message" : "Incoming: Stereotype.monitoring_dashboard, Stereotype.infrastructural, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19, Stereotype.search_engine, Stereotype.logging_server, Stereotype.internal, Stereotype.local_logging, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 277164482 + }, { + "message" : "Propagated: Stereotype.monitoring_dashboard, Stereotype.infrastructural, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19, Stereotype.search_engine, Stereotype.logging_server, Stereotype.internal, Stereotype.local_logging, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1219637204 + }, { + "message" : "Incoming: Stereotype.monitoring_dashboard, Stereotype.infrastructural, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19, Stereotype.search_engine, Stereotype.logging_server, Stereotype.internal, Stereotype.local_logging, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1219637204 + }, { + "message" : "Propagated: Stereotype.monitoring_dashboard, Stereotype.infrastructural, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19, Stereotype.search_engine, Stereotype.logging_server, Stereotype.internal, Stereotype.local_logging, Stereotype.jdbc", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1788698111 + }, { + "message" : "Incoming: Stereotype.monitoring_dashboard, Stereotype.infrastructural, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19, Stereotype.search_engine, Stereotype.logging_server, Stereotype.internal, Stereotype.local_logging, Stereotype.jdbc", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1788698111 + }, { + "message" : "Propagated: Stereotype.monitoring_dashboard, Stereotype.infrastructural, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19, Stereotype.search_engine, Stereotype.logging_server, Stereotype.internal, Stereotype.local_logging, Stereotype.gateway, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 990442552 + }, { + "message" : "Incoming: Stereotype.monitoring_dashboard, Stereotype.infrastructural, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19, Stereotype.search_engine, Stereotype.logging_server, Stereotype.internal, Stereotype.local_logging, Stereotype.gateway, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 990442552 + }, { + "message" : "Propagated: Stereotype.monitoring_dashboard, Stereotype.infrastructural, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19, Stereotype.search_engine, Stereotype.logging_server, Stereotype.internal, Stereotype.local_logging, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 45795770 + }, { + "message" : "Incoming: Stereotype.monitoring_dashboard, Stereotype.infrastructural, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19, Stereotype.search_engine, Stereotype.logging_server, Stereotype.internal, Stereotype.local_logging, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 45795770 + }, { + "message" : "Propagated: Stereotype.monitoring_dashboard, Stereotype.infrastructural, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19, Stereotype.search_engine, Stereotype.logging_server, Stereotype.internal, Stereotype.local_logging, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleservicetwo, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1529842358 + }, { + "message" : "Incoming: Stereotype.monitoring_dashboard, Stereotype.infrastructural, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19, Stereotype.search_engine, Stereotype.logging_server, Stereotype.internal, Stereotype.local_logging, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleservicetwo, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1529842358 + }, { + "message" : "Propagated: Stereotype.monitoring_dashboard, Stereotype.infrastructural, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19, Stereotype.search_engine, Stereotype.logging_server, Stereotype.internal, Stereotype.local_logging, Stereotype.jdbc, Stereotype.plaintext_credentials_link, Username.servicetwo, Password.servicetwo", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1541232265 + }, { + "message" : "Incoming: Stereotype.monitoring_dashboard, Stereotype.infrastructural, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19, Stereotype.search_engine, Stereotype.logging_server, Stereotype.internal, Stereotype.local_logging, Stereotype.jdbc, Stereotype.plaintext_credentials_link, Username.servicetwo, Password.servicetwo", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1541232265 + }, { + "message" : "Propagated: Stereotype.monitoring_dashboard, Stereotype.infrastructural, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19, Stereotype.search_engine, Stereotype.logging_server, Stereotype.internal, Stereotype.local_logging, Stereotype.gateway, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 663277822 + }, { + "message" : "Incoming: Stereotype.monitoring_dashboard, Stereotype.infrastructural, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19, Stereotype.search_engine, Stereotype.logging_server, Stereotype.internal, Stereotype.local_logging, Stereotype.gateway, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 663277822 + }, { + "message" : "Propagated: Stereotype.search_engine, Stereotype.infrastructural, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19, Stereotype.logging_server, Stereotype.internal, Stereotype.local_logging, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1940601516 + }, { + "message" : "Incoming: Stereotype.search_engine, Stereotype.infrastructural, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19, Stereotype.logging_server, Stereotype.internal, Stereotype.local_logging, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1940601516 + }, { + "message" : "Propagated: Stereotype.logging_server, Stereotype.infrastructural, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19, Stereotype.internal, Stereotype.local_logging, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1425433685 + }, { + "message" : "Incoming: Stereotype.logging_server, Stereotype.infrastructural, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19, Stereotype.internal, Stereotype.local_logging, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1425433685 + }, { + "message" : "Propagated: Stereotype.logging_server, Stereotype.infrastructural, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19, Stereotype.internal, Stereotype.local_logging, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1705904476 + }, { + "message" : "Incoming: Stereotype.logging_server, Stereotype.infrastructural, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19, Stereotype.internal, Stereotype.local_logging, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1705904476 + }, { + "message" : "Propagated: Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 79706679 + }, { + "message" : "Incoming: Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 79706679 + }, { + "message" : "Propagated: Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 773066329 + }, { + "message" : "Incoming: Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 773066329 + }, { + "message" : "Propagated: Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1235686146 + }, { + "message" : "Incoming: Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1235686146 + }, { + "message" : "Propagated: Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1557534595 + }, { + "message" : "Incoming: Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1557534595 + }, { + "message" : "Propagated: Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1497538476 + }, { + "message" : "Incoming: Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1497538476 + } ], + "children" : [ ], + "position" : { + "x" : 0.0, + "y" : 0.0 + }, + "size" : null + }, { + "text" : "dummyNode_2", + "id" : "_UV5MXPunEfCYrdfxNyUhUA", + "type" : "node:storage", + "labels" : [ { + "labelTypeId" : "17", + "labelTypeValueId" : "69" + }, { + "labelTypeId" : "17", + "labelTypeValueId" : "27" + }, { + "labelTypeId" : "70", + "labelTypeValueId" : "71" + }, { + "labelTypeId" : "22", + "labelTypeValueId" : "72" + }, { + "labelTypeId" : "_UV3-MPunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_UV3-MfunEfCYrdfxNyUhUA" + }, { + "labelTypeId" : "_UV3-MPunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_UV3-MvunEfCYrdfxNyUhUA" + }, { + "labelTypeId" : "_UV3-MPunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_UV3-M_unEfCYrdfxNyUhUA" + }, { + "labelTypeId" : "_UV3-MPunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_UV3-NPunEfCYrdfxNyUhUA" + }, { + "labelTypeId" : "_UV3-MPunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_UV3-NfunEfCYrdfxNyUhUA" + }, { + "labelTypeId" : "_UV3-MPunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_UV3-NvunEfCYrdfxNyUhUA" + }, { + "labelTypeId" : "_UV3-MPunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_UV3-N_unEfCYrdfxNyUhUA" + }, { + "labelTypeId" : "_UV3-MPunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_UV3-OPunEfCYrdfxNyUhUA" + }, { + "labelTypeId" : "_UV3-MPunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_UV3-OfunEfCYrdfxNyUhUA" + }, { + "labelTypeId" : "_UV3-MPunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_UV3-OvunEfCYrdfxNyUhUA" + }, { + "labelTypeId" : "_UV3-MPunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_UV3-O_unEfCYrdfxNyUhUA" + }, { + "labelTypeId" : "_UV3-MPunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_UV3-PPunEfCYrdfxNyUhUA" + }, { + "labelTypeId" : "_UV3-MPunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_UV3-PfunEfCYrdfxNyUhUA" + }, { + "labelTypeId" : "_UV3-MPunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_UV3-PvunEfCYrdfxNyUhUA" + }, { + "labelTypeId" : "_UV3-MPunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_UV3-P_unEfCYrdfxNyUhUA" + }, { + "labelTypeId" : "_UV3-MPunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_UV3-QPunEfCYrdfxNyUhUA" + }, { + "labelTypeId" : "_UV3-MPunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_UV3-QfunEfCYrdfxNyUhUA" + }, { + "labelTypeId" : "_UV3-MPunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_UV3-QvunEfCYrdfxNyUhUA" + }, { + "labelTypeId" : "_UV3-MPunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_UV3-Q_unEfCYrdfxNyUhUA" + }, { + "labelTypeId" : "_UV3-MPunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_UV3-RPunEfCYrdfxNyUhUA" + }, { + "labelTypeId" : "_UV3-RvunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_UV3-RfunEfCYrdfxNyUhUA" + }, { + "labelTypeId" : "_UV3-SPunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_UV3-R_unEfCYrdfxNyUhUA" + }, { + "labelTypeId" : "_UV3-SvunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_UV3-SfunEfCYrdfxNyUhUA" + }, { + "labelTypeId" : "_UV3-TPunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_UV3-S_unEfCYrdfxNyUhUA" + }, { + "labelTypeId" : "_UV3-TvunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_UV3-TfunEfCYrdfxNyUhUA" + }, { + "labelTypeId" : "_UV3-UPunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_UV3-T_unEfCYrdfxNyUhUA" + }, { + "labelTypeId" : "_UV3-UvunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_UV3-UfunEfCYrdfxNyUhUA" + }, { + "labelTypeId" : "_UV3-VPunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_UV3-U_unEfCYrdfxNyUhUA" + }, { + "labelTypeId" : "_UV3-VvunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_UV3-VfunEfCYrdfxNyUhUA" + }, { + "labelTypeId" : "_UV3-WPunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_UV3-V_unEfCYrdfxNyUhUA" + }, { + "labelTypeId" : "_UV3-WvunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_UV3-WfunEfCYrdfxNyUhUA" + }, { + "labelTypeId" : "_UV3-XPunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_UV3-W_unEfCYrdfxNyUhUA" + }, { + "labelTypeId" : "_UV3-XvunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_UV3-XfunEfCYrdfxNyUhUA" + }, { + "labelTypeId" : "_UV3-YPunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_UV3-X_unEfCYrdfxNyUhUA" + }, { + "labelTypeId" : "_UV3-YvunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_UV3-YfunEfCYrdfxNyUhUA" + }, { + "labelTypeId" : "_UV3-ZPunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_UV3-Y_unEfCYrdfxNyUhUA" + }, { + "labelTypeId" : "_UV3-ZvunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_UV3-ZfunEfCYrdfxNyUhUA" + }, { + "labelTypeId" : "_UV3-aPunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_UV3-Z_unEfCYrdfxNyUhUA" + }, { + "labelTypeId" : "_UV3-avunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_UV3-afunEfCYrdfxNyUhUA" + }, { + "labelTypeId" : "_UV3-bPunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_UV3-a_unEfCYrdfxNyUhUA" + } ], + "ports" : [ { + "id" : "_UV5MXvunEfCYrdfxNyUhUA", + "type" : "port:dfd-input", + "children" : [ ] + }, { + "behavior" : "forward dummyFlow_2", + "id" : "_UV5MZfunEfCYrdfxNyUhUA", + "type" : "port:dfd-output", + "children" : [ ] + } ], + "annotations" : [ { + "message" : "Propagated: Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1367503763 + }, { + "message" : "Incoming: Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1367503763 + }, { + "message" : "Propagated: Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 62803825 + }, { + "message" : "Incoming: Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 62803825 + }, { + "message" : "Propagated: Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19, Stereotype.web_application, Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.encrypted_connection", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1550080835 + }, { + "message" : "Incoming: Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19, Stereotype.web_application, Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.encrypted_connection", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1550080835 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19, Stereotype.service_discovery, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1808884231 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19, Stereotype.service_discovery, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1808884231 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19, Stereotype.service_discovery, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 697145861 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19, Stereotype.service_discovery, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 697145861 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1480170882 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1480170882 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.jdbc", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 653880197 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.jdbc", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 653880197 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.gateway, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1188623367 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.gateway, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1188623367 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.gateway, Stereotype.load_balancer, Stereotype.web_application, Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.encrypted_connection", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 62915435 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.gateway, Stereotype.load_balancer, Stereotype.web_application, Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.encrypted_connection", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 62915435 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 394349340 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 394349340 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 2060037930 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 2060037930 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Queue.commudigalmicroservicessampleservicetwo, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 2075133112 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Queue.commudigalmicroservicessampleservicetwo, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 2075133112 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.jdbc, Username.servicetwo, Password.servicetwo", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 2028510206 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.jdbc, Username.servicetwo, Password.servicetwo", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 2028510206 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.gateway, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1697441364 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.gateway, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1697441364 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.gateway, Stereotype.load_balancer, Stereotype.web_application, Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.encrypted_connection", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1378592036 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.gateway, Stereotype.load_balancer, Stereotype.web_application, Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.encrypted_connection", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1378592036 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19, Stereotype.jdbc", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 700837405 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19, Stereotype.jdbc", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 700837405 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19, Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 365864880 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19, Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 365864880 + }, { + "message" : "Propagated: Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 399699227 + }, { + "message" : "Incoming: Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 399699227 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19, Stereotype.service_discovery, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 408909888 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19, Stereotype.service_discovery, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 408909888 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleservicetwo, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 510445648 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleservicetwo, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 510445648 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19, Stereotype.jdbc, Stereotype.plaintext_credentials_link, Username.servicetwo, Password.servicetwo", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 2122256138 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19, Stereotype.jdbc, Stereotype.plaintext_credentials_link, Username.servicetwo, Password.servicetwo", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 2122256138 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19, Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 2126876651 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19, Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 2126876651 + }, { + "message" : "Propagated: Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 498820363 + }, { + "message" : "Incoming: Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 498820363 + }, { + "message" : "Propagated: Stereotype.web_application, Stereotype.infrastructural, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19, Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.encrypted_connection", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1701646500 + }, { + "message" : "Incoming: Stereotype.web_application, Stereotype.infrastructural, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19, Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.encrypted_connection", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1701646500 + }, { + "message" : "Propagated: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1676428380 + }, { + "message" : "Incoming: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1676428380 + }, { + "message" : "Propagated: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 822359325 + }, { + "message" : "Incoming: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 822359325 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 2010221835 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 2010221835 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 2050247525 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 2050247525 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 2071674587 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 2071674587 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1799831668 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1799831668 + }, { + "message" : "Propagated: Stereotype.monitoring_dashboard, Stereotype.infrastructural, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19, Stereotype.search_engine, Stereotype.logging_server, Stereotype.internal, Stereotype.local_logging, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 277164482 + }, { + "message" : "Incoming: Stereotype.monitoring_dashboard, Stereotype.infrastructural, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19, Stereotype.search_engine, Stereotype.logging_server, Stereotype.internal, Stereotype.local_logging, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 277164482 + }, { + "message" : "Propagated: Stereotype.monitoring_dashboard, Stereotype.infrastructural, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19, Stereotype.search_engine, Stereotype.logging_server, Stereotype.internal, Stereotype.local_logging, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1219637204 + }, { + "message" : "Incoming: Stereotype.monitoring_dashboard, Stereotype.infrastructural, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19, Stereotype.search_engine, Stereotype.logging_server, Stereotype.internal, Stereotype.local_logging, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1219637204 + }, { + "message" : "Propagated: Stereotype.monitoring_dashboard, Stereotype.infrastructural, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19, Stereotype.search_engine, Stereotype.logging_server, Stereotype.internal, Stereotype.local_logging, Stereotype.jdbc", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1788698111 + }, { + "message" : "Incoming: Stereotype.monitoring_dashboard, Stereotype.infrastructural, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19, Stereotype.search_engine, Stereotype.logging_server, Stereotype.internal, Stereotype.local_logging, Stereotype.jdbc", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1788698111 + }, { + "message" : "Propagated: Stereotype.monitoring_dashboard, Stereotype.infrastructural, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19, Stereotype.search_engine, Stereotype.logging_server, Stereotype.internal, Stereotype.local_logging, Stereotype.gateway, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 990442552 + }, { + "message" : "Incoming: Stereotype.monitoring_dashboard, Stereotype.infrastructural, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19, Stereotype.search_engine, Stereotype.logging_server, Stereotype.internal, Stereotype.local_logging, Stereotype.gateway, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 990442552 + }, { + "message" : "Propagated: Stereotype.monitoring_dashboard, Stereotype.infrastructural, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19, Stereotype.search_engine, Stereotype.logging_server, Stereotype.internal, Stereotype.local_logging, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 45795770 + }, { + "message" : "Incoming: Stereotype.monitoring_dashboard, Stereotype.infrastructural, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19, Stereotype.search_engine, Stereotype.logging_server, Stereotype.internal, Stereotype.local_logging, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 45795770 + }, { + "message" : "Propagated: Stereotype.monitoring_dashboard, Stereotype.infrastructural, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19, Stereotype.search_engine, Stereotype.logging_server, Stereotype.internal, Stereotype.local_logging, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleservicetwo, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1529842358 + }, { + "message" : "Incoming: Stereotype.monitoring_dashboard, Stereotype.infrastructural, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19, Stereotype.search_engine, Stereotype.logging_server, Stereotype.internal, Stereotype.local_logging, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleservicetwo, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1529842358 + }, { + "message" : "Propagated: Stereotype.monitoring_dashboard, Stereotype.infrastructural, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19, Stereotype.search_engine, Stereotype.logging_server, Stereotype.internal, Stereotype.local_logging, Stereotype.jdbc, Stereotype.plaintext_credentials_link, Username.servicetwo, Password.servicetwo", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1541232265 + }, { + "message" : "Incoming: Stereotype.monitoring_dashboard, Stereotype.infrastructural, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19, Stereotype.search_engine, Stereotype.logging_server, Stereotype.internal, Stereotype.local_logging, Stereotype.jdbc, Stereotype.plaintext_credentials_link, Username.servicetwo, Password.servicetwo", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1541232265 + }, { + "message" : "Propagated: Stereotype.monitoring_dashboard, Stereotype.infrastructural, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19, Stereotype.search_engine, Stereotype.logging_server, Stereotype.internal, Stereotype.local_logging, Stereotype.gateway, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 663277822 + }, { + "message" : "Incoming: Stereotype.monitoring_dashboard, Stereotype.infrastructural, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19, Stereotype.search_engine, Stereotype.logging_server, Stereotype.internal, Stereotype.local_logging, Stereotype.gateway, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 663277822 + }, { + "message" : "Propagated: Stereotype.search_engine, Stereotype.infrastructural, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19, Stereotype.logging_server, Stereotype.internal, Stereotype.local_logging, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1940601516 + }, { + "message" : "Incoming: Stereotype.search_engine, Stereotype.infrastructural, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19, Stereotype.logging_server, Stereotype.internal, Stereotype.local_logging, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1940601516 + }, { + "message" : "Propagated: Stereotype.logging_server, Stereotype.infrastructural, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19, Stereotype.internal, Stereotype.local_logging, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1425433685 + }, { + "message" : "Incoming: Stereotype.logging_server, Stereotype.infrastructural, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19, Stereotype.internal, Stereotype.local_logging, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1425433685 + }, { + "message" : "Propagated: Stereotype.logging_server, Stereotype.infrastructural, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19, Stereotype.internal, Stereotype.local_logging, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1705904476 + }, { + "message" : "Incoming: Stereotype.logging_server, Stereotype.infrastructural, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19, Stereotype.internal, Stereotype.local_logging, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1705904476 + }, { + "message" : "Propagated: Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 79706679 + }, { + "message" : "Incoming: Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 79706679 + }, { + "message" : "Propagated: Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 773066329 + }, { + "message" : "Incoming: Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 773066329 + }, { + "message" : "Propagated: Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1235686146 + }, { + "message" : "Incoming: Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1235686146 + }, { + "message" : "Propagated: Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1557534595 + }, { + "message" : "Incoming: Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1557534595 + }, { + "message" : "Propagated: Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1497538476 + }, { + "message" : "Incoming: Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1497538476 + } ], + "children" : [ ], + "position" : { + "x" : 0.0, + "y" : 0.0 + }, + "size" : null + }, { + "text" : "dummyNode_3", + "id" : "_UV5MYvunEfCYrdfxNyUhUA", + "type" : "node:storage", + "labels" : [ { + "labelTypeId" : "17", + "labelTypeValueId" : "69" + }, { + "labelTypeId" : "17", + "labelTypeValueId" : "27" + }, { + "labelTypeId" : "70", + "labelTypeValueId" : "71" + }, { + "labelTypeId" : "22", + "labelTypeValueId" : "72" + }, { + "labelTypeId" : "_UV3-MPunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_UV3-MfunEfCYrdfxNyUhUA" + }, { + "labelTypeId" : "_UV3-MPunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_UV3-MvunEfCYrdfxNyUhUA" + }, { + "labelTypeId" : "_UV3-MPunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_UV3-M_unEfCYrdfxNyUhUA" + }, { + "labelTypeId" : "_UV3-MPunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_UV3-NPunEfCYrdfxNyUhUA" + }, { + "labelTypeId" : "_UV3-MPunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_UV3-NfunEfCYrdfxNyUhUA" + }, { + "labelTypeId" : "_UV3-MPunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_UV3-NvunEfCYrdfxNyUhUA" + }, { + "labelTypeId" : "_UV3-MPunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_UV3-N_unEfCYrdfxNyUhUA" + }, { + "labelTypeId" : "_UV3-MPunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_UV3-OPunEfCYrdfxNyUhUA" + }, { + "labelTypeId" : "_UV3-MPunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_UV3-OfunEfCYrdfxNyUhUA" + }, { + "labelTypeId" : "_UV3-MPunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_UV3-OvunEfCYrdfxNyUhUA" + }, { + "labelTypeId" : "_UV3-MPunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_UV3-O_unEfCYrdfxNyUhUA" + }, { + "labelTypeId" : "_UV3-MPunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_UV3-PPunEfCYrdfxNyUhUA" + }, { + "labelTypeId" : "_UV3-MPunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_UV3-PfunEfCYrdfxNyUhUA" + }, { + "labelTypeId" : "_UV3-MPunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_UV3-PvunEfCYrdfxNyUhUA" + }, { + "labelTypeId" : "_UV3-MPunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_UV3-P_unEfCYrdfxNyUhUA" + }, { + "labelTypeId" : "_UV3-MPunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_UV3-QPunEfCYrdfxNyUhUA" + }, { + "labelTypeId" : "_UV3-MPunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_UV3-QfunEfCYrdfxNyUhUA" + }, { + "labelTypeId" : "_UV3-MPunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_UV3-QvunEfCYrdfxNyUhUA" + }, { + "labelTypeId" : "_UV3-MPunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_UV3-Q_unEfCYrdfxNyUhUA" + }, { + "labelTypeId" : "_UV3-MPunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_UV3-RPunEfCYrdfxNyUhUA" + }, { + "labelTypeId" : "_UV3-RvunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_UV3-RfunEfCYrdfxNyUhUA" + }, { + "labelTypeId" : "_UV3-SPunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_UV3-R_unEfCYrdfxNyUhUA" + }, { + "labelTypeId" : "_UV3-SvunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_UV3-SfunEfCYrdfxNyUhUA" + }, { + "labelTypeId" : "_UV3-TPunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_UV3-S_unEfCYrdfxNyUhUA" + }, { + "labelTypeId" : "_UV3-TvunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_UV3-TfunEfCYrdfxNyUhUA" + }, { + "labelTypeId" : "_UV3-UPunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_UV3-T_unEfCYrdfxNyUhUA" + }, { + "labelTypeId" : "_UV3-UvunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_UV3-UfunEfCYrdfxNyUhUA" + }, { + "labelTypeId" : "_UV3-VPunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_UV3-U_unEfCYrdfxNyUhUA" + }, { + "labelTypeId" : "_UV3-VvunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_UV3-VfunEfCYrdfxNyUhUA" + }, { + "labelTypeId" : "_UV3-WPunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_UV3-V_unEfCYrdfxNyUhUA" + }, { + "labelTypeId" : "_UV3-WvunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_UV3-WfunEfCYrdfxNyUhUA" + }, { + "labelTypeId" : "_UV3-XPunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_UV3-W_unEfCYrdfxNyUhUA" + }, { + "labelTypeId" : "_UV3-XvunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_UV3-XfunEfCYrdfxNyUhUA" + }, { + "labelTypeId" : "_UV3-YPunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_UV3-X_unEfCYrdfxNyUhUA" + }, { + "labelTypeId" : "_UV3-YvunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_UV3-YfunEfCYrdfxNyUhUA" + }, { + "labelTypeId" : "_UV3-ZPunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_UV3-Y_unEfCYrdfxNyUhUA" + }, { + "labelTypeId" : "_UV3-ZvunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_UV3-ZfunEfCYrdfxNyUhUA" + }, { + "labelTypeId" : "_UV3-aPunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_UV3-Z_unEfCYrdfxNyUhUA" + }, { + "labelTypeId" : "_UV3-avunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_UV3-afunEfCYrdfxNyUhUA" + }, { + "labelTypeId" : "_UV3-bPunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_UV3-a_unEfCYrdfxNyUhUA" + } ], + "ports" : [ { + "id" : "_UV5MZPunEfCYrdfxNyUhUA", + "type" : "port:dfd-input", + "children" : [ ] + }, { + "behavior" : "forward dummyFlow_3", + "id" : "_UV5Ma_unEfCYrdfxNyUhUA", + "type" : "port:dfd-output", + "children" : [ ] + }, { + "behavior" : "forward dummyFlow_3", + "id" : "_UV5zYfunEfCYrdfxNyUhUA", + "type" : "port:dfd-output", + "children" : [ ] + }, { + "behavior" : "forward dummyFlow_3", + "id" : "_UV5zZPunEfCYrdfxNyUhUA", + "type" : "port:dfd-output", + "children" : [ ] + }, { + "behavior" : "forward dummyFlow_3", + "id" : "_UV5zZ_unEfCYrdfxNyUhUA", + "type" : "port:dfd-output", + "children" : [ ] + }, { + "behavior" : "forward dummyFlow_3", + "id" : "_UV5zavunEfCYrdfxNyUhUA", + "type" : "port:dfd-output", + "children" : [ ] + }, { + "behavior" : "forward dummyFlow_3", + "id" : "_UV5zbfunEfCYrdfxNyUhUA", + "type" : "port:dfd-output", + "children" : [ ] + } ], + "annotations" : [ { + "message" : "Propagated: Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1367503763 + }, { + "message" : "Incoming: Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1367503763 + }, { + "message" : "Propagated: Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 62803825 + }, { + "message" : "Incoming: Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 62803825 + }, { + "message" : "Propagated: Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19, Stereotype.web_application, Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.encrypted_connection", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1550080835 + }, { + "message" : "Incoming: Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19, Stereotype.web_application, Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.encrypted_connection", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1550080835 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19, Stereotype.service_discovery, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1808884231 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19, Stereotype.service_discovery, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1808884231 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19, Stereotype.service_discovery, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 697145861 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19, Stereotype.service_discovery, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 697145861 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1480170882 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1480170882 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.jdbc", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 653880197 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.jdbc", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 653880197 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.gateway, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1188623367 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.gateway, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1188623367 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.gateway, Stereotype.load_balancer, Stereotype.web_application, Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.encrypted_connection", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 62915435 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.gateway, Stereotype.load_balancer, Stereotype.web_application, Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.encrypted_connection", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 62915435 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 394349340 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 394349340 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 2060037930 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 2060037930 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Queue.commudigalmicroservicessampleservicetwo, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 2075133112 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Queue.commudigalmicroservicessampleservicetwo, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 2075133112 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.jdbc, Username.servicetwo, Password.servicetwo", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 2028510206 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.jdbc, Username.servicetwo, Password.servicetwo", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 2028510206 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.gateway, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1697441364 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.gateway, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1697441364 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.gateway, Stereotype.load_balancer, Stereotype.web_application, Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.encrypted_connection", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1378592036 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.gateway, Stereotype.load_balancer, Stereotype.web_application, Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.encrypted_connection", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1378592036 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19, Stereotype.jdbc", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 700837405 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19, Stereotype.jdbc", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 700837405 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19, Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 365864880 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19, Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 365864880 + }, { + "message" : "Propagated: Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 399699227 + }, { + "message" : "Incoming: Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 399699227 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19, Stereotype.service_discovery, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 408909888 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19, Stereotype.service_discovery, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 408909888 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleservicetwo, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 510445648 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleservicetwo, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 510445648 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19, Stereotype.jdbc, Stereotype.plaintext_credentials_link, Username.servicetwo, Password.servicetwo", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 2122256138 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19, Stereotype.jdbc, Stereotype.plaintext_credentials_link, Username.servicetwo, Password.servicetwo", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 2122256138 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19, Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 2126876651 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19, Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 2126876651 + }, { + "message" : "Propagated: Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 498820363 + }, { + "message" : "Incoming: Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 498820363 + }, { + "message" : "Propagated: Stereotype.web_application, Stereotype.infrastructural, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19, Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.encrypted_connection", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1701646500 + }, { + "message" : "Incoming: Stereotype.web_application, Stereotype.infrastructural, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19, Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.encrypted_connection", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1701646500 + }, { + "message" : "Propagated: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1676428380 + }, { + "message" : "Incoming: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1676428380 + }, { + "message" : "Propagated: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 822359325 + }, { + "message" : "Incoming: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 822359325 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 2010221835 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 2010221835 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 2050247525 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 2050247525 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 2071674587 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 2071674587 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1799831668 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1799831668 + }, { + "message" : "Propagated: Stereotype.monitoring_dashboard, Stereotype.infrastructural, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19, Stereotype.search_engine, Stereotype.logging_server, Stereotype.internal, Stereotype.local_logging, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 277164482 + }, { + "message" : "Incoming: Stereotype.monitoring_dashboard, Stereotype.infrastructural, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19, Stereotype.search_engine, Stereotype.logging_server, Stereotype.internal, Stereotype.local_logging, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 277164482 + }, { + "message" : "Propagated: Stereotype.monitoring_dashboard, Stereotype.infrastructural, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19, Stereotype.search_engine, Stereotype.logging_server, Stereotype.internal, Stereotype.local_logging, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1219637204 + }, { + "message" : "Incoming: Stereotype.monitoring_dashboard, Stereotype.infrastructural, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19, Stereotype.search_engine, Stereotype.logging_server, Stereotype.internal, Stereotype.local_logging, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1219637204 + }, { + "message" : "Propagated: Stereotype.monitoring_dashboard, Stereotype.infrastructural, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19, Stereotype.search_engine, Stereotype.logging_server, Stereotype.internal, Stereotype.local_logging, Stereotype.jdbc", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1788698111 + }, { + "message" : "Incoming: Stereotype.monitoring_dashboard, Stereotype.infrastructural, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19, Stereotype.search_engine, Stereotype.logging_server, Stereotype.internal, Stereotype.local_logging, Stereotype.jdbc", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1788698111 + }, { + "message" : "Propagated: Stereotype.monitoring_dashboard, Stereotype.infrastructural, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19, Stereotype.search_engine, Stereotype.logging_server, Stereotype.internal, Stereotype.local_logging, Stereotype.gateway, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 990442552 + }, { + "message" : "Incoming: Stereotype.monitoring_dashboard, Stereotype.infrastructural, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19, Stereotype.search_engine, Stereotype.logging_server, Stereotype.internal, Stereotype.local_logging, Stereotype.gateway, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 990442552 + }, { + "message" : "Propagated: Stereotype.monitoring_dashboard, Stereotype.infrastructural, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19, Stereotype.search_engine, Stereotype.logging_server, Stereotype.internal, Stereotype.local_logging, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 45795770 + }, { + "message" : "Incoming: Stereotype.monitoring_dashboard, Stereotype.infrastructural, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19, Stereotype.search_engine, Stereotype.logging_server, Stereotype.internal, Stereotype.local_logging, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 45795770 + }, { + "message" : "Propagated: Stereotype.monitoring_dashboard, Stereotype.infrastructural, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19, Stereotype.search_engine, Stereotype.logging_server, Stereotype.internal, Stereotype.local_logging, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleservicetwo, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1529842358 + }, { + "message" : "Incoming: Stereotype.monitoring_dashboard, Stereotype.infrastructural, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19, Stereotype.search_engine, Stereotype.logging_server, Stereotype.internal, Stereotype.local_logging, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleservicetwo, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1529842358 + }, { + "message" : "Propagated: Stereotype.monitoring_dashboard, Stereotype.infrastructural, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19, Stereotype.search_engine, Stereotype.logging_server, Stereotype.internal, Stereotype.local_logging, Stereotype.jdbc, Stereotype.plaintext_credentials_link, Username.servicetwo, Password.servicetwo", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1541232265 + }, { + "message" : "Incoming: Stereotype.monitoring_dashboard, Stereotype.infrastructural, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19, Stereotype.search_engine, Stereotype.logging_server, Stereotype.internal, Stereotype.local_logging, Stereotype.jdbc, Stereotype.plaintext_credentials_link, Username.servicetwo, Password.servicetwo", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1541232265 + }, { + "message" : "Propagated: Stereotype.monitoring_dashboard, Stereotype.infrastructural, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19, Stereotype.search_engine, Stereotype.logging_server, Stereotype.internal, Stereotype.local_logging, Stereotype.gateway, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 663277822 + }, { + "message" : "Incoming: Stereotype.monitoring_dashboard, Stereotype.infrastructural, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19, Stereotype.search_engine, Stereotype.logging_server, Stereotype.internal, Stereotype.local_logging, Stereotype.gateway, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 663277822 + }, { + "message" : "Propagated: Stereotype.search_engine, Stereotype.infrastructural, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19, Stereotype.logging_server, Stereotype.internal, Stereotype.local_logging, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1940601516 + }, { + "message" : "Incoming: Stereotype.search_engine, Stereotype.infrastructural, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19, Stereotype.logging_server, Stereotype.internal, Stereotype.local_logging, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1940601516 + }, { + "message" : "Propagated: Stereotype.logging_server, Stereotype.infrastructural, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19, Stereotype.internal, Stereotype.local_logging, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1425433685 + }, { + "message" : "Incoming: Stereotype.logging_server, Stereotype.infrastructural, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19, Stereotype.internal, Stereotype.local_logging, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1425433685 + }, { + "message" : "Propagated: Stereotype.logging_server, Stereotype.infrastructural, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19, Stereotype.internal, Stereotype.local_logging, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1705904476 + }, { + "message" : "Incoming: Stereotype.logging_server, Stereotype.infrastructural, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19, Stereotype.internal, Stereotype.local_logging, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1705904476 + }, { + "message" : "Propagated: Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 79706679 + }, { + "message" : "Incoming: Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 79706679 + }, { + "message" : "Propagated: Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 773066329 + }, { + "message" : "Incoming: Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 773066329 + }, { + "message" : "Propagated: Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1235686146 + }, { + "message" : "Incoming: Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1235686146 + }, { + "message" : "Propagated: Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1557534595 + }, { + "message" : "Incoming: Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1557534595 + }, { + "message" : "Propagated: Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1497538476 + }, { + "message" : "Incoming: Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1497538476 + } ], + "children" : [ ], + "position" : { + "x" : 0.0, + "y" : 0.0 + }, + "size" : null + }, { + "text" : "dummyNode_4", + "id" : "_UV5MaPunEfCYrdfxNyUhUA", + "type" : "node:storage", + "labels" : [ { + "labelTypeId" : "17", + "labelTypeValueId" : "69" + }, { + "labelTypeId" : "17", + "labelTypeValueId" : "27" + }, { + "labelTypeId" : "70", + "labelTypeValueId" : "71" + }, { + "labelTypeId" : "22", + "labelTypeValueId" : "72" + }, { + "labelTypeId" : "_UV3-MPunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_UV3-MfunEfCYrdfxNyUhUA" + }, { + "labelTypeId" : "_UV3-MPunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_UV3-MvunEfCYrdfxNyUhUA" + }, { + "labelTypeId" : "_UV3-MPunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_UV3-M_unEfCYrdfxNyUhUA" + }, { + "labelTypeId" : "_UV3-MPunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_UV3-NPunEfCYrdfxNyUhUA" + }, { + "labelTypeId" : "_UV3-MPunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_UV3-NfunEfCYrdfxNyUhUA" + }, { + "labelTypeId" : "_UV3-MPunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_UV3-NvunEfCYrdfxNyUhUA" + }, { + "labelTypeId" : "_UV3-MPunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_UV3-N_unEfCYrdfxNyUhUA" + }, { + "labelTypeId" : "_UV3-MPunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_UV3-OPunEfCYrdfxNyUhUA" + }, { + "labelTypeId" : "_UV3-MPunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_UV3-OfunEfCYrdfxNyUhUA" + }, { + "labelTypeId" : "_UV3-MPunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_UV3-OvunEfCYrdfxNyUhUA" + }, { + "labelTypeId" : "_UV3-MPunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_UV3-O_unEfCYrdfxNyUhUA" + }, { + "labelTypeId" : "_UV3-MPunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_UV3-PPunEfCYrdfxNyUhUA" + }, { + "labelTypeId" : "_UV3-MPunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_UV3-PfunEfCYrdfxNyUhUA" + }, { + "labelTypeId" : "_UV3-MPunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_UV3-PvunEfCYrdfxNyUhUA" + }, { + "labelTypeId" : "_UV3-MPunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_UV3-P_unEfCYrdfxNyUhUA" + }, { + "labelTypeId" : "_UV3-MPunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_UV3-QPunEfCYrdfxNyUhUA" + }, { + "labelTypeId" : "_UV3-MPunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_UV3-QfunEfCYrdfxNyUhUA" + }, { + "labelTypeId" : "_UV3-MPunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_UV3-QvunEfCYrdfxNyUhUA" + }, { + "labelTypeId" : "_UV3-MPunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_UV3-Q_unEfCYrdfxNyUhUA" + }, { + "labelTypeId" : "_UV3-MPunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_UV3-RPunEfCYrdfxNyUhUA" + }, { + "labelTypeId" : "_UV3-RvunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_UV3-RfunEfCYrdfxNyUhUA" + }, { + "labelTypeId" : "_UV3-SPunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_UV3-R_unEfCYrdfxNyUhUA" + }, { + "labelTypeId" : "_UV3-SvunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_UV3-SfunEfCYrdfxNyUhUA" + }, { + "labelTypeId" : "_UV3-TPunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_UV3-S_unEfCYrdfxNyUhUA" + }, { + "labelTypeId" : "_UV3-TvunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_UV3-TfunEfCYrdfxNyUhUA" + }, { + "labelTypeId" : "_UV3-UPunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_UV3-T_unEfCYrdfxNyUhUA" + }, { + "labelTypeId" : "_UV3-UvunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_UV3-UfunEfCYrdfxNyUhUA" + }, { + "labelTypeId" : "_UV3-VPunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_UV3-U_unEfCYrdfxNyUhUA" + }, { + "labelTypeId" : "_UV3-VvunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_UV3-VfunEfCYrdfxNyUhUA" + }, { + "labelTypeId" : "_UV3-WPunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_UV3-V_unEfCYrdfxNyUhUA" + }, { + "labelTypeId" : "_UV3-WvunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_UV3-WfunEfCYrdfxNyUhUA" + }, { + "labelTypeId" : "_UV3-XPunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_UV3-W_unEfCYrdfxNyUhUA" + }, { + "labelTypeId" : "_UV3-XvunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_UV3-XfunEfCYrdfxNyUhUA" + }, { + "labelTypeId" : "_UV3-YPunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_UV3-X_unEfCYrdfxNyUhUA" + }, { + "labelTypeId" : "_UV3-YvunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_UV3-YfunEfCYrdfxNyUhUA" + }, { + "labelTypeId" : "_UV3-ZPunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_UV3-Y_unEfCYrdfxNyUhUA" + }, { + "labelTypeId" : "_UV3-ZvunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_UV3-ZfunEfCYrdfxNyUhUA" + }, { + "labelTypeId" : "_UV3-aPunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_UV3-Z_unEfCYrdfxNyUhUA" + }, { + "labelTypeId" : "_UV3-avunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_UV3-afunEfCYrdfxNyUhUA" + }, { + "labelTypeId" : "_UV3-bPunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_UV3-a_unEfCYrdfxNyUhUA" + } ], + "ports" : [ { + "id" : "_UV5MavunEfCYrdfxNyUhUA", + "type" : "port:dfd-input", + "children" : [ ] + } ], + "annotations" : [ { + "message" : "Incoming: Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1367503763 + }, { + "message" : "Incoming: Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 62803825 + }, { + "message" : "Incoming: Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19, Stereotype.web_application, Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.encrypted_connection", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1550080835 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19, Stereotype.service_discovery, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1808884231 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19, Stereotype.service_discovery, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 697145861 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1480170882 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.jdbc", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 653880197 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.gateway, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1188623367 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.gateway, Stereotype.load_balancer, Stereotype.web_application, Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.encrypted_connection", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 62915435 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 394349340 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 2060037930 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Queue.commudigalmicroservicessampleservicetwo, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 2075133112 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.jdbc, Username.servicetwo, Password.servicetwo", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 2028510206 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.gateway, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1697441364 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.gateway, Stereotype.load_balancer, Stereotype.web_application, Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.encrypted_connection", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1378592036 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19, Stereotype.jdbc", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 700837405 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19, Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 365864880 + }, { + "message" : "Incoming: Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 399699227 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19, Stereotype.service_discovery, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 408909888 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleservicetwo, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 510445648 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19, Stereotype.jdbc, Stereotype.plaintext_credentials_link, Username.servicetwo, Password.servicetwo", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 2122256138 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19, Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 2126876651 + }, { + "message" : "Incoming: Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 498820363 + }, { + "message" : "Incoming: Stereotype.web_application, Stereotype.infrastructural, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19, Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.encrypted_connection", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1701646500 + }, { + "message" : "Incoming: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1676428380 + }, { + "message" : "Incoming: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 822359325 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 2010221835 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 2050247525 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 2071674587 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1799831668 + }, { + "message" : "Incoming: Stereotype.monitoring_dashboard, Stereotype.infrastructural, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19, Stereotype.search_engine, Stereotype.logging_server, Stereotype.internal, Stereotype.local_logging, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 277164482 + }, { + "message" : "Incoming: Stereotype.monitoring_dashboard, Stereotype.infrastructural, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19, Stereotype.search_engine, Stereotype.logging_server, Stereotype.internal, Stereotype.local_logging, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1219637204 + }, { + "message" : "Incoming: Stereotype.monitoring_dashboard, Stereotype.infrastructural, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19, Stereotype.search_engine, Stereotype.logging_server, Stereotype.internal, Stereotype.local_logging, Stereotype.jdbc", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1788698111 + }, { + "message" : "Incoming: Stereotype.monitoring_dashboard, Stereotype.infrastructural, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19, Stereotype.search_engine, Stereotype.logging_server, Stereotype.internal, Stereotype.local_logging, Stereotype.gateway, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 990442552 + }, { + "message" : "Incoming: Stereotype.monitoring_dashboard, Stereotype.infrastructural, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19, Stereotype.search_engine, Stereotype.logging_server, Stereotype.internal, Stereotype.local_logging, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 45795770 + }, { + "message" : "Incoming: Stereotype.monitoring_dashboard, Stereotype.infrastructural, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19, Stereotype.search_engine, Stereotype.logging_server, Stereotype.internal, Stereotype.local_logging, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleservicetwo, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1529842358 + }, { + "message" : "Incoming: Stereotype.monitoring_dashboard, Stereotype.infrastructural, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19, Stereotype.search_engine, Stereotype.logging_server, Stereotype.internal, Stereotype.local_logging, Stereotype.jdbc, Stereotype.plaintext_credentials_link, Username.servicetwo, Password.servicetwo", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1541232265 + }, { + "message" : "Incoming: Stereotype.monitoring_dashboard, Stereotype.infrastructural, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19, Stereotype.search_engine, Stereotype.logging_server, Stereotype.internal, Stereotype.local_logging, Stereotype.gateway, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 663277822 + }, { + "message" : "Incoming: Stereotype.search_engine, Stereotype.infrastructural, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19, Stereotype.logging_server, Stereotype.internal, Stereotype.local_logging, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1940601516 + }, { + "message" : "Incoming: Stereotype.logging_server, Stereotype.infrastructural, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19, Stereotype.internal, Stereotype.local_logging, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1425433685 + }, { + "message" : "Incoming: Stereotype.logging_server, Stereotype.infrastructural, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19, Stereotype.internal, Stereotype.local_logging, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1705904476 + }, { + "message" : "Incoming: Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 79706679 + }, { + "message" : "Incoming: Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 773066329 + }, { + "message" : "Incoming: Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1235686146 + }, { + "message" : "Incoming: Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1557534595 + }, { + "message" : "Incoming: Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, dummyCategory.dummy_2, dummyCategory.dummy_3, dummyCategory.dummy_4, dummyCategory.dummy_5, dummyCategory.dummy_6, dummyCategory.dummy_7, dummyCategory.dummy_8, dummyCategory.dummy_9, dummyCategory.dummy_10, dummyCategory.dummy_11, dummyCategory.dummy_12, dummyCategory.dummy_13, dummyCategory.dummy_14, dummyCategory.dummy_15, dummyCategory.dummy_16, dummyCategory.dummy_17, dummyCategory.dummy_18, dummyCategory.dummy_19, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, dummyType_2.dummyLabelofType_2, dummyType_3.dummyLabelofType_3, dummyType_4.dummyLabelofType_4, dummyType_5.dummyLabelofType_5, dummyType_6.dummyLabelofType_6, dummyType_7.dummyLabelofType_7, dummyType_8.dummyLabelofType_8, dummyType_9.dummyLabelofType_9, dummyType_10.dummyLabelofType_10, dummyType_11.dummyLabelofType_11, dummyType_12.dummyLabelofType_12, dummyType_13.dummyLabelofType_13, dummyType_14.dummyLabelofType_14, dummyType_15.dummyLabelofType_15, dummyType_16.dummyLabelofType_16, dummyType_17.dummyLabelofType_17, dummyType_18.dummyLabelofType_18, dummyType_19.dummyLabelofType_19, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1497538476 + } ], + "children" : [ ], + "position" : { + "x" : 0.0, + "y" : 0.0 + }, + "size" : null + } ] + }, + "labelTypes" : [ { + "id" : "17", + "name" : "Stereotype", + "values" : [ { + "id" : "20", + "text" : "internal" + }, { + "id" : "21", + "text" : "local_logging" + }, { + "id" : "26", + "text" : "logging_server" + }, { + "id" : "27", + "text" : "infrastructural" + }, { + "id" : "37", + "text" : "web_application" + }, { + "id" : "43", + "text" : "search_engine" + }, { + "id" : "52", + "text" : "service_discovery" + }, { + "id" : "58", + "text" : "message_broker" + }, { + "id" : "59", + "text" : "plaintext_credentials" + }, { + "id" : "69", + "text" : "monitoring_dashboard" + }, { + "id" : "75", + "text" : "gateway" + }, { + "id" : "76", + "text" : "load_balancer" + }, { + "id" : "93", + "text" : "user_stereotype" + }, { + "id" : "94", + "text" : "entrypoint" + }, { + "id" : "95", + "text" : "exitpoint" + }, { + "id" : "101", + "text" : "restful_http" + }, { + "id" : "122", + "text" : "message_producer_rabbitmq" + }, { + "id" : "123", + "text" : "plaintext_credentials_link" + }, { + "id" : "130", + "text" : "message_consumer_rabbitmq" + }, { + "id" : "145", + "text" : "jdbc" + }, { + "id" : "160", + "text" : "encrypted_connection" + } ] + }, { + "id" : "22", + "name" : "Port", + "values" : [ { + "id" : "23", + "text" : "8082" + }, { + "id" : "28", + "text" : "5000" + }, { + "id" : "38", + "text" : "4200" + }, { + "id" : "46", + "text" : "9200" + }, { + "id" : "49", + "text" : "8084" + }, { + "id" : "53", + "text" : "8500" + }, { + "id" : "64", + "text" : "15672" + }, { + "id" : "72", + "text" : "4040" + }, { + "id" : "79", + "text" : "8080" + }, { + "id" : "87", + "text" : "5601" + } ] + }, { + "id" : "29", + "name" : "LoggingServer", + "values" : [ { + "id" : "30", + "text" : "Logstash" + } ] + }, { + "id" : "33", + "name" : "Process", + "values" : [ { + "id" : "34", + "text" : "service_two_db" + }, { + "id" : "90", + "text" : "service_one_db" + } ] + }, { + "id" : "39", + "name" : "WebApplication", + "values" : [ { + "id" : "40", + "text" : "Nginx" + } ] + }, { + "id" : "44", + "name" : "SearchEngine", + "values" : [ { + "id" : "45", + "text" : "Elasticsearch" + } ] + }, { + "id" : "54", + "name" : "ServiceDiscovery", + "values" : [ { + "id" : "55", + "text" : "Consul" + } ] + }, { + "id" : "60", + "name" : "MessageBroker", + "values" : [ { + "id" : "61", + "text" : "RabbitMQ" + } ] + }, { + "id" : "62", + "name" : "Username", + "values" : [ { + "id" : "63", + "text" : "mudigal" + }, { + "id" : "148", + "text" : "servicetwo" + } ] + }, { + "id" : "65", + "name" : "Password", + "values" : [ { + "id" : "66", + "text" : "mudigal" + }, { + "id" : "149", + "text" : "servicetwo" + } ] + }, { + "id" : "70", + "name" : "MonitoringDashboard", + "values" : [ { + "id" : "71", + "text" : "WeaveScope" + }, { + "id" : "86", + "text" : "Kibana" + } ] + }, { + "id" : "77", + "name" : "Gateway", + "values" : [ { + "id" : "78", + "text" : "Zuul" + } ] + }, { + "id" : "80", + "name" : "LoadBalancer", + "values" : [ { + "id" : "81", + "text" : "Ribbon" + } ] + }, { + "id" : "124", + "name" : "RoutingKey", + "values" : [ { + "id" : "125", + "text" : "commudigalmicroservicessampleservice" + } ] + }, { + "id" : "126", + "name" : "ProducerExchange", + "values" : [ { + "id" : "127", + "text" : "commudigalmicroservicessampleservicesexchange" + } ] + }, { + "id" : "131", + "name" : "Queue", + "values" : [ { + "id" : "132", + "text" : "commudigalmicroservicessampleserviceone" + }, { + "id" : "142", + "text" : "commudigalmicroservicessampleservicetwo" + } ] + }, { + "id" : "_UV3-MPunEfCYrdfxNyUhUA", + "name" : "dummyCategory", + "values" : [ { + "id" : "_UV3-MfunEfCYrdfxNyUhUA", + "text" : "dummy_0" + }, { + "id" : "_UV3-MvunEfCYrdfxNyUhUA", + "text" : "dummy_1" + }, { + "id" : "_UV3-M_unEfCYrdfxNyUhUA", + "text" : "dummy_2" + }, { + "id" : "_UV3-NPunEfCYrdfxNyUhUA", + "text" : "dummy_3" + }, { + "id" : "_UV3-NfunEfCYrdfxNyUhUA", + "text" : "dummy_4" + }, { + "id" : "_UV3-NvunEfCYrdfxNyUhUA", + "text" : "dummy_5" + }, { + "id" : "_UV3-N_unEfCYrdfxNyUhUA", + "text" : "dummy_6" + }, { + "id" : "_UV3-OPunEfCYrdfxNyUhUA", + "text" : "dummy_7" + }, { + "id" : "_UV3-OfunEfCYrdfxNyUhUA", + "text" : "dummy_8" + }, { + "id" : "_UV3-OvunEfCYrdfxNyUhUA", + "text" : "dummy_9" + }, { + "id" : "_UV3-O_unEfCYrdfxNyUhUA", + "text" : "dummy_10" + }, { + "id" : "_UV3-PPunEfCYrdfxNyUhUA", + "text" : "dummy_11" + }, { + "id" : "_UV3-PfunEfCYrdfxNyUhUA", + "text" : "dummy_12" + }, { + "id" : "_UV3-PvunEfCYrdfxNyUhUA", + "text" : "dummy_13" + }, { + "id" : "_UV3-P_unEfCYrdfxNyUhUA", + "text" : "dummy_14" + }, { + "id" : "_UV3-QPunEfCYrdfxNyUhUA", + "text" : "dummy_15" + }, { + "id" : "_UV3-QfunEfCYrdfxNyUhUA", + "text" : "dummy_16" + }, { + "id" : "_UV3-QvunEfCYrdfxNyUhUA", + "text" : "dummy_17" + }, { + "id" : "_UV3-Q_unEfCYrdfxNyUhUA", + "text" : "dummy_18" + }, { + "id" : "_UV3-RPunEfCYrdfxNyUhUA", + "text" : "dummy_19" + } ] + }, { + "id" : "_UV3-RvunEfCYrdfxNyUhUA", + "name" : "dummyType_0", + "values" : [ { + "id" : "_UV3-RfunEfCYrdfxNyUhUA", + "text" : "dummyLabelofType_0" + } ] + }, { + "id" : "_UV3-SPunEfCYrdfxNyUhUA", + "name" : "dummyType_1", + "values" : [ { + "id" : "_UV3-R_unEfCYrdfxNyUhUA", + "text" : "dummyLabelofType_1" + } ] + }, { + "id" : "_UV3-SvunEfCYrdfxNyUhUA", + "name" : "dummyType_2", + "values" : [ { + "id" : "_UV3-SfunEfCYrdfxNyUhUA", + "text" : "dummyLabelofType_2" + } ] + }, { + "id" : "_UV3-TPunEfCYrdfxNyUhUA", + "name" : "dummyType_3", + "values" : [ { + "id" : "_UV3-S_unEfCYrdfxNyUhUA", + "text" : "dummyLabelofType_3" + } ] + }, { + "id" : "_UV3-TvunEfCYrdfxNyUhUA", + "name" : "dummyType_4", + "values" : [ { + "id" : "_UV3-TfunEfCYrdfxNyUhUA", + "text" : "dummyLabelofType_4" + } ] + }, { + "id" : "_UV3-UPunEfCYrdfxNyUhUA", + "name" : "dummyType_5", + "values" : [ { + "id" : "_UV3-T_unEfCYrdfxNyUhUA", + "text" : "dummyLabelofType_5" + } ] + }, { + "id" : "_UV3-UvunEfCYrdfxNyUhUA", + "name" : "dummyType_6", + "values" : [ { + "id" : "_UV3-UfunEfCYrdfxNyUhUA", + "text" : "dummyLabelofType_6" + } ] + }, { + "id" : "_UV3-VPunEfCYrdfxNyUhUA", + "name" : "dummyType_7", + "values" : [ { + "id" : "_UV3-U_unEfCYrdfxNyUhUA", + "text" : "dummyLabelofType_7" + } ] + }, { + "id" : "_UV3-VvunEfCYrdfxNyUhUA", + "name" : "dummyType_8", + "values" : [ { + "id" : "_UV3-VfunEfCYrdfxNyUhUA", + "text" : "dummyLabelofType_8" + } ] + }, { + "id" : "_UV3-WPunEfCYrdfxNyUhUA", + "name" : "dummyType_9", + "values" : [ { + "id" : "_UV3-V_unEfCYrdfxNyUhUA", + "text" : "dummyLabelofType_9" + } ] + }, { + "id" : "_UV3-WvunEfCYrdfxNyUhUA", + "name" : "dummyType_10", + "values" : [ { + "id" : "_UV3-WfunEfCYrdfxNyUhUA", + "text" : "dummyLabelofType_10" + } ] + }, { + "id" : "_UV3-XPunEfCYrdfxNyUhUA", + "name" : "dummyType_11", + "values" : [ { + "id" : "_UV3-W_unEfCYrdfxNyUhUA", + "text" : "dummyLabelofType_11" + } ] + }, { + "id" : "_UV3-XvunEfCYrdfxNyUhUA", + "name" : "dummyType_12", + "values" : [ { + "id" : "_UV3-XfunEfCYrdfxNyUhUA", + "text" : "dummyLabelofType_12" + } ] + }, { + "id" : "_UV3-YPunEfCYrdfxNyUhUA", + "name" : "dummyType_13", + "values" : [ { + "id" : "_UV3-X_unEfCYrdfxNyUhUA", + "text" : "dummyLabelofType_13" + } ] + }, { + "id" : "_UV3-YvunEfCYrdfxNyUhUA", + "name" : "dummyType_14", + "values" : [ { + "id" : "_UV3-YfunEfCYrdfxNyUhUA", + "text" : "dummyLabelofType_14" + } ] + }, { + "id" : "_UV3-ZPunEfCYrdfxNyUhUA", + "name" : "dummyType_15", + "values" : [ { + "id" : "_UV3-Y_unEfCYrdfxNyUhUA", + "text" : "dummyLabelofType_15" + } ] + }, { + "id" : "_UV3-ZvunEfCYrdfxNyUhUA", + "name" : "dummyType_16", + "values" : [ { + "id" : "_UV3-ZfunEfCYrdfxNyUhUA", + "text" : "dummyLabelofType_16" + } ] + }, { + "id" : "_UV3-aPunEfCYrdfxNyUhUA", + "name" : "dummyType_17", + "values" : [ { + "id" : "_UV3-Z_unEfCYrdfxNyUhUA", + "text" : "dummyLabelofType_17" + } ] + }, { + "id" : "_UV3-avunEfCYrdfxNyUhUA", + "name" : "dummyType_18", + "values" : [ { + "id" : "_UV3-afunEfCYrdfxNyUhUA", + "text" : "dummyLabelofType_18" + } ] + }, { + "id" : "_UV3-bPunEfCYrdfxNyUhUA", + "name" : "dummyType_19", + "values" : [ { + "id" : "_UV3-a_unEfCYrdfxNyUhUA", + "text" : "dummyLabelofType_19" + } ] + } ], + "mode" : "edit", + "constraints" : [ ] +} \ No newline at end of file diff --git a/tests/dev.arcovia.mitigation.utils.tests/testresults/scaledLabelTypes.json b/tests/dev.arcovia.mitigation.utils.tests/testresults/scaledLabelTypes.json new file mode 100644 index 00000000..fcb4c0c2 --- /dev/null +++ b/tests/dev.arcovia.mitigation.utils.tests/testresults/scaledLabelTypes.json @@ -0,0 +1,3283 @@ +{ + "model" : { + "type" : "graph", + "id" : "root", + "children" : [ { + "text" : "consul2", + "id" : "100", + "type" : "edge:arrow", + "sourceId" : "99", + "targetId" : "98", + "labels" : null, + "ports" : null, + "annotations" : null, + "children" : [ ], + "routingPoints" : [ ] + }, { + "text" : "consul3", + "id" : "103", + "type" : "edge:arrow", + "sourceId" : "102", + "targetId" : "98", + "labels" : null, + "ports" : null, + "annotations" : null, + "children" : [ ], + "routingPoints" : [ ] + }, { + "text" : "consul3", + "id" : "106", + "type" : "edge:arrow", + "sourceId" : "105", + "targetId" : "104", + "labels" : null, + "ports" : null, + "annotations" : null, + "children" : [ ], + "routingPoints" : [ ] + }, { + "text" : "logstash", + "id" : "109", + "type" : "edge:arrow", + "sourceId" : "108", + "targetId" : "107", + "labels" : null, + "ports" : null, + "annotations" : null, + "children" : [ ], + "routingPoints" : [ ] + }, { + "text" : "elasticsearch", + "id" : "112", + "type" : "edge:arrow", + "sourceId" : "111", + "targetId" : "110", + "labels" : null, + "ports" : null, + "annotations" : null, + "children" : [ ], + "routingPoints" : [ ] + }, { + "text" : "consul", + "id" : "115", + "type" : "edge:arrow", + "sourceId" : "114", + "targetId" : "113", + "labels" : null, + "ports" : null, + "annotations" : null, + "children" : [ ], + "routingPoints" : [ ] + }, { + "text" : "service_one", + "id" : "118", + "type" : "edge:arrow", + "sourceId" : "117", + "targetId" : "116", + "labels" : null, + "ports" : null, + "annotations" : null, + "children" : [ ], + "routingPoints" : [ ] + }, { + "text" : "service_one", + "id" : "121", + "type" : "edge:arrow", + "sourceId" : "120", + "targetId" : "119", + "labels" : null, + "ports" : null, + "annotations" : null, + "children" : [ ], + "routingPoints" : [ ] + }, { + "text" : "rabbit", + "id" : "129", + "type" : "edge:arrow", + "sourceId" : "128", + "targetId" : "113", + "labels" : null, + "ports" : null, + "annotations" : null, + "children" : [ ], + "routingPoints" : [ ] + }, { + "text" : "consul", + "id" : "135", + "type" : "edge:arrow", + "sourceId" : "134", + "targetId" : "133", + "labels" : null, + "ports" : null, + "annotations" : null, + "children" : [ ], + "routingPoints" : [ ] + }, { + "text" : "service_two", + "id" : "137", + "type" : "edge:arrow", + "sourceId" : "136", + "targetId" : "116", + "labels" : null, + "ports" : null, + "annotations" : null, + "children" : [ ], + "routingPoints" : [ ] + }, { + "text" : "service_two", + "id" : "139", + "type" : "edge:arrow", + "sourceId" : "138", + "targetId" : "119", + "labels" : null, + "ports" : null, + "annotations" : null, + "children" : [ ], + "routingPoints" : [ ] + }, { + "text" : "rabbit", + "id" : "141", + "type" : "edge:arrow", + "sourceId" : "140", + "targetId" : "133", + "labels" : null, + "ports" : null, + "annotations" : null, + "children" : [ ], + "routingPoints" : [ ] + }, { + "text" : "service_one_db", + "id" : "144", + "type" : "edge:arrow", + "sourceId" : "143", + "targetId" : "113", + "labels" : null, + "ports" : null, + "annotations" : null, + "children" : [ ], + "routingPoints" : [ ] + }, { + "text" : "service_two_db", + "id" : "147", + "type" : "edge:arrow", + "sourceId" : "146", + "targetId" : "133", + "labels" : null, + "ports" : null, + "annotations" : null, + "children" : [ ], + "routingPoints" : [ ] + }, { + "text" : "api_gateway", + "id" : "151", + "type" : "edge:arrow", + "sourceId" : "150", + "targetId" : "113", + "labels" : null, + "ports" : null, + "annotations" : null, + "children" : [ ], + "routingPoints" : [ ] + }, { + "text" : "api_gateway", + "id" : "153", + "type" : "edge:arrow", + "sourceId" : "152", + "targetId" : "133", + "labels" : null, + "ports" : null, + "annotations" : null, + "children" : [ ], + "routingPoints" : [ ] + }, { + "text" : "consul", + "id" : "156", + "type" : "edge:arrow", + "sourceId" : "155", + "targetId" : "154", + "labels" : null, + "ports" : null, + "annotations" : null, + "children" : [ ], + "routingPoints" : [ ] + }, { + "text" : "user", + "id" : "159", + "type" : "edge:arrow", + "sourceId" : "158", + "targetId" : "157", + "labels" : null, + "ports" : null, + "annotations" : null, + "children" : [ ], + "routingPoints" : [ ] + }, { + "text" : "web_application", + "id" : "163", + "type" : "edge:arrow", + "sourceId" : "162", + "targetId" : "161", + "labels" : null, + "ports" : null, + "annotations" : null, + "children" : [ ], + "routingPoints" : [ ] + }, { + "text" : "web_application", + "id" : "165", + "type" : "edge:arrow", + "sourceId" : "164", + "targetId" : "154", + "labels" : null, + "ports" : null, + "annotations" : null, + "children" : [ ], + "routingPoints" : [ ] + }, { + "text" : "api_gateway", + "id" : "168", + "type" : "edge:arrow", + "sourceId" : "167", + "targetId" : "166", + "labels" : null, + "ports" : null, + "annotations" : null, + "children" : [ ], + "routingPoints" : [ ] + }, { + "text" : "service_one", + "id" : "170", + "type" : "edge:arrow", + "sourceId" : "169", + "targetId" : "166", + "labels" : null, + "ports" : null, + "annotations" : null, + "children" : [ ], + "routingPoints" : [ ] + }, { + "text" : "service_one_db", + "id" : "172", + "type" : "edge:arrow", + "sourceId" : "171", + "targetId" : "166", + "labels" : null, + "ports" : null, + "annotations" : null, + "children" : [ ], + "routingPoints" : [ ] + }, { + "text" : "service_two", + "id" : "174", + "type" : "edge:arrow", + "sourceId" : "173", + "targetId" : "166", + "labels" : null, + "ports" : null, + "annotations" : null, + "children" : [ ], + "routingPoints" : [ ] + }, { + "text" : "service_two_db", + "id" : "176", + "type" : "edge:arrow", + "sourceId" : "175", + "targetId" : "166", + "labels" : null, + "ports" : null, + "annotations" : null, + "children" : [ ], + "routingPoints" : [ ] + }, { + "text" : "web_application", + "id" : "178", + "type" : "edge:arrow", + "sourceId" : "177", + "targetId" : "166", + "labels" : null, + "ports" : null, + "annotations" : null, + "children" : [ ], + "routingPoints" : [ ] + }, { + "text" : "rabbit", + "id" : "180", + "type" : "edge:arrow", + "sourceId" : "179", + "targetId" : "166", + "labels" : null, + "ports" : null, + "annotations" : null, + "children" : [ ], + "routingPoints" : [ ] + }, { + "text" : "consul", + "id" : "182", + "type" : "edge:arrow", + "sourceId" : "181", + "targetId" : "166", + "labels" : null, + "ports" : null, + "annotations" : null, + "children" : [ ], + "routingPoints" : [ ] + }, { + "text" : "consul2", + "id" : "184", + "type" : "edge:arrow", + "sourceId" : "183", + "targetId" : "166", + "labels" : null, + "ports" : null, + "annotations" : null, + "children" : [ ], + "routingPoints" : [ ] + }, { + "text" : "consul3", + "id" : "186", + "type" : "edge:arrow", + "sourceId" : "185", + "targetId" : "166", + "labels" : null, + "ports" : null, + "annotations" : null, + "children" : [ ], + "routingPoints" : [ ] + }, { + "text" : "kibana", + "id" : "188", + "type" : "edge:arrow", + "sourceId" : "187", + "targetId" : "166", + "labels" : null, + "ports" : null, + "annotations" : null, + "children" : [ ], + "routingPoints" : [ ] + }, { + "text" : "elasticsearch", + "id" : "190", + "type" : "edge:arrow", + "sourceId" : "189", + "targetId" : "166", + "labels" : null, + "ports" : null, + "annotations" : null, + "children" : [ ], + "routingPoints" : [ ] + }, { + "text" : "logstash", + "id" : "192", + "type" : "edge:arrow", + "sourceId" : "191", + "targetId" : "166", + "labels" : null, + "ports" : null, + "annotations" : null, + "children" : [ ], + "routingPoints" : [ ] + }, { + "text" : "user", + "id" : "2", + "type" : "node:input-output", + "labels" : [ { + "labelTypeId" : "17", + "labelTypeValueId" : "93" + }, { + "labelTypeId" : "17", + "labelTypeValueId" : "94" + }, { + "labelTypeId" : "17", + "labelTypeValueId" : "95" + }, { + "labelTypeId" : "_USBY8funEfCYrdfxNyUhUA", + "labelTypeValueId" : "_USBY8PunEfCYrdfxNyUhUA" + }, { + "labelTypeId" : "_USBY8_unEfCYrdfxNyUhUA", + "labelTypeValueId" : "_USBY8vunEfCYrdfxNyUhUA" + } ], + "ports" : [ { + "id" : "161", + "type" : "port:dfd-input", + "children" : [ ] + }, { + "behavior" : "assign Stereotype.user_stereotype,Stereotype.entrypoint,Stereotype.exitpoint,Stereotype.restful_http,Stereotype.encrypted_connection,dummyType_0.dummyLabelofType_0,dummyType_1.dummyLabelofType_1 if TRUE from web_application\nforward web_application", + "id" : "158", + "type" : "port:dfd-output", + "children" : [ ] + } ], + "annotations" : [ { + "message" : "Propagated: Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.restful_http, Stereotype.encrypted_connection, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, Stereotype.web_application, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1784834205 + }, { + "message" : "Incoming: Stereotype.web_application, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.encrypted_connection, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1784834205 + }, { + "message" : "Propagated: Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.restful_http, Stereotype.encrypted_connection, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, Stereotype.web_application, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 407493402 + }, { + "message" : "Incoming: Stereotype.web_application, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.encrypted_connection, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 407493402 + }, { + "message" : "Propagated: Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.restful_http, Stereotype.encrypted_connection, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, Stereotype.web_application, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 144699438 + }, { + "message" : "Incoming: Stereotype.web_application, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.encrypted_connection, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 144699438 + }, { + "message" : "Propagated: Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.restful_http, Stereotype.encrypted_connection, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, Stereotype.web_application, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 626193099 + }, { + "message" : "Incoming: Stereotype.web_application, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.encrypted_connection, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 626193099 + } ], + "children" : [ ], + "position" : { + "x" : 0.0, + "y" : 0.0 + }, + "size" : null + }, { + "text" : "consul", + "id" : "3", + "type" : "node:function", + "labels" : [ { + "labelTypeId" : "17", + "labelTypeValueId" : "52" + }, { + "labelTypeId" : "17", + "labelTypeValueId" : "27" + }, { + "labelTypeId" : "22", + "labelTypeValueId" : "53" + }, { + "labelTypeId" : "54", + "labelTypeValueId" : "55" + }, { + "labelTypeId" : "_USBY8funEfCYrdfxNyUhUA", + "labelTypeValueId" : "_USBY8PunEfCYrdfxNyUhUA" + }, { + "labelTypeId" : "_USBY8_unEfCYrdfxNyUhUA", + "labelTypeValueId" : "_USBY8vunEfCYrdfxNyUhUA" + } ], + "ports" : [ { + "id" : "98", + "type" : "port:dfd-input", + "children" : [ ] + }, { + "behavior" : "assign Stereotype.service_discovery,Stereotype.infrastructural,Stereotype.restful_http,dummyType_0.dummyLabelofType_0,dummyType_1.dummyLabelofType_1 if TRUE from consul2|consul3\nforward consul2|consul3", + "id" : "114", + "type" : "port:dfd-output", + "children" : [ ] + }, { + "behavior" : "assign Stereotype.service_discovery,Stereotype.infrastructural,Stereotype.restful_http,dummyType_0.dummyLabelofType_0,dummyType_1.dummyLabelofType_1 if TRUE from consul2|consul3\nforward consul2|consul3", + "id" : "134", + "type" : "port:dfd-output", + "children" : [ ] + }, { + "behavior" : "assign Stereotype.service_discovery,Stereotype.infrastructural,Stereotype.restful_http,dummyType_0.dummyLabelofType_0,dummyType_1.dummyLabelofType_1 if TRUE from consul2|consul3\nforward consul2|consul3", + "id" : "155", + "type" : "port:dfd-output", + "children" : [ ] + }, { + "behavior" : "assign Stereotype.service_discovery,Stereotype.infrastructural,Stereotype.restful_http,dummyType_0.dummyLabelofType_0,dummyType_1.dummyLabelofType_1 if TRUE from consul2|consul3\nforward consul2|consul3", + "id" : "181", + "type" : "port:dfd-output", + "children" : [ ] + } ], + "annotations" : [ { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1541046463 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1541046463 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1107579932 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1107579932 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1174586025 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1174586025 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1627010197 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1627010197 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 4073506 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 4073506 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 698747943 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 698747943 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1774690057 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1774690057 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 480402503 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 480402503 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 100445376 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 100445376 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 114414807 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 114414807 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1650955365 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1650955365 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 493944943 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 493944943 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1533547487 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1533547487 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 727250772 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 727250772 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 859123506 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 859123506 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1597742167 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1597742167 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 503595296 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 503595296 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 754072705 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 754072705 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 156199931 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 156199931 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 878991463 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 878991463 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1622613647 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1622613647 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 307605969 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 307605969 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 73688220 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 73688220 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1599674462 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1599674462 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1623060829 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1623060829 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1205483858 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1205483858 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1373949107 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1373949107 + } ], + "children" : [ ], + "position" : { + "x" : 0.0, + "y" : 0.0 + }, + "size" : null + }, { + "text" : "consul2", + "id" : "4", + "type" : "node:function", + "labels" : [ { + "labelTypeId" : "17", + "labelTypeValueId" : "52" + }, { + "labelTypeId" : "17", + "labelTypeValueId" : "27" + }, { + "labelTypeId" : "22", + "labelTypeValueId" : "53" + }, { + "labelTypeId" : "54", + "labelTypeValueId" : "55" + }, { + "labelTypeId" : "_USBY8funEfCYrdfxNyUhUA", + "labelTypeValueId" : "_USBY8PunEfCYrdfxNyUhUA" + }, { + "labelTypeId" : "_USBY8_unEfCYrdfxNyUhUA", + "labelTypeValueId" : "_USBY8vunEfCYrdfxNyUhUA" + } ], + "ports" : [ { + "id" : "104", + "type" : "port:dfd-input", + "children" : [ ] + }, { + "behavior" : "assign Stereotype.service_discovery,Stereotype.infrastructural,Stereotype.restful_http,dummyType_0.dummyLabelofType_0,dummyType_1.dummyLabelofType_1 if TRUE from consul3\nforward consul3", + "id" : "99", + "type" : "port:dfd-output", + "children" : [ ] + }, { + "behavior" : "assign Stereotype.service_discovery,Stereotype.infrastructural,Stereotype.restful_http,dummyType_0.dummyLabelofType_0,dummyType_1.dummyLabelofType_1 if TRUE from consul3\nforward consul3", + "id" : "183", + "type" : "port:dfd-output", + "children" : [ ] + } ], + "annotations" : [ { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1541046463 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1541046463 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1174586025 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1174586025 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 4073506 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 4073506 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 698747943 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 698747943 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1774690057 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1774690057 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 100445376 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 100445376 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 114414807 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 114414807 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1650955365 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1650955365 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 493944943 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 493944943 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1533547487 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1533547487 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 727250772 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 727250772 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 859123506 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 859123506 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1597742167 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1597742167 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 503595296 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 503595296 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 908384914 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 908384914 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 156199931 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 156199931 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 878991463 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 878991463 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1622613647 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1622613647 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 307605969 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 307605969 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 73688220 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 73688220 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1599674462 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1599674462 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1623060829 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1623060829 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1205483858 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1205483858 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1373949107 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1373949107 + } ], + "children" : [ ], + "position" : { + "x" : 0.0, + "y" : 0.0 + }, + "size" : null + }, { + "text" : "consul3", + "id" : "5", + "type" : "node:function", + "labels" : [ { + "labelTypeId" : "17", + "labelTypeValueId" : "52" + }, { + "labelTypeId" : "17", + "labelTypeValueId" : "27" + }, { + "labelTypeId" : "22", + "labelTypeValueId" : "53" + }, { + "labelTypeId" : "54", + "labelTypeValueId" : "55" + }, { + "labelTypeId" : "_USBY8funEfCYrdfxNyUhUA", + "labelTypeValueId" : "_USBY8PunEfCYrdfxNyUhUA" + }, { + "labelTypeId" : "_USBY8_unEfCYrdfxNyUhUA", + "labelTypeValueId" : "_USBY8vunEfCYrdfxNyUhUA" + } ], + "ports" : [ { + "behavior" : "assign Stereotype.service_discovery,Stereotype.infrastructural,Stereotype.restful_http,dummyType_0.dummyLabelofType_0,dummyType_1.dummyLabelofType_1 if TRUE", + "id" : "102", + "type" : "port:dfd-output", + "children" : [ ] + }, { + "behavior" : "assign Stereotype.service_discovery,Stereotype.infrastructural,Stereotype.restful_http,dummyType_0.dummyLabelofType_0,dummyType_1.dummyLabelofType_1 if TRUE", + "id" : "105", + "type" : "port:dfd-output", + "children" : [ ] + }, { + "behavior" : "assign Stereotype.service_discovery,Stereotype.infrastructural,Stereotype.restful_http,dummyType_0.dummyLabelofType_0,dummyType_1.dummyLabelofType_1 if TRUE", + "id" : "185", + "type" : "port:dfd-output", + "children" : [ ] + } ], + "annotations" : [ { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1541046463 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1107579932 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1174586025 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1627010197 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 4073506 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 698747943 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1774690057 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 480402503 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 100445376 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 114414807 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1650955365 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 493944943 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1533547487 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 727250772 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 859123506 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1597742167 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 503595296 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 754072705 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 908384914 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 905847077 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 156199931 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 878991463 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1622613647 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 307605969 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 73688220 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1599674462 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1623060829 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1205483858 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1373949107 + } ], + "children" : [ ], + "position" : { + "x" : 0.0, + "y" : 0.0 + }, + "size" : null + }, { + "text" : "elasticsearch", + "id" : "6", + "type" : "node:function", + "labels" : [ { + "labelTypeId" : "17", + "labelTypeValueId" : "43" + }, { + "labelTypeId" : "17", + "labelTypeValueId" : "27" + }, { + "labelTypeId" : "44", + "labelTypeValueId" : "45" + }, { + "labelTypeId" : "22", + "labelTypeValueId" : "46" + }, { + "labelTypeId" : "_USBY8funEfCYrdfxNyUhUA", + "labelTypeValueId" : "_USBY8PunEfCYrdfxNyUhUA" + }, { + "labelTypeId" : "_USBY8_unEfCYrdfxNyUhUA", + "labelTypeValueId" : "_USBY8vunEfCYrdfxNyUhUA" + } ], + "ports" : [ { + "id" : "107", + "type" : "port:dfd-input", + "children" : [ ] + }, { + "behavior" : "assign Stereotype.search_engine,Stereotype.infrastructural,Stereotype.restful_http,dummyType_0.dummyLabelofType_0,dummyType_1.dummyLabelofType_1 if TRUE from logstash\nforward logstash", + "id" : "111", + "type" : "port:dfd-output", + "children" : [ ] + }, { + "behavior" : "assign Stereotype.search_engine,Stereotype.infrastructural,Stereotype.restful_http,dummyType_0.dummyLabelofType_0,dummyType_1.dummyLabelofType_1 if TRUE from logstash\nforward logstash", + "id" : "189", + "type" : "port:dfd-output", + "children" : [ ] + } ], + "annotations" : [ { + "message" : "Propagated: Stereotype.search_engine, Stereotype.infrastructural, Stereotype.restful_http, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, Stereotype.logging_server, Stereotype.internal, Stereotype.local_logging, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 156199931 + }, { + "message" : "Incoming: Stereotype.logging_server, Stereotype.infrastructural, Stereotype.restful_http, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, Stereotype.internal, Stereotype.local_logging, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 156199931 + }, { + "message" : "Propagated: Stereotype.search_engine, Stereotype.infrastructural, Stereotype.restful_http, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, Stereotype.logging_server, Stereotype.internal, Stereotype.local_logging, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 878991463 + }, { + "message" : "Incoming: Stereotype.logging_server, Stereotype.infrastructural, Stereotype.restful_http, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, Stereotype.internal, Stereotype.local_logging, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 878991463 + }, { + "message" : "Propagated: Stereotype.search_engine, Stereotype.infrastructural, Stereotype.restful_http, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, Stereotype.logging_server, Stereotype.internal, Stereotype.local_logging, Stereotype.jdbc", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 612693043 + }, { + "message" : "Incoming: Stereotype.logging_server, Stereotype.infrastructural, Stereotype.restful_http, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, Stereotype.internal, Stereotype.local_logging, Stereotype.jdbc", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 612693043 + }, { + "message" : "Propagated: Stereotype.search_engine, Stereotype.infrastructural, Stereotype.restful_http, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, Stereotype.logging_server, Stereotype.internal, Stereotype.local_logging, Stereotype.gateway, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1622613647 + }, { + "message" : "Incoming: Stereotype.logging_server, Stereotype.infrastructural, Stereotype.restful_http, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, Stereotype.internal, Stereotype.local_logging, Stereotype.gateway, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1622613647 + }, { + "message" : "Propagated: Stereotype.search_engine, Stereotype.infrastructural, Stereotype.restful_http, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, Stereotype.logging_server, Stereotype.internal, Stereotype.local_logging, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 307605969 + }, { + "message" : "Incoming: Stereotype.logging_server, Stereotype.infrastructural, Stereotype.restful_http, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, Stereotype.internal, Stereotype.local_logging, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 307605969 + }, { + "message" : "Propagated: Stereotype.search_engine, Stereotype.infrastructural, Stereotype.restful_http, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, Stereotype.logging_server, Stereotype.internal, Stereotype.local_logging, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleservicetwo, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 73688220 + }, { + "message" : "Incoming: Stereotype.logging_server, Stereotype.infrastructural, Stereotype.restful_http, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, Stereotype.internal, Stereotype.local_logging, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleservicetwo, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 73688220 + }, { + "message" : "Propagated: Stereotype.search_engine, Stereotype.infrastructural, Stereotype.restful_http, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, Stereotype.logging_server, Stereotype.internal, Stereotype.local_logging, Stereotype.jdbc, Stereotype.plaintext_credentials_link, Username.servicetwo, Password.servicetwo", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 130166095 + }, { + "message" : "Incoming: Stereotype.logging_server, Stereotype.infrastructural, Stereotype.restful_http, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, Stereotype.internal, Stereotype.local_logging, Stereotype.jdbc, Stereotype.plaintext_credentials_link, Username.servicetwo, Password.servicetwo", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 130166095 + }, { + "message" : "Propagated: Stereotype.search_engine, Stereotype.infrastructural, Stereotype.restful_http, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, Stereotype.logging_server, Stereotype.internal, Stereotype.local_logging, Stereotype.gateway, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1599674462 + }, { + "message" : "Incoming: Stereotype.logging_server, Stereotype.infrastructural, Stereotype.restful_http, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, Stereotype.internal, Stereotype.local_logging, Stereotype.gateway, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1599674462 + }, { + "message" : "Propagated: Stereotype.search_engine, Stereotype.infrastructural, Stereotype.restful_http, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, Stereotype.logging_server, Stereotype.internal, Stereotype.local_logging, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1623060829 + }, { + "message" : "Incoming: Stereotype.logging_server, Stereotype.infrastructural, Stereotype.restful_http, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, Stereotype.internal, Stereotype.local_logging, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1623060829 + } ], + "children" : [ ], + "position" : { + "x" : 0.0, + "y" : 0.0 + }, + "size" : null + }, { + "text" : "logstash", + "id" : "7", + "type" : "node:function", + "labels" : [ { + "labelTypeId" : "17", + "labelTypeValueId" : "26" + }, { + "labelTypeId" : "17", + "labelTypeValueId" : "27" + }, { + "labelTypeId" : "22", + "labelTypeValueId" : "28" + }, { + "labelTypeId" : "29", + "labelTypeValueId" : "30" + }, { + "labelTypeId" : "_USBY8funEfCYrdfxNyUhUA", + "labelTypeValueId" : "_USBY8PunEfCYrdfxNyUhUA" + }, { + "labelTypeId" : "_USBY8_unEfCYrdfxNyUhUA", + "labelTypeValueId" : "_USBY8vunEfCYrdfxNyUhUA" + } ], + "ports" : [ { + "id" : "116", + "type" : "port:dfd-input", + "children" : [ ] + }, { + "behavior" : "assign Stereotype.logging_server,Stereotype.infrastructural,Stereotype.restful_http,dummyType_0.dummyLabelofType_0,dummyType_1.dummyLabelofType_1 if TRUE from service_one|service_two\nforward service_one|service_two", + "id" : "108", + "type" : "port:dfd-output", + "children" : [ ] + }, { + "behavior" : "assign Stereotype.logging_server,Stereotype.infrastructural,Stereotype.restful_http,dummyType_0.dummyLabelofType_0,dummyType_1.dummyLabelofType_1 if TRUE from service_one|service_two\nforward service_one|service_two", + "id" : "191", + "type" : "port:dfd-output", + "children" : [ ] + } ], + "annotations" : [ { + "message" : "Propagated: Stereotype.logging_server, Stereotype.infrastructural, Stereotype.restful_http, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, Stereotype.internal, Stereotype.local_logging, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 156199931 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, Stereotype.service_discovery, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 156199931 + }, { + "message" : "Propagated: Stereotype.logging_server, Stereotype.infrastructural, Stereotype.restful_http, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, Stereotype.internal, Stereotype.local_logging, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 878991463 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 878991463 + }, { + "message" : "Propagated: Stereotype.logging_server, Stereotype.infrastructural, Stereotype.restful_http, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, Stereotype.internal, Stereotype.local_logging, Stereotype.jdbc", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 612693043 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, Stereotype.jdbc", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 612693043 + }, { + "message" : "Propagated: Stereotype.logging_server, Stereotype.infrastructural, Stereotype.restful_http, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, Stereotype.internal, Stereotype.local_logging, Stereotype.gateway, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1622613647 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1622613647 + }, { + "message" : "Propagated: Stereotype.logging_server, Stereotype.infrastructural, Stereotype.restful_http, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, Stereotype.internal, Stereotype.local_logging, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 307605969 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, Stereotype.service_discovery, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 307605969 + }, { + "message" : "Propagated: Stereotype.logging_server, Stereotype.infrastructural, Stereotype.restful_http, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, Stereotype.internal, Stereotype.local_logging, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleservicetwo, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 73688220 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleservicetwo, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 73688220 + }, { + "message" : "Propagated: Stereotype.logging_server, Stereotype.infrastructural, Stereotype.restful_http, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, Stereotype.internal, Stereotype.local_logging, Stereotype.jdbc, Stereotype.plaintext_credentials_link, Username.servicetwo, Password.servicetwo", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 130166095 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, Stereotype.jdbc, Stereotype.plaintext_credentials_link, Username.servicetwo, Password.servicetwo", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 130166095 + }, { + "message" : "Propagated: Stereotype.logging_server, Stereotype.infrastructural, Stereotype.restful_http, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, Stereotype.internal, Stereotype.local_logging, Stereotype.gateway, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1599674462 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1599674462 + }, { + "message" : "Propagated: Stereotype.logging_server, Stereotype.infrastructural, Stereotype.restful_http, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, Stereotype.internal, Stereotype.local_logging, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1623060829 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, Stereotype.service_discovery, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1623060829 + }, { + "message" : "Propagated: Stereotype.logging_server, Stereotype.infrastructural, Stereotype.restful_http, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, Stereotype.internal, Stereotype.local_logging, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1205483858 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, Stereotype.service_discovery, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1205483858 + }, { + "message" : "Propagated: Stereotype.logging_server, Stereotype.infrastructural, Stereotype.restful_http, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, Stereotype.internal, Stereotype.local_logging, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1373949107 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, Stereotype.service_discovery, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1373949107 + } ], + "children" : [ ], + "position" : { + "x" : 0.0, + "y" : 0.0 + }, + "size" : null + }, { + "text" : "kibana", + "id" : "8", + "type" : "node:function", + "labels" : [ { + "labelTypeId" : "17", + "labelTypeValueId" : "69" + }, { + "labelTypeId" : "17", + "labelTypeValueId" : "27" + }, { + "labelTypeId" : "70", + "labelTypeValueId" : "86" + }, { + "labelTypeId" : "22", + "labelTypeValueId" : "87" + }, { + "labelTypeId" : "_USBY8funEfCYrdfxNyUhUA", + "labelTypeValueId" : "_USBY8PunEfCYrdfxNyUhUA" + }, { + "labelTypeId" : "_USBY8_unEfCYrdfxNyUhUA", + "labelTypeValueId" : "_USBY8vunEfCYrdfxNyUhUA" + } ], + "ports" : [ { + "id" : "110", + "type" : "port:dfd-input", + "children" : [ ] + }, { + "behavior" : "assign Stereotype.monitoring_dashboard,Stereotype.infrastructural,Stereotype.restful_http,dummyType_0.dummyLabelofType_0,dummyType_1.dummyLabelofType_1 if TRUE from elasticsearch\nforward elasticsearch", + "id" : "187", + "type" : "port:dfd-output", + "children" : [ ] + } ], + "annotations" : [ { + "message" : "Propagated: Stereotype.monitoring_dashboard, Stereotype.infrastructural, Stereotype.restful_http, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, Stereotype.search_engine, Stereotype.logging_server, Stereotype.internal, Stereotype.local_logging, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 156199931 + }, { + "message" : "Incoming: Stereotype.search_engine, Stereotype.infrastructural, Stereotype.restful_http, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, Stereotype.logging_server, Stereotype.internal, Stereotype.local_logging, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 156199931 + }, { + "message" : "Propagated: Stereotype.monitoring_dashboard, Stereotype.infrastructural, Stereotype.restful_http, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, Stereotype.search_engine, Stereotype.logging_server, Stereotype.internal, Stereotype.local_logging, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 878991463 + }, { + "message" : "Incoming: Stereotype.search_engine, Stereotype.infrastructural, Stereotype.restful_http, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, Stereotype.logging_server, Stereotype.internal, Stereotype.local_logging, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 878991463 + }, { + "message" : "Propagated: Stereotype.monitoring_dashboard, Stereotype.infrastructural, Stereotype.restful_http, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, Stereotype.search_engine, Stereotype.logging_server, Stereotype.internal, Stereotype.local_logging, Stereotype.jdbc", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 612693043 + }, { + "message" : "Incoming: Stereotype.search_engine, Stereotype.infrastructural, Stereotype.restful_http, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, Stereotype.logging_server, Stereotype.internal, Stereotype.local_logging, Stereotype.jdbc", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 612693043 + }, { + "message" : "Propagated: Stereotype.monitoring_dashboard, Stereotype.infrastructural, Stereotype.restful_http, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, Stereotype.search_engine, Stereotype.logging_server, Stereotype.internal, Stereotype.local_logging, Stereotype.gateway, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1622613647 + }, { + "message" : "Incoming: Stereotype.search_engine, Stereotype.infrastructural, Stereotype.restful_http, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, Stereotype.logging_server, Stereotype.internal, Stereotype.local_logging, Stereotype.gateway, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1622613647 + }, { + "message" : "Propagated: Stereotype.monitoring_dashboard, Stereotype.infrastructural, Stereotype.restful_http, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, Stereotype.search_engine, Stereotype.logging_server, Stereotype.internal, Stereotype.local_logging, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 307605969 + }, { + "message" : "Incoming: Stereotype.search_engine, Stereotype.infrastructural, Stereotype.restful_http, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, Stereotype.logging_server, Stereotype.internal, Stereotype.local_logging, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 307605969 + }, { + "message" : "Propagated: Stereotype.monitoring_dashboard, Stereotype.infrastructural, Stereotype.restful_http, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, Stereotype.search_engine, Stereotype.logging_server, Stereotype.internal, Stereotype.local_logging, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleservicetwo, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 73688220 + }, { + "message" : "Incoming: Stereotype.search_engine, Stereotype.infrastructural, Stereotype.restful_http, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, Stereotype.logging_server, Stereotype.internal, Stereotype.local_logging, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleservicetwo, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 73688220 + }, { + "message" : "Propagated: Stereotype.monitoring_dashboard, Stereotype.infrastructural, Stereotype.restful_http, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, Stereotype.search_engine, Stereotype.logging_server, Stereotype.internal, Stereotype.local_logging, Stereotype.jdbc, Stereotype.plaintext_credentials_link, Username.servicetwo, Password.servicetwo", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 130166095 + }, { + "message" : "Incoming: Stereotype.search_engine, Stereotype.infrastructural, Stereotype.restful_http, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, Stereotype.logging_server, Stereotype.internal, Stereotype.local_logging, Stereotype.jdbc, Stereotype.plaintext_credentials_link, Username.servicetwo, Password.servicetwo", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 130166095 + }, { + "message" : "Propagated: Stereotype.monitoring_dashboard, Stereotype.infrastructural, Stereotype.restful_http, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, Stereotype.search_engine, Stereotype.logging_server, Stereotype.internal, Stereotype.local_logging, Stereotype.gateway, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1599674462 + }, { + "message" : "Incoming: Stereotype.search_engine, Stereotype.infrastructural, Stereotype.restful_http, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, Stereotype.logging_server, Stereotype.internal, Stereotype.local_logging, Stereotype.gateway, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1599674462 + } ], + "children" : [ ], + "position" : { + "x" : 0.0, + "y" : 0.0 + }, + "size" : null + }, { + "text" : "rabbit", + "id" : "9", + "type" : "node:function", + "labels" : [ { + "labelTypeId" : "17", + "labelTypeValueId" : "58" + }, { + "labelTypeId" : "17", + "labelTypeValueId" : "59" + }, { + "labelTypeId" : "17", + "labelTypeValueId" : "27" + }, { + "labelTypeId" : "60", + "labelTypeValueId" : "61" + }, { + "labelTypeId" : "62", + "labelTypeValueId" : "63" + }, { + "labelTypeId" : "22", + "labelTypeValueId" : "64" + }, { + "labelTypeId" : "65", + "labelTypeValueId" : "66" + }, { + "labelTypeId" : "_USBY8funEfCYrdfxNyUhUA", + "labelTypeValueId" : "_USBY8PunEfCYrdfxNyUhUA" + }, { + "labelTypeId" : "_USBY8_unEfCYrdfxNyUhUA", + "labelTypeValueId" : "_USBY8vunEfCYrdfxNyUhUA" + } ], + "ports" : [ { + "id" : "119", + "type" : "port:dfd-input", + "children" : [ ] + }, { + "behavior" : "assign Stereotype.message_broker,Stereotype.plaintext_credentials,Stereotype.infrastructural,Stereotype.message_consumer_rabbitmq,Stereotype.restful_http,Queue.commudigalmicroservicessampleserviceone,dummyType_0.dummyLabelofType_0,dummyType_1.dummyLabelofType_1 if TRUE from service_one|service_two\nforward service_one|service_two", + "id" : "128", + "type" : "port:dfd-output", + "children" : [ ] + }, { + "behavior" : "assign Stereotype.message_broker,Stereotype.plaintext_credentials,Stereotype.infrastructural,Stereotype.message_consumer_rabbitmq,Stereotype.restful_http,Queue.commudigalmicroservicessampleservicetwo,dummyType_0.dummyLabelofType_0,dummyType_1.dummyLabelofType_1 if TRUE from service_one|service_two\nforward service_one|service_two", + "id" : "140", + "type" : "port:dfd-output", + "children" : [ ] + }, { + "behavior" : "assign Stereotype.message_broker,Stereotype.plaintext_credentials,Stereotype.infrastructural,Stereotype.restful_http,dummyType_0.dummyLabelofType_0,dummyType_1.dummyLabelofType_1 if TRUE from service_one|service_two\nforward service_one|service_two", + "id" : "179", + "type" : "port:dfd-output", + "children" : [ ] + } ], + "annotations" : [ { + "message" : "Propagated: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleserviceone, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 4073506 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, Stereotype.restful_http, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, Stereotype.service_discovery, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 4073506 + }, { + "message" : "Propagated: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleserviceone, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.jdbc", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 2044825144 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, Stereotype.restful_http, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, Stereotype.jdbc", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 2044825144 + }, { + "message" : "Propagated: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleserviceone, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.gateway, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 698747943 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, Stereotype.restful_http, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 698747943 + }, { + "message" : "Propagated: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleserviceone, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.gateway, Stereotype.load_balancer, Stereotype.web_application, Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.encrypted_connection", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 407493402 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, Stereotype.restful_http, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.web_application, Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.encrypted_connection", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 407493402 + }, { + "message" : "Propagated: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleserviceone, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1774690057 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.restful_http, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, Stereotype.service_discovery, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1774690057 + }, { + "message" : "Propagated: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleserviceone, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 480402503 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.restful_http, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, Stereotype.service_discovery, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 480402503 + }, { + "message" : "Propagated: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleservicetwo, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 100445376 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, Stereotype.restful_http, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, Stereotype.service_discovery, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 100445376 + }, { + "message" : "Propagated: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleserviceone, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Queue.commudigalmicroservicessampleservicetwo, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 100445376 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.restful_http, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleservicetwo, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 100445376 + }, { + "message" : "Propagated: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleserviceone, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.jdbc, Username.servicetwo, Password.servicetwo", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1396385390 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.restful_http, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, Stereotype.jdbc, Username.servicetwo, Password.servicetwo", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1396385390 + }, { + "message" : "Propagated: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleserviceone, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.gateway, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 114414807 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.restful_http, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 114414807 + }, { + "message" : "Propagated: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleserviceone, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.gateway, Stereotype.load_balancer, Stereotype.web_application, Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.encrypted_connection", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 144699438 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.restful_http, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.web_application, Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.encrypted_connection", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 144699438 + }, { + "message" : "Propagated: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleservicetwo, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1533547487 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, Stereotype.restful_http, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, Stereotype.service_discovery, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1533547487 + }, { + "message" : "Propagated: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.restful_http, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 859123506 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, Stereotype.restful_http, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, Stereotype.service_discovery, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 859123506 + }, { + "message" : "Propagated: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.restful_http, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1597742167 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.restful_http, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, Stereotype.service_discovery, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1597742167 + }, { + "message" : "Propagated: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleserviceone, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 878991463 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, Stereotype.restful_http, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, Stereotype.service_discovery, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 878991463 + }, { + "message" : "Propagated: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleservicetwo, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 73688220 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, Stereotype.restful_http, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, Stereotype.service_discovery, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 73688220 + } ], + "children" : [ ], + "position" : { + "x" : 0.0, + "y" : 0.0 + }, + "size" : null + }, { + "text" : "service_one", + "id" : "10", + "type" : "node:function", + "labels" : [ { + "labelTypeId" : "17", + "labelTypeValueId" : "20" + }, { + "labelTypeId" : "17", + "labelTypeValueId" : "21" + }, { + "labelTypeId" : "22", + "labelTypeValueId" : "23" + }, { + "labelTypeId" : "_USBY8funEfCYrdfxNyUhUA", + "labelTypeValueId" : "_USBY8PunEfCYrdfxNyUhUA" + }, { + "labelTypeId" : "_USBY8_unEfCYrdfxNyUhUA", + "labelTypeValueId" : "_USBY8vunEfCYrdfxNyUhUA" + } ], + "ports" : [ { + "id" : "113", + "type" : "port:dfd-input", + "children" : [ ] + }, { + "behavior" : "assign Stereotype.internal,Stereotype.local_logging,Stereotype.restful_http,dummyType_0.dummyLabelofType_0,dummyType_1.dummyLabelofType_1 if TRUE from api_gateway|consul|rabbit|service_one_db\nforward api_gateway|consul|rabbit|service_one_db", + "id" : "117", + "type" : "port:dfd-output", + "children" : [ ] + }, { + "behavior" : "assign Stereotype.internal,Stereotype.local_logging,Stereotype.message_producer_rabbitmq,Stereotype.plaintext_credentials_link,Stereotype.restful_http,RoutingKey.commudigalmicroservicessampleservice,ProducerExchange.commudigalmicroservicessampleservicesexchange,dummyType_0.dummyLabelofType_0,dummyType_1.dummyLabelofType_1 if TRUE from api_gateway|consul|rabbit|service_one_db\nforward api_gateway|consul|rabbit|service_one_db", + "id" : "120", + "type" : "port:dfd-output", + "children" : [ ] + }, { + "behavior" : "assign Stereotype.internal,Stereotype.local_logging,Stereotype.restful_http,dummyType_0.dummyLabelofType_0,dummyType_1.dummyLabelofType_1 if TRUE from api_gateway|consul|rabbit|service_one_db\nforward api_gateway|consul|rabbit|service_one_db", + "id" : "169", + "type" : "port:dfd-output", + "children" : [ ] + } ], + "annotations" : [ { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, Stereotype.service_discovery, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1174586025 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1174586025 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, Stereotype.service_discovery, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1627010197 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1627010197 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, Stereotype.restful_http, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, Stereotype.service_discovery, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 4073506 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 4073506 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 4073506 + }, { + "message" : "Incoming: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleserviceone, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 4073506 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, Stereotype.restful_http, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, Stereotype.jdbc", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 2044825144 + }, { + "message" : "Incoming: Stereotype.jdbc, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 2044825144 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.jdbc", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 2044825144 + }, { + "message" : "Incoming: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleserviceone, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.jdbc", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 2044825144 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, Stereotype.restful_http, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 698747943 + }, { + "message" : "Incoming: Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.restful_http, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 698747943 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.gateway, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 698747943 + }, { + "message" : "Incoming: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleserviceone, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.gateway, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 698747943 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, Stereotype.restful_http, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.web_application, Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.encrypted_connection", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 407493402 + }, { + "message" : "Incoming: Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.restful_http, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, Stereotype.web_application, Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.encrypted_connection", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 407493402 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.gateway, Stereotype.load_balancer, Stereotype.web_application, Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.encrypted_connection", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 407493402 + }, { + "message" : "Incoming: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleserviceone, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.gateway, Stereotype.load_balancer, Stereotype.web_application, Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.encrypted_connection", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 407493402 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1774690057 + }, { + "message" : "Incoming: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleserviceone, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1774690057 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 480402503 + }, { + "message" : "Incoming: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleserviceone, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 480402503 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, Stereotype.restful_http, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, Stereotype.service_discovery, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 100445376 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 100445376 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Queue.commudigalmicroservicessampleservicetwo, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 100445376 + }, { + "message" : "Incoming: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleserviceone, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Queue.commudigalmicroservicessampleservicetwo, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 100445376 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.jdbc, Username.servicetwo, Password.servicetwo", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1396385390 + }, { + "message" : "Incoming: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleserviceone, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.jdbc, Username.servicetwo, Password.servicetwo", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1396385390 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.gateway, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 114414807 + }, { + "message" : "Incoming: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleserviceone, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.gateway, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 114414807 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.gateway, Stereotype.load_balancer, Stereotype.web_application, Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.encrypted_connection", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 144699438 + }, { + "message" : "Incoming: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleserviceone, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.gateway, Stereotype.load_balancer, Stereotype.web_application, Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.encrypted_connection", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 144699438 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, Stereotype.jdbc", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1751500625 + }, { + "message" : "Incoming: Stereotype.jdbc, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1751500625 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1650955365 + }, { + "message" : "Incoming: Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.restful_http, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1650955365 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, Stereotype.restful_http, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, Stereotype.service_discovery, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1533547487 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1533547487 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, Stereotype.restful_http, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, Stereotype.service_discovery, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 859123506 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 859123506 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, Stereotype.service_discovery, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 156199931 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 156199931 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, Stereotype.restful_http, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, Stereotype.service_discovery, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 878991463 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 878991463 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 878991463 + }, { + "message" : "Incoming: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleserviceone, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 878991463 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, Stereotype.jdbc", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 612693043 + }, { + "message" : "Incoming: Stereotype.jdbc, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 612693043 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1622613647 + }, { + "message" : "Incoming: Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.restful_http, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1622613647 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, Stereotype.restful_http, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, Stereotype.service_discovery, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 73688220 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 73688220 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, Stereotype.service_discovery, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1623060829 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1623060829 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, Stereotype.service_discovery, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1205483858 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1205483858 + } ], + "children" : [ ], + "position" : { + "x" : 0.0, + "y" : 0.0 + }, + "size" : null + }, { + "text" : "service_two", + "id" : "11", + "type" : "node:function", + "labels" : [ { + "labelTypeId" : "17", + "labelTypeValueId" : "20" + }, { + "labelTypeId" : "17", + "labelTypeValueId" : "21" + }, { + "labelTypeId" : "22", + "labelTypeValueId" : "49" + }, { + "labelTypeId" : "_USBY8funEfCYrdfxNyUhUA", + "labelTypeValueId" : "_USBY8PunEfCYrdfxNyUhUA" + }, { + "labelTypeId" : "_USBY8_unEfCYrdfxNyUhUA", + "labelTypeValueId" : "_USBY8vunEfCYrdfxNyUhUA" + } ], + "ports" : [ { + "id" : "133", + "type" : "port:dfd-input", + "children" : [ ] + }, { + "behavior" : "assign Stereotype.internal,Stereotype.local_logging,Stereotype.restful_http,dummyType_0.dummyLabelofType_0,dummyType_1.dummyLabelofType_1 if TRUE from api_gateway|consul|rabbit|service_two_db\nforward api_gateway|consul|rabbit|service_two_db", + "id" : "136", + "type" : "port:dfd-output", + "children" : [ ] + }, { + "behavior" : "assign Stereotype.internal,Stereotype.local_logging,Stereotype.message_producer_rabbitmq,Stereotype.restful_http,Stereotype.plaintext_credentials_link,RoutingKey.commudigalmicroservicessampleservice,ProducerExchange.commudigalmicroservicessampleservicesexchange,dummyType_0.dummyLabelofType_0,dummyType_1.dummyLabelofType_1 if TRUE from api_gateway|consul|rabbit|service_two_db\nforward api_gateway|consul|rabbit|service_two_db", + "id" : "138", + "type" : "port:dfd-output", + "children" : [ ] + }, { + "behavior" : "assign Stereotype.internal,Stereotype.local_logging,Stereotype.restful_http,dummyType_0.dummyLabelofType_0,dummyType_1.dummyLabelofType_1 if TRUE from api_gateway|consul|rabbit|service_two_db\nforward api_gateway|consul|rabbit|service_two_db", + "id" : "173", + "type" : "port:dfd-output", + "children" : [ ] + } ], + "annotations" : [ { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.restful_http, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, Stereotype.service_discovery, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1774690057 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1774690057 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.restful_http, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, Stereotype.service_discovery, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 480402503 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 480402503 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.restful_http, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleservicetwo, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 100445376 + }, { + "message" : "Incoming: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleservicetwo, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 100445376 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.restful_http, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, Stereotype.jdbc, Username.servicetwo, Password.servicetwo", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1396385390 + }, { + "message" : "Incoming: Stereotype.jdbc, Stereotype.plaintext_credentials_link, Username.servicetwo, Password.servicetwo, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1396385390 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.restful_http, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 114414807 + }, { + "message" : "Incoming: Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.restful_http, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 114414807 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.restful_http, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.web_application, Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.encrypted_connection", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 144699438 + }, { + "message" : "Incoming: Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.restful_http, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, Stereotype.web_application, Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.encrypted_connection", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 144699438 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, Stereotype.service_discovery, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 493944943 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 493944943 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleservicetwo, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1533547487 + }, { + "message" : "Incoming: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleservicetwo, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1533547487 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, Stereotype.jdbc, Stereotype.plaintext_credentials_link, Username.servicetwo, Password.servicetwo", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 99770475 + }, { + "message" : "Incoming: Stereotype.jdbc, Stereotype.plaintext_credentials_link, Username.servicetwo, Password.servicetwo, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 99770475 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 727250772 + }, { + "message" : "Incoming: Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.restful_http, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 727250772 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.restful_http, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, Stereotype.service_discovery, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1597742167 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1597742167 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, Stereotype.service_discovery, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 307605969 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 307605969 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleservicetwo, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 73688220 + }, { + "message" : "Incoming: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleservicetwo, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 73688220 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, Stereotype.jdbc, Stereotype.plaintext_credentials_link, Username.servicetwo, Password.servicetwo", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 130166095 + }, { + "message" : "Incoming: Stereotype.jdbc, Stereotype.plaintext_credentials_link, Username.servicetwo, Password.servicetwo, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 130166095 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1599674462 + }, { + "message" : "Incoming: Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.restful_http, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1599674462 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, Stereotype.service_discovery, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1373949107 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1373949107 + } ], + "children" : [ ], + "position" : { + "x" : 0.0, + "y" : 0.0 + }, + "size" : null + }, { + "text" : "service_one_db", + "id" : "12", + "type" : "node:function", + "labels" : [ { + "labelTypeId" : "33", + "labelTypeValueId" : "90" + }, { + "labelTypeId" : "_USBY8funEfCYrdfxNyUhUA", + "labelTypeValueId" : "_USBY8PunEfCYrdfxNyUhUA" + }, { + "labelTypeId" : "_USBY8_unEfCYrdfxNyUhUA", + "labelTypeValueId" : "_USBY8vunEfCYrdfxNyUhUA" + } ], + "ports" : [ { + "behavior" : "assign Stereotype.jdbc,dummyType_0.dummyLabelofType_0,dummyType_1.dummyLabelofType_1 if TRUE", + "id" : "143", + "type" : "port:dfd-output", + "children" : [ ] + }, { + "behavior" : "assign Stereotype.restful_http,dummyType_0.dummyLabelofType_0,dummyType_1.dummyLabelofType_1 if TRUE", + "id" : "171", + "type" : "port:dfd-output", + "children" : [ ] + } ], + "annotations" : [ { + "message" : "Propagated: Stereotype.jdbc, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 2044825144 + }, { + "message" : "Propagated: Stereotype.jdbc, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1751500625 + }, { + "message" : "Propagated: Stereotype.restful_http, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1788380050 + }, { + "message" : "Propagated: Stereotype.jdbc, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 612693043 + } ], + "children" : [ ], + "position" : { + "x" : 0.0, + "y" : 0.0 + }, + "size" : null + }, { + "text" : "service_two_db", + "id" : "13", + "type" : "node:function", + "labels" : [ { + "labelTypeId" : "33", + "labelTypeValueId" : "34" + }, { + "labelTypeId" : "_USBY8funEfCYrdfxNyUhUA", + "labelTypeValueId" : "_USBY8PunEfCYrdfxNyUhUA" + }, { + "labelTypeId" : "_USBY8_unEfCYrdfxNyUhUA", + "labelTypeValueId" : "_USBY8vunEfCYrdfxNyUhUA" + } ], + "ports" : [ { + "behavior" : "assign Stereotype.jdbc,Stereotype.plaintext_credentials_link,Username.servicetwo,Password.servicetwo,dummyType_0.dummyLabelofType_0,dummyType_1.dummyLabelofType_1 if TRUE", + "id" : "146", + "type" : "port:dfd-output", + "children" : [ ] + }, { + "behavior" : "assign Stereotype.restful_http,dummyType_0.dummyLabelofType_0,dummyType_1.dummyLabelofType_1 if TRUE", + "id" : "175", + "type" : "port:dfd-output", + "children" : [ ] + } ], + "annotations" : [ { + "message" : "Propagated: Stereotype.jdbc, Stereotype.plaintext_credentials_link, Username.servicetwo, Password.servicetwo, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1396385390 + }, { + "message" : "Propagated: Stereotype.jdbc, Stereotype.plaintext_credentials_link, Username.servicetwo, Password.servicetwo, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 99770475 + }, { + "message" : "Propagated: Stereotype.restful_http, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1052768296 + }, { + "message" : "Propagated: Stereotype.jdbc, Stereotype.plaintext_credentials_link, Username.servicetwo, Password.servicetwo, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 130166095 + } ], + "children" : [ ], + "position" : { + "x" : 0.0, + "y" : 0.0 + }, + "size" : null + }, { + "text" : "api_gateway", + "id" : "14", + "type" : "node:function", + "labels" : [ { + "labelTypeId" : "17", + "labelTypeValueId" : "75" + }, { + "labelTypeId" : "17", + "labelTypeValueId" : "27" + }, { + "labelTypeId" : "17", + "labelTypeValueId" : "76" + }, { + "labelTypeId" : "77", + "labelTypeValueId" : "78" + }, { + "labelTypeId" : "22", + "labelTypeValueId" : "79" + }, { + "labelTypeId" : "80", + "labelTypeValueId" : "81" + }, { + "labelTypeId" : "_USBY8funEfCYrdfxNyUhUA", + "labelTypeValueId" : "_USBY8PunEfCYrdfxNyUhUA" + }, { + "labelTypeId" : "_USBY8_unEfCYrdfxNyUhUA", + "labelTypeValueId" : "_USBY8vunEfCYrdfxNyUhUA" + } ], + "ports" : [ { + "id" : "154", + "type" : "port:dfd-input", + "children" : [ ] + }, { + "behavior" : "assign Stereotype.gateway,Stereotype.infrastructural,Stereotype.load_balancer,Stereotype.restful_http,dummyType_0.dummyLabelofType_0,dummyType_1.dummyLabelofType_1 if TRUE from consul|web_application\nforward consul|web_application", + "id" : "150", + "type" : "port:dfd-output", + "children" : [ ] + }, { + "behavior" : "assign Stereotype.gateway,Stereotype.infrastructural,Stereotype.load_balancer,Stereotype.restful_http,dummyType_0.dummyLabelofType_0,dummyType_1.dummyLabelofType_1 if TRUE from consul|web_application\nforward consul|web_application", + "id" : "152", + "type" : "port:dfd-output", + "children" : [ ] + }, { + "behavior" : "assign Stereotype.gateway,Stereotype.infrastructural,Stereotype.load_balancer,Stereotype.restful_http,dummyType_0.dummyLabelofType_0,dummyType_1.dummyLabelofType_1 if TRUE from consul|web_application\nforward consul|web_application", + "id" : "167", + "type" : "port:dfd-output", + "children" : [ ] + } ], + "annotations" : [ { + "message" : "Propagated: Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.restful_http, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1541046463 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1541046463 + }, { + "message" : "Propagated: Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.restful_http, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1107579932 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1107579932 + }, { + "message" : "Propagated: Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.restful_http, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, Stereotype.web_application, Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.encrypted_connection", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1784834205 + }, { + "message" : "Incoming: Stereotype.web_application, Stereotype.infrastructural, Stereotype.restful_http, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.encrypted_connection", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1784834205 + }, { + "message" : "Propagated: Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.restful_http, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 698747943 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 698747943 + }, { + "message" : "Propagated: Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.restful_http, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, Stereotype.web_application, Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.encrypted_connection", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 407493402 + }, { + "message" : "Incoming: Stereotype.web_application, Stereotype.infrastructural, Stereotype.restful_http, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.encrypted_connection", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 407493402 + }, { + "message" : "Propagated: Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.restful_http, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 114414807 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 114414807 + }, { + "message" : "Propagated: Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.restful_http, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, Stereotype.web_application, Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.encrypted_connection", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 144699438 + }, { + "message" : "Incoming: Stereotype.web_application, Stereotype.infrastructural, Stereotype.restful_http, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.encrypted_connection", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 144699438 + }, { + "message" : "Propagated: Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.restful_http, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1650955365 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1650955365 + }, { + "message" : "Propagated: Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.restful_http, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 727250772 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 727250772 + }, { + "message" : "Propagated: Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.restful_http, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1622613647 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1622613647 + }, { + "message" : "Propagated: Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.restful_http, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1599674462 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1599674462 + } ], + "children" : [ ], + "position" : { + "x" : 0.0, + "y" : 0.0 + }, + "size" : null + }, { + "text" : "web_application", + "id" : "15", + "type" : "node:function", + "labels" : [ { + "labelTypeId" : "17", + "labelTypeValueId" : "37" + }, { + "labelTypeId" : "17", + "labelTypeValueId" : "27" + }, { + "labelTypeId" : "22", + "labelTypeValueId" : "38" + }, { + "labelTypeId" : "39", + "labelTypeValueId" : "40" + }, { + "labelTypeId" : "_USBY8funEfCYrdfxNyUhUA", + "labelTypeValueId" : "_USBY8PunEfCYrdfxNyUhUA" + }, { + "labelTypeId" : "_USBY8_unEfCYrdfxNyUhUA", + "labelTypeValueId" : "_USBY8vunEfCYrdfxNyUhUA" + } ], + "ports" : [ { + "id" : "157", + "type" : "port:dfd-input", + "children" : [ ] + }, { + "behavior" : "assign Stereotype.web_application,Stereotype.infrastructural,Stereotype.restful_http,Stereotype.encrypted_connection,dummyType_0.dummyLabelofType_0,dummyType_1.dummyLabelofType_1 if TRUE from user\nforward user", + "id" : "162", + "type" : "port:dfd-output", + "children" : [ ] + }, { + "behavior" : "assign Stereotype.web_application,Stereotype.infrastructural,Stereotype.restful_http,dummyType_0.dummyLabelofType_0,dummyType_1.dummyLabelofType_1 if TRUE from user\nforward user", + "id" : "164", + "type" : "port:dfd-output", + "children" : [ ] + }, { + "behavior" : "assign Stereotype.web_application,Stereotype.infrastructural,Stereotype.restful_http,dummyType_0.dummyLabelofType_0,dummyType_1.dummyLabelofType_1 if TRUE from user\nforward user", + "id" : "177", + "type" : "port:dfd-output", + "children" : [ ] + } ], + "annotations" : [ { + "message" : "Propagated: Stereotype.web_application, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.encrypted_connection, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1784834205 + }, { + "message" : "Propagated: Stereotype.web_application, Stereotype.infrastructural, Stereotype.restful_http, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.encrypted_connection", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1784834205 + }, { + "message" : "Incoming: Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.restful_http, Stereotype.encrypted_connection, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, Stereotype.web_application, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1784834205 + }, { + "message" : "Propagated: Stereotype.web_application, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.encrypted_connection, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 407493402 + }, { + "message" : "Propagated: Stereotype.web_application, Stereotype.infrastructural, Stereotype.restful_http, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.encrypted_connection", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 407493402 + }, { + "message" : "Incoming: Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.restful_http, Stereotype.encrypted_connection, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, Stereotype.web_application, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 407493402 + }, { + "message" : "Propagated: Stereotype.web_application, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.encrypted_connection, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 144699438 + }, { + "message" : "Propagated: Stereotype.web_application, Stereotype.infrastructural, Stereotype.restful_http, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.encrypted_connection", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 144699438 + }, { + "message" : "Incoming: Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.restful_http, Stereotype.encrypted_connection, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, Stereotype.web_application, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 144699438 + }, { + "message" : "Propagated: Stereotype.web_application, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.encrypted_connection, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 626193099 + }, { + "message" : "Propagated: Stereotype.web_application, Stereotype.infrastructural, Stereotype.restful_http, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.encrypted_connection", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 626193099 + }, { + "message" : "Incoming: Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.restful_http, Stereotype.encrypted_connection, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, Stereotype.web_application, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 626193099 + } ], + "children" : [ ], + "position" : { + "x" : 0.0, + "y" : 0.0 + }, + "size" : null + }, { + "text" : "scope", + "id" : "16", + "type" : "node:function", + "labels" : [ { + "labelTypeId" : "17", + "labelTypeValueId" : "69" + }, { + "labelTypeId" : "17", + "labelTypeValueId" : "27" + }, { + "labelTypeId" : "70", + "labelTypeValueId" : "71" + }, { + "labelTypeId" : "22", + "labelTypeValueId" : "72" + }, { + "labelTypeId" : "_USBY8funEfCYrdfxNyUhUA", + "labelTypeValueId" : "_USBY8PunEfCYrdfxNyUhUA" + }, { + "labelTypeId" : "_USBY8_unEfCYrdfxNyUhUA", + "labelTypeValueId" : "_USBY8vunEfCYrdfxNyUhUA" + } ], + "ports" : [ { + "id" : "166", + "type" : "port:dfd-input", + "children" : [ ] + } ], + "annotations" : [ { + "message" : "Incoming: Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.restful_http, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1541046463 + }, { + "message" : "Incoming: Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.restful_http, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1107579932 + }, { + "message" : "Incoming: Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.restful_http, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, Stereotype.web_application, Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.encrypted_connection", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1784834205 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, Stereotype.service_discovery, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1174586025 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, Stereotype.service_discovery, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1627010197 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 4073506 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.jdbc", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 2044825144 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.gateway, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 698747943 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.gateway, Stereotype.load_balancer, Stereotype.web_application, Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.encrypted_connection", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 407493402 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1774690057 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 480402503 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Queue.commudigalmicroservicessampleservicetwo, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 100445376 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.jdbc, Username.servicetwo, Password.servicetwo", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1396385390 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.gateway, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 114414807 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.gateway, Stereotype.load_balancer, Stereotype.web_application, Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.encrypted_connection", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 144699438 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, Stereotype.jdbc", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1751500625 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1650955365 + }, { + "message" : "Incoming: Stereotype.restful_http, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1788380050 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, Stereotype.service_discovery, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 493944943 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleservicetwo, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1533547487 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, Stereotype.jdbc, Stereotype.plaintext_credentials_link, Username.servicetwo, Password.servicetwo", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 99770475 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 727250772 + }, { + "message" : "Incoming: Stereotype.restful_http, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1052768296 + }, { + "message" : "Incoming: Stereotype.web_application, Stereotype.infrastructural, Stereotype.restful_http, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.encrypted_connection", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 626193099 + }, { + "message" : "Incoming: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.restful_http, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 859123506 + }, { + "message" : "Incoming: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.restful_http, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1597742167 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 503595296 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 754072705 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 908384914 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 905847077 + }, { + "message" : "Incoming: Stereotype.monitoring_dashboard, Stereotype.infrastructural, Stereotype.restful_http, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, Stereotype.search_engine, Stereotype.logging_server, Stereotype.internal, Stereotype.local_logging, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 156199931 + }, { + "message" : "Incoming: Stereotype.monitoring_dashboard, Stereotype.infrastructural, Stereotype.restful_http, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, Stereotype.search_engine, Stereotype.logging_server, Stereotype.internal, Stereotype.local_logging, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 878991463 + }, { + "message" : "Incoming: Stereotype.monitoring_dashboard, Stereotype.infrastructural, Stereotype.restful_http, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, Stereotype.search_engine, Stereotype.logging_server, Stereotype.internal, Stereotype.local_logging, Stereotype.jdbc", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 612693043 + }, { + "message" : "Incoming: Stereotype.monitoring_dashboard, Stereotype.infrastructural, Stereotype.restful_http, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, Stereotype.search_engine, Stereotype.logging_server, Stereotype.internal, Stereotype.local_logging, Stereotype.gateway, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1622613647 + }, { + "message" : "Incoming: Stereotype.monitoring_dashboard, Stereotype.infrastructural, Stereotype.restful_http, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, Stereotype.search_engine, Stereotype.logging_server, Stereotype.internal, Stereotype.local_logging, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 307605969 + }, { + "message" : "Incoming: Stereotype.monitoring_dashboard, Stereotype.infrastructural, Stereotype.restful_http, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, Stereotype.search_engine, Stereotype.logging_server, Stereotype.internal, Stereotype.local_logging, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleservicetwo, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 73688220 + }, { + "message" : "Incoming: Stereotype.monitoring_dashboard, Stereotype.infrastructural, Stereotype.restful_http, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, Stereotype.search_engine, Stereotype.logging_server, Stereotype.internal, Stereotype.local_logging, Stereotype.jdbc, Stereotype.plaintext_credentials_link, Username.servicetwo, Password.servicetwo", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 130166095 + }, { + "message" : "Incoming: Stereotype.monitoring_dashboard, Stereotype.infrastructural, Stereotype.restful_http, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, Stereotype.search_engine, Stereotype.logging_server, Stereotype.internal, Stereotype.local_logging, Stereotype.gateway, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1599674462 + }, { + "message" : "Incoming: Stereotype.search_engine, Stereotype.infrastructural, Stereotype.restful_http, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, Stereotype.logging_server, Stereotype.internal, Stereotype.local_logging, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1623060829 + }, { + "message" : "Incoming: Stereotype.logging_server, Stereotype.infrastructural, Stereotype.restful_http, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, Stereotype.internal, Stereotype.local_logging, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1205483858 + }, { + "message" : "Incoming: Stereotype.logging_server, Stereotype.infrastructural, Stereotype.restful_http, dummyType_0.dummyLabelofType_0, dummyType_1.dummyLabelofType_1, Stereotype.internal, Stereotype.local_logging, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1373949107 + } ], + "children" : [ ], + "position" : { + "x" : 0.0, + "y" : 0.0 + }, + "size" : null + } ] + }, + "labelTypes" : [ { + "id" : "17", + "name" : "Stereotype", + "values" : [ { + "id" : "20", + "text" : "internal" + }, { + "id" : "21", + "text" : "local_logging" + }, { + "id" : "26", + "text" : "logging_server" + }, { + "id" : "27", + "text" : "infrastructural" + }, { + "id" : "37", + "text" : "web_application" + }, { + "id" : "43", + "text" : "search_engine" + }, { + "id" : "52", + "text" : "service_discovery" + }, { + "id" : "58", + "text" : "message_broker" + }, { + "id" : "59", + "text" : "plaintext_credentials" + }, { + "id" : "69", + "text" : "monitoring_dashboard" + }, { + "id" : "75", + "text" : "gateway" + }, { + "id" : "76", + "text" : "load_balancer" + }, { + "id" : "93", + "text" : "user_stereotype" + }, { + "id" : "94", + "text" : "entrypoint" + }, { + "id" : "95", + "text" : "exitpoint" + }, { + "id" : "101", + "text" : "restful_http" + }, { + "id" : "122", + "text" : "message_producer_rabbitmq" + }, { + "id" : "123", + "text" : "plaintext_credentials_link" + }, { + "id" : "130", + "text" : "message_consumer_rabbitmq" + }, { + "id" : "145", + "text" : "jdbc" + }, { + "id" : "160", + "text" : "encrypted_connection" + } ] + }, { + "id" : "22", + "name" : "Port", + "values" : [ { + "id" : "23", + "text" : "8082" + }, { + "id" : "28", + "text" : "5000" + }, { + "id" : "38", + "text" : "4200" + }, { + "id" : "46", + "text" : "9200" + }, { + "id" : "49", + "text" : "8084" + }, { + "id" : "53", + "text" : "8500" + }, { + "id" : "64", + "text" : "15672" + }, { + "id" : "72", + "text" : "4040" + }, { + "id" : "79", + "text" : "8080" + }, { + "id" : "87", + "text" : "5601" + } ] + }, { + "id" : "29", + "name" : "LoggingServer", + "values" : [ { + "id" : "30", + "text" : "Logstash" + } ] + }, { + "id" : "33", + "name" : "Process", + "values" : [ { + "id" : "34", + "text" : "service_two_db" + }, { + "id" : "90", + "text" : "service_one_db" + } ] + }, { + "id" : "39", + "name" : "WebApplication", + "values" : [ { + "id" : "40", + "text" : "Nginx" + } ] + }, { + "id" : "44", + "name" : "SearchEngine", + "values" : [ { + "id" : "45", + "text" : "Elasticsearch" + } ] + }, { + "id" : "54", + "name" : "ServiceDiscovery", + "values" : [ { + "id" : "55", + "text" : "Consul" + } ] + }, { + "id" : "60", + "name" : "MessageBroker", + "values" : [ { + "id" : "61", + "text" : "RabbitMQ" + } ] + }, { + "id" : "62", + "name" : "Username", + "values" : [ { + "id" : "63", + "text" : "mudigal" + }, { + "id" : "148", + "text" : "servicetwo" + } ] + }, { + "id" : "65", + "name" : "Password", + "values" : [ { + "id" : "66", + "text" : "mudigal" + }, { + "id" : "149", + "text" : "servicetwo" + } ] + }, { + "id" : "70", + "name" : "MonitoringDashboard", + "values" : [ { + "id" : "71", + "text" : "WeaveScope" + }, { + "id" : "86", + "text" : "Kibana" + } ] + }, { + "id" : "77", + "name" : "Gateway", + "values" : [ { + "id" : "78", + "text" : "Zuul" + } ] + }, { + "id" : "80", + "name" : "LoadBalancer", + "values" : [ { + "id" : "81", + "text" : "Ribbon" + } ] + }, { + "id" : "124", + "name" : "RoutingKey", + "values" : [ { + "id" : "125", + "text" : "commudigalmicroservicessampleservice" + } ] + }, { + "id" : "126", + "name" : "ProducerExchange", + "values" : [ { + "id" : "127", + "text" : "commudigalmicroservicessampleservicesexchange" + } ] + }, { + "id" : "131", + "name" : "Queue", + "values" : [ { + "id" : "132", + "text" : "commudigalmicroservicessampleserviceone" + }, { + "id" : "142", + "text" : "commudigalmicroservicessampleservicetwo" + } ] + }, { + "id" : "_USBY8funEfCYrdfxNyUhUA", + "name" : "dummyType_0", + "values" : [ { + "id" : "_USBY8PunEfCYrdfxNyUhUA", + "text" : "dummyLabelofType_0" + } ] + }, { + "id" : "_USBY8_unEfCYrdfxNyUhUA", + "name" : "dummyType_1", + "values" : [ { + "id" : "_USBY8vunEfCYrdfxNyUhUA", + "text" : "dummyLabelofType_1" + } ] + } ], + "mode" : "edit", + "constraints" : [ ] +} \ No newline at end of file diff --git a/tests/dev.arcovia.mitigation.utils.tests/testresults/scaledLabels.json b/tests/dev.arcovia.mitigation.utils.tests/testresults/scaledLabels.json new file mode 100644 index 00000000..7a219c3f --- /dev/null +++ b/tests/dev.arcovia.mitigation.utils.tests/testresults/scaledLabels.json @@ -0,0 +1,3279 @@ +{ + "model" : { + "type" : "graph", + "id" : "root", + "children" : [ { + "text" : "consul2", + "id" : "100", + "type" : "edge:arrow", + "sourceId" : "99", + "targetId" : "98", + "labels" : null, + "ports" : null, + "annotations" : null, + "children" : [ ], + "routingPoints" : [ ] + }, { + "text" : "consul3", + "id" : "103", + "type" : "edge:arrow", + "sourceId" : "102", + "targetId" : "98", + "labels" : null, + "ports" : null, + "annotations" : null, + "children" : [ ], + "routingPoints" : [ ] + }, { + "text" : "consul3", + "id" : "106", + "type" : "edge:arrow", + "sourceId" : "105", + "targetId" : "104", + "labels" : null, + "ports" : null, + "annotations" : null, + "children" : [ ], + "routingPoints" : [ ] + }, { + "text" : "logstash", + "id" : "109", + "type" : "edge:arrow", + "sourceId" : "108", + "targetId" : "107", + "labels" : null, + "ports" : null, + "annotations" : null, + "children" : [ ], + "routingPoints" : [ ] + }, { + "text" : "elasticsearch", + "id" : "112", + "type" : "edge:arrow", + "sourceId" : "111", + "targetId" : "110", + "labels" : null, + "ports" : null, + "annotations" : null, + "children" : [ ], + "routingPoints" : [ ] + }, { + "text" : "consul", + "id" : "115", + "type" : "edge:arrow", + "sourceId" : "114", + "targetId" : "113", + "labels" : null, + "ports" : null, + "annotations" : null, + "children" : [ ], + "routingPoints" : [ ] + }, { + "text" : "service_one", + "id" : "118", + "type" : "edge:arrow", + "sourceId" : "117", + "targetId" : "116", + "labels" : null, + "ports" : null, + "annotations" : null, + "children" : [ ], + "routingPoints" : [ ] + }, { + "text" : "service_one", + "id" : "121", + "type" : "edge:arrow", + "sourceId" : "120", + "targetId" : "119", + "labels" : null, + "ports" : null, + "annotations" : null, + "children" : [ ], + "routingPoints" : [ ] + }, { + "text" : "rabbit", + "id" : "129", + "type" : "edge:arrow", + "sourceId" : "128", + "targetId" : "113", + "labels" : null, + "ports" : null, + "annotations" : null, + "children" : [ ], + "routingPoints" : [ ] + }, { + "text" : "consul", + "id" : "135", + "type" : "edge:arrow", + "sourceId" : "134", + "targetId" : "133", + "labels" : null, + "ports" : null, + "annotations" : null, + "children" : [ ], + "routingPoints" : [ ] + }, { + "text" : "service_two", + "id" : "137", + "type" : "edge:arrow", + "sourceId" : "136", + "targetId" : "116", + "labels" : null, + "ports" : null, + "annotations" : null, + "children" : [ ], + "routingPoints" : [ ] + }, { + "text" : "service_two", + "id" : "139", + "type" : "edge:arrow", + "sourceId" : "138", + "targetId" : "119", + "labels" : null, + "ports" : null, + "annotations" : null, + "children" : [ ], + "routingPoints" : [ ] + }, { + "text" : "rabbit", + "id" : "141", + "type" : "edge:arrow", + "sourceId" : "140", + "targetId" : "133", + "labels" : null, + "ports" : null, + "annotations" : null, + "children" : [ ], + "routingPoints" : [ ] + }, { + "text" : "service_one_db", + "id" : "144", + "type" : "edge:arrow", + "sourceId" : "143", + "targetId" : "113", + "labels" : null, + "ports" : null, + "annotations" : null, + "children" : [ ], + "routingPoints" : [ ] + }, { + "text" : "service_two_db", + "id" : "147", + "type" : "edge:arrow", + "sourceId" : "146", + "targetId" : "133", + "labels" : null, + "ports" : null, + "annotations" : null, + "children" : [ ], + "routingPoints" : [ ] + }, { + "text" : "api_gateway", + "id" : "151", + "type" : "edge:arrow", + "sourceId" : "150", + "targetId" : "113", + "labels" : null, + "ports" : null, + "annotations" : null, + "children" : [ ], + "routingPoints" : [ ] + }, { + "text" : "api_gateway", + "id" : "153", + "type" : "edge:arrow", + "sourceId" : "152", + "targetId" : "133", + "labels" : null, + "ports" : null, + "annotations" : null, + "children" : [ ], + "routingPoints" : [ ] + }, { + "text" : "consul", + "id" : "156", + "type" : "edge:arrow", + "sourceId" : "155", + "targetId" : "154", + "labels" : null, + "ports" : null, + "annotations" : null, + "children" : [ ], + "routingPoints" : [ ] + }, { + "text" : "user", + "id" : "159", + "type" : "edge:arrow", + "sourceId" : "158", + "targetId" : "157", + "labels" : null, + "ports" : null, + "annotations" : null, + "children" : [ ], + "routingPoints" : [ ] + }, { + "text" : "web_application", + "id" : "163", + "type" : "edge:arrow", + "sourceId" : "162", + "targetId" : "161", + "labels" : null, + "ports" : null, + "annotations" : null, + "children" : [ ], + "routingPoints" : [ ] + }, { + "text" : "web_application", + "id" : "165", + "type" : "edge:arrow", + "sourceId" : "164", + "targetId" : "154", + "labels" : null, + "ports" : null, + "annotations" : null, + "children" : [ ], + "routingPoints" : [ ] + }, { + "text" : "api_gateway", + "id" : "168", + "type" : "edge:arrow", + "sourceId" : "167", + "targetId" : "166", + "labels" : null, + "ports" : null, + "annotations" : null, + "children" : [ ], + "routingPoints" : [ ] + }, { + "text" : "service_one", + "id" : "170", + "type" : "edge:arrow", + "sourceId" : "169", + "targetId" : "166", + "labels" : null, + "ports" : null, + "annotations" : null, + "children" : [ ], + "routingPoints" : [ ] + }, { + "text" : "service_one_db", + "id" : "172", + "type" : "edge:arrow", + "sourceId" : "171", + "targetId" : "166", + "labels" : null, + "ports" : null, + "annotations" : null, + "children" : [ ], + "routingPoints" : [ ] + }, { + "text" : "service_two", + "id" : "174", + "type" : "edge:arrow", + "sourceId" : "173", + "targetId" : "166", + "labels" : null, + "ports" : null, + "annotations" : null, + "children" : [ ], + "routingPoints" : [ ] + }, { + "text" : "service_two_db", + "id" : "176", + "type" : "edge:arrow", + "sourceId" : "175", + "targetId" : "166", + "labels" : null, + "ports" : null, + "annotations" : null, + "children" : [ ], + "routingPoints" : [ ] + }, { + "text" : "web_application", + "id" : "178", + "type" : "edge:arrow", + "sourceId" : "177", + "targetId" : "166", + "labels" : null, + "ports" : null, + "annotations" : null, + "children" : [ ], + "routingPoints" : [ ] + }, { + "text" : "rabbit", + "id" : "180", + "type" : "edge:arrow", + "sourceId" : "179", + "targetId" : "166", + "labels" : null, + "ports" : null, + "annotations" : null, + "children" : [ ], + "routingPoints" : [ ] + }, { + "text" : "consul", + "id" : "182", + "type" : "edge:arrow", + "sourceId" : "181", + "targetId" : "166", + "labels" : null, + "ports" : null, + "annotations" : null, + "children" : [ ], + "routingPoints" : [ ] + }, { + "text" : "consul2", + "id" : "184", + "type" : "edge:arrow", + "sourceId" : "183", + "targetId" : "166", + "labels" : null, + "ports" : null, + "annotations" : null, + "children" : [ ], + "routingPoints" : [ ] + }, { + "text" : "consul3", + "id" : "186", + "type" : "edge:arrow", + "sourceId" : "185", + "targetId" : "166", + "labels" : null, + "ports" : null, + "annotations" : null, + "children" : [ ], + "routingPoints" : [ ] + }, { + "text" : "kibana", + "id" : "188", + "type" : "edge:arrow", + "sourceId" : "187", + "targetId" : "166", + "labels" : null, + "ports" : null, + "annotations" : null, + "children" : [ ], + "routingPoints" : [ ] + }, { + "text" : "elasticsearch", + "id" : "190", + "type" : "edge:arrow", + "sourceId" : "189", + "targetId" : "166", + "labels" : null, + "ports" : null, + "annotations" : null, + "children" : [ ], + "routingPoints" : [ ] + }, { + "text" : "logstash", + "id" : "192", + "type" : "edge:arrow", + "sourceId" : "191", + "targetId" : "166", + "labels" : null, + "ports" : null, + "annotations" : null, + "children" : [ ], + "routingPoints" : [ ] + }, { + "text" : "user", + "id" : "2", + "type" : "node:input-output", + "labels" : [ { + "labelTypeId" : "17", + "labelTypeValueId" : "93" + }, { + "labelTypeId" : "17", + "labelTypeValueId" : "94" + }, { + "labelTypeId" : "17", + "labelTypeValueId" : "95" + }, { + "labelTypeId" : "_Vx3bEPunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_Vx3bEfunEfCYrdfxNyUhUA" + }, { + "labelTypeId" : "_Vx3bEPunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_Vx3bEvunEfCYrdfxNyUhUA" + } ], + "ports" : [ { + "id" : "161", + "type" : "port:dfd-input", + "children" : [ ] + }, { + "behavior" : "assign Stereotype.user_stereotype,Stereotype.entrypoint,Stereotype.exitpoint,Stereotype.restful_http,Stereotype.encrypted_connection,dummyCategory.dummy_0,dummyCategory.dummy_1 if TRUE from web_application\nforward web_application", + "id" : "158", + "type" : "port:dfd-output", + "children" : [ ] + } ], + "annotations" : [ { + "message" : "Propagated: Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.restful_http, Stereotype.encrypted_connection, dummyCategory.dummy_0, dummyCategory.dummy_1, Stereotype.web_application, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1220074684 + }, { + "message" : "Incoming: Stereotype.web_application, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.encrypted_connection, dummyCategory.dummy_0, dummyCategory.dummy_1", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1220074684 + }, { + "message" : "Propagated: Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.restful_http, Stereotype.encrypted_connection, dummyCategory.dummy_0, dummyCategory.dummy_1, Stereotype.web_application, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 312760057 + }, { + "message" : "Incoming: Stereotype.web_application, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.encrypted_connection, dummyCategory.dummy_0, dummyCategory.dummy_1", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 312760057 + }, { + "message" : "Propagated: Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.restful_http, Stereotype.encrypted_connection, dummyCategory.dummy_0, dummyCategory.dummy_1, Stereotype.web_application, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 113642335 + }, { + "message" : "Incoming: Stereotype.web_application, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.encrypted_connection, dummyCategory.dummy_0, dummyCategory.dummy_1", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 113642335 + }, { + "message" : "Propagated: Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.restful_http, Stereotype.encrypted_connection, dummyCategory.dummy_0, dummyCategory.dummy_1, Stereotype.web_application, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 532499433 + }, { + "message" : "Incoming: Stereotype.web_application, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.encrypted_connection, dummyCategory.dummy_0, dummyCategory.dummy_1", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 532499433 + } ], + "children" : [ ], + "position" : { + "x" : 0.0, + "y" : 0.0 + }, + "size" : null + }, { + "text" : "consul", + "id" : "3", + "type" : "node:function", + "labels" : [ { + "labelTypeId" : "17", + "labelTypeValueId" : "52" + }, { + "labelTypeId" : "17", + "labelTypeValueId" : "27" + }, { + "labelTypeId" : "22", + "labelTypeValueId" : "53" + }, { + "labelTypeId" : "54", + "labelTypeValueId" : "55" + }, { + "labelTypeId" : "_Vx3bEPunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_Vx3bEfunEfCYrdfxNyUhUA" + }, { + "labelTypeId" : "_Vx3bEPunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_Vx3bEvunEfCYrdfxNyUhUA" + } ], + "ports" : [ { + "id" : "98", + "type" : "port:dfd-input", + "children" : [ ] + }, { + "behavior" : "assign Stereotype.service_discovery,Stereotype.infrastructural,Stereotype.restful_http,dummyCategory.dummy_0,dummyCategory.dummy_1 if TRUE from consul2|consul3\nforward consul2|consul3", + "id" : "114", + "type" : "port:dfd-output", + "children" : [ ] + }, { + "behavior" : "assign Stereotype.service_discovery,Stereotype.infrastructural,Stereotype.restful_http,dummyCategory.dummy_0,dummyCategory.dummy_1 if TRUE from consul2|consul3\nforward consul2|consul3", + "id" : "134", + "type" : "port:dfd-output", + "children" : [ ] + }, { + "behavior" : "assign Stereotype.service_discovery,Stereotype.infrastructural,Stereotype.restful_http,dummyCategory.dummy_0,dummyCategory.dummy_1 if TRUE from consul2|consul3\nforward consul2|consul3", + "id" : "155", + "type" : "port:dfd-output", + "children" : [ ] + }, { + "behavior" : "assign Stereotype.service_discovery,Stereotype.infrastructural,Stereotype.restful_http,dummyCategory.dummy_0,dummyCategory.dummy_1 if TRUE from consul2|consul3\nforward consul2|consul3", + "id" : "181", + "type" : "port:dfd-output", + "children" : [ ] + } ], + "annotations" : [ { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 811821567 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 811821567 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 41858320 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 41858320 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1459482528 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1459482528 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 2113558545 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 2113558545 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 182170763 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 182170763 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1026665374 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1026665374 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1166854090 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1166854090 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 132424047 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 132424047 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 934909782 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 934909782 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 604715368 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 604715368 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 714432699 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 714432699 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1635957169 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1635957169 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1842310120 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1842310120 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 2097184813 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 2097184813 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 17771154 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 17771154 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 2029507446 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 2029507446 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 781346540 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 781346540 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1527087828 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1527087828 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1477762230 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1477762230 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 795932226 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 795932226 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 966231614 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 966231614 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1192762582 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1192762582 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1878143121 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1878143121 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1102439236 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1102439236 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1187817736 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1187817736 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 944009208 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 944009208 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1308359077 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1308359077 + } ], + "children" : [ ], + "position" : { + "x" : 0.0, + "y" : 0.0 + }, + "size" : null + }, { + "text" : "consul2", + "id" : "4", + "type" : "node:function", + "labels" : [ { + "labelTypeId" : "17", + "labelTypeValueId" : "52" + }, { + "labelTypeId" : "17", + "labelTypeValueId" : "27" + }, { + "labelTypeId" : "22", + "labelTypeValueId" : "53" + }, { + "labelTypeId" : "54", + "labelTypeValueId" : "55" + }, { + "labelTypeId" : "_Vx3bEPunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_Vx3bEfunEfCYrdfxNyUhUA" + }, { + "labelTypeId" : "_Vx3bEPunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_Vx3bEvunEfCYrdfxNyUhUA" + } ], + "ports" : [ { + "id" : "104", + "type" : "port:dfd-input", + "children" : [ ] + }, { + "behavior" : "assign Stereotype.service_discovery,Stereotype.infrastructural,Stereotype.restful_http,dummyCategory.dummy_0,dummyCategory.dummy_1 if TRUE from consul3\nforward consul3", + "id" : "99", + "type" : "port:dfd-output", + "children" : [ ] + }, { + "behavior" : "assign Stereotype.service_discovery,Stereotype.infrastructural,Stereotype.restful_http,dummyCategory.dummy_0,dummyCategory.dummy_1 if TRUE from consul3\nforward consul3", + "id" : "183", + "type" : "port:dfd-output", + "children" : [ ] + } ], + "annotations" : [ { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 811821567 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 811821567 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1459482528 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1459482528 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 182170763 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 182170763 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1026665374 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1026665374 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1166854090 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1166854090 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 934909782 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 934909782 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 604715368 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 604715368 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 714432699 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 714432699 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1635957169 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1635957169 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1842310120 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1842310120 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 2097184813 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 2097184813 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 17771154 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 17771154 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 2029507446 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 2029507446 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 781346540 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 781346540 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 598108316 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 598108316 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1477762230 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1477762230 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 795932226 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 795932226 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 966231614 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 966231614 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1192762582 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1192762582 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1878143121 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1878143121 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1102439236 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1102439236 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1187817736 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1187817736 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 944009208 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 944009208 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1308359077 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1308359077 + } ], + "children" : [ ], + "position" : { + "x" : 0.0, + "y" : 0.0 + }, + "size" : null + }, { + "text" : "consul3", + "id" : "5", + "type" : "node:function", + "labels" : [ { + "labelTypeId" : "17", + "labelTypeValueId" : "52" + }, { + "labelTypeId" : "17", + "labelTypeValueId" : "27" + }, { + "labelTypeId" : "22", + "labelTypeValueId" : "53" + }, { + "labelTypeId" : "54", + "labelTypeValueId" : "55" + }, { + "labelTypeId" : "_Vx3bEPunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_Vx3bEfunEfCYrdfxNyUhUA" + }, { + "labelTypeId" : "_Vx3bEPunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_Vx3bEvunEfCYrdfxNyUhUA" + } ], + "ports" : [ { + "behavior" : "assign Stereotype.service_discovery,Stereotype.infrastructural,Stereotype.restful_http,dummyCategory.dummy_0,dummyCategory.dummy_1 if TRUE", + "id" : "102", + "type" : "port:dfd-output", + "children" : [ ] + }, { + "behavior" : "assign Stereotype.service_discovery,Stereotype.infrastructural,Stereotype.restful_http,dummyCategory.dummy_0,dummyCategory.dummy_1 if TRUE", + "id" : "105", + "type" : "port:dfd-output", + "children" : [ ] + }, { + "behavior" : "assign Stereotype.service_discovery,Stereotype.infrastructural,Stereotype.restful_http,dummyCategory.dummy_0,dummyCategory.dummy_1 if TRUE", + "id" : "185", + "type" : "port:dfd-output", + "children" : [ ] + } ], + "annotations" : [ { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 811821567 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 41858320 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1459482528 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 2113558545 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 182170763 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1026665374 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1166854090 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 132424047 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 934909782 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 604715368 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 714432699 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1635957169 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1842310120 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 2097184813 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 17771154 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 2029507446 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 781346540 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1527087828 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 598108316 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1695314941 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1477762230 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 795932226 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 966231614 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1192762582 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1878143121 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1102439236 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1187817736 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 944009208 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1308359077 + } ], + "children" : [ ], + "position" : { + "x" : 0.0, + "y" : 0.0 + }, + "size" : null + }, { + "text" : "elasticsearch", + "id" : "6", + "type" : "node:function", + "labels" : [ { + "labelTypeId" : "17", + "labelTypeValueId" : "43" + }, { + "labelTypeId" : "17", + "labelTypeValueId" : "27" + }, { + "labelTypeId" : "44", + "labelTypeValueId" : "45" + }, { + "labelTypeId" : "22", + "labelTypeValueId" : "46" + }, { + "labelTypeId" : "_Vx3bEPunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_Vx3bEfunEfCYrdfxNyUhUA" + }, { + "labelTypeId" : "_Vx3bEPunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_Vx3bEvunEfCYrdfxNyUhUA" + } ], + "ports" : [ { + "id" : "107", + "type" : "port:dfd-input", + "children" : [ ] + }, { + "behavior" : "assign Stereotype.search_engine,Stereotype.infrastructural,Stereotype.restful_http,dummyCategory.dummy_0,dummyCategory.dummy_1 if TRUE from logstash\nforward logstash", + "id" : "111", + "type" : "port:dfd-output", + "children" : [ ] + }, { + "behavior" : "assign Stereotype.search_engine,Stereotype.infrastructural,Stereotype.restful_http,dummyCategory.dummy_0,dummyCategory.dummy_1 if TRUE from logstash\nforward logstash", + "id" : "189", + "type" : "port:dfd-output", + "children" : [ ] + } ], + "annotations" : [ { + "message" : "Propagated: Stereotype.search_engine, Stereotype.infrastructural, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, Stereotype.logging_server, Stereotype.internal, Stereotype.local_logging, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1477762230 + }, { + "message" : "Incoming: Stereotype.logging_server, Stereotype.infrastructural, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, Stereotype.internal, Stereotype.local_logging, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1477762230 + }, { + "message" : "Propagated: Stereotype.search_engine, Stereotype.infrastructural, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, Stereotype.logging_server, Stereotype.internal, Stereotype.local_logging, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 795932226 + }, { + "message" : "Incoming: Stereotype.logging_server, Stereotype.infrastructural, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, Stereotype.internal, Stereotype.local_logging, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 795932226 + }, { + "message" : "Propagated: Stereotype.search_engine, Stereotype.infrastructural, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, Stereotype.logging_server, Stereotype.internal, Stereotype.local_logging, Stereotype.jdbc", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1057130936 + }, { + "message" : "Incoming: Stereotype.logging_server, Stereotype.infrastructural, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, Stereotype.internal, Stereotype.local_logging, Stereotype.jdbc", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1057130936 + }, { + "message" : "Propagated: Stereotype.search_engine, Stereotype.infrastructural, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, Stereotype.logging_server, Stereotype.internal, Stereotype.local_logging, Stereotype.gateway, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 966231614 + }, { + "message" : "Incoming: Stereotype.logging_server, Stereotype.infrastructural, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, Stereotype.internal, Stereotype.local_logging, Stereotype.gateway, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 966231614 + }, { + "message" : "Propagated: Stereotype.search_engine, Stereotype.infrastructural, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, Stereotype.logging_server, Stereotype.internal, Stereotype.local_logging, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1192762582 + }, { + "message" : "Incoming: Stereotype.logging_server, Stereotype.infrastructural, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, Stereotype.internal, Stereotype.local_logging, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1192762582 + }, { + "message" : "Propagated: Stereotype.search_engine, Stereotype.infrastructural, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, Stereotype.logging_server, Stereotype.internal, Stereotype.local_logging, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleservicetwo, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1878143121 + }, { + "message" : "Incoming: Stereotype.logging_server, Stereotype.infrastructural, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, Stereotype.internal, Stereotype.local_logging, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleservicetwo, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1878143121 + }, { + "message" : "Propagated: Stereotype.search_engine, Stereotype.infrastructural, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, Stereotype.logging_server, Stereotype.internal, Stereotype.local_logging, Stereotype.jdbc, Stereotype.plaintext_credentials_link, Username.servicetwo, Password.servicetwo", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1150696350 + }, { + "message" : "Incoming: Stereotype.logging_server, Stereotype.infrastructural, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, Stereotype.internal, Stereotype.local_logging, Stereotype.jdbc, Stereotype.plaintext_credentials_link, Username.servicetwo, Password.servicetwo", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1150696350 + }, { + "message" : "Propagated: Stereotype.search_engine, Stereotype.infrastructural, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, Stereotype.logging_server, Stereotype.internal, Stereotype.local_logging, Stereotype.gateway, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1102439236 + }, { + "message" : "Incoming: Stereotype.logging_server, Stereotype.infrastructural, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, Stereotype.internal, Stereotype.local_logging, Stereotype.gateway, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1102439236 + }, { + "message" : "Propagated: Stereotype.search_engine, Stereotype.infrastructural, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, Stereotype.logging_server, Stereotype.internal, Stereotype.local_logging, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1187817736 + }, { + "message" : "Incoming: Stereotype.logging_server, Stereotype.infrastructural, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, Stereotype.internal, Stereotype.local_logging, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1187817736 + } ], + "children" : [ ], + "position" : { + "x" : 0.0, + "y" : 0.0 + }, + "size" : null + }, { + "text" : "logstash", + "id" : "7", + "type" : "node:function", + "labels" : [ { + "labelTypeId" : "17", + "labelTypeValueId" : "26" + }, { + "labelTypeId" : "17", + "labelTypeValueId" : "27" + }, { + "labelTypeId" : "22", + "labelTypeValueId" : "28" + }, { + "labelTypeId" : "29", + "labelTypeValueId" : "30" + }, { + "labelTypeId" : "_Vx3bEPunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_Vx3bEfunEfCYrdfxNyUhUA" + }, { + "labelTypeId" : "_Vx3bEPunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_Vx3bEvunEfCYrdfxNyUhUA" + } ], + "ports" : [ { + "id" : "116", + "type" : "port:dfd-input", + "children" : [ ] + }, { + "behavior" : "assign Stereotype.logging_server,Stereotype.infrastructural,Stereotype.restful_http,dummyCategory.dummy_0,dummyCategory.dummy_1 if TRUE from service_one|service_two\nforward service_one|service_two", + "id" : "108", + "type" : "port:dfd-output", + "children" : [ ] + }, { + "behavior" : "assign Stereotype.logging_server,Stereotype.infrastructural,Stereotype.restful_http,dummyCategory.dummy_0,dummyCategory.dummy_1 if TRUE from service_one|service_two\nforward service_one|service_two", + "id" : "191", + "type" : "port:dfd-output", + "children" : [ ] + } ], + "annotations" : [ { + "message" : "Propagated: Stereotype.logging_server, Stereotype.infrastructural, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, Stereotype.internal, Stereotype.local_logging, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1477762230 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, Stereotype.service_discovery, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1477762230 + }, { + "message" : "Propagated: Stereotype.logging_server, Stereotype.infrastructural, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, Stereotype.internal, Stereotype.local_logging, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 795932226 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 795932226 + }, { + "message" : "Propagated: Stereotype.logging_server, Stereotype.infrastructural, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, Stereotype.internal, Stereotype.local_logging, Stereotype.jdbc", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1057130936 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, Stereotype.jdbc", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1057130936 + }, { + "message" : "Propagated: Stereotype.logging_server, Stereotype.infrastructural, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, Stereotype.internal, Stereotype.local_logging, Stereotype.gateway, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 966231614 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 966231614 + }, { + "message" : "Propagated: Stereotype.logging_server, Stereotype.infrastructural, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, Stereotype.internal, Stereotype.local_logging, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1192762582 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, Stereotype.service_discovery, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1192762582 + }, { + "message" : "Propagated: Stereotype.logging_server, Stereotype.infrastructural, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, Stereotype.internal, Stereotype.local_logging, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleservicetwo, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1878143121 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleservicetwo, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1878143121 + }, { + "message" : "Propagated: Stereotype.logging_server, Stereotype.infrastructural, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, Stereotype.internal, Stereotype.local_logging, Stereotype.jdbc, Stereotype.plaintext_credentials_link, Username.servicetwo, Password.servicetwo", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1150696350 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, Stereotype.jdbc, Stereotype.plaintext_credentials_link, Username.servicetwo, Password.servicetwo", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1150696350 + }, { + "message" : "Propagated: Stereotype.logging_server, Stereotype.infrastructural, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, Stereotype.internal, Stereotype.local_logging, Stereotype.gateway, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1102439236 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1102439236 + }, { + "message" : "Propagated: Stereotype.logging_server, Stereotype.infrastructural, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, Stereotype.internal, Stereotype.local_logging, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1187817736 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, Stereotype.service_discovery, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1187817736 + }, { + "message" : "Propagated: Stereotype.logging_server, Stereotype.infrastructural, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, Stereotype.internal, Stereotype.local_logging, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 944009208 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, Stereotype.service_discovery, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 944009208 + }, { + "message" : "Propagated: Stereotype.logging_server, Stereotype.infrastructural, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, Stereotype.internal, Stereotype.local_logging, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1308359077 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, Stereotype.service_discovery, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1308359077 + } ], + "children" : [ ], + "position" : { + "x" : 0.0, + "y" : 0.0 + }, + "size" : null + }, { + "text" : "kibana", + "id" : "8", + "type" : "node:function", + "labels" : [ { + "labelTypeId" : "17", + "labelTypeValueId" : "69" + }, { + "labelTypeId" : "17", + "labelTypeValueId" : "27" + }, { + "labelTypeId" : "70", + "labelTypeValueId" : "86" + }, { + "labelTypeId" : "22", + "labelTypeValueId" : "87" + }, { + "labelTypeId" : "_Vx3bEPunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_Vx3bEfunEfCYrdfxNyUhUA" + }, { + "labelTypeId" : "_Vx3bEPunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_Vx3bEvunEfCYrdfxNyUhUA" + } ], + "ports" : [ { + "id" : "110", + "type" : "port:dfd-input", + "children" : [ ] + }, { + "behavior" : "assign Stereotype.monitoring_dashboard,Stereotype.infrastructural,Stereotype.restful_http,dummyCategory.dummy_0,dummyCategory.dummy_1 if TRUE from elasticsearch\nforward elasticsearch", + "id" : "187", + "type" : "port:dfd-output", + "children" : [ ] + } ], + "annotations" : [ { + "message" : "Propagated: Stereotype.monitoring_dashboard, Stereotype.infrastructural, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, Stereotype.search_engine, Stereotype.logging_server, Stereotype.internal, Stereotype.local_logging, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1477762230 + }, { + "message" : "Incoming: Stereotype.search_engine, Stereotype.infrastructural, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, Stereotype.logging_server, Stereotype.internal, Stereotype.local_logging, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1477762230 + }, { + "message" : "Propagated: Stereotype.monitoring_dashboard, Stereotype.infrastructural, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, Stereotype.search_engine, Stereotype.logging_server, Stereotype.internal, Stereotype.local_logging, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 795932226 + }, { + "message" : "Incoming: Stereotype.search_engine, Stereotype.infrastructural, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, Stereotype.logging_server, Stereotype.internal, Stereotype.local_logging, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 795932226 + }, { + "message" : "Propagated: Stereotype.monitoring_dashboard, Stereotype.infrastructural, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, Stereotype.search_engine, Stereotype.logging_server, Stereotype.internal, Stereotype.local_logging, Stereotype.jdbc", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1057130936 + }, { + "message" : "Incoming: Stereotype.search_engine, Stereotype.infrastructural, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, Stereotype.logging_server, Stereotype.internal, Stereotype.local_logging, Stereotype.jdbc", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1057130936 + }, { + "message" : "Propagated: Stereotype.monitoring_dashboard, Stereotype.infrastructural, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, Stereotype.search_engine, Stereotype.logging_server, Stereotype.internal, Stereotype.local_logging, Stereotype.gateway, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 966231614 + }, { + "message" : "Incoming: Stereotype.search_engine, Stereotype.infrastructural, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, Stereotype.logging_server, Stereotype.internal, Stereotype.local_logging, Stereotype.gateway, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 966231614 + }, { + "message" : "Propagated: Stereotype.monitoring_dashboard, Stereotype.infrastructural, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, Stereotype.search_engine, Stereotype.logging_server, Stereotype.internal, Stereotype.local_logging, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1192762582 + }, { + "message" : "Incoming: Stereotype.search_engine, Stereotype.infrastructural, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, Stereotype.logging_server, Stereotype.internal, Stereotype.local_logging, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1192762582 + }, { + "message" : "Propagated: Stereotype.monitoring_dashboard, Stereotype.infrastructural, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, Stereotype.search_engine, Stereotype.logging_server, Stereotype.internal, Stereotype.local_logging, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleservicetwo, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1878143121 + }, { + "message" : "Incoming: Stereotype.search_engine, Stereotype.infrastructural, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, Stereotype.logging_server, Stereotype.internal, Stereotype.local_logging, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleservicetwo, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1878143121 + }, { + "message" : "Propagated: Stereotype.monitoring_dashboard, Stereotype.infrastructural, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, Stereotype.search_engine, Stereotype.logging_server, Stereotype.internal, Stereotype.local_logging, Stereotype.jdbc, Stereotype.plaintext_credentials_link, Username.servicetwo, Password.servicetwo", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1150696350 + }, { + "message" : "Incoming: Stereotype.search_engine, Stereotype.infrastructural, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, Stereotype.logging_server, Stereotype.internal, Stereotype.local_logging, Stereotype.jdbc, Stereotype.plaintext_credentials_link, Username.servicetwo, Password.servicetwo", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1150696350 + }, { + "message" : "Propagated: Stereotype.monitoring_dashboard, Stereotype.infrastructural, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, Stereotype.search_engine, Stereotype.logging_server, Stereotype.internal, Stereotype.local_logging, Stereotype.gateway, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1102439236 + }, { + "message" : "Incoming: Stereotype.search_engine, Stereotype.infrastructural, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, Stereotype.logging_server, Stereotype.internal, Stereotype.local_logging, Stereotype.gateway, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1102439236 + } ], + "children" : [ ], + "position" : { + "x" : 0.0, + "y" : 0.0 + }, + "size" : null + }, { + "text" : "rabbit", + "id" : "9", + "type" : "node:function", + "labels" : [ { + "labelTypeId" : "17", + "labelTypeValueId" : "58" + }, { + "labelTypeId" : "17", + "labelTypeValueId" : "59" + }, { + "labelTypeId" : "17", + "labelTypeValueId" : "27" + }, { + "labelTypeId" : "60", + "labelTypeValueId" : "61" + }, { + "labelTypeId" : "62", + "labelTypeValueId" : "63" + }, { + "labelTypeId" : "22", + "labelTypeValueId" : "64" + }, { + "labelTypeId" : "65", + "labelTypeValueId" : "66" + }, { + "labelTypeId" : "_Vx3bEPunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_Vx3bEfunEfCYrdfxNyUhUA" + }, { + "labelTypeId" : "_Vx3bEPunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_Vx3bEvunEfCYrdfxNyUhUA" + } ], + "ports" : [ { + "id" : "119", + "type" : "port:dfd-input", + "children" : [ ] + }, { + "behavior" : "assign Stereotype.message_broker,Stereotype.plaintext_credentials,Stereotype.infrastructural,Stereotype.message_consumer_rabbitmq,Stereotype.restful_http,Queue.commudigalmicroservicessampleserviceone,dummyCategory.dummy_0,dummyCategory.dummy_1 if TRUE from service_one|service_two\nforward service_one|service_two", + "id" : "128", + "type" : "port:dfd-output", + "children" : [ ] + }, { + "behavior" : "assign Stereotype.message_broker,Stereotype.plaintext_credentials,Stereotype.infrastructural,Stereotype.message_consumer_rabbitmq,Stereotype.restful_http,Queue.commudigalmicroservicessampleservicetwo,dummyCategory.dummy_0,dummyCategory.dummy_1 if TRUE from service_one|service_two\nforward service_one|service_two", + "id" : "140", + "type" : "port:dfd-output", + "children" : [ ] + }, { + "behavior" : "assign Stereotype.message_broker,Stereotype.plaintext_credentials,Stereotype.infrastructural,Stereotype.restful_http,dummyCategory.dummy_0,dummyCategory.dummy_1 if TRUE from service_one|service_two\nforward service_one|service_two", + "id" : "179", + "type" : "port:dfd-output", + "children" : [ ] + } ], + "annotations" : [ { + "message" : "Propagated: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleserviceone, dummyCategory.dummy_0, dummyCategory.dummy_1, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 182170763 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, Stereotype.restful_http, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, dummyCategory.dummy_0, dummyCategory.dummy_1, Stereotype.service_discovery, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 182170763 + }, { + "message" : "Propagated: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleserviceone, dummyCategory.dummy_0, dummyCategory.dummy_1, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.jdbc", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 67683408 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, Stereotype.restful_http, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, dummyCategory.dummy_0, dummyCategory.dummy_1, Stereotype.jdbc", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 67683408 + }, { + "message" : "Propagated: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleserviceone, dummyCategory.dummy_0, dummyCategory.dummy_1, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.gateway, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1026665374 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, Stereotype.restful_http, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, dummyCategory.dummy_0, dummyCategory.dummy_1, Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1026665374 + }, { + "message" : "Propagated: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleserviceone, dummyCategory.dummy_0, dummyCategory.dummy_1, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.gateway, Stereotype.load_balancer, Stereotype.web_application, Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.encrypted_connection", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 312760057 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, Stereotype.restful_http, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, dummyCategory.dummy_0, dummyCategory.dummy_1, Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.web_application, Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.encrypted_connection", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 312760057 + }, { + "message" : "Propagated: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleserviceone, dummyCategory.dummy_0, dummyCategory.dummy_1, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1166854090 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.restful_http, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, dummyCategory.dummy_0, dummyCategory.dummy_1, Stereotype.service_discovery, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1166854090 + }, { + "message" : "Propagated: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleserviceone, dummyCategory.dummy_0, dummyCategory.dummy_1, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 132424047 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.restful_http, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, dummyCategory.dummy_0, dummyCategory.dummy_1, Stereotype.service_discovery, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 132424047 + }, { + "message" : "Propagated: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleservicetwo, dummyCategory.dummy_0, dummyCategory.dummy_1, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 934909782 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, Stereotype.restful_http, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, dummyCategory.dummy_0, dummyCategory.dummy_1, Stereotype.service_discovery, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 934909782 + }, { + "message" : "Propagated: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleserviceone, dummyCategory.dummy_0, dummyCategory.dummy_1, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Queue.commudigalmicroservicessampleservicetwo, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 934909782 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.restful_http, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, dummyCategory.dummy_0, dummyCategory.dummy_1, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleservicetwo, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 934909782 + }, { + "message" : "Propagated: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleserviceone, dummyCategory.dummy_0, dummyCategory.dummy_1, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.jdbc, Username.servicetwo, Password.servicetwo", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 127540422 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.restful_http, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, dummyCategory.dummy_0, dummyCategory.dummy_1, Stereotype.jdbc, Username.servicetwo, Password.servicetwo", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 127540422 + }, { + "message" : "Propagated: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleserviceone, dummyCategory.dummy_0, dummyCategory.dummy_1, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.gateway, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 604715368 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.restful_http, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, dummyCategory.dummy_0, dummyCategory.dummy_1, Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 604715368 + }, { + "message" : "Propagated: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleserviceone, dummyCategory.dummy_0, dummyCategory.dummy_1, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.gateway, Stereotype.load_balancer, Stereotype.web_application, Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.encrypted_connection", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 113642335 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.restful_http, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, dummyCategory.dummy_0, dummyCategory.dummy_1, Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.web_application, Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.encrypted_connection", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 113642335 + }, { + "message" : "Propagated: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleservicetwo, dummyCategory.dummy_0, dummyCategory.dummy_1, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1842310120 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, Stereotype.restful_http, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, dummyCategory.dummy_0, dummyCategory.dummy_1, Stereotype.service_discovery, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1842310120 + }, { + "message" : "Propagated: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 17771154 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, Stereotype.restful_http, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, dummyCategory.dummy_0, dummyCategory.dummy_1, Stereotype.service_discovery, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 17771154 + }, { + "message" : "Propagated: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 2029507446 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.restful_http, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, dummyCategory.dummy_0, dummyCategory.dummy_1, Stereotype.service_discovery, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 2029507446 + }, { + "message" : "Propagated: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleserviceone, dummyCategory.dummy_0, dummyCategory.dummy_1, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 795932226 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, Stereotype.restful_http, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, dummyCategory.dummy_0, dummyCategory.dummy_1, Stereotype.service_discovery, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 795932226 + }, { + "message" : "Propagated: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleservicetwo, dummyCategory.dummy_0, dummyCategory.dummy_1, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1878143121 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, Stereotype.restful_http, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, dummyCategory.dummy_0, dummyCategory.dummy_1, Stereotype.service_discovery, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1878143121 + } ], + "children" : [ ], + "position" : { + "x" : 0.0, + "y" : 0.0 + }, + "size" : null + }, { + "text" : "service_one", + "id" : "10", + "type" : "node:function", + "labels" : [ { + "labelTypeId" : "17", + "labelTypeValueId" : "20" + }, { + "labelTypeId" : "17", + "labelTypeValueId" : "21" + }, { + "labelTypeId" : "22", + "labelTypeValueId" : "23" + }, { + "labelTypeId" : "_Vx3bEPunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_Vx3bEfunEfCYrdfxNyUhUA" + }, { + "labelTypeId" : "_Vx3bEPunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_Vx3bEvunEfCYrdfxNyUhUA" + } ], + "ports" : [ { + "id" : "113", + "type" : "port:dfd-input", + "children" : [ ] + }, { + "behavior" : "assign Stereotype.internal,Stereotype.local_logging,Stereotype.restful_http,dummyCategory.dummy_0,dummyCategory.dummy_1 if TRUE from api_gateway|consul|rabbit|service_one_db\nforward api_gateway|consul|rabbit|service_one_db", + "id" : "117", + "type" : "port:dfd-output", + "children" : [ ] + }, { + "behavior" : "assign Stereotype.internal,Stereotype.local_logging,Stereotype.message_producer_rabbitmq,Stereotype.plaintext_credentials_link,Stereotype.restful_http,RoutingKey.commudigalmicroservicessampleservice,ProducerExchange.commudigalmicroservicessampleservicesexchange,dummyCategory.dummy_0,dummyCategory.dummy_1 if TRUE from api_gateway|consul|rabbit|service_one_db\nforward api_gateway|consul|rabbit|service_one_db", + "id" : "120", + "type" : "port:dfd-output", + "children" : [ ] + }, { + "behavior" : "assign Stereotype.internal,Stereotype.local_logging,Stereotype.restful_http,dummyCategory.dummy_0,dummyCategory.dummy_1 if TRUE from api_gateway|consul|rabbit|service_one_db\nforward api_gateway|consul|rabbit|service_one_db", + "id" : "169", + "type" : "port:dfd-output", + "children" : [ ] + } ], + "annotations" : [ { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, Stereotype.service_discovery, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1459482528 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1459482528 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, Stereotype.service_discovery, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 2113558545 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 2113558545 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, Stereotype.restful_http, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, dummyCategory.dummy_0, dummyCategory.dummy_1, Stereotype.service_discovery, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 182170763 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 182170763 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 182170763 + }, { + "message" : "Incoming: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleserviceone, dummyCategory.dummy_0, dummyCategory.dummy_1, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 182170763 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, Stereotype.restful_http, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, dummyCategory.dummy_0, dummyCategory.dummy_1, Stereotype.jdbc", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 67683408 + }, { + "message" : "Incoming: Stereotype.jdbc, dummyCategory.dummy_0, dummyCategory.dummy_1", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 67683408 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.jdbc", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 67683408 + }, { + "message" : "Incoming: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleserviceone, dummyCategory.dummy_0, dummyCategory.dummy_1, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.jdbc", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 67683408 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, Stereotype.restful_http, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, dummyCategory.dummy_0, dummyCategory.dummy_1, Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1026665374 + }, { + "message" : "Incoming: Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1026665374 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.gateway, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1026665374 + }, { + "message" : "Incoming: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleserviceone, dummyCategory.dummy_0, dummyCategory.dummy_1, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.gateway, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1026665374 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, Stereotype.restful_http, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, dummyCategory.dummy_0, dummyCategory.dummy_1, Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.web_application, Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.encrypted_connection", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 312760057 + }, { + "message" : "Incoming: Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, Stereotype.web_application, Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.encrypted_connection", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 312760057 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.gateway, Stereotype.load_balancer, Stereotype.web_application, Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.encrypted_connection", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 312760057 + }, { + "message" : "Incoming: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleserviceone, dummyCategory.dummy_0, dummyCategory.dummy_1, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.gateway, Stereotype.load_balancer, Stereotype.web_application, Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.encrypted_connection", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 312760057 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1166854090 + }, { + "message" : "Incoming: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleserviceone, dummyCategory.dummy_0, dummyCategory.dummy_1, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1166854090 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 132424047 + }, { + "message" : "Incoming: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleserviceone, dummyCategory.dummy_0, dummyCategory.dummy_1, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 132424047 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, Stereotype.restful_http, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, dummyCategory.dummy_0, dummyCategory.dummy_1, Stereotype.service_discovery, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 934909782 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 934909782 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Queue.commudigalmicroservicessampleservicetwo, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 934909782 + }, { + "message" : "Incoming: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleserviceone, dummyCategory.dummy_0, dummyCategory.dummy_1, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Queue.commudigalmicroservicessampleservicetwo, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 934909782 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.jdbc, Username.servicetwo, Password.servicetwo", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 127540422 + }, { + "message" : "Incoming: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleserviceone, dummyCategory.dummy_0, dummyCategory.dummy_1, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.jdbc, Username.servicetwo, Password.servicetwo", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 127540422 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.gateway, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 604715368 + }, { + "message" : "Incoming: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleserviceone, dummyCategory.dummy_0, dummyCategory.dummy_1, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.gateway, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 604715368 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.gateway, Stereotype.load_balancer, Stereotype.web_application, Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.encrypted_connection", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 113642335 + }, { + "message" : "Incoming: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleserviceone, dummyCategory.dummy_0, dummyCategory.dummy_1, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.gateway, Stereotype.load_balancer, Stereotype.web_application, Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.encrypted_connection", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 113642335 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, Stereotype.jdbc", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 2101227510 + }, { + "message" : "Incoming: Stereotype.jdbc, dummyCategory.dummy_0, dummyCategory.dummy_1", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 2101227510 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 714432699 + }, { + "message" : "Incoming: Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 714432699 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, Stereotype.restful_http, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, dummyCategory.dummy_0, dummyCategory.dummy_1, Stereotype.service_discovery, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1842310120 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1842310120 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, Stereotype.restful_http, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, dummyCategory.dummy_0, dummyCategory.dummy_1, Stereotype.service_discovery, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 17771154 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 17771154 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, Stereotype.service_discovery, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1477762230 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1477762230 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, Stereotype.restful_http, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, dummyCategory.dummy_0, dummyCategory.dummy_1, Stereotype.service_discovery, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 795932226 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 795932226 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 795932226 + }, { + "message" : "Incoming: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleserviceone, dummyCategory.dummy_0, dummyCategory.dummy_1, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 795932226 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, Stereotype.jdbc", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1057130936 + }, { + "message" : "Incoming: Stereotype.jdbc, dummyCategory.dummy_0, dummyCategory.dummy_1", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1057130936 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 966231614 + }, { + "message" : "Incoming: Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 966231614 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, Stereotype.restful_http, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, dummyCategory.dummy_0, dummyCategory.dummy_1, Stereotype.service_discovery, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1878143121 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1878143121 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, Stereotype.service_discovery, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1187817736 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1187817736 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, Stereotype.service_discovery, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 944009208 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 944009208 + } ], + "children" : [ ], + "position" : { + "x" : 0.0, + "y" : 0.0 + }, + "size" : null + }, { + "text" : "service_two", + "id" : "11", + "type" : "node:function", + "labels" : [ { + "labelTypeId" : "17", + "labelTypeValueId" : "20" + }, { + "labelTypeId" : "17", + "labelTypeValueId" : "21" + }, { + "labelTypeId" : "22", + "labelTypeValueId" : "49" + }, { + "labelTypeId" : "_Vx3bEPunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_Vx3bEfunEfCYrdfxNyUhUA" + }, { + "labelTypeId" : "_Vx3bEPunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_Vx3bEvunEfCYrdfxNyUhUA" + } ], + "ports" : [ { + "id" : "133", + "type" : "port:dfd-input", + "children" : [ ] + }, { + "behavior" : "assign Stereotype.internal,Stereotype.local_logging,Stereotype.restful_http,dummyCategory.dummy_0,dummyCategory.dummy_1 if TRUE from api_gateway|consul|rabbit|service_two_db\nforward api_gateway|consul|rabbit|service_two_db", + "id" : "136", + "type" : "port:dfd-output", + "children" : [ ] + }, { + "behavior" : "assign Stereotype.internal,Stereotype.local_logging,Stereotype.message_producer_rabbitmq,Stereotype.restful_http,Stereotype.plaintext_credentials_link,RoutingKey.commudigalmicroservicessampleservice,ProducerExchange.commudigalmicroservicessampleservicesexchange,dummyCategory.dummy_0,dummyCategory.dummy_1 if TRUE from api_gateway|consul|rabbit|service_two_db\nforward api_gateway|consul|rabbit|service_two_db", + "id" : "138", + "type" : "port:dfd-output", + "children" : [ ] + }, { + "behavior" : "assign Stereotype.internal,Stereotype.local_logging,Stereotype.restful_http,dummyCategory.dummy_0,dummyCategory.dummy_1 if TRUE from api_gateway|consul|rabbit|service_two_db\nforward api_gateway|consul|rabbit|service_two_db", + "id" : "173", + "type" : "port:dfd-output", + "children" : [ ] + } ], + "annotations" : [ { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.restful_http, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, dummyCategory.dummy_0, dummyCategory.dummy_1, Stereotype.service_discovery, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1166854090 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1166854090 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.restful_http, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, dummyCategory.dummy_0, dummyCategory.dummy_1, Stereotype.service_discovery, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 132424047 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 132424047 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.restful_http, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, dummyCategory.dummy_0, dummyCategory.dummy_1, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleservicetwo, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 934909782 + }, { + "message" : "Incoming: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleservicetwo, dummyCategory.dummy_0, dummyCategory.dummy_1, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 934909782 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.restful_http, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, dummyCategory.dummy_0, dummyCategory.dummy_1, Stereotype.jdbc, Username.servicetwo, Password.servicetwo", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 127540422 + }, { + "message" : "Incoming: Stereotype.jdbc, Stereotype.plaintext_credentials_link, Username.servicetwo, Password.servicetwo, dummyCategory.dummy_0, dummyCategory.dummy_1", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 127540422 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.restful_http, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, dummyCategory.dummy_0, dummyCategory.dummy_1, Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 604715368 + }, { + "message" : "Incoming: Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 604715368 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.restful_http, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, dummyCategory.dummy_0, dummyCategory.dummy_1, Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.web_application, Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.encrypted_connection", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 113642335 + }, { + "message" : "Incoming: Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, Stereotype.web_application, Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.encrypted_connection", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 113642335 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, Stereotype.service_discovery, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1635957169 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1635957169 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleservicetwo, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1842310120 + }, { + "message" : "Incoming: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleservicetwo, dummyCategory.dummy_0, dummyCategory.dummy_1, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1842310120 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, Stereotype.jdbc, Stereotype.plaintext_credentials_link, Username.servicetwo, Password.servicetwo", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1826508370 + }, { + "message" : "Incoming: Stereotype.jdbc, Stereotype.plaintext_credentials_link, Username.servicetwo, Password.servicetwo, dummyCategory.dummy_0, dummyCategory.dummy_1", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1826508370 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 2097184813 + }, { + "message" : "Incoming: Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 2097184813 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.restful_http, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, dummyCategory.dummy_0, dummyCategory.dummy_1, Stereotype.service_discovery, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 2029507446 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 2029507446 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, Stereotype.service_discovery, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1192762582 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1192762582 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleservicetwo, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1878143121 + }, { + "message" : "Incoming: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleservicetwo, dummyCategory.dummy_0, dummyCategory.dummy_1, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1878143121 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, Stereotype.jdbc, Stereotype.plaintext_credentials_link, Username.servicetwo, Password.servicetwo", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1150696350 + }, { + "message" : "Incoming: Stereotype.jdbc, Stereotype.plaintext_credentials_link, Username.servicetwo, Password.servicetwo, dummyCategory.dummy_0, dummyCategory.dummy_1", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1150696350 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1102439236 + }, { + "message" : "Incoming: Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1102439236 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, Stereotype.service_discovery, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1308359077 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1308359077 + } ], + "children" : [ ], + "position" : { + "x" : 0.0, + "y" : 0.0 + }, + "size" : null + }, { + "text" : "service_one_db", + "id" : "12", + "type" : "node:function", + "labels" : [ { + "labelTypeId" : "33", + "labelTypeValueId" : "90" + }, { + "labelTypeId" : "_Vx3bEPunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_Vx3bEfunEfCYrdfxNyUhUA" + }, { + "labelTypeId" : "_Vx3bEPunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_Vx3bEvunEfCYrdfxNyUhUA" + } ], + "ports" : [ { + "behavior" : "assign Stereotype.jdbc,dummyCategory.dummy_0,dummyCategory.dummy_1 if TRUE", + "id" : "143", + "type" : "port:dfd-output", + "children" : [ ] + }, { + "behavior" : "assign Stereotype.restful_http,dummyCategory.dummy_0,dummyCategory.dummy_1 if TRUE", + "id" : "171", + "type" : "port:dfd-output", + "children" : [ ] + } ], + "annotations" : [ { + "message" : "Propagated: Stereotype.jdbc, dummyCategory.dummy_0, dummyCategory.dummy_1", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 67683408 + }, { + "message" : "Propagated: Stereotype.jdbc, dummyCategory.dummy_0, dummyCategory.dummy_1", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 2101227510 + }, { + "message" : "Propagated: Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1462295800 + }, { + "message" : "Propagated: Stereotype.jdbc, dummyCategory.dummy_0, dummyCategory.dummy_1", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1057130936 + } ], + "children" : [ ], + "position" : { + "x" : 0.0, + "y" : 0.0 + }, + "size" : null + }, { + "text" : "service_two_db", + "id" : "13", + "type" : "node:function", + "labels" : [ { + "labelTypeId" : "33", + "labelTypeValueId" : "34" + }, { + "labelTypeId" : "_Vx3bEPunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_Vx3bEfunEfCYrdfxNyUhUA" + }, { + "labelTypeId" : "_Vx3bEPunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_Vx3bEvunEfCYrdfxNyUhUA" + } ], + "ports" : [ { + "behavior" : "assign Stereotype.jdbc,Stereotype.plaintext_credentials_link,Username.servicetwo,Password.servicetwo,dummyCategory.dummy_0,dummyCategory.dummy_1 if TRUE", + "id" : "146", + "type" : "port:dfd-output", + "children" : [ ] + }, { + "behavior" : "assign Stereotype.restful_http,dummyCategory.dummy_0,dummyCategory.dummy_1 if TRUE", + "id" : "175", + "type" : "port:dfd-output", + "children" : [ ] + } ], + "annotations" : [ { + "message" : "Propagated: Stereotype.jdbc, Stereotype.plaintext_credentials_link, Username.servicetwo, Password.servicetwo, dummyCategory.dummy_0, dummyCategory.dummy_1", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 127540422 + }, { + "message" : "Propagated: Stereotype.jdbc, Stereotype.plaintext_credentials_link, Username.servicetwo, Password.servicetwo, dummyCategory.dummy_0, dummyCategory.dummy_1", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1826508370 + }, { + "message" : "Propagated: Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 154919181 + }, { + "message" : "Propagated: Stereotype.jdbc, Stereotype.plaintext_credentials_link, Username.servicetwo, Password.servicetwo, dummyCategory.dummy_0, dummyCategory.dummy_1", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1150696350 + } ], + "children" : [ ], + "position" : { + "x" : 0.0, + "y" : 0.0 + }, + "size" : null + }, { + "text" : "api_gateway", + "id" : "14", + "type" : "node:function", + "labels" : [ { + "labelTypeId" : "17", + "labelTypeValueId" : "75" + }, { + "labelTypeId" : "17", + "labelTypeValueId" : "27" + }, { + "labelTypeId" : "17", + "labelTypeValueId" : "76" + }, { + "labelTypeId" : "77", + "labelTypeValueId" : "78" + }, { + "labelTypeId" : "22", + "labelTypeValueId" : "79" + }, { + "labelTypeId" : "80", + "labelTypeValueId" : "81" + }, { + "labelTypeId" : "_Vx3bEPunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_Vx3bEfunEfCYrdfxNyUhUA" + }, { + "labelTypeId" : "_Vx3bEPunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_Vx3bEvunEfCYrdfxNyUhUA" + } ], + "ports" : [ { + "id" : "154", + "type" : "port:dfd-input", + "children" : [ ] + }, { + "behavior" : "assign Stereotype.gateway,Stereotype.infrastructural,Stereotype.load_balancer,Stereotype.restful_http,dummyCategory.dummy_0,dummyCategory.dummy_1 if TRUE from consul|web_application\nforward consul|web_application", + "id" : "150", + "type" : "port:dfd-output", + "children" : [ ] + }, { + "behavior" : "assign Stereotype.gateway,Stereotype.infrastructural,Stereotype.load_balancer,Stereotype.restful_http,dummyCategory.dummy_0,dummyCategory.dummy_1 if TRUE from consul|web_application\nforward consul|web_application", + "id" : "152", + "type" : "port:dfd-output", + "children" : [ ] + }, { + "behavior" : "assign Stereotype.gateway,Stereotype.infrastructural,Stereotype.load_balancer,Stereotype.restful_http,dummyCategory.dummy_0,dummyCategory.dummy_1 if TRUE from consul|web_application\nforward consul|web_application", + "id" : "167", + "type" : "port:dfd-output", + "children" : [ ] + } ], + "annotations" : [ { + "message" : "Propagated: Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 811821567 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 811821567 + }, { + "message" : "Propagated: Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 41858320 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 41858320 + }, { + "message" : "Propagated: Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, Stereotype.web_application, Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.encrypted_connection", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1220074684 + }, { + "message" : "Incoming: Stereotype.web_application, Stereotype.infrastructural, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.encrypted_connection", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1220074684 + }, { + "message" : "Propagated: Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1026665374 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1026665374 + }, { + "message" : "Propagated: Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, Stereotype.web_application, Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.encrypted_connection", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 312760057 + }, { + "message" : "Incoming: Stereotype.web_application, Stereotype.infrastructural, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.encrypted_connection", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 312760057 + }, { + "message" : "Propagated: Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 604715368 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 604715368 + }, { + "message" : "Propagated: Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, Stereotype.web_application, Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.encrypted_connection", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 113642335 + }, { + "message" : "Incoming: Stereotype.web_application, Stereotype.infrastructural, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.encrypted_connection", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 113642335 + }, { + "message" : "Propagated: Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 714432699 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 714432699 + }, { + "message" : "Propagated: Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 2097184813 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 2097184813 + }, { + "message" : "Propagated: Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 966231614 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 966231614 + }, { + "message" : "Propagated: Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1102439236 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1102439236 + } ], + "children" : [ ], + "position" : { + "x" : 0.0, + "y" : 0.0 + }, + "size" : null + }, { + "text" : "web_application", + "id" : "15", + "type" : "node:function", + "labels" : [ { + "labelTypeId" : "17", + "labelTypeValueId" : "37" + }, { + "labelTypeId" : "17", + "labelTypeValueId" : "27" + }, { + "labelTypeId" : "22", + "labelTypeValueId" : "38" + }, { + "labelTypeId" : "39", + "labelTypeValueId" : "40" + }, { + "labelTypeId" : "_Vx3bEPunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_Vx3bEfunEfCYrdfxNyUhUA" + }, { + "labelTypeId" : "_Vx3bEPunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_Vx3bEvunEfCYrdfxNyUhUA" + } ], + "ports" : [ { + "id" : "157", + "type" : "port:dfd-input", + "children" : [ ] + }, { + "behavior" : "assign Stereotype.web_application,Stereotype.infrastructural,Stereotype.restful_http,Stereotype.encrypted_connection,dummyCategory.dummy_0,dummyCategory.dummy_1 if TRUE from user\nforward user", + "id" : "162", + "type" : "port:dfd-output", + "children" : [ ] + }, { + "behavior" : "assign Stereotype.web_application,Stereotype.infrastructural,Stereotype.restful_http,dummyCategory.dummy_0,dummyCategory.dummy_1 if TRUE from user\nforward user", + "id" : "164", + "type" : "port:dfd-output", + "children" : [ ] + }, { + "behavior" : "assign Stereotype.web_application,Stereotype.infrastructural,Stereotype.restful_http,dummyCategory.dummy_0,dummyCategory.dummy_1 if TRUE from user\nforward user", + "id" : "177", + "type" : "port:dfd-output", + "children" : [ ] + } ], + "annotations" : [ { + "message" : "Propagated: Stereotype.web_application, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.encrypted_connection, dummyCategory.dummy_0, dummyCategory.dummy_1", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1220074684 + }, { + "message" : "Propagated: Stereotype.web_application, Stereotype.infrastructural, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.encrypted_connection", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1220074684 + }, { + "message" : "Incoming: Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.restful_http, Stereotype.encrypted_connection, dummyCategory.dummy_0, dummyCategory.dummy_1, Stereotype.web_application, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1220074684 + }, { + "message" : "Propagated: Stereotype.web_application, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.encrypted_connection, dummyCategory.dummy_0, dummyCategory.dummy_1", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 312760057 + }, { + "message" : "Propagated: Stereotype.web_application, Stereotype.infrastructural, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.encrypted_connection", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 312760057 + }, { + "message" : "Incoming: Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.restful_http, Stereotype.encrypted_connection, dummyCategory.dummy_0, dummyCategory.dummy_1, Stereotype.web_application, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 312760057 + }, { + "message" : "Propagated: Stereotype.web_application, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.encrypted_connection, dummyCategory.dummy_0, dummyCategory.dummy_1", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 113642335 + }, { + "message" : "Propagated: Stereotype.web_application, Stereotype.infrastructural, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.encrypted_connection", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 113642335 + }, { + "message" : "Incoming: Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.restful_http, Stereotype.encrypted_connection, dummyCategory.dummy_0, dummyCategory.dummy_1, Stereotype.web_application, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 113642335 + }, { + "message" : "Propagated: Stereotype.web_application, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.encrypted_connection, dummyCategory.dummy_0, dummyCategory.dummy_1", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 532499433 + }, { + "message" : "Propagated: Stereotype.web_application, Stereotype.infrastructural, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.encrypted_connection", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 532499433 + }, { + "message" : "Incoming: Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.restful_http, Stereotype.encrypted_connection, dummyCategory.dummy_0, dummyCategory.dummy_1, Stereotype.web_application, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 532499433 + } ], + "children" : [ ], + "position" : { + "x" : 0.0, + "y" : 0.0 + }, + "size" : null + }, { + "text" : "scope", + "id" : "16", + "type" : "node:function", + "labels" : [ { + "labelTypeId" : "17", + "labelTypeValueId" : "69" + }, { + "labelTypeId" : "17", + "labelTypeValueId" : "27" + }, { + "labelTypeId" : "70", + "labelTypeValueId" : "71" + }, { + "labelTypeId" : "22", + "labelTypeValueId" : "72" + }, { + "labelTypeId" : "_Vx3bEPunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_Vx3bEfunEfCYrdfxNyUhUA" + }, { + "labelTypeId" : "_Vx3bEPunEfCYrdfxNyUhUA", + "labelTypeValueId" : "_Vx3bEvunEfCYrdfxNyUhUA" + } ], + "ports" : [ { + "id" : "166", + "type" : "port:dfd-input", + "children" : [ ] + } ], + "annotations" : [ { + "message" : "Incoming: Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 811821567 + }, { + "message" : "Incoming: Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 41858320 + }, { + "message" : "Incoming: Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, Stereotype.web_application, Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.encrypted_connection", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1220074684 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, Stereotype.service_discovery, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1459482528 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, Stereotype.service_discovery, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 2113558545 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 182170763 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.jdbc", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 67683408 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.gateway, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1026665374 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.gateway, Stereotype.load_balancer, Stereotype.web_application, Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.encrypted_connection", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 312760057 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1166854090 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 132424047 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Queue.commudigalmicroservicessampleservicetwo, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 934909782 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.jdbc, Username.servicetwo, Password.servicetwo", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 127540422 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.gateway, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 604715368 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.gateway, Stereotype.load_balancer, Stereotype.web_application, Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.encrypted_connection", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 113642335 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, Stereotype.jdbc", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 2101227510 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 714432699 + }, { + "message" : "Incoming: Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1462295800 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, Stereotype.service_discovery, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1635957169 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleservicetwo, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1842310120 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, Stereotype.jdbc, Stereotype.plaintext_credentials_link, Username.servicetwo, Password.servicetwo", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1826508370 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 2097184813 + }, { + "message" : "Incoming: Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 154919181 + }, { + "message" : "Incoming: Stereotype.web_application, Stereotype.infrastructural, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.encrypted_connection", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 532499433 + }, { + "message" : "Incoming: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 17771154 + }, { + "message" : "Incoming: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 2029507446 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 781346540 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1527087828 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 598108316 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1695314941 + }, { + "message" : "Incoming: Stereotype.monitoring_dashboard, Stereotype.infrastructural, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, Stereotype.search_engine, Stereotype.logging_server, Stereotype.internal, Stereotype.local_logging, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1477762230 + }, { + "message" : "Incoming: Stereotype.monitoring_dashboard, Stereotype.infrastructural, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, Stereotype.search_engine, Stereotype.logging_server, Stereotype.internal, Stereotype.local_logging, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 795932226 + }, { + "message" : "Incoming: Stereotype.monitoring_dashboard, Stereotype.infrastructural, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, Stereotype.search_engine, Stereotype.logging_server, Stereotype.internal, Stereotype.local_logging, Stereotype.jdbc", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1057130936 + }, { + "message" : "Incoming: Stereotype.monitoring_dashboard, Stereotype.infrastructural, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, Stereotype.search_engine, Stereotype.logging_server, Stereotype.internal, Stereotype.local_logging, Stereotype.gateway, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 966231614 + }, { + "message" : "Incoming: Stereotype.monitoring_dashboard, Stereotype.infrastructural, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, Stereotype.search_engine, Stereotype.logging_server, Stereotype.internal, Stereotype.local_logging, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1192762582 + }, { + "message" : "Incoming: Stereotype.monitoring_dashboard, Stereotype.infrastructural, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, Stereotype.search_engine, Stereotype.logging_server, Stereotype.internal, Stereotype.local_logging, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleservicetwo, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1878143121 + }, { + "message" : "Incoming: Stereotype.monitoring_dashboard, Stereotype.infrastructural, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, Stereotype.search_engine, Stereotype.logging_server, Stereotype.internal, Stereotype.local_logging, Stereotype.jdbc, Stereotype.plaintext_credentials_link, Username.servicetwo, Password.servicetwo", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1150696350 + }, { + "message" : "Incoming: Stereotype.monitoring_dashboard, Stereotype.infrastructural, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, Stereotype.search_engine, Stereotype.logging_server, Stereotype.internal, Stereotype.local_logging, Stereotype.gateway, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1102439236 + }, { + "message" : "Incoming: Stereotype.search_engine, Stereotype.infrastructural, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, Stereotype.logging_server, Stereotype.internal, Stereotype.local_logging, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1187817736 + }, { + "message" : "Incoming: Stereotype.logging_server, Stereotype.infrastructural, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, Stereotype.internal, Stereotype.local_logging, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 944009208 + }, { + "message" : "Incoming: Stereotype.logging_server, Stereotype.infrastructural, Stereotype.restful_http, dummyCategory.dummy_0, dummyCategory.dummy_1, Stereotype.internal, Stereotype.local_logging, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1308359077 + } ], + "children" : [ ], + "position" : { + "x" : 0.0, + "y" : 0.0 + }, + "size" : null + } ] + }, + "labelTypes" : [ { + "id" : "17", + "name" : "Stereotype", + "values" : [ { + "id" : "20", + "text" : "internal" + }, { + "id" : "21", + "text" : "local_logging" + }, { + "id" : "26", + "text" : "logging_server" + }, { + "id" : "27", + "text" : "infrastructural" + }, { + "id" : "37", + "text" : "web_application" + }, { + "id" : "43", + "text" : "search_engine" + }, { + "id" : "52", + "text" : "service_discovery" + }, { + "id" : "58", + "text" : "message_broker" + }, { + "id" : "59", + "text" : "plaintext_credentials" + }, { + "id" : "69", + "text" : "monitoring_dashboard" + }, { + "id" : "75", + "text" : "gateway" + }, { + "id" : "76", + "text" : "load_balancer" + }, { + "id" : "93", + "text" : "user_stereotype" + }, { + "id" : "94", + "text" : "entrypoint" + }, { + "id" : "95", + "text" : "exitpoint" + }, { + "id" : "101", + "text" : "restful_http" + }, { + "id" : "122", + "text" : "message_producer_rabbitmq" + }, { + "id" : "123", + "text" : "plaintext_credentials_link" + }, { + "id" : "130", + "text" : "message_consumer_rabbitmq" + }, { + "id" : "145", + "text" : "jdbc" + }, { + "id" : "160", + "text" : "encrypted_connection" + } ] + }, { + "id" : "22", + "name" : "Port", + "values" : [ { + "id" : "23", + "text" : "8082" + }, { + "id" : "28", + "text" : "5000" + }, { + "id" : "38", + "text" : "4200" + }, { + "id" : "46", + "text" : "9200" + }, { + "id" : "49", + "text" : "8084" + }, { + "id" : "53", + "text" : "8500" + }, { + "id" : "64", + "text" : "15672" + }, { + "id" : "72", + "text" : "4040" + }, { + "id" : "79", + "text" : "8080" + }, { + "id" : "87", + "text" : "5601" + } ] + }, { + "id" : "29", + "name" : "LoggingServer", + "values" : [ { + "id" : "30", + "text" : "Logstash" + } ] + }, { + "id" : "33", + "name" : "Process", + "values" : [ { + "id" : "34", + "text" : "service_two_db" + }, { + "id" : "90", + "text" : "service_one_db" + } ] + }, { + "id" : "39", + "name" : "WebApplication", + "values" : [ { + "id" : "40", + "text" : "Nginx" + } ] + }, { + "id" : "44", + "name" : "SearchEngine", + "values" : [ { + "id" : "45", + "text" : "Elasticsearch" + } ] + }, { + "id" : "54", + "name" : "ServiceDiscovery", + "values" : [ { + "id" : "55", + "text" : "Consul" + } ] + }, { + "id" : "60", + "name" : "MessageBroker", + "values" : [ { + "id" : "61", + "text" : "RabbitMQ" + } ] + }, { + "id" : "62", + "name" : "Username", + "values" : [ { + "id" : "63", + "text" : "mudigal" + }, { + "id" : "148", + "text" : "servicetwo" + } ] + }, { + "id" : "65", + "name" : "Password", + "values" : [ { + "id" : "66", + "text" : "mudigal" + }, { + "id" : "149", + "text" : "servicetwo" + } ] + }, { + "id" : "70", + "name" : "MonitoringDashboard", + "values" : [ { + "id" : "71", + "text" : "WeaveScope" + }, { + "id" : "86", + "text" : "Kibana" + } ] + }, { + "id" : "77", + "name" : "Gateway", + "values" : [ { + "id" : "78", + "text" : "Zuul" + } ] + }, { + "id" : "80", + "name" : "LoadBalancer", + "values" : [ { + "id" : "81", + "text" : "Ribbon" + } ] + }, { + "id" : "124", + "name" : "RoutingKey", + "values" : [ { + "id" : "125", + "text" : "commudigalmicroservicessampleservice" + } ] + }, { + "id" : "126", + "name" : "ProducerExchange", + "values" : [ { + "id" : "127", + "text" : "commudigalmicroservicessampleservicesexchange" + } ] + }, { + "id" : "131", + "name" : "Queue", + "values" : [ { + "id" : "132", + "text" : "commudigalmicroservicessampleserviceone" + }, { + "id" : "142", + "text" : "commudigalmicroservicessampleservicetwo" + } ] + }, { + "id" : "_Vx3bEPunEfCYrdfxNyUhUA", + "name" : "dummyCategory", + "values" : [ { + "id" : "_Vx3bEfunEfCYrdfxNyUhUA", + "text" : "dummy_0" + }, { + "id" : "_Vx3bEvunEfCYrdfxNyUhUA", + "text" : "dummy_1" + } ] + } ], + "mode" : "edit", + "constraints" : [ ] +} \ No newline at end of file diff --git a/tests/dev.arcovia.mitigation.utils.tests/testresults/scaledLength.json b/tests/dev.arcovia.mitigation.utils.tests/testresults/scaledLength.json new file mode 100644 index 00000000..b85fc989 --- /dev/null +++ b/tests/dev.arcovia.mitigation.utils.tests/testresults/scaledLength.json @@ -0,0 +1,4089 @@ +{ + "model" : { + "type" : "graph", + "id" : "root", + "children" : [ { + "text" : "consul2", + "id" : "100", + "type" : "edge:arrow", + "sourceId" : "99", + "targetId" : "98", + "labels" : null, + "ports" : null, + "annotations" : null, + "children" : [ ], + "routingPoints" : [ ] + }, { + "text" : "consul3", + "id" : "103", + "type" : "edge:arrow", + "sourceId" : "102", + "targetId" : "98", + "labels" : null, + "ports" : null, + "annotations" : null, + "children" : [ ], + "routingPoints" : [ ] + }, { + "text" : "consul3", + "id" : "106", + "type" : "edge:arrow", + "sourceId" : "105", + "targetId" : "104", + "labels" : null, + "ports" : null, + "annotations" : null, + "children" : [ ], + "routingPoints" : [ ] + }, { + "text" : "logstash", + "id" : "109", + "type" : "edge:arrow", + "sourceId" : "108", + "targetId" : "107", + "labels" : null, + "ports" : null, + "annotations" : null, + "children" : [ ], + "routingPoints" : [ ] + }, { + "text" : "elasticsearch", + "id" : "112", + "type" : "edge:arrow", + "sourceId" : "111", + "targetId" : "110", + "labels" : null, + "ports" : null, + "annotations" : null, + "children" : [ ], + "routingPoints" : [ ] + }, { + "text" : "consul", + "id" : "115", + "type" : "edge:arrow", + "sourceId" : "114", + "targetId" : "113", + "labels" : null, + "ports" : null, + "annotations" : null, + "children" : [ ], + "routingPoints" : [ ] + }, { + "text" : "service_one", + "id" : "118", + "type" : "edge:arrow", + "sourceId" : "117", + "targetId" : "116", + "labels" : null, + "ports" : null, + "annotations" : null, + "children" : [ ], + "routingPoints" : [ ] + }, { + "text" : "service_one", + "id" : "121", + "type" : "edge:arrow", + "sourceId" : "120", + "targetId" : "119", + "labels" : null, + "ports" : null, + "annotations" : null, + "children" : [ ], + "routingPoints" : [ ] + }, { + "text" : "rabbit", + "id" : "129", + "type" : "edge:arrow", + "sourceId" : "128", + "targetId" : "113", + "labels" : null, + "ports" : null, + "annotations" : null, + "children" : [ ], + "routingPoints" : [ ] + }, { + "text" : "consul", + "id" : "135", + "type" : "edge:arrow", + "sourceId" : "134", + "targetId" : "133", + "labels" : null, + "ports" : null, + "annotations" : null, + "children" : [ ], + "routingPoints" : [ ] + }, { + "text" : "service_two", + "id" : "137", + "type" : "edge:arrow", + "sourceId" : "136", + "targetId" : "116", + "labels" : null, + "ports" : null, + "annotations" : null, + "children" : [ ], + "routingPoints" : [ ] + }, { + "text" : "service_two", + "id" : "139", + "type" : "edge:arrow", + "sourceId" : "138", + "targetId" : "119", + "labels" : null, + "ports" : null, + "annotations" : null, + "children" : [ ], + "routingPoints" : [ ] + }, { + "text" : "rabbit", + "id" : "141", + "type" : "edge:arrow", + "sourceId" : "140", + "targetId" : "133", + "labels" : null, + "ports" : null, + "annotations" : null, + "children" : [ ], + "routingPoints" : [ ] + }, { + "text" : "service_one_db", + "id" : "144", + "type" : "edge:arrow", + "sourceId" : "143", + "targetId" : "113", + "labels" : null, + "ports" : null, + "annotations" : null, + "children" : [ ], + "routingPoints" : [ ] + }, { + "text" : "service_two_db", + "id" : "147", + "type" : "edge:arrow", + "sourceId" : "146", + "targetId" : "133", + "labels" : null, + "ports" : null, + "annotations" : null, + "children" : [ ], + "routingPoints" : [ ] + }, { + "text" : "api_gateway", + "id" : "151", + "type" : "edge:arrow", + "sourceId" : "150", + "targetId" : "113", + "labels" : null, + "ports" : null, + "annotations" : null, + "children" : [ ], + "routingPoints" : [ ] + }, { + "text" : "api_gateway", + "id" : "153", + "type" : "edge:arrow", + "sourceId" : "152", + "targetId" : "133", + "labels" : null, + "ports" : null, + "annotations" : null, + "children" : [ ], + "routingPoints" : [ ] + }, { + "text" : "consul", + "id" : "156", + "type" : "edge:arrow", + "sourceId" : "155", + "targetId" : "154", + "labels" : null, + "ports" : null, + "annotations" : null, + "children" : [ ], + "routingPoints" : [ ] + }, { + "text" : "user", + "id" : "159", + "type" : "edge:arrow", + "sourceId" : "158", + "targetId" : "157", + "labels" : null, + "ports" : null, + "annotations" : null, + "children" : [ ], + "routingPoints" : [ ] + }, { + "text" : "web_application", + "id" : "163", + "type" : "edge:arrow", + "sourceId" : "162", + "targetId" : "161", + "labels" : null, + "ports" : null, + "annotations" : null, + "children" : [ ], + "routingPoints" : [ ] + }, { + "text" : "web_application", + "id" : "165", + "type" : "edge:arrow", + "sourceId" : "164", + "targetId" : "154", + "labels" : null, + "ports" : null, + "annotations" : null, + "children" : [ ], + "routingPoints" : [ ] + }, { + "text" : "api_gateway", + "id" : "168", + "type" : "edge:arrow", + "sourceId" : "167", + "targetId" : "166", + "labels" : null, + "ports" : null, + "annotations" : null, + "children" : [ ], + "routingPoints" : [ ] + }, { + "text" : "service_one", + "id" : "170", + "type" : "edge:arrow", + "sourceId" : "169", + "targetId" : "166", + "labels" : null, + "ports" : null, + "annotations" : null, + "children" : [ ], + "routingPoints" : [ ] + }, { + "text" : "service_one_db", + "id" : "172", + "type" : "edge:arrow", + "sourceId" : "171", + "targetId" : "166", + "labels" : null, + "ports" : null, + "annotations" : null, + "children" : [ ], + "routingPoints" : [ ] + }, { + "text" : "service_two", + "id" : "174", + "type" : "edge:arrow", + "sourceId" : "173", + "targetId" : "166", + "labels" : null, + "ports" : null, + "annotations" : null, + "children" : [ ], + "routingPoints" : [ ] + }, { + "text" : "service_two_db", + "id" : "176", + "type" : "edge:arrow", + "sourceId" : "175", + "targetId" : "166", + "labels" : null, + "ports" : null, + "annotations" : null, + "children" : [ ], + "routingPoints" : [ ] + }, { + "text" : "web_application", + "id" : "178", + "type" : "edge:arrow", + "sourceId" : "177", + "targetId" : "166", + "labels" : null, + "ports" : null, + "annotations" : null, + "children" : [ ], + "routingPoints" : [ ] + }, { + "text" : "rabbit", + "id" : "180", + "type" : "edge:arrow", + "sourceId" : "179", + "targetId" : "166", + "labels" : null, + "ports" : null, + "annotations" : null, + "children" : [ ], + "routingPoints" : [ ] + }, { + "text" : "consul", + "id" : "182", + "type" : "edge:arrow", + "sourceId" : "181", + "targetId" : "166", + "labels" : null, + "ports" : null, + "annotations" : null, + "children" : [ ], + "routingPoints" : [ ] + }, { + "text" : "consul2", + "id" : "184", + "type" : "edge:arrow", + "sourceId" : "183", + "targetId" : "166", + "labels" : null, + "ports" : null, + "annotations" : null, + "children" : [ ], + "routingPoints" : [ ] + }, { + "text" : "consul3", + "id" : "186", + "type" : "edge:arrow", + "sourceId" : "185", + "targetId" : "166", + "labels" : null, + "ports" : null, + "annotations" : null, + "children" : [ ], + "routingPoints" : [ ] + }, { + "text" : "kibana", + "id" : "188", + "type" : "edge:arrow", + "sourceId" : "187", + "targetId" : "166", + "labels" : null, + "ports" : null, + "annotations" : null, + "children" : [ ], + "routingPoints" : [ ] + }, { + "text" : "elasticsearch", + "id" : "190", + "type" : "edge:arrow", + "sourceId" : "189", + "targetId" : "166", + "labels" : null, + "ports" : null, + "annotations" : null, + "children" : [ ], + "routingPoints" : [ ] + }, { + "text" : "logstash", + "id" : "192", + "type" : "edge:arrow", + "sourceId" : "191", + "targetId" : "166", + "labels" : null, + "ports" : null, + "annotations" : null, + "children" : [ ], + "routingPoints" : [ ] + }, { + "text" : "dummyFlow_0", + "id" : "_UZxmxfunEfCYrdfxNyUhUA", + "type" : "edge:arrow", + "sourceId" : "_UZxmw_unEfCYrdfxNyUhUA", + "targetId" : "_UZxmwvunEfCYrdfxNyUhUA", + "labels" : null, + "ports" : null, + "annotations" : null, + "children" : [ ], + "routingPoints" : [ ] + }, { + "text" : "dummyFlow_1", + "id" : "_UZxmy_unEfCYrdfxNyUhUA", + "type" : "edge:arrow", + "sourceId" : "_UZxmyfunEfCYrdfxNyUhUA", + "targetId" : "_UZxmyPunEfCYrdfxNyUhUA", + "labels" : null, + "ports" : null, + "annotations" : null, + "children" : [ ], + "routingPoints" : [ ] + }, { + "text" : "user", + "id" : "2", + "type" : "node:input-output", + "labels" : [ { + "labelTypeId" : "17", + "labelTypeValueId" : "93" + }, { + "labelTypeId" : "17", + "labelTypeValueId" : "94" + }, { + "labelTypeId" : "17", + "labelTypeValueId" : "95" + } ], + "ports" : [ { + "id" : "161", + "type" : "port:dfd-input", + "children" : [ ] + }, { + "behavior" : "assign Stereotype.user_stereotype,Stereotype.entrypoint,Stereotype.exitpoint,Stereotype.restful_http,Stereotype.encrypted_connection if TRUE from web_application\nforward web_application", + "id" : "158", + "type" : "port:dfd-output", + "children" : [ ] + } ], + "annotations" : [ { + "message" : "Propagated: Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.restful_http, Stereotype.encrypted_connection, Stereotype.web_application, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1802627471 + }, { + "message" : "Incoming: Stereotype.web_application, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.encrypted_connection", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1802627471 + }, { + "message" : "Propagated: Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.restful_http, Stereotype.encrypted_connection, Stereotype.web_application, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1391983205 + }, { + "message" : "Incoming: Stereotype.web_application, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.encrypted_connection", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1391983205 + }, { + "message" : "Propagated: Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.restful_http, Stereotype.encrypted_connection, Stereotype.web_application, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1096293439 + }, { + "message" : "Incoming: Stereotype.web_application, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.encrypted_connection", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1096293439 + }, { + "message" : "Propagated: Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.restful_http, Stereotype.encrypted_connection, Stereotype.web_application, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1219145433 + }, { + "message" : "Incoming: Stereotype.web_application, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.encrypted_connection", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1219145433 + } ], + "children" : [ ], + "position" : { + "x" : 0.0, + "y" : 0.0 + }, + "size" : null + }, { + "text" : "consul", + "id" : "3", + "type" : "node:function", + "labels" : [ { + "labelTypeId" : "17", + "labelTypeValueId" : "52" + }, { + "labelTypeId" : "17", + "labelTypeValueId" : "27" + }, { + "labelTypeId" : "22", + "labelTypeValueId" : "53" + }, { + "labelTypeId" : "54", + "labelTypeValueId" : "55" + } ], + "ports" : [ { + "id" : "98", + "type" : "port:dfd-input", + "children" : [ ] + }, { + "behavior" : "assign Stereotype.service_discovery,Stereotype.infrastructural,Stereotype.restful_http if TRUE from consul2|consul3\nforward consul2|consul3", + "id" : "114", + "type" : "port:dfd-output", + "children" : [ ] + }, { + "behavior" : "assign Stereotype.service_discovery,Stereotype.infrastructural,Stereotype.restful_http if TRUE from consul2|consul3\nforward consul2|consul3", + "id" : "134", + "type" : "port:dfd-output", + "children" : [ ] + }, { + "behavior" : "assign Stereotype.service_discovery,Stereotype.infrastructural,Stereotype.restful_http if TRUE from consul2|consul3\nforward consul2|consul3", + "id" : "155", + "type" : "port:dfd-output", + "children" : [ ] + }, { + "behavior" : "assign Stereotype.service_discovery,Stereotype.infrastructural,Stereotype.restful_http if TRUE from consul2|consul3\nforward consul2|consul3", + "id" : "181", + "type" : "port:dfd-output", + "children" : [ ] + } ], + "annotations" : [ { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1814190811 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1814190811 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1774995948 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1774995948 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1859631557 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1859631557 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 274580038 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 274580038 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 458582664 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 458582664 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 742806105 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 742806105 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1657199513 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1657199513 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 2080162056 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 2080162056 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1706459316 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1706459316 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1546740272 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1546740272 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1667460576 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1667460576 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 892135447 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 892135447 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1903062949 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1903062949 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 411425835 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 411425835 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 292099569 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 292099569 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 666625907 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 666625907 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 848187627 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 848187627 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 802159621 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 802159621 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1314997104 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1314997104 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 505323885 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 505323885 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 559384732 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 559384732 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1709778181 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1709778181 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 244839708 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 244839708 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 876029877 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 876029877 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 417004859 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 417004859 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 693421097 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 693421097 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1246087708 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1246087708 + } ], + "children" : [ ], + "position" : { + "x" : 0.0, + "y" : 0.0 + }, + "size" : null + }, { + "text" : "consul2", + "id" : "4", + "type" : "node:function", + "labels" : [ { + "labelTypeId" : "17", + "labelTypeValueId" : "52" + }, { + "labelTypeId" : "17", + "labelTypeValueId" : "27" + }, { + "labelTypeId" : "22", + "labelTypeValueId" : "53" + }, { + "labelTypeId" : "54", + "labelTypeValueId" : "55" + } ], + "ports" : [ { + "id" : "104", + "type" : "port:dfd-input", + "children" : [ ] + }, { + "behavior" : "assign Stereotype.service_discovery,Stereotype.infrastructural,Stereotype.restful_http if TRUE from consul3\nforward consul3", + "id" : "99", + "type" : "port:dfd-output", + "children" : [ ] + }, { + "behavior" : "assign Stereotype.service_discovery,Stereotype.infrastructural,Stereotype.restful_http if TRUE from consul3\nforward consul3", + "id" : "183", + "type" : "port:dfd-output", + "children" : [ ] + } ], + "annotations" : [ { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1814190811 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1814190811 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1859631557 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1859631557 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 458582664 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 458582664 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 742806105 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 742806105 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1657199513 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1657199513 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1706459316 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1706459316 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1546740272 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1546740272 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1667460576 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1667460576 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 892135447 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 892135447 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1903062949 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1903062949 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 411425835 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 411425835 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 292099569 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 292099569 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 666625907 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 666625907 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 848187627 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 848187627 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1993384592 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1993384592 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1314997104 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1314997104 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 505323885 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 505323885 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 559384732 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 559384732 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1709778181 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1709778181 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 244839708 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 244839708 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 876029877 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 876029877 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 417004859 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 417004859 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 693421097 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 693421097 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1246087708 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1246087708 + } ], + "children" : [ ], + "position" : { + "x" : 0.0, + "y" : 0.0 + }, + "size" : null + }, { + "text" : "consul3", + "id" : "5", + "type" : "node:function", + "labels" : [ { + "labelTypeId" : "17", + "labelTypeValueId" : "52" + }, { + "labelTypeId" : "17", + "labelTypeValueId" : "27" + }, { + "labelTypeId" : "22", + "labelTypeValueId" : "53" + }, { + "labelTypeId" : "54", + "labelTypeValueId" : "55" + } ], + "ports" : [ { + "behavior" : "assign Stereotype.service_discovery,Stereotype.infrastructural,Stereotype.restful_http if TRUE", + "id" : "102", + "type" : "port:dfd-output", + "children" : [ ] + }, { + "behavior" : "assign Stereotype.service_discovery,Stereotype.infrastructural,Stereotype.restful_http if TRUE", + "id" : "105", + "type" : "port:dfd-output", + "children" : [ ] + }, { + "behavior" : "assign Stereotype.service_discovery,Stereotype.infrastructural,Stereotype.restful_http if TRUE", + "id" : "185", + "type" : "port:dfd-output", + "children" : [ ] + } ], + "annotations" : [ { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1814190811 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1774995948 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1859631557 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 274580038 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 458582664 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 742806105 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1657199513 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 2080162056 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1706459316 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1546740272 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1667460576 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 892135447 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1903062949 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 411425835 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 292099569 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 666625907 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 848187627 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 802159621 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1993384592 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 245908294 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1314997104 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 505323885 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 559384732 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1709778181 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 244839708 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 876029877 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 417004859 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 693421097 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1246087708 + } ], + "children" : [ ], + "position" : { + "x" : 0.0, + "y" : 0.0 + }, + "size" : null + }, { + "text" : "elasticsearch", + "id" : "6", + "type" : "node:function", + "labels" : [ { + "labelTypeId" : "17", + "labelTypeValueId" : "43" + }, { + "labelTypeId" : "17", + "labelTypeValueId" : "27" + }, { + "labelTypeId" : "44", + "labelTypeValueId" : "45" + }, { + "labelTypeId" : "22", + "labelTypeValueId" : "46" + } ], + "ports" : [ { + "id" : "107", + "type" : "port:dfd-input", + "children" : [ ] + }, { + "behavior" : "assign Stereotype.search_engine,Stereotype.infrastructural,Stereotype.restful_http if TRUE from logstash\nforward logstash", + "id" : "111", + "type" : "port:dfd-output", + "children" : [ ] + }, { + "behavior" : "assign Stereotype.search_engine,Stereotype.infrastructural,Stereotype.restful_http if TRUE from logstash\nforward logstash", + "id" : "189", + "type" : "port:dfd-output", + "children" : [ ] + } ], + "annotations" : [ { + "message" : "Propagated: Stereotype.search_engine, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.logging_server, Stereotype.internal, Stereotype.local_logging, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1314997104 + }, { + "message" : "Incoming: Stereotype.logging_server, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.internal, Stereotype.local_logging, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1314997104 + }, { + "message" : "Propagated: Stereotype.search_engine, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.logging_server, Stereotype.internal, Stereotype.local_logging, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 505323885 + }, { + "message" : "Incoming: Stereotype.logging_server, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.internal, Stereotype.local_logging, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 505323885 + }, { + "message" : "Propagated: Stereotype.search_engine, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.logging_server, Stereotype.internal, Stereotype.local_logging, Stereotype.jdbc", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1839813660 + }, { + "message" : "Incoming: Stereotype.logging_server, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.internal, Stereotype.local_logging, Stereotype.jdbc", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1839813660 + }, { + "message" : "Propagated: Stereotype.search_engine, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.logging_server, Stereotype.internal, Stereotype.local_logging, Stereotype.gateway, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 559384732 + }, { + "message" : "Incoming: Stereotype.logging_server, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.internal, Stereotype.local_logging, Stereotype.gateway, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 559384732 + }, { + "message" : "Propagated: Stereotype.search_engine, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.logging_server, Stereotype.internal, Stereotype.local_logging, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1709778181 + }, { + "message" : "Incoming: Stereotype.logging_server, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.internal, Stereotype.local_logging, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1709778181 + }, { + "message" : "Propagated: Stereotype.search_engine, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.logging_server, Stereotype.internal, Stereotype.local_logging, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleservicetwo, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 244839708 + }, { + "message" : "Incoming: Stereotype.logging_server, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.internal, Stereotype.local_logging, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleservicetwo, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 244839708 + }, { + "message" : "Propagated: Stereotype.search_engine, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.logging_server, Stereotype.internal, Stereotype.local_logging, Stereotype.jdbc, Stereotype.plaintext_credentials_link, Username.servicetwo, Password.servicetwo", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 691620198 + }, { + "message" : "Incoming: Stereotype.logging_server, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.internal, Stereotype.local_logging, Stereotype.jdbc, Stereotype.plaintext_credentials_link, Username.servicetwo, Password.servicetwo", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 691620198 + }, { + "message" : "Propagated: Stereotype.search_engine, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.logging_server, Stereotype.internal, Stereotype.local_logging, Stereotype.gateway, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 876029877 + }, { + "message" : "Incoming: Stereotype.logging_server, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.internal, Stereotype.local_logging, Stereotype.gateway, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 876029877 + }, { + "message" : "Propagated: Stereotype.search_engine, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.logging_server, Stereotype.internal, Stereotype.local_logging, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 417004859 + }, { + "message" : "Incoming: Stereotype.logging_server, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.internal, Stereotype.local_logging, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 417004859 + } ], + "children" : [ ], + "position" : { + "x" : 0.0, + "y" : 0.0 + }, + "size" : null + }, { + "text" : "logstash", + "id" : "7", + "type" : "node:function", + "labels" : [ { + "labelTypeId" : "17", + "labelTypeValueId" : "26" + }, { + "labelTypeId" : "17", + "labelTypeValueId" : "27" + }, { + "labelTypeId" : "22", + "labelTypeValueId" : "28" + }, { + "labelTypeId" : "29", + "labelTypeValueId" : "30" + } ], + "ports" : [ { + "id" : "116", + "type" : "port:dfd-input", + "children" : [ ] + }, { + "behavior" : "assign Stereotype.logging_server,Stereotype.infrastructural,Stereotype.restful_http if TRUE from service_one|service_two\nforward service_one|service_two", + "id" : "108", + "type" : "port:dfd-output", + "children" : [ ] + }, { + "behavior" : "assign Stereotype.logging_server,Stereotype.infrastructural,Stereotype.restful_http if TRUE from service_one|service_two\nforward service_one|service_two", + "id" : "191", + "type" : "port:dfd-output", + "children" : [ ] + } ], + "annotations" : [ { + "message" : "Propagated: Stereotype.logging_server, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.internal, Stereotype.local_logging, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1314997104 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.service_discovery, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1314997104 + }, { + "message" : "Propagated: Stereotype.logging_server, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.internal, Stereotype.local_logging, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 505323885 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 505323885 + }, { + "message" : "Propagated: Stereotype.logging_server, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.internal, Stereotype.local_logging, Stereotype.jdbc", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1839813660 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.jdbc", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1839813660 + }, { + "message" : "Propagated: Stereotype.logging_server, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.internal, Stereotype.local_logging, Stereotype.gateway, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 559384732 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 559384732 + }, { + "message" : "Propagated: Stereotype.logging_server, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.internal, Stereotype.local_logging, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1709778181 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.service_discovery, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1709778181 + }, { + "message" : "Propagated: Stereotype.logging_server, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.internal, Stereotype.local_logging, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleservicetwo, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 244839708 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleservicetwo, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 244839708 + }, { + "message" : "Propagated: Stereotype.logging_server, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.internal, Stereotype.local_logging, Stereotype.jdbc, Stereotype.plaintext_credentials_link, Username.servicetwo, Password.servicetwo", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 691620198 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.jdbc, Stereotype.plaintext_credentials_link, Username.servicetwo, Password.servicetwo", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 691620198 + }, { + "message" : "Propagated: Stereotype.logging_server, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.internal, Stereotype.local_logging, Stereotype.gateway, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 876029877 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 876029877 + }, { + "message" : "Propagated: Stereotype.logging_server, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.internal, Stereotype.local_logging, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 417004859 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.service_discovery, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 417004859 + }, { + "message" : "Propagated: Stereotype.logging_server, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.internal, Stereotype.local_logging, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 693421097 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.service_discovery, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 693421097 + }, { + "message" : "Propagated: Stereotype.logging_server, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.internal, Stereotype.local_logging, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1246087708 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.service_discovery, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1246087708 + } ], + "children" : [ ], + "position" : { + "x" : 0.0, + "y" : 0.0 + }, + "size" : null + }, { + "text" : "kibana", + "id" : "8", + "type" : "node:function", + "labels" : [ { + "labelTypeId" : "17", + "labelTypeValueId" : "69" + }, { + "labelTypeId" : "17", + "labelTypeValueId" : "27" + }, { + "labelTypeId" : "70", + "labelTypeValueId" : "86" + }, { + "labelTypeId" : "22", + "labelTypeValueId" : "87" + } ], + "ports" : [ { + "id" : "110", + "type" : "port:dfd-input", + "children" : [ ] + }, { + "behavior" : "assign Stereotype.monitoring_dashboard,Stereotype.infrastructural,Stereotype.restful_http if TRUE from elasticsearch\nforward elasticsearch", + "id" : "187", + "type" : "port:dfd-output", + "children" : [ ] + } ], + "annotations" : [ { + "message" : "Propagated: Stereotype.monitoring_dashboard, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.search_engine, Stereotype.logging_server, Stereotype.internal, Stereotype.local_logging, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1314997104 + }, { + "message" : "Incoming: Stereotype.search_engine, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.logging_server, Stereotype.internal, Stereotype.local_logging, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1314997104 + }, { + "message" : "Propagated: Stereotype.monitoring_dashboard, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.search_engine, Stereotype.logging_server, Stereotype.internal, Stereotype.local_logging, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 505323885 + }, { + "message" : "Incoming: Stereotype.search_engine, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.logging_server, Stereotype.internal, Stereotype.local_logging, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 505323885 + }, { + "message" : "Propagated: Stereotype.monitoring_dashboard, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.search_engine, Stereotype.logging_server, Stereotype.internal, Stereotype.local_logging, Stereotype.jdbc", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1839813660 + }, { + "message" : "Incoming: Stereotype.search_engine, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.logging_server, Stereotype.internal, Stereotype.local_logging, Stereotype.jdbc", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1839813660 + }, { + "message" : "Propagated: Stereotype.monitoring_dashboard, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.search_engine, Stereotype.logging_server, Stereotype.internal, Stereotype.local_logging, Stereotype.gateway, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 559384732 + }, { + "message" : "Incoming: Stereotype.search_engine, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.logging_server, Stereotype.internal, Stereotype.local_logging, Stereotype.gateway, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 559384732 + }, { + "message" : "Propagated: Stereotype.monitoring_dashboard, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.search_engine, Stereotype.logging_server, Stereotype.internal, Stereotype.local_logging, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1709778181 + }, { + "message" : "Incoming: Stereotype.search_engine, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.logging_server, Stereotype.internal, Stereotype.local_logging, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1709778181 + }, { + "message" : "Propagated: Stereotype.monitoring_dashboard, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.search_engine, Stereotype.logging_server, Stereotype.internal, Stereotype.local_logging, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleservicetwo, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 244839708 + }, { + "message" : "Incoming: Stereotype.search_engine, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.logging_server, Stereotype.internal, Stereotype.local_logging, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleservicetwo, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 244839708 + }, { + "message" : "Propagated: Stereotype.monitoring_dashboard, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.search_engine, Stereotype.logging_server, Stereotype.internal, Stereotype.local_logging, Stereotype.jdbc, Stereotype.plaintext_credentials_link, Username.servicetwo, Password.servicetwo", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 691620198 + }, { + "message" : "Incoming: Stereotype.search_engine, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.logging_server, Stereotype.internal, Stereotype.local_logging, Stereotype.jdbc, Stereotype.plaintext_credentials_link, Username.servicetwo, Password.servicetwo", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 691620198 + }, { + "message" : "Propagated: Stereotype.monitoring_dashboard, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.search_engine, Stereotype.logging_server, Stereotype.internal, Stereotype.local_logging, Stereotype.gateway, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 876029877 + }, { + "message" : "Incoming: Stereotype.search_engine, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.logging_server, Stereotype.internal, Stereotype.local_logging, Stereotype.gateway, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 876029877 + } ], + "children" : [ ], + "position" : { + "x" : 0.0, + "y" : 0.0 + }, + "size" : null + }, { + "text" : "rabbit", + "id" : "9", + "type" : "node:function", + "labels" : [ { + "labelTypeId" : "17", + "labelTypeValueId" : "58" + }, { + "labelTypeId" : "17", + "labelTypeValueId" : "59" + }, { + "labelTypeId" : "17", + "labelTypeValueId" : "27" + }, { + "labelTypeId" : "60", + "labelTypeValueId" : "61" + }, { + "labelTypeId" : "62", + "labelTypeValueId" : "63" + }, { + "labelTypeId" : "22", + "labelTypeValueId" : "64" + }, { + "labelTypeId" : "65", + "labelTypeValueId" : "66" + } ], + "ports" : [ { + "id" : "119", + "type" : "port:dfd-input", + "children" : [ ] + }, { + "behavior" : "assign Stereotype.message_broker,Stereotype.plaintext_credentials,Stereotype.infrastructural,Stereotype.message_consumer_rabbitmq,Stereotype.restful_http,Queue.commudigalmicroservicessampleserviceone if TRUE from service_one|service_two\nforward service_one|service_two", + "id" : "128", + "type" : "port:dfd-output", + "children" : [ ] + }, { + "behavior" : "assign Stereotype.message_broker,Stereotype.plaintext_credentials,Stereotype.infrastructural,Stereotype.message_consumer_rabbitmq,Stereotype.restful_http,Queue.commudigalmicroservicessampleservicetwo if TRUE from service_one|service_two\nforward service_one|service_two", + "id" : "140", + "type" : "port:dfd-output", + "children" : [ ] + }, { + "behavior" : "assign Stereotype.message_broker,Stereotype.plaintext_credentials,Stereotype.infrastructural,Stereotype.restful_http if TRUE from service_one|service_two\nforward service_one|service_two", + "id" : "179", + "type" : "port:dfd-output", + "children" : [ ] + } ], + "annotations" : [ { + "message" : "Propagated: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleserviceone, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 458582664 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, Stereotype.restful_http, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 458582664 + }, { + "message" : "Propagated: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleserviceone, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.jdbc", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 2139936252 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, Stereotype.restful_http, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.jdbc", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 2139936252 + }, { + "message" : "Propagated: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleserviceone, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.gateway, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 742806105 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, Stereotype.restful_http, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 742806105 + }, { + "message" : "Propagated: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleserviceone, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.gateway, Stereotype.load_balancer, Stereotype.web_application, Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.encrypted_connection", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1391983205 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, Stereotype.restful_http, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.web_application, Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.encrypted_connection", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1391983205 + }, { + "message" : "Propagated: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleserviceone, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1657199513 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.restful_http, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1657199513 + }, { + "message" : "Propagated: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleserviceone, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 2080162056 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.restful_http, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 2080162056 + }, { + "message" : "Propagated: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleservicetwo, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1706459316 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, Stereotype.restful_http, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1706459316 + }, { + "message" : "Propagated: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleserviceone, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Queue.commudigalmicroservicessampleservicetwo, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1706459316 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.restful_http, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleservicetwo, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1706459316 + }, { + "message" : "Propagated: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleserviceone, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.jdbc, Username.servicetwo, Password.servicetwo", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 142568117 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.restful_http, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.jdbc, Username.servicetwo, Password.servicetwo", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 142568117 + }, { + "message" : "Propagated: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleserviceone, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.gateway, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1546740272 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.restful_http, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1546740272 + }, { + "message" : "Propagated: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleserviceone, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.gateway, Stereotype.load_balancer, Stereotype.web_application, Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.encrypted_connection", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1096293439 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.restful_http, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.web_application, Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.encrypted_connection", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1096293439 + }, { + "message" : "Propagated: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleservicetwo, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1903062949 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, Stereotype.restful_http, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1903062949 + }, { + "message" : "Propagated: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 292099569 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, Stereotype.restful_http, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 292099569 + }, { + "message" : "Propagated: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 666625907 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.restful_http, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 666625907 + }, { + "message" : "Propagated: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleserviceone, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 505323885 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, Stereotype.restful_http, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 505323885 + }, { + "message" : "Propagated: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleservicetwo, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 244839708 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, Stereotype.restful_http, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 244839708 + } ], + "children" : [ ], + "position" : { + "x" : 0.0, + "y" : 0.0 + }, + "size" : null + }, { + "text" : "service_one", + "id" : "10", + "type" : "node:function", + "labels" : [ { + "labelTypeId" : "17", + "labelTypeValueId" : "20" + }, { + "labelTypeId" : "17", + "labelTypeValueId" : "21" + }, { + "labelTypeId" : "22", + "labelTypeValueId" : "23" + } ], + "ports" : [ { + "id" : "113", + "type" : "port:dfd-input", + "children" : [ ] + }, { + "behavior" : "assign Stereotype.internal,Stereotype.local_logging,Stereotype.restful_http if TRUE from api_gateway|consul|rabbit|service_one_db\nforward api_gateway|consul|rabbit|service_one_db", + "id" : "117", + "type" : "port:dfd-output", + "children" : [ ] + }, { + "behavior" : "assign Stereotype.internal,Stereotype.local_logging,Stereotype.message_producer_rabbitmq,Stereotype.plaintext_credentials_link,Stereotype.restful_http,RoutingKey.commudigalmicroservicessampleservice,ProducerExchange.commudigalmicroservicessampleservicesexchange if TRUE from api_gateway|consul|rabbit|service_one_db\nforward api_gateway|consul|rabbit|service_one_db", + "id" : "120", + "type" : "port:dfd-output", + "children" : [ ] + }, { + "behavior" : "assign Stereotype.internal,Stereotype.local_logging,Stereotype.restful_http if TRUE from api_gateway|consul|rabbit|service_one_db\nforward api_gateway|consul|rabbit|service_one_db", + "id" : "169", + "type" : "port:dfd-output", + "children" : [ ] + } ], + "annotations" : [ { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.service_discovery, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1859631557 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1859631557 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.service_discovery, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 274580038 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 274580038 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, Stereotype.restful_http, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 458582664 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 458582664 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 458582664 + }, { + "message" : "Incoming: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleserviceone, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 458582664 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, Stereotype.restful_http, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.jdbc", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 2139936252 + }, { + "message" : "Incoming: Stereotype.jdbc", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 2139936252 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.jdbc", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 2139936252 + }, { + "message" : "Incoming: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleserviceone, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.jdbc", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 2139936252 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, Stereotype.restful_http, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 742806105 + }, { + "message" : "Incoming: Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.restful_http, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 742806105 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.gateway, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 742806105 + }, { + "message" : "Incoming: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleserviceone, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.gateway, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 742806105 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, Stereotype.restful_http, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.web_application, Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.encrypted_connection", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1391983205 + }, { + "message" : "Incoming: Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.restful_http, Stereotype.web_application, Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.encrypted_connection", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1391983205 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.gateway, Stereotype.load_balancer, Stereotype.web_application, Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.encrypted_connection", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1391983205 + }, { + "message" : "Incoming: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleserviceone, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.gateway, Stereotype.load_balancer, Stereotype.web_application, Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.encrypted_connection", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1391983205 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1657199513 + }, { + "message" : "Incoming: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleserviceone, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1657199513 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 2080162056 + }, { + "message" : "Incoming: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleserviceone, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 2080162056 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, Stereotype.restful_http, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1706459316 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1706459316 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Queue.commudigalmicroservicessampleservicetwo, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1706459316 + }, { + "message" : "Incoming: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleserviceone, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Queue.commudigalmicroservicessampleservicetwo, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1706459316 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.jdbc, Username.servicetwo, Password.servicetwo", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 142568117 + }, { + "message" : "Incoming: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleserviceone, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.jdbc, Username.servicetwo, Password.servicetwo", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 142568117 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.gateway, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1546740272 + }, { + "message" : "Incoming: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleserviceone, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.gateway, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1546740272 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.gateway, Stereotype.load_balancer, Stereotype.web_application, Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.encrypted_connection", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1096293439 + }, { + "message" : "Incoming: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleserviceone, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.gateway, Stereotype.load_balancer, Stereotype.web_application, Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.encrypted_connection", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1096293439 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.jdbc", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 280663936 + }, { + "message" : "Incoming: Stereotype.jdbc", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 280663936 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1667460576 + }, { + "message" : "Incoming: Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.restful_http, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1667460576 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, Stereotype.restful_http, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1903062949 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1903062949 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, Stereotype.restful_http, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 292099569 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 292099569 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.service_discovery, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1314997104 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1314997104 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, Stereotype.restful_http, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 505323885 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 505323885 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 505323885 + }, { + "message" : "Incoming: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleserviceone, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 505323885 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.jdbc", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1839813660 + }, { + "message" : "Incoming: Stereotype.jdbc", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1839813660 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 559384732 + }, { + "message" : "Incoming: Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.restful_http, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 559384732 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, Stereotype.restful_http, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 244839708 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 244839708 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.service_discovery, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 417004859 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 417004859 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.service_discovery, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 693421097 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 693421097 + } ], + "children" : [ ], + "position" : { + "x" : 0.0, + "y" : 0.0 + }, + "size" : null + }, { + "text" : "service_two", + "id" : "11", + "type" : "node:function", + "labels" : [ { + "labelTypeId" : "17", + "labelTypeValueId" : "20" + }, { + "labelTypeId" : "17", + "labelTypeValueId" : "21" + }, { + "labelTypeId" : "22", + "labelTypeValueId" : "49" + } ], + "ports" : [ { + "id" : "133", + "type" : "port:dfd-input", + "children" : [ ] + }, { + "behavior" : "assign Stereotype.internal,Stereotype.local_logging,Stereotype.restful_http if TRUE from api_gateway|consul|rabbit|service_two_db\nforward api_gateway|consul|rabbit|service_two_db", + "id" : "136", + "type" : "port:dfd-output", + "children" : [ ] + }, { + "behavior" : "assign Stereotype.internal,Stereotype.local_logging,Stereotype.message_producer_rabbitmq,Stereotype.restful_http,Stereotype.plaintext_credentials_link,RoutingKey.commudigalmicroservicessampleservice,ProducerExchange.commudigalmicroservicessampleservicesexchange if TRUE from api_gateway|consul|rabbit|service_two_db\nforward api_gateway|consul|rabbit|service_two_db", + "id" : "138", + "type" : "port:dfd-output", + "children" : [ ] + }, { + "behavior" : "assign Stereotype.internal,Stereotype.local_logging,Stereotype.restful_http if TRUE from api_gateway|consul|rabbit|service_two_db\nforward api_gateway|consul|rabbit|service_two_db", + "id" : "173", + "type" : "port:dfd-output", + "children" : [ ] + } ], + "annotations" : [ { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.restful_http, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1657199513 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1657199513 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.restful_http, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 2080162056 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 2080162056 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.restful_http, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleservicetwo, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1706459316 + }, { + "message" : "Incoming: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleservicetwo, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1706459316 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.restful_http, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.jdbc, Username.servicetwo, Password.servicetwo", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 142568117 + }, { + "message" : "Incoming: Stereotype.jdbc, Stereotype.plaintext_credentials_link, Username.servicetwo, Password.servicetwo", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 142568117 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.restful_http, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1546740272 + }, { + "message" : "Incoming: Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.restful_http, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1546740272 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.restful_http, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.web_application, Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.encrypted_connection", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1096293439 + }, { + "message" : "Incoming: Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.restful_http, Stereotype.web_application, Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.encrypted_connection", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1096293439 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.service_discovery, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 892135447 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 892135447 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleservicetwo, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1903062949 + }, { + "message" : "Incoming: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleservicetwo, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1903062949 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.jdbc, Stereotype.plaintext_credentials_link, Username.servicetwo, Password.servicetwo", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 152702981 + }, { + "message" : "Incoming: Stereotype.jdbc, Stereotype.plaintext_credentials_link, Username.servicetwo, Password.servicetwo", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 152702981 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 411425835 + }, { + "message" : "Incoming: Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.restful_http, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 411425835 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.restful_http, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 666625907 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 666625907 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.service_discovery, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1709778181 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1709778181 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleservicetwo, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 244839708 + }, { + "message" : "Incoming: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Stereotype.restful_http, Queue.commudigalmicroservicessampleservicetwo, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 244839708 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.jdbc, Stereotype.plaintext_credentials_link, Username.servicetwo, Password.servicetwo", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 691620198 + }, { + "message" : "Incoming: Stereotype.jdbc, Stereotype.plaintext_credentials_link, Username.servicetwo, Password.servicetwo", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 691620198 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 876029877 + }, { + "message" : "Incoming: Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.restful_http, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 876029877 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.service_discovery, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1246087708 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1246087708 + } ], + "children" : [ ], + "position" : { + "x" : 0.0, + "y" : 0.0 + }, + "size" : null + }, { + "text" : "service_one_db", + "id" : "12", + "type" : "node:function", + "labels" : [ { + "labelTypeId" : "33", + "labelTypeValueId" : "90" + } ], + "ports" : [ { + "behavior" : "assign Stereotype.jdbc if TRUE", + "id" : "143", + "type" : "port:dfd-output", + "children" : [ ] + }, { + "behavior" : "assign Stereotype.restful_http if TRUE", + "id" : "171", + "type" : "port:dfd-output", + "children" : [ ] + } ], + "annotations" : [ { + "message" : "Propagated: Stereotype.jdbc", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 2139936252 + }, { + "message" : "Propagated: Stereotype.jdbc", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 280663936 + }, { + "message" : "Propagated: Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 882156382 + }, { + "message" : "Propagated: Stereotype.jdbc", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1839813660 + } ], + "children" : [ ], + "position" : { + "x" : 0.0, + "y" : 0.0 + }, + "size" : null + }, { + "text" : "service_two_db", + "id" : "13", + "type" : "node:function", + "labels" : [ { + "labelTypeId" : "33", + "labelTypeValueId" : "34" + } ], + "ports" : [ { + "behavior" : "assign Stereotype.jdbc,Stereotype.plaintext_credentials_link,Username.servicetwo,Password.servicetwo if TRUE", + "id" : "146", + "type" : "port:dfd-output", + "children" : [ ] + }, { + "behavior" : "assign Stereotype.restful_http if TRUE", + "id" : "175", + "type" : "port:dfd-output", + "children" : [ ] + } ], + "annotations" : [ { + "message" : "Propagated: Stereotype.jdbc, Stereotype.plaintext_credentials_link, Username.servicetwo, Password.servicetwo", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 142568117 + }, { + "message" : "Propagated: Stereotype.jdbc, Stereotype.plaintext_credentials_link, Username.servicetwo, Password.servicetwo", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 152702981 + }, { + "message" : "Propagated: Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1245442940 + }, { + "message" : "Propagated: Stereotype.jdbc, Stereotype.plaintext_credentials_link, Username.servicetwo, Password.servicetwo", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 691620198 + } ], + "children" : [ ], + "position" : { + "x" : 0.0, + "y" : 0.0 + }, + "size" : null + }, { + "text" : "api_gateway", + "id" : "14", + "type" : "node:function", + "labels" : [ { + "labelTypeId" : "17", + "labelTypeValueId" : "75" + }, { + "labelTypeId" : "17", + "labelTypeValueId" : "27" + }, { + "labelTypeId" : "17", + "labelTypeValueId" : "76" + }, { + "labelTypeId" : "77", + "labelTypeValueId" : "78" + }, { + "labelTypeId" : "22", + "labelTypeValueId" : "79" + }, { + "labelTypeId" : "80", + "labelTypeValueId" : "81" + } ], + "ports" : [ { + "id" : "154", + "type" : "port:dfd-input", + "children" : [ ] + }, { + "behavior" : "assign Stereotype.gateway,Stereotype.infrastructural,Stereotype.load_balancer,Stereotype.restful_http if TRUE from consul|web_application\nforward consul|web_application", + "id" : "150", + "type" : "port:dfd-output", + "children" : [ ] + }, { + "behavior" : "assign Stereotype.gateway,Stereotype.infrastructural,Stereotype.load_balancer,Stereotype.restful_http if TRUE from consul|web_application\nforward consul|web_application", + "id" : "152", + "type" : "port:dfd-output", + "children" : [ ] + }, { + "behavior" : "assign Stereotype.gateway,Stereotype.infrastructural,Stereotype.load_balancer,Stereotype.restful_http if TRUE from consul|web_application\nforward consul|web_application", + "id" : "167", + "type" : "port:dfd-output", + "children" : [ ] + } ], + "annotations" : [ { + "message" : "Propagated: Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.restful_http, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1814190811 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1814190811 + }, { + "message" : "Propagated: Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.restful_http, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1774995948 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1774995948 + }, { + "message" : "Propagated: Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.restful_http, Stereotype.web_application, Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.encrypted_connection", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1802627471 + }, { + "message" : "Incoming: Stereotype.web_application, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.encrypted_connection", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1802627471 + }, { + "message" : "Propagated: Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.restful_http, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 742806105 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 742806105 + }, { + "message" : "Propagated: Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.restful_http, Stereotype.web_application, Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.encrypted_connection", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1391983205 + }, { + "message" : "Incoming: Stereotype.web_application, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.encrypted_connection", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1391983205 + }, { + "message" : "Propagated: Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.restful_http, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1546740272 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1546740272 + }, { + "message" : "Propagated: Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.restful_http, Stereotype.web_application, Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.encrypted_connection", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1096293439 + }, { + "message" : "Incoming: Stereotype.web_application, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.encrypted_connection", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1096293439 + }, { + "message" : "Propagated: Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.restful_http, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1667460576 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1667460576 + }, { + "message" : "Propagated: Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.restful_http, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 411425835 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 411425835 + }, { + "message" : "Propagated: Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.restful_http, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 559384732 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 559384732 + }, { + "message" : "Propagated: Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.restful_http, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 876029877 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 876029877 + } ], + "children" : [ ], + "position" : { + "x" : 0.0, + "y" : 0.0 + }, + "size" : null + }, { + "text" : "web_application", + "id" : "15", + "type" : "node:function", + "labels" : [ { + "labelTypeId" : "17", + "labelTypeValueId" : "37" + }, { + "labelTypeId" : "17", + "labelTypeValueId" : "27" + }, { + "labelTypeId" : "22", + "labelTypeValueId" : "38" + }, { + "labelTypeId" : "39", + "labelTypeValueId" : "40" + } ], + "ports" : [ { + "id" : "157", + "type" : "port:dfd-input", + "children" : [ ] + }, { + "behavior" : "assign Stereotype.web_application,Stereotype.infrastructural,Stereotype.restful_http,Stereotype.encrypted_connection if TRUE from user\nforward user", + "id" : "162", + "type" : "port:dfd-output", + "children" : [ ] + }, { + "behavior" : "assign Stereotype.web_application,Stereotype.infrastructural,Stereotype.restful_http if TRUE from user\nforward user", + "id" : "164", + "type" : "port:dfd-output", + "children" : [ ] + }, { + "behavior" : "assign Stereotype.web_application,Stereotype.infrastructural,Stereotype.restful_http if TRUE from user\nforward user", + "id" : "177", + "type" : "port:dfd-output", + "children" : [ ] + } ], + "annotations" : [ { + "message" : "Propagated: Stereotype.web_application, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.encrypted_connection", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1802627471 + }, { + "message" : "Propagated: Stereotype.web_application, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.encrypted_connection", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1802627471 + }, { + "message" : "Incoming: Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.restful_http, Stereotype.encrypted_connection, Stereotype.web_application, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1802627471 + }, { + "message" : "Propagated: Stereotype.web_application, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.encrypted_connection", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1391983205 + }, { + "message" : "Propagated: Stereotype.web_application, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.encrypted_connection", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1391983205 + }, { + "message" : "Incoming: Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.restful_http, Stereotype.encrypted_connection, Stereotype.web_application, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1391983205 + }, { + "message" : "Propagated: Stereotype.web_application, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.encrypted_connection", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1096293439 + }, { + "message" : "Propagated: Stereotype.web_application, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.encrypted_connection", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1096293439 + }, { + "message" : "Incoming: Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.restful_http, Stereotype.encrypted_connection, Stereotype.web_application, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1096293439 + }, { + "message" : "Propagated: Stereotype.web_application, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.encrypted_connection", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1219145433 + }, { + "message" : "Propagated: Stereotype.web_application, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.encrypted_connection", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1219145433 + }, { + "message" : "Incoming: Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.restful_http, Stereotype.encrypted_connection, Stereotype.web_application, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1219145433 + } ], + "children" : [ ], + "position" : { + "x" : 0.0, + "y" : 0.0 + }, + "size" : null + }, { + "text" : "scope", + "id" : "16", + "type" : "node:function", + "labels" : [ { + "labelTypeId" : "17", + "labelTypeValueId" : "69" + }, { + "labelTypeId" : "17", + "labelTypeValueId" : "27" + }, { + "labelTypeId" : "70", + "labelTypeValueId" : "71" + }, { + "labelTypeId" : "22", + "labelTypeValueId" : "72" + } ], + "ports" : [ { + "id" : "166", + "type" : "port:dfd-input", + "children" : [ ] + }, { + "behavior" : "forward api_gateway|consul|consul2|consul3|elasticsearch|kibana|logstash|rabbit|service_one|service_one_db|service_two|service_two_db|web_application", + "id" : "_UZxmw_unEfCYrdfxNyUhUA", + "type" : "port:dfd-output", + "children" : [ ] + } ], + "annotations" : [ { + "message" : "Propagated: Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.restful_http, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1814190811 + }, { + "message" : "Incoming: Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.restful_http, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1814190811 + }, { + "message" : "Propagated: Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.restful_http, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1774995948 + }, { + "message" : "Incoming: Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.restful_http, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1774995948 + }, { + "message" : "Propagated: Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.restful_http, Stereotype.web_application, Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.encrypted_connection", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1802627471 + }, { + "message" : "Incoming: Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.restful_http, Stereotype.web_application, Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.encrypted_connection", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1802627471 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.service_discovery, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1859631557 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.service_discovery, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1859631557 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.service_discovery, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 274580038 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.service_discovery, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 274580038 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 458582664 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 458582664 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.jdbc", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 2139936252 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.jdbc", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 2139936252 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.gateway, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 742806105 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.gateway, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 742806105 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.gateway, Stereotype.load_balancer, Stereotype.web_application, Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.encrypted_connection", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1391983205 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.gateway, Stereotype.load_balancer, Stereotype.web_application, Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.encrypted_connection", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1391983205 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1657199513 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1657199513 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 2080162056 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 2080162056 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Queue.commudigalmicroservicessampleservicetwo, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1706459316 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Queue.commudigalmicroservicessampleservicetwo, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1706459316 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.jdbc, Username.servicetwo, Password.servicetwo", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 142568117 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.jdbc, Username.servicetwo, Password.servicetwo", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 142568117 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.gateway, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1546740272 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.gateway, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1546740272 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.gateway, Stereotype.load_balancer, Stereotype.web_application, Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.encrypted_connection", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1096293439 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.gateway, Stereotype.load_balancer, Stereotype.web_application, Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.encrypted_connection", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1096293439 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.jdbc", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 280663936 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.jdbc", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 280663936 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1667460576 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1667460576 + }, { + "message" : "Propagated: Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 882156382 + }, { + "message" : "Incoming: Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 882156382 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.service_discovery, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 892135447 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.service_discovery, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 892135447 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleservicetwo, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1903062949 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleservicetwo, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1903062949 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.jdbc, Stereotype.plaintext_credentials_link, Username.servicetwo, Password.servicetwo", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 152702981 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.jdbc, Stereotype.plaintext_credentials_link, Username.servicetwo, Password.servicetwo", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 152702981 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 411425835 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 411425835 + }, { + "message" : "Propagated: Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1245442940 + }, { + "message" : "Incoming: Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1245442940 + }, { + "message" : "Propagated: Stereotype.web_application, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.encrypted_connection", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1219145433 + }, { + "message" : "Incoming: Stereotype.web_application, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.encrypted_connection", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1219145433 + }, { + "message" : "Propagated: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 292099569 + }, { + "message" : "Incoming: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 292099569 + }, { + "message" : "Propagated: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 666625907 + }, { + "message" : "Incoming: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 666625907 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 848187627 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 848187627 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 802159621 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 802159621 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1993384592 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1993384592 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 245908294 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 245908294 + }, { + "message" : "Propagated: Stereotype.monitoring_dashboard, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.search_engine, Stereotype.logging_server, Stereotype.internal, Stereotype.local_logging, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1314997104 + }, { + "message" : "Incoming: Stereotype.monitoring_dashboard, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.search_engine, Stereotype.logging_server, Stereotype.internal, Stereotype.local_logging, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1314997104 + }, { + "message" : "Propagated: Stereotype.monitoring_dashboard, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.search_engine, Stereotype.logging_server, Stereotype.internal, Stereotype.local_logging, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 505323885 + }, { + "message" : "Incoming: Stereotype.monitoring_dashboard, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.search_engine, Stereotype.logging_server, Stereotype.internal, Stereotype.local_logging, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 505323885 + }, { + "message" : "Propagated: Stereotype.monitoring_dashboard, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.search_engine, Stereotype.logging_server, Stereotype.internal, Stereotype.local_logging, Stereotype.jdbc", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1839813660 + }, { + "message" : "Incoming: Stereotype.monitoring_dashboard, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.search_engine, Stereotype.logging_server, Stereotype.internal, Stereotype.local_logging, Stereotype.jdbc", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1839813660 + }, { + "message" : "Propagated: Stereotype.monitoring_dashboard, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.search_engine, Stereotype.logging_server, Stereotype.internal, Stereotype.local_logging, Stereotype.gateway, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 559384732 + }, { + "message" : "Incoming: Stereotype.monitoring_dashboard, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.search_engine, Stereotype.logging_server, Stereotype.internal, Stereotype.local_logging, Stereotype.gateway, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 559384732 + }, { + "message" : "Propagated: Stereotype.monitoring_dashboard, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.search_engine, Stereotype.logging_server, Stereotype.internal, Stereotype.local_logging, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1709778181 + }, { + "message" : "Incoming: Stereotype.monitoring_dashboard, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.search_engine, Stereotype.logging_server, Stereotype.internal, Stereotype.local_logging, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1709778181 + }, { + "message" : "Propagated: Stereotype.monitoring_dashboard, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.search_engine, Stereotype.logging_server, Stereotype.internal, Stereotype.local_logging, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleservicetwo, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 244839708 + }, { + "message" : "Incoming: Stereotype.monitoring_dashboard, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.search_engine, Stereotype.logging_server, Stereotype.internal, Stereotype.local_logging, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleservicetwo, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 244839708 + }, { + "message" : "Propagated: Stereotype.monitoring_dashboard, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.search_engine, Stereotype.logging_server, Stereotype.internal, Stereotype.local_logging, Stereotype.jdbc, Stereotype.plaintext_credentials_link, Username.servicetwo, Password.servicetwo", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 691620198 + }, { + "message" : "Incoming: Stereotype.monitoring_dashboard, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.search_engine, Stereotype.logging_server, Stereotype.internal, Stereotype.local_logging, Stereotype.jdbc, Stereotype.plaintext_credentials_link, Username.servicetwo, Password.servicetwo", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 691620198 + }, { + "message" : "Propagated: Stereotype.monitoring_dashboard, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.search_engine, Stereotype.logging_server, Stereotype.internal, Stereotype.local_logging, Stereotype.gateway, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 876029877 + }, { + "message" : "Incoming: Stereotype.monitoring_dashboard, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.search_engine, Stereotype.logging_server, Stereotype.internal, Stereotype.local_logging, Stereotype.gateway, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 876029877 + }, { + "message" : "Propagated: Stereotype.search_engine, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.logging_server, Stereotype.internal, Stereotype.local_logging, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 417004859 + }, { + "message" : "Incoming: Stereotype.search_engine, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.logging_server, Stereotype.internal, Stereotype.local_logging, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 417004859 + }, { + "message" : "Propagated: Stereotype.logging_server, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.internal, Stereotype.local_logging, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 693421097 + }, { + "message" : "Incoming: Stereotype.logging_server, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.internal, Stereotype.local_logging, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 693421097 + }, { + "message" : "Propagated: Stereotype.logging_server, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.internal, Stereotype.local_logging, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1246087708 + }, { + "message" : "Incoming: Stereotype.logging_server, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.internal, Stereotype.local_logging, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1246087708 + } ], + "children" : [ ], + "position" : { + "x" : 0.0, + "y" : 0.0 + }, + "size" : null + }, { + "text" : "dummyNode_0", + "id" : "_UZxmwPunEfCYrdfxNyUhUA", + "type" : "node:storage", + "labels" : [ { + "labelTypeId" : "17", + "labelTypeValueId" : "69" + }, { + "labelTypeId" : "17", + "labelTypeValueId" : "27" + }, { + "labelTypeId" : "70", + "labelTypeValueId" : "71" + }, { + "labelTypeId" : "22", + "labelTypeValueId" : "72" + } ], + "ports" : [ { + "id" : "_UZxmwvunEfCYrdfxNyUhUA", + "type" : "port:dfd-input", + "children" : [ ] + }, { + "behavior" : "forward dummyFlow_0", + "id" : "_UZxmyfunEfCYrdfxNyUhUA", + "type" : "port:dfd-output", + "children" : [ ] + } ], + "annotations" : [ { + "message" : "Propagated: Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.restful_http, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1814190811 + }, { + "message" : "Incoming: Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.restful_http, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1814190811 + }, { + "message" : "Propagated: Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.restful_http, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1774995948 + }, { + "message" : "Incoming: Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.restful_http, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1774995948 + }, { + "message" : "Propagated: Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.restful_http, Stereotype.web_application, Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.encrypted_connection", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1802627471 + }, { + "message" : "Incoming: Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.restful_http, Stereotype.web_application, Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.encrypted_connection", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1802627471 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.service_discovery, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1859631557 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.service_discovery, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1859631557 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.service_discovery, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 274580038 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.service_discovery, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 274580038 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 458582664 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 458582664 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.jdbc", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 2139936252 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.jdbc", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 2139936252 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.gateway, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 742806105 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.gateway, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 742806105 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.gateway, Stereotype.load_balancer, Stereotype.web_application, Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.encrypted_connection", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1391983205 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.gateway, Stereotype.load_balancer, Stereotype.web_application, Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.encrypted_connection", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1391983205 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1657199513 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1657199513 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 2080162056 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 2080162056 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Queue.commudigalmicroservicessampleservicetwo, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1706459316 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Queue.commudigalmicroservicessampleservicetwo, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1706459316 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.jdbc, Username.servicetwo, Password.servicetwo", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 142568117 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.jdbc, Username.servicetwo, Password.servicetwo", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 142568117 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.gateway, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1546740272 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.gateway, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1546740272 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.gateway, Stereotype.load_balancer, Stereotype.web_application, Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.encrypted_connection", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1096293439 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.gateway, Stereotype.load_balancer, Stereotype.web_application, Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.encrypted_connection", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1096293439 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.jdbc", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 280663936 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.jdbc", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 280663936 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1667460576 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1667460576 + }, { + "message" : "Propagated: Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 882156382 + }, { + "message" : "Incoming: Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 882156382 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.service_discovery, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 892135447 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.service_discovery, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 892135447 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleservicetwo, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1903062949 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleservicetwo, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1903062949 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.jdbc, Stereotype.plaintext_credentials_link, Username.servicetwo, Password.servicetwo", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 152702981 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.jdbc, Stereotype.plaintext_credentials_link, Username.servicetwo, Password.servicetwo", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 152702981 + }, { + "message" : "Propagated: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 411425835 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 411425835 + }, { + "message" : "Propagated: Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1245442940 + }, { + "message" : "Incoming: Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1245442940 + }, { + "message" : "Propagated: Stereotype.web_application, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.encrypted_connection", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1219145433 + }, { + "message" : "Incoming: Stereotype.web_application, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.encrypted_connection", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1219145433 + }, { + "message" : "Propagated: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 292099569 + }, { + "message" : "Incoming: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 292099569 + }, { + "message" : "Propagated: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 666625907 + }, { + "message" : "Incoming: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 666625907 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 848187627 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 848187627 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 802159621 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 802159621 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1993384592 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1993384592 + }, { + "message" : "Propagated: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 245908294 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 245908294 + }, { + "message" : "Propagated: Stereotype.monitoring_dashboard, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.search_engine, Stereotype.logging_server, Stereotype.internal, Stereotype.local_logging, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1314997104 + }, { + "message" : "Incoming: Stereotype.monitoring_dashboard, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.search_engine, Stereotype.logging_server, Stereotype.internal, Stereotype.local_logging, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1314997104 + }, { + "message" : "Propagated: Stereotype.monitoring_dashboard, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.search_engine, Stereotype.logging_server, Stereotype.internal, Stereotype.local_logging, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 505323885 + }, { + "message" : "Incoming: Stereotype.monitoring_dashboard, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.search_engine, Stereotype.logging_server, Stereotype.internal, Stereotype.local_logging, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 505323885 + }, { + "message" : "Propagated: Stereotype.monitoring_dashboard, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.search_engine, Stereotype.logging_server, Stereotype.internal, Stereotype.local_logging, Stereotype.jdbc", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1839813660 + }, { + "message" : "Incoming: Stereotype.monitoring_dashboard, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.search_engine, Stereotype.logging_server, Stereotype.internal, Stereotype.local_logging, Stereotype.jdbc", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1839813660 + }, { + "message" : "Propagated: Stereotype.monitoring_dashboard, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.search_engine, Stereotype.logging_server, Stereotype.internal, Stereotype.local_logging, Stereotype.gateway, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 559384732 + }, { + "message" : "Incoming: Stereotype.monitoring_dashboard, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.search_engine, Stereotype.logging_server, Stereotype.internal, Stereotype.local_logging, Stereotype.gateway, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 559384732 + }, { + "message" : "Propagated: Stereotype.monitoring_dashboard, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.search_engine, Stereotype.logging_server, Stereotype.internal, Stereotype.local_logging, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1709778181 + }, { + "message" : "Incoming: Stereotype.monitoring_dashboard, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.search_engine, Stereotype.logging_server, Stereotype.internal, Stereotype.local_logging, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1709778181 + }, { + "message" : "Propagated: Stereotype.monitoring_dashboard, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.search_engine, Stereotype.logging_server, Stereotype.internal, Stereotype.local_logging, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleservicetwo, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 244839708 + }, { + "message" : "Incoming: Stereotype.monitoring_dashboard, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.search_engine, Stereotype.logging_server, Stereotype.internal, Stereotype.local_logging, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleservicetwo, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 244839708 + }, { + "message" : "Propagated: Stereotype.monitoring_dashboard, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.search_engine, Stereotype.logging_server, Stereotype.internal, Stereotype.local_logging, Stereotype.jdbc, Stereotype.plaintext_credentials_link, Username.servicetwo, Password.servicetwo", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 691620198 + }, { + "message" : "Incoming: Stereotype.monitoring_dashboard, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.search_engine, Stereotype.logging_server, Stereotype.internal, Stereotype.local_logging, Stereotype.jdbc, Stereotype.plaintext_credentials_link, Username.servicetwo, Password.servicetwo", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 691620198 + }, { + "message" : "Propagated: Stereotype.monitoring_dashboard, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.search_engine, Stereotype.logging_server, Stereotype.internal, Stereotype.local_logging, Stereotype.gateway, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 876029877 + }, { + "message" : "Incoming: Stereotype.monitoring_dashboard, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.search_engine, Stereotype.logging_server, Stereotype.internal, Stereotype.local_logging, Stereotype.gateway, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 876029877 + }, { + "message" : "Propagated: Stereotype.search_engine, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.logging_server, Stereotype.internal, Stereotype.local_logging, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 417004859 + }, { + "message" : "Incoming: Stereotype.search_engine, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.logging_server, Stereotype.internal, Stereotype.local_logging, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 417004859 + }, { + "message" : "Propagated: Stereotype.logging_server, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.internal, Stereotype.local_logging, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 693421097 + }, { + "message" : "Incoming: Stereotype.logging_server, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.internal, Stereotype.local_logging, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 693421097 + }, { + "message" : "Propagated: Stereotype.logging_server, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.internal, Stereotype.local_logging, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1246087708 + }, { + "message" : "Incoming: Stereotype.logging_server, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.internal, Stereotype.local_logging, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1246087708 + } ], + "children" : [ ], + "position" : { + "x" : 0.0, + "y" : 0.0 + }, + "size" : null + }, { + "text" : "dummyNode_1", + "id" : "_UZxmxvunEfCYrdfxNyUhUA", + "type" : "node:storage", + "labels" : [ { + "labelTypeId" : "17", + "labelTypeValueId" : "69" + }, { + "labelTypeId" : "17", + "labelTypeValueId" : "27" + }, { + "labelTypeId" : "70", + "labelTypeValueId" : "71" + }, { + "labelTypeId" : "22", + "labelTypeValueId" : "72" + } ], + "ports" : [ { + "id" : "_UZxmyPunEfCYrdfxNyUhUA", + "type" : "port:dfd-input", + "children" : [ ] + } ], + "annotations" : [ { + "message" : "Incoming: Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.restful_http, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1814190811 + }, { + "message" : "Incoming: Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.restful_http, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1774995948 + }, { + "message" : "Incoming: Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.restful_http, Stereotype.web_application, Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.encrypted_connection", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1802627471 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.service_discovery, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1859631557 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.service_discovery, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 274580038 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 458582664 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.jdbc", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 2139936252 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.gateway, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 742806105 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.gateway, Stereotype.load_balancer, Stereotype.web_application, Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.encrypted_connection", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1391983205 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1657199513 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 2080162056 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Queue.commudigalmicroservicessampleservicetwo, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1706459316 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.jdbc, Username.servicetwo, Password.servicetwo", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 142568117 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.gateway, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1546740272 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.gateway, Stereotype.load_balancer, Stereotype.web_application, Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.encrypted_connection", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1096293439 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.jdbc", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 280663936 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1667460576 + }, { + "message" : "Incoming: Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 882156382 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.service_discovery, Stereotype.infrastructural", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 892135447 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleservicetwo, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1903062949 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.jdbc, Stereotype.plaintext_credentials_link, Username.servicetwo, Password.servicetwo", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 152702981 + }, { + "message" : "Incoming: Stereotype.internal, Stereotype.local_logging, Stereotype.restful_http, Stereotype.gateway, Stereotype.infrastructural, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 411425835 + }, { + "message" : "Incoming: Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1245442940 + }, { + "message" : "Incoming: Stereotype.web_application, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.user_stereotype, Stereotype.entrypoint, Stereotype.exitpoint, Stereotype.encrypted_connection", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1219145433 + }, { + "message" : "Incoming: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 292099569 + }, { + "message" : "Incoming: Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.internal, Stereotype.local_logging, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 666625907 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 848187627 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 802159621 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1993384592 + }, { + "message" : "Incoming: Stereotype.service_discovery, Stereotype.infrastructural, Stereotype.restful_http", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 245908294 + }, { + "message" : "Incoming: Stereotype.monitoring_dashboard, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.search_engine, Stereotype.logging_server, Stereotype.internal, Stereotype.local_logging, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1314997104 + }, { + "message" : "Incoming: Stereotype.monitoring_dashboard, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.search_engine, Stereotype.logging_server, Stereotype.internal, Stereotype.local_logging, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleserviceone, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 505323885 + }, { + "message" : "Incoming: Stereotype.monitoring_dashboard, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.search_engine, Stereotype.logging_server, Stereotype.internal, Stereotype.local_logging, Stereotype.jdbc", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1839813660 + }, { + "message" : "Incoming: Stereotype.monitoring_dashboard, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.search_engine, Stereotype.logging_server, Stereotype.internal, Stereotype.local_logging, Stereotype.gateway, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 559384732 + }, { + "message" : "Incoming: Stereotype.monitoring_dashboard, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.search_engine, Stereotype.logging_server, Stereotype.internal, Stereotype.local_logging, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1709778181 + }, { + "message" : "Incoming: Stereotype.monitoring_dashboard, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.search_engine, Stereotype.logging_server, Stereotype.internal, Stereotype.local_logging, Stereotype.message_broker, Stereotype.plaintext_credentials, Stereotype.message_consumer_rabbitmq, Queue.commudigalmicroservicessampleservicetwo, Stereotype.message_producer_rabbitmq, Stereotype.plaintext_credentials_link, RoutingKey.commudigalmicroservicessampleservice, ProducerExchange.commudigalmicroservicessampleservicesexchange, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 244839708 + }, { + "message" : "Incoming: Stereotype.monitoring_dashboard, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.search_engine, Stereotype.logging_server, Stereotype.internal, Stereotype.local_logging, Stereotype.jdbc, Stereotype.plaintext_credentials_link, Username.servicetwo, Password.servicetwo", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 691620198 + }, { + "message" : "Incoming: Stereotype.monitoring_dashboard, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.search_engine, Stereotype.logging_server, Stereotype.internal, Stereotype.local_logging, Stereotype.gateway, Stereotype.load_balancer, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 876029877 + }, { + "message" : "Incoming: Stereotype.search_engine, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.logging_server, Stereotype.internal, Stereotype.local_logging, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 417004859 + }, { + "message" : "Incoming: Stereotype.logging_server, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.internal, Stereotype.local_logging, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 693421097 + }, { + "message" : "Incoming: Stereotype.logging_server, Stereotype.infrastructural, Stereotype.restful_http, Stereotype.internal, Stereotype.local_logging, Stereotype.service_discovery", + "icon" : "tag", + "color" : "#FFFFFF", + "tfg" : 1246087708 + } ], + "children" : [ ], + "position" : { + "x" : 0.0, + "y" : 0.0 + }, + "size" : null + } ] + }, + "labelTypes" : [ { + "id" : "17", + "name" : "Stereotype", + "values" : [ { + "id" : "20", + "text" : "internal" + }, { + "id" : "21", + "text" : "local_logging" + }, { + "id" : "26", + "text" : "logging_server" + }, { + "id" : "27", + "text" : "infrastructural" + }, { + "id" : "37", + "text" : "web_application" + }, { + "id" : "43", + "text" : "search_engine" + }, { + "id" : "52", + "text" : "service_discovery" + }, { + "id" : "58", + "text" : "message_broker" + }, { + "id" : "59", + "text" : "plaintext_credentials" + }, { + "id" : "69", + "text" : "monitoring_dashboard" + }, { + "id" : "75", + "text" : "gateway" + }, { + "id" : "76", + "text" : "load_balancer" + }, { + "id" : "93", + "text" : "user_stereotype" + }, { + "id" : "94", + "text" : "entrypoint" + }, { + "id" : "95", + "text" : "exitpoint" + }, { + "id" : "101", + "text" : "restful_http" + }, { + "id" : "122", + "text" : "message_producer_rabbitmq" + }, { + "id" : "123", + "text" : "plaintext_credentials_link" + }, { + "id" : "130", + "text" : "message_consumer_rabbitmq" + }, { + "id" : "145", + "text" : "jdbc" + }, { + "id" : "160", + "text" : "encrypted_connection" + } ] + }, { + "id" : "22", + "name" : "Port", + "values" : [ { + "id" : "23", + "text" : "8082" + }, { + "id" : "28", + "text" : "5000" + }, { + "id" : "38", + "text" : "4200" + }, { + "id" : "46", + "text" : "9200" + }, { + "id" : "49", + "text" : "8084" + }, { + "id" : "53", + "text" : "8500" + }, { + "id" : "64", + "text" : "15672" + }, { + "id" : "72", + "text" : "4040" + }, { + "id" : "79", + "text" : "8080" + }, { + "id" : "87", + "text" : "5601" + } ] + }, { + "id" : "29", + "name" : "LoggingServer", + "values" : [ { + "id" : "30", + "text" : "Logstash" + } ] + }, { + "id" : "33", + "name" : "Process", + "values" : [ { + "id" : "34", + "text" : "service_two_db" + }, { + "id" : "90", + "text" : "service_one_db" + } ] + }, { + "id" : "39", + "name" : "WebApplication", + "values" : [ { + "id" : "40", + "text" : "Nginx" + } ] + }, { + "id" : "44", + "name" : "SearchEngine", + "values" : [ { + "id" : "45", + "text" : "Elasticsearch" + } ] + }, { + "id" : "54", + "name" : "ServiceDiscovery", + "values" : [ { + "id" : "55", + "text" : "Consul" + } ] + }, { + "id" : "60", + "name" : "MessageBroker", + "values" : [ { + "id" : "61", + "text" : "RabbitMQ" + } ] + }, { + "id" : "62", + "name" : "Username", + "values" : [ { + "id" : "63", + "text" : "mudigal" + }, { + "id" : "148", + "text" : "servicetwo" + } ] + }, { + "id" : "65", + "name" : "Password", + "values" : [ { + "id" : "66", + "text" : "mudigal" + }, { + "id" : "149", + "text" : "servicetwo" + } ] + }, { + "id" : "70", + "name" : "MonitoringDashboard", + "values" : [ { + "id" : "71", + "text" : "WeaveScope" + }, { + "id" : "86", + "text" : "Kibana" + } ] + }, { + "id" : "77", + "name" : "Gateway", + "values" : [ { + "id" : "78", + "text" : "Zuul" + } ] + }, { + "id" : "80", + "name" : "LoadBalancer", + "values" : [ { + "id" : "81", + "text" : "Ribbon" + } ] + }, { + "id" : "124", + "name" : "RoutingKey", + "values" : [ { + "id" : "125", + "text" : "commudigalmicroservicessampleservice" + } ] + }, { + "id" : "126", + "name" : "ProducerExchange", + "values" : [ { + "id" : "127", + "text" : "commudigalmicroservicessampleservicesexchange" + } ] + }, { + "id" : "131", + "name" : "Queue", + "values" : [ { + "id" : "132", + "text" : "commudigalmicroservicessampleserviceone" + }, { + "id" : "142", + "text" : "commudigalmicroservicessampleservicetwo" + } ] + } ], + "mode" : "edit", + "constraints" : [ ] +} \ No newline at end of file From e8fa71f3c83cb4b6e15feda88c53af0e22c5db6f Mon Sep 17 00:00:00 2001 From: BenjaminArp <101420246+BenjaminArp@users.noreply.github.com> Date: Tue, 27 Jan 2026 18:43:19 +0100 Subject: [PATCH 3/4] Update .gitignore --- .gitignore | 1 + 1 file changed, 1 insertion(+) diff --git a/.gitignore b/.gitignore index da405460..0e1bf1f1 100644 --- a/.gitignore +++ b/.gitignore @@ -74,3 +74,4 @@ xtend-gen/ tests/dev.arcovia.mitigation.sat.tests/testresults/*.json tests/dev.arcovia.mitigation.sat.tests/efficencyTest/*.json !*literalMapping.json +tests/dev.arcovia.mitigation.utils.tests/testresults/scaledTFGAmount.json From 5ddd5a45d336ef3c1b2bef09f2863defb5f4b780 Mon Sep 17 00:00:00 2001 From: BenjaminArp <101420246+BenjaminArp@users.noreply.github.com> Date: Tue, 27 Jan 2026 19:10:56 +0100 Subject: [PATCH 4/4] change version numbers --- .gitignore | 1 + .../dev.arcovia.mitigation.utils.tests/META-INF/MANIFEST.MF | 6 +++--- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/.gitignore b/.gitignore index 0e1bf1f1..0e6875b2 100644 --- a/.gitignore +++ b/.gitignore @@ -75,3 +75,4 @@ tests/dev.arcovia.mitigation.sat.tests/testresults/*.json tests/dev.arcovia.mitigation.sat.tests/efficencyTest/*.json !*literalMapping.json tests/dev.arcovia.mitigation.utils.tests/testresults/scaledTFGAmount.json +*.json diff --git a/tests/dev.arcovia.mitigation.utils.tests/META-INF/MANIFEST.MF b/tests/dev.arcovia.mitigation.utils.tests/META-INF/MANIFEST.MF index 294826c3..b7440661 100644 --- a/tests/dev.arcovia.mitigation.utils.tests/META-INF/MANIFEST.MF +++ b/tests/dev.arcovia.mitigation.utils.tests/META-INF/MANIFEST.MF @@ -4,9 +4,9 @@ Bundle-Name: Tests Bundle-SymbolicName: dev.arcovia.mitigation.utils.tests Bundle-Version: 1.0.0.qualifier Import-Package: org.apache.log4j;version="1.2.24", - org.junit.jupiter.api;version="5.9.1", - org.junit.jupiter.params;version="5.9.2", - org.junit.jupiter.params.provider;version="5.9.2" + org.junit.jupiter.api;version="5.8.1", + org.junit.jupiter.params;version="5.8.1", + org.junit.jupiter.params.provider;version="5.8.1" Require-Bundle: dev.arcovia.mitigation.sat;bundle-version="1.0.0", dev.arcovia.mitigation.utils;bundle-version="1.0.0", org.dataflowanalysis.analysis;bundle-version="4.0.0",