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
Related issues:
Currently duplicate dimension sets are being allowed. Example:
metrics.put_dimensions({"Region": "us-east-1"}) metrics.put_dimensions({"Region": "us-east-2"})
This creates:
"Dimensions": [ [ "LogGroup", "ServiceName", "ServiceType", "Region" ], [ "LogGroup", "ServiceName", "ServiceType", "Region" ] ]
When it should be:
"Dimensions": [ [ "LogGroup", "ServiceName", "ServiceType", "Region" ] ]
The text was updated successfully, but these errors were encountered:
Should there be an issue for the dotnet library as well?
Sorry, something went wrong.
@gordonpn It is indeed an issue in the dotnet library as well. Creating an issue for it.
PutDimensions
Stephen-Bao
Successfully merging a pull request may close this issue.
Related issues:
Currently duplicate dimension sets are being allowed.
Example:
This creates:
When it should be:
The text was updated successfully, but these errors were encountered: