Graphite Integration is broken in snapshot?

I grabbed a snapshot version from July 18th. But it looks like there is an issue about graphite. I can see graphite has the target created but it has no data in it. gatling.conf attached:

data {
writers = “console, file, graphite”
reader = file
console {
#light = false # display a light version without detailed request stats
}
file {
#bufferSize: 8192
}
jdbc {
db{
#url = “jdbc:mysql://localhost:3306/temp”
#username = “root”
#password = “123123q”
}
#bufferSize = 20
create {
#createRunRecordTable = “CREATE TABLE IF NOT EXISTS RunRecords ( id INT NOT NULL AUTO_INCREMENT , runDate DATETIME NULL , simulationId VARCHAR(45) NULL , runDescription VARCHAR(45) NULL , PRIMARY KEY (id) )”
#createRequestRecordTable = “CREATE TABLE IF NOT EXISTS RequestRecords (id int(11) NOT NULL AUTO_INCREMENT, runId int DEFAULT NULL, scenario varchar(45) DEFAULT NULL, userId VARCHAR(20) NULL, name varchar(50) DEFAULT NULL, requestStartDate bigint DEFAULT NULL, requestEndDate bigint DEFAULT NULL, responseStartDate bigint DEFAULT NULL, responseEndDate bigint DEFAULT NULL, status varchar(2) DEFAULT NULL, message varchar(4500) DEFAULT NULL, responseTime bigint DEFAULT NULL, PRIMARY KEY (id) )”
#createScenarioRecordTable = “CREATE TABLE IF NOT EXISTS ScenarioRecords (id int(11) NOT NULL AUTO_INCREMENT, runId int DEFAULT NULL, scenarioName varchar(45) DEFAULT NULL, userId VARCHAR(20) NULL, event varchar(50) DEFAULT NULL, startDate bigint DEFAULT NULL, endDate bigint DEFAULT NULL, PRIMARY KEY (id) )”
#createGroupRecordTable = “CREATE TABLE IF NOT EXISTS GroupRecords (id int(11) NOT NULL AUTO_INCREMENT, runId int DEFAULT NULL, scenarioName varchar(45) DEFAULT NULL, userId VARCHAR(20) NULL, entryDate bigint DEFAULT NULL, exitDate bigint DEFAULT NULL, status varchar(2) DEFAULT NULL, PRIMARY KEY (id) )”
}
insert {
#insertRunRecord = “INSERT INTO RunRecords (runDate, simulationId, runDescription) VALUES (?,?,?)”
#insertRequestRecord = “INSERT INTO RequestRecords (runId, scenario, userId, name, requestStartDate, requestEndDate, responseStartDate, responseEndDate, status, message, responseTime) VALUES (?,?,?,?,?,?,?,?,?,?,?)”
#insertScenarioRecord = “INSERT INTO ScenarioRecords (runId, scenarioName, userId, event, startDate, endDate) VALUES (?,?,?,?,?,?)”
#insertGroupRecord = “INSERT INTO GroupRecords (runId, scenarioName, userId, entryDate, exitDate, status) VALUES (?,?,?,?,?,?)”
}

}
graphite {
light = true # only send the all* stats
host = “xxx.amazonaws.com
port = 2003
protocol = “tcp” # Choose between ‘tcp’ or ‘udp’
#rootPathPrefix = “gatling”
bucketWidth = 100
bufferSize = 8192
}
}

Quickly browsing the commit history on this module: https://github.com/excilys/gatling/commits/master/gatling-metrics
Is there a change that you grabbed your snapshot just after the latest fixes?

The version I grabbed was July 18th, 1108. So I guess it should have your fix?

We’re not on the same timeline, so there’s a chance you grabbed before. Could you try upgrading, please?