File: interesting_serverknobs.py

package info (click to toggle)
firefox-esr 128.14.0esr-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 4,230,180 kB
  • sloc: cpp: 7,104,278; javascript: 6,088,450; ansic: 3,654,017; python: 1,212,326; xml: 594,604; asm: 420,652; java: 182,969; sh: 71,124; makefile: 20,747; perl: 13,449; objc: 12,399; yacc: 4,583; cs: 3,846; pascal: 2,973; lex: 1,720; ruby: 1,194; exp: 762; php: 436; lisp: 258; awk: 247; sql: 66; sed: 54; csh: 10
file content (54 lines) | stat: -rw-r--r-- 1,900 bytes parent folder | download | duplicates (6)
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
46
47
48
49
50
51
52
53
54
# -*- coding: utf-8 -*-

# This Source Code Form is subject to the terms of the Mozilla Public
# License, v. 2.0. If a copy of the MPL was not distributed with this
# file, You can obtain one at http://mozilla.org/MPL/2.0/.

import json
import os
import sys

import buildconfig
from buildconfig import topsrcdir
from run_glean_parser import parse


def main(serverknobs_fd, *args):
    all_objs, options = parse(args)

    only_interesting = set()
    interesting_yamls = buildconfig.substs.get("MOZ_GLEAN_INTERESTING_METRICS_FILES")
    if interesting_yamls:
        interesting = [os.path.join(topsrcdir, x) for x in interesting_yamls]
        interesting.append(
            os.path.join(topsrcdir, "toolkit/components/glean/tags.yaml")
        )
        extra_tags_files = buildconfig.substs.get("MOZ_GLEAN_EXTRA_TAGS_FILES")
        if extra_tags_files:
            tag_files = [os.path.join(topsrcdir, x) for x in extra_tags_files]
            interesting.extend(tag_files)

        interesting_metrics, _options = parse(interesting + list(args[1:]))
        for category_name in interesting_metrics.keys():
            if category_name in ["pings", "tags"]:
                continue
            for name, metric in interesting_metrics[category_name].items():
                fullname = f"{category_name}.{name}"
                only_interesting.add(fullname)

    only_uninteresting = {}

    for category_name in all_objs.keys():
        if category_name in ["pings", "tags"]:
            continue
        for name, metric in all_objs[category_name].items():
            fullname = f"{category_name}.{name}"
            if fullname not in only_interesting:
                only_uninteresting[fullname] = True

    config = {"metrics_enabled": only_uninteresting}
    json.dump(config, serverknobs_fd, sort_keys=True, indent=2)


if __name__ == "__main__":
    main(sys.stdout, *sys.argv[1:])