Skip to content

Commit

Permalink
Fix typo in field name (elastic#8194)
Browse files Browse the repository at this point in the history
Should be `cluster_uuid`, not `cluser_uuid` (missing `t`).
  • Loading branch information
ycombinator committed Sep 4, 2018
1 parent 92cbfbc commit 90b7cc6
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,7 @@ func eventMappingXPack(r mb.ReporterV2, m *MetricSet, info elasticsearch.Info, c
event := mb.Event{}
event.RootFields = common.MapStr{}
event.RootFields.Put("indices_stats._all", fields)
event.RootFields.Put("cluser_uuid", info.ClusterID)
event.RootFields.Put("cluster_uuid", info.ClusterID)
event.RootFields.Put("timestamp", common.Time(time.Now()))
event.RootFields.Put("interval_ms", m.Module().Config().Period/time.Millisecond)
event.RootFields.Put("type", "indices_stats")
Expand Down

0 comments on commit 90b7cc6

Please sign in to comment.