Соединение Гатлинга с InfluxDB в windows - PullRequest
0 голосов
/ 06 марта 2020

Я использую gatling и influenxdb в windows 10. Я пытаюсь отправить некоторые результаты из gatling в influenxdb. Но результаты не подталкиваются к притоку. Может ли кто-нибудь мне помочь.

Мой файл конфигурации графита

data {
#writers = [console, file, graphite]      
console {
  #light = false            
  #writePeriod = 5    
}

file {
  bufferSize = 8192            # FileDataWriter's internal data buffer size, in bytes
}

leak {
  #noActivityTimeout = 30  # Period, in seconds, for which Gatling may have no activity before considering a leak may be happening
}
graphite {
 # light = false              # only send the all* stats
  host = "localhost"         # The host where the Carbon server is located
  port = 2003                # The port to which the Carbon server listens to (2003 is default for plaintext, 2004 is default for pickle)
  protocol = "tcp"           # The protocol used to send data to Carbon (currently supported : "tcp", "udp")
  rootPathPrefix = "gatling" # The common prefix of all metrics sent to Graphite
  bufferSize = 8192          # Internal data buffer size, in bytes
  writePeriod = 1            # Write period, in seconds
}
}

Мой файл конфигурации InfluxDB

[[graphite]]

enabled = true
database = "gatlingdb"
retention-policy = ""
bind-address = ":2003"
protocol = "tcp"
consistency-level = "one"


batch-size = 5000

batch-pending = 10

batch-timeout = "1s"

udp-read-buffer = 0

separator = "."


templates = [
"gatling.*.*.*.count measurement.simulation.request.status.field",
"gatling.*.*.*.min measurement.simulation.request.status.field",
"gatling.*.*.*.max measurement.simulation.request.status.field",
"gatling.*.*.*.percentiles50 measurement.simulation.request.status.field",
"gatling.*.*.*.percentiles75 measurement.simulation.request.status.field",
"gatling.*.*.*.percentiles95 measurement.simulation.request.status.field",
"gatling.*.*.*.percentiles99 measurement.simulation.request.status.field"
 ] 

Не уверен, почему он не работает.

1 Ответ

0 голосов
/ 07 марта 2020

Раскомментировать #writers = [console, file, graphite]

Добро пожаловать на сайт PullRequest, где вы можете задавать вопросы и получать ответы от других членов сообщества.
...