python.toml |
|
286 |
test_gen_event_data_json.py |
with.optout:
testme1:
objects: ["test1"]
bug_numbers: [1456415]
notification_emails: ["telemetry-client-dev@mozilla.org"]
record_in_processes: ["main"]
description: opt-out event
release_channel_collection: opt-out
expiry_version: never
products:
- firefox
extra_keys:
message: a message 1
with.optin:
testme2:
objects: ["test2"]
bug_numbers: [1456415]
notification_emails: ["telemetry-client-dev@mozilla.org"]
record_in_processes: ["main"]
description: opt-in event
release_channel_collection: opt-in
expiry_version: never
products: ['firefox', 'fennec']
extra_keys:
message: a message 2
|
3048 |
test_gen_scalar_data_json.py |
newscalar:
withoptin:
bug_numbers:
- 1456415
description: opt-in scalar
expires: never
kind: uint
notification_emails: ["telemetry-client-dev@mozilla.org"]
record_in_processes: ["main"]
release_channel_collection: opt-in
products:
- firefox
keyed: false
withoptout:
bug_numbers:
- 1456415
description: opt-out scalar
expires: never
kind: string
notification_emails: ["telemetry-client-dev@mozilla.org"]
record_in_processes: ["main"]
release_channel_collection: opt-out
products: ["firefox", "fennec"]
keyed: false
|
2946 |
test_histogramtools_non_strict.py |
Parse the passed Histogram and return a dictionary mapping histogram
names to histogram parameters.
:param histogram: Histogram as a python dictionary
:returns: Parsed Histogram dictionary mapping histogram names to histogram parameters
|
3992 |
test_histogramtools_strict.py |
|
18239 |
test_mirrors.py |
Glean metrics can be mirrored via the `telemetry_mirror` property to
Telemetry probes. Ensure the mirror is compatible with the metric. |
6901 |
test_no_expired_probes.py |
Ensure there are no expired histograms, events, or scalars
in Histograms.json, Events.yaml, or Scalars.yaml, respectively. |
2904 |
test_parse_events.py |
Parse the passed event and return a dictionary
:param event: Event as YAML string
:returns: Parsed Event dictionary
|
4577 |
test_parse_scalars.py |
Parse the passed Scalar and return a dictionary
:param scalar: Scalar as YAML string
:returns: Parsed Scalar dictionary
|
4775 |