Ori.livneh has submitted this change and it was merged. Change subject: Use log scale for 5xx errors in "(cdn) HTTP Error Rate" ......................................................................
Use log scale for 5xx errors in "(cdn) HTTP Error Rate" https://github.com/ripienaar/graphite-graph-dsl/wiki/Graphite-Render-API-Coverage https://graphite.readthedocs.org/en/latest/render_api.html#logbase Bug: 41754 Change-Id: I5d57accff0402daba0406ce0b21254cc0d644685 --- M files/graphite/gdash/dashboards/reqerror/1.5xx.graph M files/graphite/gdash/dashboards/reqerror/3.5xx-sum-1day.graph M files/graphite/gdash/dashboards/reqerror/5.5xx-1wk.graph 3 files changed, 12 insertions(+), 6 deletions(-) Approvals: Ori.livneh: Looks good to me, approved jenkins-bot: Verified diff --git a/files/graphite/gdash/dashboards/reqerror/1.5xx.graph b/files/graphite/gdash/dashboards/reqerror/1.5xx.graph index 014d94d..0e176ce 100644 --- a/files/graphite/gdash/dashboards/reqerror/1.5xx.graph +++ b/files/graphite/gdash/dashboards/reqerror/1.5xx.graph @@ -6,9 +6,11 @@ field :a, :color => "red", :alias => "none", - :data => 'cactiStyle(alias(reqstats.500,"500 resp/min"))' + :data => 'cactiStyle(alias(reqstats.500,"500 resp/min"))', + :logbase => 10 field :b, :color => "blue", :alias => "none", - :data => 'cactiStyle(alias(reqstats.5xx,"5xx resp/min"))' + :data => 'cactiStyle(alias(reqstats.5xx,"5xx resp/min"))', + :logbase => 10 diff --git a/files/graphite/gdash/dashboards/reqerror/3.5xx-sum-1day.graph b/files/graphite/gdash/dashboards/reqerror/3.5xx-sum-1day.graph index 18a185e..8a4e74e 100644 --- a/files/graphite/gdash/dashboards/reqerror/3.5xx-sum-1day.graph +++ b/files/graphite/gdash/dashboards/reqerror/3.5xx-sum-1day.graph @@ -6,9 +6,11 @@ field :a, :color => "blue", :alias => "none", - :data => 'cactiStyle(alias(reqstats.5xx,"5xx resp/min"))' + :data => 'cactiStyle(alias(reqstats.5xx,"5xx resp/min"))', + :logbase => 10 field :b, :color => "red", :alias => "none", - :data => 'cactiStyle(alias(reqstats.500,"500 resp/min"))' + :data => 'cactiStyle(alias(reqstats.500,"500 resp/min"))', + :logbase => 10 diff --git a/files/graphite/gdash/dashboards/reqerror/5.5xx-1wk.graph b/files/graphite/gdash/dashboards/reqerror/5.5xx-1wk.graph index 4105a8c..2b0e8fa 100644 --- a/files/graphite/gdash/dashboards/reqerror/5.5xx-1wk.graph +++ b/files/graphite/gdash/dashboards/reqerror/5.5xx-1wk.graph @@ -6,9 +6,11 @@ field :a, :color => "red", :alias => "none", - :data => 'cactiStyle(alias(summarize(reqstats.500,"1h"),"500 resp/hour"))' + :data => 'cactiStyle(alias(summarize(reqstats.500,"1h"),"500 resp/hour"))', + :logbase => 10 field :b, :color => "blue", :alias => "none", - :data => 'cactiStyle(alias(summarize(reqstats.5xx,"1h"),"5xx resp/hour"))' + :data => 'cactiStyle(alias(summarize(reqstats.5xx,"1h"),"5xx resp/hour"))', + :logbase => 10 -- To view, visit https://gerrit.wikimedia.org/r/95064 To unsubscribe, visit https://gerrit.wikimedia.org/r/settings Gerrit-MessageType: merged Gerrit-Change-Id: I5d57accff0402daba0406ce0b21254cc0d644685 Gerrit-PatchSet: 2 Gerrit-Project: operations/puppet Gerrit-Branch: production Gerrit-Owner: Nemo bis <[email protected]> Gerrit-Reviewer: Ori.livneh <[email protected]> Gerrit-Reviewer: jenkins-bot _______________________________________________ MediaWiki-commits mailing list [email protected] https://lists.wikimedia.org/mailman/listinfo/mediawiki-commits
