Track metrics of when backends match or disagree

This commit is contained in:
James Allen 2016-06-28 16:49:15 +01:00
parent 0b9e85ea50
commit dbe03e2757
2 changed files with 22 additions and 17 deletions

View file

@ -2,6 +2,7 @@ Settings = require "settings-sharelatex"
async = require "async"
_ = require "underscore"
logger = require "logger-sharelatex"
Metrics = require "metrics-sharelatex"
class Client
constructor: (@clients) ->
@ -136,7 +137,9 @@ compareResults = (results) ->
first = results[0]
for result in results.slice(1)
if not _.isEqual(first, result)
logger.warn { results }, "redis return values do not match"
Metrics.inc "backend-conflict"
else
Metrics.inc "backend-match"
module.exports =
createClient: () ->

View file

@ -53,6 +53,8 @@ describe "RedisBackend", ->
activeHealthCheck: sinon.stub()
"ioredis": @ioredis =
Cluster: Cluster
"metrics-sharelatex":
@Metrics = inc: sinon.stub()
@client = @RedisBackend.createClient()
@doc_id = "mock-doc-id"
@ -96,6 +98,11 @@ describe "RedisBackend", ->
@rclient_ioredis.get
.calledWith("doclines:{#{@doc_id}}")
.should.equal true
it "should send a metric", ->
@Metrics.inc
.calledWith("backend-match")
.should.equal true
describe "with different results", ->
beforeEach (done) ->
@ -110,14 +117,9 @@ describe "RedisBackend", ->
it "should return the primary result", ->
@result.should.equal "primary-result"
it "should log out the difference", ->
@logger.warn
.calledWith({
results: [
"primary-result",
"secondary-result"
]
}, "redis return values do not match")
it "should send a metric", ->
@Metrics.inc
.calledWith("backend-conflict")
.should.equal true
describe "when the secondary errors", ->
@ -233,6 +235,11 @@ describe "RedisBackend", ->
@rclient_ioredis.exec
.called
.should.equal true
it "should send a metric", ->
@Metrics.inc
.calledWith("backend-match")
.should.equal true
describe "with different results", ->
beforeEach (done) ->
@ -251,14 +258,9 @@ describe "RedisBackend", ->
it "should return the primary result", ->
@result.should.deep.equal [@doclines, @version]
it "should log out the difference", ->
@logger.warn
.calledWith({
results: [
[@doclines, @version],
["different-doc-lines", @version]
]
}, "redis return values do not match")
it "should send a metric", ->
@Metrics.inc
.calledWith("backend-conflict")
.should.equal true
describe "when the secondary errors", ->