Bug 1719315 - Add support for the URL metric type (#361)

* Add support for the URL metric type

* Update CHANGELOG.md
This commit is contained in:
Beatriz Rizental 2021-07-13 15:27:09 +02:00 коммит произвёл GitHub
Родитель 308730225b
Коммит 5c630b11ae
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23
3 изменённых файлов: 8 добавлений и 0 удалений

Просмотреть файл

@ -3,6 +3,7 @@
## Unreleased
- New lint: Check for redundant words in ping names ([#355](https://github.com/mozilla/glean_parser/pull/355))
- Add support for URL metric type ([#361](https://github.com/mozilla/glean_parser/pull/361))
## 3.6.0 (2021-06-11)

Просмотреть файл

@ -338,6 +338,10 @@ class Uuid(Metric):
typename = "uuid"
class Url(Metric):
typename = "url"
class Jwe(Metric):
typename = "jwe"

Просмотреть файл

@ -94,6 +94,8 @@ definitions:
- `uuid`: Record a UUID v4.
- `url`: Record a valid URL string.
- `memory_distribution`: A histogram for recording memory usage
values. Additional properties: `memory_unit`.
@ -129,6 +131,7 @@ definitions:
- memory_distribution
- datetime
- uuid
- url
- jwe
- labeled_boolean
- labeled_string