Skip to content

Commit

Permalink
minor edit
Browse files Browse the repository at this point in the history
  • Loading branch information
dtrihinas committed Jul 22, 2015
1 parent 297e7c6 commit ab25a82
Show file tree
Hide file tree
Showing 6 changed files with 33 additions and 8 deletions.
2 changes: 1 addition & 1 deletion JCatascopia-Agent/resources/agent.properties
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ probes=all
##probes_exclude format:<probe_name>,<probe_name>
#probes_exclude=...
##probes_external format: <probe_class_name>,<probe_class_container_path>; ...
probes_external=ExampleProbe,/home/dtrihinas/Desktop/ExampleProbe.jar
#probes_external=ExampleProbe,/home/dtrihinas/Desktop/ExampleProbe.jar

###Server IP###
server_ip=localhost
Expand Down
Binary file not shown.
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
Manifest-Version: 1.0
Built-By: dtrihinas
Build-Jdk: 1.7.0_55
Build-Jdk: 1.7.0_80
Created-By: Maven Integration for Eclipse

Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#Generated by Maven Integration for Eclipse
#Mon Nov 17 15:34:13 EET 2014
#Wed Jul 22 15:41:01 EEST 2015
version=0.0.1-SNAPSHOT
groupId=eu.celarcloud.cloud-ms
m2e.projectName=HAProxyProbe
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,4 +13,29 @@
<version>0.0.1-SNAPSHOT</version>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-shade-plugin</artifactId>
<version>2.1</version>
<executions>
<execution>
<phase>package</phase>
<goals>
<goal>shade</goal>
</goals>
<configuration>
<transformers>
<transformer
implementation="org.apache.maven.plugins.shade.resource.ManifestResourceTransformer">
<mainClass>HAProxyProbe</mainClass>
</transformer>
</transformers>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>
</project>
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
haproxy_username=admin
haproxy_password=password
haproxy_ip=83.212.86.244
haproxy_port=30000
haproxy_username=playgen
haproxy_password=D@taP1aY
haproxy_ip=localhost
haproxy_port=1936

haproxy_proxy_name=servers
haproxy_proxy_name=masters

0 comments on commit ab25a82

Please sign in to comment.