Hi,
I’m getting beautiful graphs from Gatling. However when I view them in Graphite they are wicked - they are composed of straight lines, one line per minute.
How does one get graphs as shown in the example in the documentation (http://gatling.io/docs/2.1.6/realtime_monitoring/index.html)?
How can I write a scenario that would output something like that to Graphite?
The solution that I have found working is to modify /opt/graphite/conf/storage-schemas.conf so that it reads:
`
[carbon]
pattern = ^carbon.
retentions = 60:90d
[Gatling stats]
priority = 110
pattern = ^gatling…*
retentions = 1s:7d,60s:14d,360s:30d
[default_1min_for_1day]
pattern = .*
retentions = 60s:2d
`
The crucial factors are:
- Gatling config must be before the default config, and
- retentions must be set accordingly: for 1s and more.
W dniu środa, 13 maja 2015 11:33:18 UTC+2 użytkownik Bartosz Kosowski napisał: