File: ordering.yaml

package info (click to toggle)
glean-parser 15.0.1-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 1,260 kB
  • sloc: python: 7,033; ruby: 100; makefile: 87
file content (45 lines) | stat: -rw-r--r-- 1,232 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
# Any copyright is dedicated to the Public Domain.
# https://creativecommons.org/publicdomain/zero/1.0/

---
$schema: moz://mozilla.org/schemas/glean/metrics/2-0-0

testing.ordering:
  first_test_metric:
    type: counter
    lifetime: application
    description: >
      Test metric to check ordering. Second alphabetically.
    bugs:
      - https://bugzilla.mozilla.org/show_bug.cgi?id=1820648
    data_reviews:
      - http://example.com/reviews
    notification_emails:
      - CHANGE-ME@example.com
    expires: never

  a_second_test_metric:
    type: counter
    lifetime: application
    description: >
      An additional test metric to check ordering. First alphabetically.
    bugs:
      - https://bugzilla.mozilla.org/show_bug.cgi?id=1820648
    data_reviews:
      - http://example.com/reviews
    notification_emails:
      - CHANGE-ME@example.com
    expires: never

  third_test_metric:
    type: counter
    lifetime: application
    description: >
      Final test metric to check ordering. Third alphabetically.
    bugs:
      - https://bugzilla.mozilla.org/show_bug.cgi?id=1820648
    data_reviews:
      - http://example.com/reviews
    notification_emails:
      - CHANGE-ME@example.com
    expires: never