Add missing field labels to AWSMetrics node SubmitMetrics (#4534)

* Add missing field labels to AWSMetrics node SubmitMetrics
* Add periods to tooltips to be consistent w/ other metrics nodes

Signed-off-by: Stanko <stankoa@amazon.com>
This commit is contained in:
allisaurus
2021-10-07 13:04:10 -07:00
committed by GitHub
parent 0a5eb06fe9
commit 5f52664026
@@ -74,7 +74,12 @@ namespace AWSMetrics
{
behaviorContext->EBus<AWSMetricsRequestBus>("AWSMetricsRequestBus", "Generate and submit metrics to the metrics analytics pipeline")
->Attribute(AZ::Script::Attributes::Category, "AWSMetrics")
->Event("SubmitMetrics", &AWSMetricsRequestBus::Events::SubmitMetrics)
->Event(
"SubmitMetrics", &AWSMetricsRequestBus::Events::SubmitMetrics,
{ { { "Metrics Attributes list", "The list of metrics attributes to submit." },
{ "Event priority", "Priority of the event. Defaults to 0, which is highest priority." },
{ "Event source override", "Event source used to override the default, 'AWSMetricGem'." },
{ "Buffer metrics", "Whether to buffer metrics and send them in a batch." } } })
->Event("FlushMetrics", &AWSMetricsRequestBus::Events::FlushMetrics)
;