We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
For context, the metric query name is used by the source to populate the ID field used to identify the query with CloudWatch for follow-up queries and manipulation. The name must adhere to the following regexp as per AWS (https://docs.aws.amazon.com/AmazonCloudWatch/latest/APIReference/API_MetricDataQuery.html):
[a-z][a-zA-Z0-9_]*
The text was updated successfully, but these errors were encountered:
Tip: the second part can we shortened to \w*.
\w*
Sorry, something went wrong.
Doesn't \w include more than alphanumeric?
\w
Regex101.com says
\w matches any word character (equivalent to [a-zA-Z0-9_])
I wouldn't have known without it to be honest 😄
Wow my memory is getting rusty: https://media.giphy.com/media/83QtfwKWdmSEo/giphy.gif
antoineco
Successfully merging a pull request may close this issue.
For context, the metric query name is used by the source to populate the ID field used to identify the query with CloudWatch for follow-up queries and manipulation. The name must adhere to the following regexp as per AWS (https://docs.aws.amazon.com/AmazonCloudWatch/latest/APIReference/API_MetricDataQuery.html):
The text was updated successfully, but these errors were encountered: