Skip to content

Commit

Permalink
More README fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
fholzhauser committed Jun 16, 2017
1 parent 159395d commit d628159
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -1016,12 +1016,12 @@ example Condition/Action (rule) list:
{
%% Condition
[
{greater, "otter_span_duration", 5000000},
{value, "otter_span_name", "radius request"}
{greater, otter_span_duration, 5000000},
{value, otter_span_name, "radius request"}
],
%% Action
[
{snap_count, [long_radius_request], []},
{snapshot_count, [long_radius_request], []},
send_to_zipkin
]
},
Expand All @@ -1032,7 +1032,7 @@ example Condition/Action (rule) list:
],
%% Action
[
{snap_count, [request], ["otter_span_name", "final_result"]}
{snapshot_count, [request], [otter_span_name, final_result]}
]
}
Expand Down Expand Up @@ -1107,8 +1107,8 @@ return HTTP result code 202 in success case.
### Snapshot/Counter
As a result of the filter snap_count action, 2 ETS tables are used to
count events (see snap_count action above) and in the same time store
As a result of the filter snapshot_count action, 2 ETS tables are used to
count events (see snapshot_count action above) and in the same time store
the last span information that has increased the counter. This can be
considered a useful and fairly cheap troubleshooting tool.
Expand Down

0 comments on commit d628159

Please sign in to comment.