Skip to content

Commit

Permalink
Doc changes
Browse files Browse the repository at this point in the history
Signed-off-by: Jonathan Gallimore <jgallimore@tomitribe.com>
  • Loading branch information
jgallimore committed Sep 8, 2022
1 parent 549d409 commit b738f85
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 6 deletions.
1 change: 0 additions & 1 deletion spec/src/main/asciidoc/app-programming-model.adoc
Expand Up @@ -547,7 +547,6 @@ The object can be built via a `MetadataBuilder` with a fluent API.
Metadata m = Metadata.builder()
.withName("myMeter")
.withDescription("Example meter")
.withType(MetricType.METER)
.build();
Meter me = new MyMeterImpl();
Expand Down
5 changes: 0 additions & 5 deletions spec/src/main/asciidoc/architecture.adoc
Expand Up @@ -170,11 +170,6 @@ The Metadata:

* name: The name of the metric.
* unit: a fixed set of string units
* type:
** counter: a monotonically increasing numeric value (e.g. total number of requests received).
** gauge: a metric that is sampled to obtain its value (e.g. cpu temperature or disk usage).
** histogram: a metric which calculates the distribution of a value.
** timer: a metric which aggregates timing durations and provides duration statistics.
* description (optional): A human readable description of the metric.

Metadata must not change over the lifetime of a process (i.e. it is not allowed
Expand Down

0 comments on commit b738f85

Please sign in to comment.