Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
C
carts
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Service Desk
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Incidents
Environments
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
cld
S
systems
sock-shop
carts
Commits
6e93a072
Commit
6e93a072
authored
Sep 07, 2017
by
Jonathan Mace
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
[Baggage] Add weaving and xtrace configuration
parent
b1f42ab0
Changes
3
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
64 additions
and
0 deletions
+64
-0
.gitignore
.gitignore
+5
-0
pom.xml
pom.xml
+48
-0
src/main/resources/application.conf
src/main/resources/application.conf
+11
-0
No files found.
.gitignore
View file @
6e93a072
docker
.project
.classpath
.settings
# Logs
logs
*.log
...
...
pom.xml
View file @
6e93a072
...
...
@@ -21,6 +21,7 @@
<project.build.sourceEncoding>
UTF-8
</project.build.sourceEncoding>
<java.version>
1.8
</java.version>
<prometheus.version>
0.0.21
</prometheus.version>
<tracingplane.version>
4.0
</tracingplane.version>
</properties>
<dependencies>
...
...
@@ -73,11 +74,58 @@
<version>
0.8.4
</version>
<scope>
test
</scope>
</dependency>
<dependency>
<groupId>
org.aspectj
</groupId>
<artifactId>
aspectjrt
</artifactId>
</dependency>
<dependency>
<groupId>
edu.brown.cs.systems
</groupId>
<artifactId>
xtrace-aspects
</artifactId>
<version>
${tracingplane.version}
</version>
</dependency>
<dependency>
<groupId>
edu.brown.cs.systems
</groupId>
<artifactId>
retro-aspects
</artifactId>
<version>
${tracingplane.version}
</version>
</dependency>
</dependencies>
<build>
<finalName>
carts
</finalName>
<plugins>
<plugin>
<groupId>
org.codehaus.mojo
</groupId>
<artifactId>
aspectj-maven-plugin
</artifactId>
<version>
1.8
</version>
<configuration>
<aspectLibraries>
<aspectLibrary>
<groupId>
edu.brown.cs.systems
</groupId>
<artifactId>
xtrace-aspects
</artifactId>
</aspectLibrary>
<aspectLibrary>
<groupId>
edu.brown.cs.systems
</groupId>
<artifactId>
retro-aspects
</artifactId>
</aspectLibrary>
</aspectLibraries>
</configuration>
<executions>
<execution>
<goals>
<goal>
compile
</goal>
</goals>
<configuration>
<source>
1.8
</source>
<target>
1.8
</target>
<complianceLevel>
1.8
</complianceLevel>
<Xjoinpoints>
synchronization
</Xjoinpoints>
<showWeaveInfo>
false
</showWeaveInfo>
<verbose>
false
</verbose>
<Xlint>
unmatchedSuperTypeInCall=ignore,adviceDidNotMatch=ignore,typeNotExposedToWeaver=ignore,uncheckedAdviceConversion=ignore,invalidAbsoluteTypeName=ignore
</Xlint>
</configuration>
</execution>
</executions>
</plugin>
<plugin>
<groupId>
org.springframework.boot
</groupId>
<artifactId>
spring-boot-maven-plugin
</artifactId>
...
...
src/main/resources/application.conf
0 → 100644
View file @
6e93a072
tracingplane
.
transit
-
layer
.
factory
=
"edu.brown.cs.systems.tracingplane.atom_layer.AtomLayerFactory$TransitLayerFactoryImpl"
tracingplane
.
atom
-
layer
.
factory
=
"edu.brown.cs.systems.tracingplane.baggage_layer.BaggageLayerFactory$AtomLayerFactoryImpl"
tracingplane
.
baggage
-
layer
.
factory
=
"edu.brown.cs.systems.tracingplane.baggage_buffers.BaggageLayerFactoryImpl"
pubsub
.
server
.
hostname
=
"xtrace-server"
xtrace
.
client
.
reporting
.
default_level
=
"debug"
xtrace
.
client
.
reporting
.
report_baggage
=
true
xtrace
.
client
.
reporting
.
discoverymode
=
false
xtrace
.
client
.
tracemain
=
true
xtrace
.
client
.
tracemain_level
=
"debug"
\ No newline at end of file
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment