Skip to content

Commit

Permalink
Fix tests, update docs, rebase on master
Browse files Browse the repository at this point in the history
  • Loading branch information
zhilingc committed Jun 19, 2020
1 parent 01f1c8c commit 823bd9c
Show file tree
Hide file tree
Showing 5 changed files with 81 additions and 78 deletions.
1 change: 1 addition & 0 deletions docs/user-guide/statistics.md
Original file line number Diff line number Diff line change
Expand Up @@ -160,4 +160,5 @@ The metrics are tagged with and can be aggregated by the following keys:
| feast\_featureSet\_name | feature set name |
| feast\_feature\_name | feature name |
| ingestion\_job\_name | id of the population job writing the feature values. |
| metrics\_namespace | either `Inflight` or `WriteToStoreSuccess` |

Original file line number Diff line number Diff line change
Expand Up @@ -77,6 +77,7 @@ public void shouldSendCorrectStatsDMetrics() throws IOException, InterruptedExce
.setStatsdHost("localhost")
.setStatsdPort(STATSD_SERVER_PORT)
.setStoreName("store")
.setMetricsNamespace("test")
.build()));
pipeline.run(pipelineOptions).waitUntilFinish();
// Wait until StatsD has finished processed all messages, 3 sec is a reasonable duration
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -60,6 +60,7 @@ public void shouldSendCorrectStatsDMetrics() throws IOException, InterruptedExce
.setStatsdPort(STATSD_SERVER_PORT)
.setStoreName("store")
.setClock(Clock.fixed(Instant.ofEpochSecond(1585548645), ZoneId.of("UTC")))
.setMetricsNamespace("test")
.build()));
pipeline.run(pipelineOptions).waitUntilFinish();
// Wait until StatsD has finished processed all messages, 3 sec is a reasonable duration
Expand Down
Loading

0 comments on commit 823bd9c

Please sign in to comment.