Commit b480186d authored by Björn Rabenstein's avatar Björn Rabenstein

Merge pull request #454 from vivekjain10/master

Fix `post` values in result
parents b7283cd5 a8c86598
......@@ -131,7 +131,7 @@ would have been no match as the metrics do not share the same set of labels.
The entries with methods `put` and `del` have no match and will not show up in the result:
{method="get"} 0.04 // 24 / 600
{method="post"} 0.1 // 12 / 120
{method="post"} 0.05 // 6 / 120
**Many-to-one** and **one-to-many** matchings refer to the case where each vector element on
......@@ -166,7 +166,7 @@ left:
{method="get", code="500"} 0.04 // 24 / 600
{method="get", code="404"} 0.05 // 30 / 600
{method="post", code="500"} 0.1 // 12 / 120
{method="post", code="500"} 0.05 // 6 / 120
{method="post", code="404"} 0.175 // 21 / 120
_Many-to-one and one-to-many matching are advanced use cases that should be carefully considered.
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment