I’m unable to get results published to our Graphite server from the mvn task. I don’t think I’ve got it configured correctly and I’m a bit at my wits end as to why.
I’m not getting any error or anything, just nothing when I run mvn test. The test runs great. Fantastic tool!
Any help would be massively appreciated.
Thanks, Ryley
I’ve got this gatling.conf in src/test/resources
data {
writers = [console, file, graphite]
reader = file
}
graphite {
host = “graphite..com”
port = 2003
bucketWidth = 100
}
and this is my pom
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>com.bloomhealthco</groupId>
<artifactId>gatling_tests</artifactId>
<version>0.1.0</version>
<packaging>jar</packaging>
<repositories>
<repository>
<id>excilys</id>
<name>Excilys Repository</name>
<url>http://repository.excilys.com/content/groups/public</url>
</repository>
</repositories>
<pluginRepositories>
<pluginRepository>
<id>excilys</id>
<name>Excilys Repository</name>
<url>http://repository.excilys.com/content/groups/public</url>
</pluginRepository>
</pluginRepositories>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<gatling.version>1.4.2</gatling.version>
</properties>
<dependencies>
<dependency>
<groupId>com.excilys.ebi.gatling.highcharts</groupId>
<artifactId>gatling-charts-highcharts</artifactId>
<version>${gatling.version}</version>
<scope>test</scope>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>com.excilys.ebi.gatling</groupId>
<artifactId>gatling-maven-plugin</artifactId>
<version>${gatling.version}</version>
<executions>
<execution>
<phase>test</phase>
<goals>
<goal>execute</goal>
</goals>
<configuration>