├── .buildconfig.yml ├── .cargo └── config.toml ├── .circleci ├── config.yml └── jazzy.yml ├── .config └── nextest.toml ├── .detekt.yml ├── .dictionary ├── .editorconfig ├── .git-blame-ignore-revs ├── .github ├── CODEOWNERS ├── dependabot.yml └── workflows │ ├── cargo-vet.yml │ └── glean-probe-scraper.yml ├── .gitignore ├── .swiftlint.yml ├── .taskcluster.yml ├── .yamllint ├── CHANGELOG.md ├── CODE_OF_CONDUCT.md ├── Cargo.lock ├── Cargo.toml ├── DEPENDENCIES.md ├── LICENSE ├── Makefile ├── README.iOS.md ├── README.md ├── about.toml ├── bin ├── about.md.hbs ├── about.xml.hbs ├── benchmark-compare.sh ├── build-rust-docs.bat ├── build-rust-docs.sh ├── build-swift-docs.sh ├── build-win.sh ├── build-xcframework.sh ├── check-artifact.sh ├── dependency-summary.sh ├── prepare-release.sh ├── publish-glean-swift.sh ├── run-ios-build.sh ├── run-ios-sample-app-build.sh ├── run-ios-sample-app-test.sh ├── run-ios-tests.sh ├── rust-wrapper-hack.sh ├── spellcheck.sh ├── update-glean-parser-version.sh ├── update-schema.sh └── update-xcode-version.sh ├── deny.toml ├── docs ├── dev │ ├── README.md │ ├── SUMMARY.md │ ├── android │ │ ├── development-with-mozilla-central.md │ │ ├── glean-parser-substitution.md │ │ ├── gradle-plugin-in-mc.md │ │ ├── index.md │ │ ├── logging.md │ │ ├── sdk-ndk-versions.md │ │ └── setup-android-build-environment.md │ ├── api │ │ └── index.md │ ├── book.toml │ ├── ci.md │ ├── code_coverage.md │ ├── contributing.md │ ├── core │ │ ├── dependency-management.md │ │ ├── dependency-vetting.md │ │ ├── documentation-guidelines.md │ │ ├── index.md │ │ ├── internal │ │ │ ├── benchmarks.md │ │ │ ├── clearing.md │ │ │ ├── client_id_recovery.md │ │ │ ├── database.md │ │ │ ├── debug-pings.md │ │ │ ├── directory-structure.md │ │ │ ├── implementations.md │ │ │ ├── index.md │ │ │ ├── payload.md │ │ │ ├── reserved-ping-names.md │ │ │ └── upload.md │ │ ├── logging-levels.md │ │ ├── new-metric-type.md │ │ └── new-metric-type │ │ │ ├── kotlin.md │ │ │ ├── platform.md │ │ │ ├── python.md │ │ │ ├── rust.md │ │ │ └── swift.md │ ├── cut-a-new-release.md │ ├── docs.md │ ├── glean.jpeg │ ├── ios │ │ ├── debug-glean-on-ios.md │ │ ├── glean-parser-substitution.md │ │ ├── index.md │ │ ├── setup-ios-build-environment.md │ │ └── upgrading-supported-ios-platform.md │ ├── python │ │ ├── index.md │ │ └── setting-up-python-build-environment.md │ ├── testing.md │ └── upgrading-glean-parser.md ├── shared │ ├── blockquote-info.html │ ├── blockquote-stop.html │ ├── blockquote-warning.html │ ├── glean.css │ ├── mermaid-init.js │ ├── mermaid.min.js │ ├── tab_footer.md │ ├── tab_header.md │ └── tabs.js └── user │ ├── README.md │ ├── SUMMARY.md │ ├── _includes │ ├── glean-js-redirect-collected-metrics.md │ ├── label-errors.md │ ├── label-limits.md │ ├── labels-parameter.md │ ├── lifetimes-parameters.md │ ├── string-errors.md │ └── string-limits.md │ ├── appendix │ ├── changelog │ │ └── index.md │ ├── contribution-guidelines.md │ ├── glossary.md │ ├── index.md │ └── twig.md │ ├── book.toml │ ├── chart-distributions-ui.js │ ├── chart-distributions.js │ ├── chart.min.js │ ├── glean.jpeg │ ├── highlight.js │ ├── language-bindings │ ├── android │ │ ├── android-build-configuration-options.md │ │ ├── android-offline-builds.md │ │ ├── gecko-content-processes-and-glean.md │ │ ├── index.md │ │ └── instrument-android-crashes-example.md │ ├── index.md │ ├── ios │ │ ├── index.md │ │ └── ios-build-configuration-options.md │ └── javascript │ │ ├── cli.md │ │ ├── index.md │ │ └── plugins │ │ ├── encryption.md │ │ └── index.md │ ├── reference │ ├── debug │ │ ├── debugViewTag.md │ │ ├── index.md │ │ ├── logPings.md │ │ ├── screenshots │ │ │ ├── debug_view_tag_screenshot_swift.png │ │ │ ├── log_pings_screenshot_swift.png │ │ │ └── source_tags_screenshot_swift.png │ │ └── sourceTags.md │ ├── general │ │ ├── attribution-api.md │ │ ├── experiments-api.md │ │ ├── glean-event-listener.md │ │ ├── index.md │ │ ├── initializing.md │ │ ├── register-custom-pings.md │ │ ├── shutdown.md │ │ └── toggling-collection-status.md │ ├── metrics │ │ ├── boolean.md │ │ ├── counter.md │ │ ├── custom_distribution.md │ │ ├── datetime.md │ │ ├── dual_labeled_counters.md │ │ ├── event.md │ │ ├── index.md │ │ ├── labeled_booleans.md │ │ ├── labeled_counters.md │ │ ├── labeled_custom_distributions.md │ │ ├── labeled_memory_distributions.md │ │ ├── labeled_quantity.md │ │ ├── labeled_strings.md │ │ ├── labeled_timing_distributions.md │ │ ├── memory_distribution.md │ │ ├── object.md │ │ ├── quantity.md │ │ ├── rate.md │ │ ├── string.md │ │ ├── string_list.md │ │ ├── text.md │ │ ├── timespan.md │ │ ├── timing_distribution.md │ │ ├── url.md │ │ └── uuid.md │ ├── pings │ │ └── index.md │ └── yaml │ │ ├── index.md │ │ ├── metrics.md │ │ ├── pings.md │ │ └── tags.md │ └── user │ ├── adding-glean-to-your-project │ ├── enable-data-ingestion.md │ ├── index.md │ ├── javascript.md │ ├── kotlin.md │ ├── python.md │ ├── qt.md │ ├── rust.md │ ├── server.md │ └── swift.md │ ├── collected-metrics │ └── metrics.md │ ├── debugging │ ├── android.md │ ├── index.md │ ├── ios.md │ ├── javascript.md │ └── python.md │ ├── howto │ ├── index.md │ ├── investigating-data-issues │ │ └── investigating-data-issues.md │ ├── real-time-events │ │ └── real-time-events.md │ └── server-knobs-walkthrough │ │ ├── images │ │ ├── sk_walkthrough_image1.png │ │ ├── sk_walkthrough_image10.png │ │ ├── sk_walkthrough_image11.png │ │ ├── sk_walkthrough_image12.png │ │ ├── sk_walkthrough_image13.png │ │ ├── sk_walkthrough_image14.png │ │ ├── sk_walkthrough_image15.png │ │ ├── sk_walkthrough_image16.png │ │ ├── sk_walkthrough_image17.png │ │ ├── sk_walkthrough_image18.png │ │ ├── sk_walkthrough_image19.png │ │ ├── sk_walkthrough_image2.png │ │ ├── sk_walkthrough_image20.png │ │ ├── sk_walkthrough_image21.png │ │ ├── sk_walkthrough_image3.png │ │ ├── sk_walkthrough_image4.png │ │ ├── sk_walkthrough_image5.png │ │ ├── sk_walkthrough_image6.png │ │ ├── sk_walkthrough_image7.png │ │ ├── sk_walkthrough_image8.png │ │ └── sk_walkthrough_image9.png │ │ └── server-knobs-walkthrough.md │ ├── integrating-glean-for-product-managers.md │ ├── metric-lifetime-timeline.svg │ ├── metrics │ ├── adding-new-metrics.md │ ├── error-reporting.md │ ├── index.md │ ├── testing-metrics.md │ └── validation-checklist.md │ ├── pings │ ├── baseline.md │ ├── custom.md │ ├── deletion-request.md │ ├── events.md │ ├── index.md │ ├── metrics.md │ ├── ping-schedules-and-timings.md │ ├── ping_timing.svg │ ├── sent-by-glean.md │ └── testing-custom-pings.md │ └── server-knobs │ ├── index.md │ ├── metrics │ ├── advanced-topics.md │ ├── example-scenarios.md │ ├── experimenter-configuration.md │ ├── faq.md │ ├── index.md │ └── product-integration.md │ ├── other │ ├── index.md │ └── max-events.md │ └── pings │ ├── experimenter-configuration.md │ ├── index.md │ └── product-integration.md ├── glean-core ├── ARCHITECTURE.md ├── Cargo.toml ├── LICENSE ├── README.md ├── android-native │ ├── build.gradle │ ├── dependency-licenses.xml │ ├── proguard-rules-consumer.pro │ ├── proguard-rules.pro │ └── src │ │ └── main │ │ └── AndroidManifest.xml ├── android │ ├── build.gradle │ ├── dependency-licenses.xml │ ├── metrics.yaml │ ├── proguard-rules-consumer.pro │ ├── proguard-rules.pro │ └── src │ │ ├── main │ │ ├── AndroidManifest.xml │ │ └── java │ │ │ └── mozilla │ │ │ └── telemetry │ │ │ └── glean │ │ │ ├── Dispatchers.kt │ │ │ ├── Glean.kt │ │ │ ├── config │ │ │ └── Configuration.kt │ │ │ ├── debug │ │ │ └── GleanDebugActivity.kt │ │ │ ├── net │ │ │ ├── BaseUploader.kt │ │ │ ├── HttpURLConnectionUploader.kt │ │ │ ├── PingUploader.kt │ │ │ └── Upload.kt │ │ │ ├── private │ │ │ ├── Aliases.kt │ │ │ ├── BooleanMetricType.kt │ │ │ ├── CounterMetricType.kt │ │ │ ├── CustomDistributionMetricType.kt │ │ │ ├── DatetimeMetricType.kt │ │ │ ├── DenominatorMetricType.kt │ │ │ ├── EventMetricType.kt │ │ │ ├── HistogramBase.kt │ │ │ ├── LabeledMetricType.kt │ │ │ ├── MemoryDistributionMetricType.kt │ │ │ ├── NumeratorMetricType.kt │ │ │ ├── ObjectMetricType.kt │ │ │ ├── PingType.kt │ │ │ ├── QuantityMetricType.kt │ │ │ ├── RateMetricType.kt │ │ │ ├── StringListMetricType.kt │ │ │ ├── StringMetricType.kt │ │ │ ├── TextMetricType.kt │ │ │ ├── TimespanMetricType.kt │ │ │ ├── TimingDistributionMetricType.kt │ │ │ ├── UrlMetricType.kt │ │ │ └── UuidMetricType.kt │ │ │ ├── scheduler │ │ │ ├── GleanLifecycleObserver.kt │ │ │ ├── MetricsPingScheduler.kt │ │ │ └── PingUploadWorker.kt │ │ │ ├── testing │ │ │ ├── ErrorType.kt │ │ │ ├── GleanTestLocalServer.kt │ │ │ └── GleanTestRule.kt │ │ │ └── utils │ │ │ ├── DataPathUtils.kt │ │ │ ├── DateUtils.kt │ │ │ ├── GzipUtils.kt │ │ │ ├── JsonUtils.kt │ │ │ ├── LocaleUtils.kt │ │ │ ├── ThreadUtils.kt │ │ │ └── WorkManagerUtils.kt │ │ └── test │ │ ├── java │ │ ├── android │ │ │ └── util │ │ │ │ └── Log.java │ │ └── mozilla │ │ │ └── telemetry │ │ │ └── glean │ │ │ ├── GleanFromJavaTest.java │ │ │ ├── GleanTest.kt │ │ │ ├── TestUtil.kt │ │ │ ├── debug │ │ │ └── GleanDebugActivityTest.kt │ │ │ ├── net │ │ │ ├── BaseUploaderTest.kt │ │ │ └── HttpURLConnectionUploaderTest.kt │ │ │ ├── pings │ │ │ ├── CustomPingTest.kt │ │ │ ├── DeletionPingTest.kt │ │ │ └── RidealongPingTest.kt │ │ │ ├── private │ │ │ ├── AccumulationsBeforeGleanInitTest.kt │ │ │ ├── BooleanMetricTypeTest.kt │ │ │ ├── CounterMetricTypeTest.kt │ │ │ ├── CustomDistributionMetricTypeTest.kt │ │ │ ├── DatetimeMetricTypeTest.kt │ │ │ ├── EventMetricTypeTest.kt │ │ │ ├── LabeledMetricTypeTest.kt │ │ │ ├── MemoryDistributionMetricTypeTest.kt │ │ │ ├── ObjectMetricTypeTest.kt │ │ │ ├── PingTypeTest.kt │ │ │ ├── QuantityMetricTypeTest.kt │ │ │ ├── RateMetricTypeTest.kt │ │ │ ├── StringListMetricTypeTest.kt │ │ │ ├── StringMetricTypeTest.kt │ │ │ ├── TimespanMetricTypeTest.kt │ │ │ ├── TimingDistributionMetricTypeTest.kt │ │ │ ├── UrlMetricTypeTest.kt │ │ │ └── UuidMetricTypeTest.kt │ │ │ ├── scheduler │ │ │ ├── MetricsPingSchedulerTest.kt │ │ │ └── PingUploadWorkerTest.kt │ │ │ ├── shadows │ │ │ └── ShadowLog.java │ │ │ └── utils │ │ │ ├── DataPathUtilsTest.kt │ │ │ ├── DateUtilsTest.kt │ │ │ ├── GzipUtilsTest.kt │ │ │ ├── JsonUtilsTest.kt │ │ │ └── KArgumentCaptor.kt │ │ └── resources │ │ ├── mockito-extensions │ │ └── org.mockito.plugins.MockMaker │ │ └── robolectric.properties ├── benches │ └── dispatcher.rs ├── build.rs ├── build │ ├── Cargo.toml │ ├── LICENSE │ ├── README.md │ └── src │ │ └── lib.rs ├── bundle-android │ └── Cargo.toml ├── bundle │ ├── Cargo.toml │ ├── src │ │ ├── glean.udl │ │ └── lib.rs │ └── uniffi.toml ├── examples │ └── rkv-open.rs ├── ios │ ├── .gitkeep │ ├── Glean.xcodeproj │ │ ├── project.pbxproj │ │ ├── project.xcworkspace │ │ │ ├── contents.xcworkspacedata │ │ │ └── xcshareddata │ │ │ │ ├── IDEWorkspaceChecks.plist │ │ │ │ └── swiftpm │ │ │ │ └── Package.resolved │ │ └── xcshareddata │ │ │ └── xcschemes │ │ │ └── Glean.xcscheme │ ├── Glean │ │ ├── Config │ │ │ └── Configuration.swift │ │ ├── Debug │ │ │ └── GleanDebugTools.swift │ │ ├── Dispatchers.swift │ │ ├── Glean.h │ │ ├── Glean.swift │ │ ├── GleanMetrics.swift │ │ ├── Info.plist │ │ ├── Metrics │ │ │ ├── BooleanMetric.swift │ │ │ ├── CounterMetric.swift │ │ │ ├── DatetimeMetric.swift │ │ │ ├── EventMetric.swift │ │ │ ├── LabeledMetric.swift │ │ │ ├── MemoryDistributionMetric.swift │ │ │ ├── ObjectMetric.swift │ │ │ ├── Ping.swift │ │ │ ├── QuantityMetric.swift │ │ │ ├── RateMetric.swift │ │ │ ├── StringListMetric.swift │ │ │ ├── StringMetric.swift │ │ │ ├── TextMetric.swift │ │ │ ├── TimespanMetric.swift │ │ │ ├── TimingDistributionMetric.swift │ │ │ ├── UrlMetric.swift │ │ │ └── UuidMetric.swift │ │ ├── Net │ │ │ ├── HttpPingUploader.swift │ │ │ ├── PingUploadScheduler.swift │ │ │ └── PingUploader.swift │ │ ├── Scheduler │ │ │ ├── GleanLifecycleObserver.swift │ │ │ └── MetricsPingScheduler.swift │ │ └── Utils │ │ │ ├── Logger.swift │ │ │ ├── Sysctl.swift │ │ │ ├── Unreachable.swift │ │ │ └── Utils.swift │ ├── GleanTests │ │ ├── Config │ │ │ └── ConfigurationTests.swift │ │ ├── Debug │ │ │ └── GleanDebugUtilityTests.swift │ │ ├── GleanTests.swift │ │ ├── Info.plist │ │ ├── Metrics │ │ │ ├── BooleanMetricTypeTest.swift │ │ │ ├── CounterMetricTests.swift │ │ │ ├── DatetimeMetricTypeTests.swift │ │ │ ├── EventMetricTests.swift │ │ │ ├── LabeledMetricTests.swift │ │ │ ├── MemoryDistributionMetricTests.swift │ │ │ ├── ObjectMetricTests.swift │ │ │ ├── PingTests.swift │ │ │ ├── QuantityMetricTypeTest.swift │ │ │ ├── RateMetricTests.swift │ │ │ ├── StringListMetricTests.swift │ │ │ ├── StringMetricTests.swift │ │ │ ├── TimespanMetricTests.swift │ │ │ ├── TimingDistributionMetricTests.swift │ │ │ ├── UrlMetricTests.swift │ │ │ └── UuidMetricTests.swift │ │ ├── Net │ │ │ ├── BaselinePingTests.swift │ │ │ ├── DeletionRequestPingTests.swift │ │ │ └── HttpPingUploaderTests.swift │ │ ├── PingUploaderTests.swift │ │ ├── RidealongPingTests.swift │ │ ├── Scheduler │ │ │ └── MetricsPingSchedulerTests.swift │ │ ├── TestUtils.swift │ │ ├── Utils │ │ │ └── DataPathUtilsTests.swift │ │ └── makeCapablePingUploadRequestForTests.swift │ ├── base.xcconfig │ ├── debug.xcconfig │ ├── release.xcconfig │ └── sdk_generator.sh ├── megazord.uniffi.toml ├── metrics.yaml ├── pings.yaml ├── python │ ├── .gitignore │ ├── glean │ │ ├── __init__.py │ │ ├── _builtins.py │ │ ├── _ffi.py │ │ ├── _loader.py │ │ ├── _process_dispatcher.py │ │ ├── _subprocess │ │ │ ├── __init__.py │ │ │ └── _process_dispatcher_helper.py │ │ ├── _util.py │ │ ├── config.py │ │ ├── glean.py │ │ ├── metrics.yaml │ │ ├── metrics │ │ │ ├── __init__.py │ │ │ ├── datetime.py │ │ │ ├── event.py │ │ │ ├── labeled.py │ │ │ ├── object.py │ │ │ ├── ping.py │ │ │ ├── string.py │ │ │ ├── timespan.py │ │ │ ├── timing_distribution.py │ │ │ ├── url.py │ │ │ └── uuid.py │ │ ├── net │ │ │ ├── __init__.py │ │ │ ├── base_uploader.py │ │ │ ├── http_client.py │ │ │ ├── ping_upload_worker.py │ │ │ └── ping_uploader.py │ │ ├── pings.yaml │ │ └── testing │ │ │ └── __init__.py │ ├── requirements_dev.txt │ └── tests │ │ ├── conftest.py │ │ ├── data │ │ ├── core.yaml │ │ ├── events_with_types.yaml │ │ ├── glinter.yaml │ │ └── pings.yaml │ │ ├── metrics │ │ ├── test_boolean.py │ │ ├── test_counter.py │ │ ├── test_datetime.py │ │ ├── test_event.py │ │ ├── test_labeled.py │ │ ├── test_memory_distribution.py │ │ ├── test_object.py │ │ ├── test_quantity.py │ │ ├── test_rate.py │ │ ├── test_string.py │ │ ├── test_string_list.py │ │ ├── test_text.py │ │ ├── test_timespan.py │ │ ├── test_timing_distribution.py │ │ ├── test_url.py │ │ └── test_uuid.py │ │ ├── test_collection_enabled.py │ │ ├── test_glean.py │ │ ├── test_loader.py │ │ ├── test_network.py │ │ └── test_subprocess.py ├── rlb │ ├── Cargo.toml │ ├── LICENSE │ ├── README.md │ ├── examples │ │ ├── crashing-threads.rs │ │ ├── delayed-ping-data.rs │ │ ├── enabled-pings.rs │ │ ├── frequent-events.rs │ │ ├── long-running.rs │ │ ├── mps-delay.rs │ │ ├── pending-gets-removed.rs │ │ ├── ping-lifetime-flush.rs │ │ └── prototype.rs │ ├── src │ │ ├── common_test.rs │ │ ├── configuration.rs │ │ ├── core_metrics.rs │ │ ├── lib.rs │ │ ├── net │ │ │ ├── http_uploader.rs │ │ │ └── mod.rs │ │ ├── private │ │ │ ├── event.rs │ │ │ ├── mod.rs │ │ │ ├── object.rs │ │ │ └── ping.rs │ │ ├── system.rs │ │ └── test.rs │ └── tests │ │ ├── collection_enabled.rs │ │ ├── collection_enabled_bin.rs │ │ ├── common │ │ └── mod.rs │ │ ├── custom_distribution_buffered.rs │ │ ├── dual_labeled_counter_metric.rs │ │ ├── health_ping.rs │ │ ├── health_ping_file_overwrite.rs │ │ ├── init_fails.rs │ │ ├── interruptible_shutdown.rs │ │ ├── labeled_metrics.rs │ │ ├── memory_distribution_buffered.rs │ │ ├── metric_metadata.rs │ │ ├── near-empty-c0ffee-db.safe.bin │ │ ├── never_init.rs │ │ ├── no_time_to_init.rs │ │ ├── overflowing_preinit.rs │ │ ├── persist_ping_lifetime_nopanic.rs │ │ ├── schema.rs │ │ ├── signaling_done.rs │ │ ├── simple.rs │ │ ├── test-delayed-ping-data.sh │ │ ├── test-enabled-pings.sh │ │ ├── test-mps-delay.sh │ │ ├── test-pending-gets-removed.sh │ │ ├── test-ping-lifetime-flush.sh │ │ ├── test-shutdown-blocking.sh │ │ ├── test-thread-crashing.sh │ │ ├── timing_distribution_buffered.rs │ │ ├── timing_distribution_single_sample.rs │ │ ├── upload_timing.rs │ │ └── uploader_capabilities.rs ├── src │ ├── common_metric_data.rs │ ├── core │ │ └── mod.rs │ ├── core_metrics.rs │ ├── coverage.rs │ ├── database │ │ └── mod.rs │ ├── debug.rs │ ├── dispatcher │ │ ├── global.rs │ │ └── mod.rs │ ├── error.rs │ ├── error_recording.rs │ ├── event_database │ │ └── mod.rs │ ├── fd_logger.rs │ ├── glean.udl │ ├── glean_metrics.rs │ ├── histogram │ │ ├── exponential.rs │ │ ├── functional.rs │ │ ├── linear.rs │ │ └── mod.rs │ ├── internal_metrics.rs │ ├── internal_pings.rs │ ├── lib.rs │ ├── lib_unit_tests.rs │ ├── metrics │ │ ├── boolean.rs │ │ ├── counter.rs │ │ ├── custom_distribution.rs │ │ ├── datetime.rs │ │ ├── denominator.rs │ │ ├── dual_labeled_counter.rs │ │ ├── event.rs │ │ ├── experiment.rs │ │ ├── labeled.rs │ │ ├── memory_distribution.rs │ │ ├── memory_unit.rs │ │ ├── mod.rs │ │ ├── numerator.rs │ │ ├── object.rs │ │ ├── ping.rs │ │ ├── quantity.rs │ │ ├── rate.rs │ │ ├── recorded_experiment.rs │ │ ├── remote_settings_config.rs │ │ ├── string.rs │ │ ├── string_list.rs │ │ ├── text.rs │ │ ├── time_unit.rs │ │ ├── timespan.rs │ │ ├── timing_distribution.rs │ │ ├── url.rs │ │ └── uuid.rs │ ├── ping │ │ └── mod.rs │ ├── scheduler.rs │ ├── storage │ │ └── mod.rs │ ├── system.rs │ ├── thread.rs │ ├── traits │ │ ├── boolean.rs │ │ ├── counter.rs │ │ ├── custom_distribution.rs │ │ ├── datetime.rs │ │ ├── dual_labeled_counter.rs │ │ ├── event.rs │ │ ├── labeled.rs │ │ ├── memory_distribution.rs │ │ ├── mod.rs │ │ ├── numerator.rs │ │ ├── object.rs │ │ ├── ping.rs │ │ ├── quantity.rs │ │ ├── rate.rs │ │ ├── string.rs │ │ ├── string_list.rs │ │ ├── text.rs │ │ ├── timespan.rs │ │ ├── timing_distribution.rs │ │ ├── url.rs │ │ └── uuid.rs │ ├── upload │ │ ├── directory.rs │ │ ├── mod.rs │ │ ├── policy.rs │ │ ├── request.rs │ │ └── result.rs │ └── util.rs ├── tests │ ├── boolean.rs │ ├── clientid_textfile.rs │ ├── collection_enabled.rs │ ├── common │ │ └── mod.rs │ ├── counter.rs │ ├── custom_distribution.rs │ ├── datetime.rs │ ├── dual_labeled_counter.rs │ ├── event.rs │ ├── labeled.rs │ ├── memory_distribution.rs │ ├── object.rs │ ├── ping.rs │ ├── ping_maker.rs │ ├── quantity.rs │ ├── rate.rs │ ├── storage.rs │ ├── string.rs │ ├── string_list.rs │ ├── test-rkv-cases.sh │ ├── text.rs │ ├── timespan.rs │ ├── timing_distribution.rs │ └── uuid.rs └── uniffi.toml ├── glean.1.schema.json ├── gradle-plugin ├── README.md ├── build.gradle └── src │ └── main │ └── groovy │ └── mozilla │ └── telemetry │ └── glean-gradle-plugin │ └── GleanGradlePlugin.groovy ├── gradle.properties ├── gradle ├── libs.versions.toml └── wrapper │ ├── gradle-wrapper.jar │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat ├── license.template ├── lint-baseline.xml ├── publish.gradle ├── pyproject.toml ├── samples ├── android │ └── app │ │ ├── README.md │ │ ├── build.gradle │ │ ├── metrics.yaml │ │ ├── pings.yaml │ │ ├── proguard-rules.pro │ │ ├── src │ │ ├── androidTest │ │ │ └── java │ │ │ │ └── org │ │ │ │ └── mozilla │ │ │ │ └── samples │ │ │ │ └── gleancore │ │ │ │ ├── MainActivityTest.kt │ │ │ │ └── pings │ │ │ │ ├── BackgroundPingTest.kt │ │ │ │ ├── BaselinePingTest.kt │ │ │ │ ├── DeletionRequestPingTest.kt │ │ │ │ └── SharedTestUtils.kt │ │ └── main │ │ │ ├── AndroidManifest.xml │ │ │ ├── java │ │ │ └── org │ │ │ │ └── mozilla │ │ │ │ └── samples │ │ │ │ └── gleancore │ │ │ │ ├── GleanApplication.kt │ │ │ │ ├── MainActivity.kt │ │ │ │ └── SampleBackgroundProcess.kt │ │ │ └── res │ │ │ ├── layout │ │ │ └── activity_main.xml │ │ │ ├── mipmap-hdpi │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-mdpi │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xhdpi │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xxhdpi │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xxxhdpi │ │ │ └── ic_launcher.png │ │ │ ├── values │ │ │ └── strings.xml │ │ │ └── xml │ │ │ └── backup_rules.xml │ │ └── tags.yaml ├── ios │ └── app │ │ ├── .gitignore │ │ ├── README.md │ │ ├── base.xcconfig │ │ ├── debug.xcconfig │ │ ├── glean-sample-app.xcodeproj │ │ ├── project.pbxproj │ │ ├── project.xcworkspace │ │ │ ├── contents.xcworkspacedata │ │ │ └── xcshareddata │ │ │ │ ├── IDEWorkspaceChecks.plist │ │ │ │ └── swiftpm │ │ │ │ └── Package.resolved │ │ └── xcshareddata │ │ │ └── xcschemes │ │ │ └── glean-sample-app.xcscheme │ │ ├── glean-sample-app │ │ ├── AppDelegate.swift │ │ ├── Assets.xcassets │ │ │ ├── AppIcon.appiconset │ │ │ │ └── Contents.json │ │ │ └── Contents.json │ │ ├── Base.lproj │ │ │ ├── LaunchScreen.storyboard │ │ │ └── Main.storyboard │ │ ├── Info.plist │ │ └── ViewController.swift │ │ ├── glean-sample-appTests │ │ ├── Info.plist │ │ └── glean_sample_appTests.swift │ │ ├── glean-sample-appUITests │ │ ├── BaselinePingTest.swift │ │ ├── DeletionRequestPingTest.swift │ │ ├── EventPingTest.swift │ │ ├── Info.plist │ │ ├── MockServer.swift │ │ └── ViewControllerTest.swift │ │ ├── metrics.yaml │ │ ├── pings.yaml │ │ ├── release.xcconfig │ │ └── sdk_generator.sh ├── python │ ├── Makefile │ ├── README.md │ ├── glean-sample │ │ └── __main__.py │ ├── metrics.yaml │ ├── pings.yaml │ └── pyproject.toml └── rust │ ├── Cargo.toml │ ├── build.rs │ ├── metrics.yaml │ ├── pings.yaml │ └── src │ └── main.rs ├── settings.gradle ├── supply-chain ├── audits.toml ├── config.toml └── imports.lock ├── taskcluster ├── config.yml ├── docker │ └── linux │ │ ├── Dockerfile │ │ ├── runbuild.sh │ │ └── runlocally.sh ├── glean_taskgraph │ ├── __init__.py │ ├── build_config.py │ ├── job.py │ ├── loader │ │ ├── __init__.py │ │ ├── build_config.py │ │ └── multi_dep.py │ ├── target_tasks.py │ ├── transforms │ │ ├── __init__.py │ │ ├── beetmover.py │ │ ├── module_build.py │ │ ├── multi_dep.py │ │ └── signing.py │ └── worker_types.py ├── kinds │ ├── android-build │ │ └── kind.yml │ ├── beetmover │ │ └── kind.yml │ ├── docker-image │ │ └── kind.yml │ ├── module-build │ │ └── kind.yml │ ├── rust │ │ └── kind.yml │ └── signing │ │ └── kind.yml └── scripts │ ├── cross-compile-setup.sh │ ├── macos.manifest │ └── rustup-setup.sh ├── tools ├── analysis │ └── ping-patterns │ │ ├── README.md │ │ ├── config.py │ │ └── ping-patterns.py ├── dbread.rs ├── docker-winbuild │ ├── Dockerfile │ ├── README.md │ ├── build.sh │ └── init.sh ├── embedded-uniffi-bindgen │ ├── Cargo.toml │ ├── README.md │ └── src │ │ ├── lib.rs │ │ └── main.rs └── patches │ └── bcryptprimitives.rs └── xcconfig └── common.xcconfig /.buildconfig.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/glean/HEAD/.buildconfig.yml -------------------------------------------------------------------------------- /.cargo/config.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/glean/HEAD/.cargo/config.toml -------------------------------------------------------------------------------- /.circleci/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/glean/HEAD/.circleci/config.yml -------------------------------------------------------------------------------- /.circleci/jazzy.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/glean/HEAD/.circleci/jazzy.yml -------------------------------------------------------------------------------- /.config/nextest.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/glean/HEAD/.config/nextest.toml -------------------------------------------------------------------------------- /.detekt.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/glean/HEAD/.detekt.yml -------------------------------------------------------------------------------- /.dictionary: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/glean/HEAD/.dictionary -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/glean/HEAD/.editorconfig -------------------------------------------------------------------------------- /.git-blame-ignore-revs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/glean/HEAD/.git-blame-ignore-revs -------------------------------------------------------------------------------- /.github/CODEOWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/glean/HEAD/.github/CODEOWNERS -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/glean/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/cargo-vet.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/glean/HEAD/.github/workflows/cargo-vet.yml -------------------------------------------------------------------------------- /.github/workflows/glean-probe-scraper.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/glean/HEAD/.github/workflows/glean-probe-scraper.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/glean/HEAD/.gitignore -------------------------------------------------------------------------------- /.swiftlint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/glean/HEAD/.swiftlint.yml -------------------------------------------------------------------------------- /.taskcluster.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/glean/HEAD/.taskcluster.yml -------------------------------------------------------------------------------- /.yamllint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/glean/HEAD/.yamllint -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/glean/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/glean/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /Cargo.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/glean/HEAD/Cargo.lock -------------------------------------------------------------------------------- /Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/glean/HEAD/Cargo.toml -------------------------------------------------------------------------------- /DEPENDENCIES.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/glean/HEAD/DEPENDENCIES.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/glean/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/glean/HEAD/Makefile -------------------------------------------------------------------------------- /README.iOS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/glean/HEAD/README.iOS.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/glean/HEAD/README.md -------------------------------------------------------------------------------- /about.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/glean/HEAD/about.toml -------------------------------------------------------------------------------- /bin/about.md.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/glean/HEAD/bin/about.md.hbs -------------------------------------------------------------------------------- /bin/about.xml.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/glean/HEAD/bin/about.xml.hbs -------------------------------------------------------------------------------- /bin/benchmark-compare.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/glean/HEAD/bin/benchmark-compare.sh -------------------------------------------------------------------------------- /bin/build-rust-docs.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/glean/HEAD/bin/build-rust-docs.bat -------------------------------------------------------------------------------- /bin/build-rust-docs.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/glean/HEAD/bin/build-rust-docs.sh -------------------------------------------------------------------------------- /bin/build-swift-docs.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/glean/HEAD/bin/build-swift-docs.sh -------------------------------------------------------------------------------- /bin/build-win.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/glean/HEAD/bin/build-win.sh -------------------------------------------------------------------------------- /bin/build-xcframework.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/glean/HEAD/bin/build-xcframework.sh -------------------------------------------------------------------------------- /bin/check-artifact.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/glean/HEAD/bin/check-artifact.sh -------------------------------------------------------------------------------- /bin/dependency-summary.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/glean/HEAD/bin/dependency-summary.sh -------------------------------------------------------------------------------- /bin/prepare-release.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/glean/HEAD/bin/prepare-release.sh -------------------------------------------------------------------------------- /bin/publish-glean-swift.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/glean/HEAD/bin/publish-glean-swift.sh -------------------------------------------------------------------------------- /bin/run-ios-build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/glean/HEAD/bin/run-ios-build.sh -------------------------------------------------------------------------------- /bin/run-ios-sample-app-build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/glean/HEAD/bin/run-ios-sample-app-build.sh -------------------------------------------------------------------------------- /bin/run-ios-sample-app-test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/glean/HEAD/bin/run-ios-sample-app-test.sh -------------------------------------------------------------------------------- /bin/run-ios-tests.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/glean/HEAD/bin/run-ios-tests.sh -------------------------------------------------------------------------------- /bin/rust-wrapper-hack.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/glean/HEAD/bin/rust-wrapper-hack.sh -------------------------------------------------------------------------------- /bin/spellcheck.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/glean/HEAD/bin/spellcheck.sh -------------------------------------------------------------------------------- /bin/update-glean-parser-version.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/glean/HEAD/bin/update-glean-parser-version.sh -------------------------------------------------------------------------------- /bin/update-schema.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/glean/HEAD/bin/update-schema.sh -------------------------------------------------------------------------------- /bin/update-xcode-version.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/glean/HEAD/bin/update-xcode-version.sh -------------------------------------------------------------------------------- /deny.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/glean/HEAD/deny.toml -------------------------------------------------------------------------------- /docs/dev/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/glean/HEAD/docs/dev/README.md -------------------------------------------------------------------------------- /docs/dev/SUMMARY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/glean/HEAD/docs/dev/SUMMARY.md -------------------------------------------------------------------------------- /docs/dev/android/development-with-mozilla-central.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/glean/HEAD/docs/dev/android/development-with-mozilla-central.md -------------------------------------------------------------------------------- /docs/dev/android/glean-parser-substitution.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/glean/HEAD/docs/dev/android/glean-parser-substitution.md -------------------------------------------------------------------------------- /docs/dev/android/gradle-plugin-in-mc.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/glean/HEAD/docs/dev/android/gradle-plugin-in-mc.md -------------------------------------------------------------------------------- /docs/dev/android/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/glean/HEAD/docs/dev/android/index.md -------------------------------------------------------------------------------- /docs/dev/android/logging.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/glean/HEAD/docs/dev/android/logging.md -------------------------------------------------------------------------------- /docs/dev/android/sdk-ndk-versions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/glean/HEAD/docs/dev/android/sdk-ndk-versions.md -------------------------------------------------------------------------------- /docs/dev/android/setup-android-build-environment.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/glean/HEAD/docs/dev/android/setup-android-build-environment.md -------------------------------------------------------------------------------- /docs/dev/api/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/glean/HEAD/docs/dev/api/index.md -------------------------------------------------------------------------------- /docs/dev/book.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/glean/HEAD/docs/dev/book.toml -------------------------------------------------------------------------------- /docs/dev/ci.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/glean/HEAD/docs/dev/ci.md -------------------------------------------------------------------------------- /docs/dev/code_coverage.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/glean/HEAD/docs/dev/code_coverage.md -------------------------------------------------------------------------------- /docs/dev/contributing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/glean/HEAD/docs/dev/contributing.md -------------------------------------------------------------------------------- /docs/dev/core/dependency-management.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/glean/HEAD/docs/dev/core/dependency-management.md -------------------------------------------------------------------------------- /docs/dev/core/dependency-vetting.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/glean/HEAD/docs/dev/core/dependency-vetting.md -------------------------------------------------------------------------------- /docs/dev/core/documentation-guidelines.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/glean/HEAD/docs/dev/core/documentation-guidelines.md -------------------------------------------------------------------------------- /docs/dev/core/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/glean/HEAD/docs/dev/core/index.md -------------------------------------------------------------------------------- /docs/dev/core/internal/benchmarks.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/glean/HEAD/docs/dev/core/internal/benchmarks.md -------------------------------------------------------------------------------- /docs/dev/core/internal/clearing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/glean/HEAD/docs/dev/core/internal/clearing.md -------------------------------------------------------------------------------- /docs/dev/core/internal/client_id_recovery.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/glean/HEAD/docs/dev/core/internal/client_id_recovery.md -------------------------------------------------------------------------------- /docs/dev/core/internal/database.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/glean/HEAD/docs/dev/core/internal/database.md -------------------------------------------------------------------------------- /docs/dev/core/internal/debug-pings.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/glean/HEAD/docs/dev/core/internal/debug-pings.md -------------------------------------------------------------------------------- /docs/dev/core/internal/directory-structure.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/glean/HEAD/docs/dev/core/internal/directory-structure.md -------------------------------------------------------------------------------- /docs/dev/core/internal/implementations.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/glean/HEAD/docs/dev/core/internal/implementations.md -------------------------------------------------------------------------------- /docs/dev/core/internal/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/glean/HEAD/docs/dev/core/internal/index.md -------------------------------------------------------------------------------- /docs/dev/core/internal/payload.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/glean/HEAD/docs/dev/core/internal/payload.md -------------------------------------------------------------------------------- /docs/dev/core/internal/reserved-ping-names.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/glean/HEAD/docs/dev/core/internal/reserved-ping-names.md -------------------------------------------------------------------------------- /docs/dev/core/internal/upload.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/glean/HEAD/docs/dev/core/internal/upload.md -------------------------------------------------------------------------------- /docs/dev/core/logging-levels.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/glean/HEAD/docs/dev/core/logging-levels.md -------------------------------------------------------------------------------- /docs/dev/core/new-metric-type.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/glean/HEAD/docs/dev/core/new-metric-type.md -------------------------------------------------------------------------------- /docs/dev/core/new-metric-type/kotlin.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/glean/HEAD/docs/dev/core/new-metric-type/kotlin.md -------------------------------------------------------------------------------- /docs/dev/core/new-metric-type/platform.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/glean/HEAD/docs/dev/core/new-metric-type/platform.md -------------------------------------------------------------------------------- /docs/dev/core/new-metric-type/python.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/glean/HEAD/docs/dev/core/new-metric-type/python.md -------------------------------------------------------------------------------- /docs/dev/core/new-metric-type/rust.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/glean/HEAD/docs/dev/core/new-metric-type/rust.md -------------------------------------------------------------------------------- /docs/dev/core/new-metric-type/swift.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/glean/HEAD/docs/dev/core/new-metric-type/swift.md -------------------------------------------------------------------------------- /docs/dev/cut-a-new-release.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/glean/HEAD/docs/dev/cut-a-new-release.md -------------------------------------------------------------------------------- /docs/dev/docs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/glean/HEAD/docs/dev/docs.md -------------------------------------------------------------------------------- /docs/dev/glean.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/glean/HEAD/docs/dev/glean.jpeg -------------------------------------------------------------------------------- /docs/dev/ios/debug-glean-on-ios.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/glean/HEAD/docs/dev/ios/debug-glean-on-ios.md -------------------------------------------------------------------------------- /docs/dev/ios/glean-parser-substitution.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/glean/HEAD/docs/dev/ios/glean-parser-substitution.md -------------------------------------------------------------------------------- /docs/dev/ios/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/glean/HEAD/docs/dev/ios/index.md -------------------------------------------------------------------------------- /docs/dev/ios/setup-ios-build-environment.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/glean/HEAD/docs/dev/ios/setup-ios-build-environment.md -------------------------------------------------------------------------------- /docs/dev/ios/upgrading-supported-ios-platform.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/glean/HEAD/docs/dev/ios/upgrading-supported-ios-platform.md -------------------------------------------------------------------------------- /docs/dev/python/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/glean/HEAD/docs/dev/python/index.md -------------------------------------------------------------------------------- /docs/dev/python/setting-up-python-build-environment.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/glean/HEAD/docs/dev/python/setting-up-python-build-environment.md -------------------------------------------------------------------------------- /docs/dev/testing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/glean/HEAD/docs/dev/testing.md -------------------------------------------------------------------------------- /docs/dev/upgrading-glean-parser.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/glean/HEAD/docs/dev/upgrading-glean-parser.md -------------------------------------------------------------------------------- /docs/shared/blockquote-info.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/glean/HEAD/docs/shared/blockquote-info.html -------------------------------------------------------------------------------- /docs/shared/blockquote-stop.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/glean/HEAD/docs/shared/blockquote-stop.html -------------------------------------------------------------------------------- /docs/shared/blockquote-warning.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/glean/HEAD/docs/shared/blockquote-warning.html -------------------------------------------------------------------------------- /docs/shared/glean.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/glean/HEAD/docs/shared/glean.css -------------------------------------------------------------------------------- /docs/shared/mermaid-init.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/glean/HEAD/docs/shared/mermaid-init.js -------------------------------------------------------------------------------- /docs/shared/mermaid.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/glean/HEAD/docs/shared/mermaid.min.js -------------------------------------------------------------------------------- /docs/shared/tab_footer.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/glean/HEAD/docs/shared/tab_footer.md -------------------------------------------------------------------------------- /docs/shared/tab_header.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/glean/HEAD/docs/shared/tab_header.md -------------------------------------------------------------------------------- /docs/shared/tabs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/glean/HEAD/docs/shared/tabs.js -------------------------------------------------------------------------------- /docs/user/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/glean/HEAD/docs/user/README.md -------------------------------------------------------------------------------- /docs/user/SUMMARY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/glean/HEAD/docs/user/SUMMARY.md -------------------------------------------------------------------------------- /docs/user/_includes/glean-js-redirect-collected-metrics.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/glean/HEAD/docs/user/_includes/glean-js-redirect-collected-metrics.md -------------------------------------------------------------------------------- /docs/user/_includes/label-errors.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/glean/HEAD/docs/user/_includes/label-errors.md -------------------------------------------------------------------------------- /docs/user/_includes/label-limits.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/glean/HEAD/docs/user/_includes/label-limits.md -------------------------------------------------------------------------------- /docs/user/_includes/labels-parameter.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/glean/HEAD/docs/user/_includes/labels-parameter.md -------------------------------------------------------------------------------- /docs/user/_includes/lifetimes-parameters.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/glean/HEAD/docs/user/_includes/lifetimes-parameters.md -------------------------------------------------------------------------------- /docs/user/_includes/string-errors.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/glean/HEAD/docs/user/_includes/string-errors.md -------------------------------------------------------------------------------- /docs/user/_includes/string-limits.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/glean/HEAD/docs/user/_includes/string-limits.md -------------------------------------------------------------------------------- /docs/user/appendix/changelog/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/glean/HEAD/docs/user/appendix/changelog/index.md -------------------------------------------------------------------------------- /docs/user/appendix/contribution-guidelines.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/glean/HEAD/docs/user/appendix/contribution-guidelines.md -------------------------------------------------------------------------------- /docs/user/appendix/glossary.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/glean/HEAD/docs/user/appendix/glossary.md -------------------------------------------------------------------------------- /docs/user/appendix/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/glean/HEAD/docs/user/appendix/index.md -------------------------------------------------------------------------------- /docs/user/appendix/twig.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/glean/HEAD/docs/user/appendix/twig.md -------------------------------------------------------------------------------- /docs/user/book.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/glean/HEAD/docs/user/book.toml -------------------------------------------------------------------------------- /docs/user/chart-distributions-ui.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/glean/HEAD/docs/user/chart-distributions-ui.js -------------------------------------------------------------------------------- /docs/user/chart-distributions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/glean/HEAD/docs/user/chart-distributions.js -------------------------------------------------------------------------------- /docs/user/chart.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/glean/HEAD/docs/user/chart.min.js -------------------------------------------------------------------------------- /docs/user/glean.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/glean/HEAD/docs/user/glean.jpeg -------------------------------------------------------------------------------- /docs/user/highlight.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/glean/HEAD/docs/user/highlight.js -------------------------------------------------------------------------------- /docs/user/language-bindings/android/android-build-configuration-options.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/glean/HEAD/docs/user/language-bindings/android/android-build-configuration-options.md -------------------------------------------------------------------------------- /docs/user/language-bindings/android/android-offline-builds.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/glean/HEAD/docs/user/language-bindings/android/android-offline-builds.md -------------------------------------------------------------------------------- /docs/user/language-bindings/android/gecko-content-processes-and-glean.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/glean/HEAD/docs/user/language-bindings/android/gecko-content-processes-and-glean.md -------------------------------------------------------------------------------- /docs/user/language-bindings/android/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/glean/HEAD/docs/user/language-bindings/android/index.md -------------------------------------------------------------------------------- /docs/user/language-bindings/android/instrument-android-crashes-example.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/glean/HEAD/docs/user/language-bindings/android/instrument-android-crashes-example.md -------------------------------------------------------------------------------- /docs/user/language-bindings/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/glean/HEAD/docs/user/language-bindings/index.md -------------------------------------------------------------------------------- /docs/user/language-bindings/ios/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/glean/HEAD/docs/user/language-bindings/ios/index.md -------------------------------------------------------------------------------- /docs/user/language-bindings/ios/ios-build-configuration-options.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/glean/HEAD/docs/user/language-bindings/ios/ios-build-configuration-options.md -------------------------------------------------------------------------------- /docs/user/language-bindings/javascript/cli.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/glean/HEAD/docs/user/language-bindings/javascript/cli.md -------------------------------------------------------------------------------- /docs/user/language-bindings/javascript/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/glean/HEAD/docs/user/language-bindings/javascript/index.md -------------------------------------------------------------------------------- /docs/user/language-bindings/javascript/plugins/encryption.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/glean/HEAD/docs/user/language-bindings/javascript/plugins/encryption.md -------------------------------------------------------------------------------- /docs/user/language-bindings/javascript/plugins/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/glean/HEAD/docs/user/language-bindings/javascript/plugins/index.md -------------------------------------------------------------------------------- /docs/user/reference/debug/debugViewTag.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/glean/HEAD/docs/user/reference/debug/debugViewTag.md -------------------------------------------------------------------------------- /docs/user/reference/debug/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/glean/HEAD/docs/user/reference/debug/index.md -------------------------------------------------------------------------------- /docs/user/reference/debug/logPings.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/glean/HEAD/docs/user/reference/debug/logPings.md -------------------------------------------------------------------------------- /docs/user/reference/debug/screenshots/debug_view_tag_screenshot_swift.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/glean/HEAD/docs/user/reference/debug/screenshots/debug_view_tag_screenshot_swift.png -------------------------------------------------------------------------------- /docs/user/reference/debug/screenshots/log_pings_screenshot_swift.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/glean/HEAD/docs/user/reference/debug/screenshots/log_pings_screenshot_swift.png -------------------------------------------------------------------------------- /docs/user/reference/debug/screenshots/source_tags_screenshot_swift.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/glean/HEAD/docs/user/reference/debug/screenshots/source_tags_screenshot_swift.png -------------------------------------------------------------------------------- /docs/user/reference/debug/sourceTags.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/glean/HEAD/docs/user/reference/debug/sourceTags.md -------------------------------------------------------------------------------- /docs/user/reference/general/attribution-api.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/glean/HEAD/docs/user/reference/general/attribution-api.md -------------------------------------------------------------------------------- /docs/user/reference/general/experiments-api.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/glean/HEAD/docs/user/reference/general/experiments-api.md -------------------------------------------------------------------------------- /docs/user/reference/general/glean-event-listener.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/glean/HEAD/docs/user/reference/general/glean-event-listener.md -------------------------------------------------------------------------------- /docs/user/reference/general/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/glean/HEAD/docs/user/reference/general/index.md -------------------------------------------------------------------------------- /docs/user/reference/general/initializing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/glean/HEAD/docs/user/reference/general/initializing.md -------------------------------------------------------------------------------- /docs/user/reference/general/register-custom-pings.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/glean/HEAD/docs/user/reference/general/register-custom-pings.md -------------------------------------------------------------------------------- /docs/user/reference/general/shutdown.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/glean/HEAD/docs/user/reference/general/shutdown.md -------------------------------------------------------------------------------- /docs/user/reference/general/toggling-collection-status.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/glean/HEAD/docs/user/reference/general/toggling-collection-status.md -------------------------------------------------------------------------------- /docs/user/reference/metrics/boolean.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/glean/HEAD/docs/user/reference/metrics/boolean.md -------------------------------------------------------------------------------- /docs/user/reference/metrics/counter.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/glean/HEAD/docs/user/reference/metrics/counter.md -------------------------------------------------------------------------------- /docs/user/reference/metrics/custom_distribution.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/glean/HEAD/docs/user/reference/metrics/custom_distribution.md -------------------------------------------------------------------------------- /docs/user/reference/metrics/datetime.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/glean/HEAD/docs/user/reference/metrics/datetime.md -------------------------------------------------------------------------------- /docs/user/reference/metrics/dual_labeled_counters.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/glean/HEAD/docs/user/reference/metrics/dual_labeled_counters.md -------------------------------------------------------------------------------- /docs/user/reference/metrics/event.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/glean/HEAD/docs/user/reference/metrics/event.md -------------------------------------------------------------------------------- /docs/user/reference/metrics/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/glean/HEAD/docs/user/reference/metrics/index.md -------------------------------------------------------------------------------- /docs/user/reference/metrics/labeled_booleans.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/glean/HEAD/docs/user/reference/metrics/labeled_booleans.md -------------------------------------------------------------------------------- /docs/user/reference/metrics/labeled_counters.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/glean/HEAD/docs/user/reference/metrics/labeled_counters.md -------------------------------------------------------------------------------- /docs/user/reference/metrics/labeled_custom_distributions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/glean/HEAD/docs/user/reference/metrics/labeled_custom_distributions.md -------------------------------------------------------------------------------- /docs/user/reference/metrics/labeled_memory_distributions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/glean/HEAD/docs/user/reference/metrics/labeled_memory_distributions.md -------------------------------------------------------------------------------- /docs/user/reference/metrics/labeled_quantity.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/glean/HEAD/docs/user/reference/metrics/labeled_quantity.md -------------------------------------------------------------------------------- /docs/user/reference/metrics/labeled_strings.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/glean/HEAD/docs/user/reference/metrics/labeled_strings.md -------------------------------------------------------------------------------- /docs/user/reference/metrics/labeled_timing_distributions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/glean/HEAD/docs/user/reference/metrics/labeled_timing_distributions.md -------------------------------------------------------------------------------- /docs/user/reference/metrics/memory_distribution.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/glean/HEAD/docs/user/reference/metrics/memory_distribution.md -------------------------------------------------------------------------------- /docs/user/reference/metrics/object.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/glean/HEAD/docs/user/reference/metrics/object.md -------------------------------------------------------------------------------- /docs/user/reference/metrics/quantity.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/glean/HEAD/docs/user/reference/metrics/quantity.md -------------------------------------------------------------------------------- /docs/user/reference/metrics/rate.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/glean/HEAD/docs/user/reference/metrics/rate.md -------------------------------------------------------------------------------- /docs/user/reference/metrics/string.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/glean/HEAD/docs/user/reference/metrics/string.md -------------------------------------------------------------------------------- /docs/user/reference/metrics/string_list.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/glean/HEAD/docs/user/reference/metrics/string_list.md -------------------------------------------------------------------------------- /docs/user/reference/metrics/text.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/glean/HEAD/docs/user/reference/metrics/text.md -------------------------------------------------------------------------------- /docs/user/reference/metrics/timespan.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/glean/HEAD/docs/user/reference/metrics/timespan.md -------------------------------------------------------------------------------- /docs/user/reference/metrics/timing_distribution.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/glean/HEAD/docs/user/reference/metrics/timing_distribution.md -------------------------------------------------------------------------------- /docs/user/reference/metrics/url.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/glean/HEAD/docs/user/reference/metrics/url.md -------------------------------------------------------------------------------- /docs/user/reference/metrics/uuid.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/glean/HEAD/docs/user/reference/metrics/uuid.md -------------------------------------------------------------------------------- /docs/user/reference/pings/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/glean/HEAD/docs/user/reference/pings/index.md -------------------------------------------------------------------------------- /docs/user/reference/yaml/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/glean/HEAD/docs/user/reference/yaml/index.md -------------------------------------------------------------------------------- /docs/user/reference/yaml/metrics.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/glean/HEAD/docs/user/reference/yaml/metrics.md -------------------------------------------------------------------------------- /docs/user/reference/yaml/pings.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/glean/HEAD/docs/user/reference/yaml/pings.md -------------------------------------------------------------------------------- /docs/user/reference/yaml/tags.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/glean/HEAD/docs/user/reference/yaml/tags.md -------------------------------------------------------------------------------- /docs/user/user/adding-glean-to-your-project/enable-data-ingestion.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/glean/HEAD/docs/user/user/adding-glean-to-your-project/enable-data-ingestion.md -------------------------------------------------------------------------------- /docs/user/user/adding-glean-to-your-project/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/glean/HEAD/docs/user/user/adding-glean-to-your-project/index.md -------------------------------------------------------------------------------- /docs/user/user/adding-glean-to-your-project/javascript.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/glean/HEAD/docs/user/user/adding-glean-to-your-project/javascript.md -------------------------------------------------------------------------------- /docs/user/user/adding-glean-to-your-project/kotlin.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/glean/HEAD/docs/user/user/adding-glean-to-your-project/kotlin.md -------------------------------------------------------------------------------- /docs/user/user/adding-glean-to-your-project/python.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/glean/HEAD/docs/user/user/adding-glean-to-your-project/python.md -------------------------------------------------------------------------------- /docs/user/user/adding-glean-to-your-project/qt.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/glean/HEAD/docs/user/user/adding-glean-to-your-project/qt.md -------------------------------------------------------------------------------- /docs/user/user/adding-glean-to-your-project/rust.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/glean/HEAD/docs/user/user/adding-glean-to-your-project/rust.md -------------------------------------------------------------------------------- /docs/user/user/adding-glean-to-your-project/server.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/glean/HEAD/docs/user/user/adding-glean-to-your-project/server.md -------------------------------------------------------------------------------- /docs/user/user/adding-glean-to-your-project/swift.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/glean/HEAD/docs/user/user/adding-glean-to-your-project/swift.md -------------------------------------------------------------------------------- /docs/user/user/collected-metrics/metrics.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/glean/HEAD/docs/user/user/collected-metrics/metrics.md -------------------------------------------------------------------------------- /docs/user/user/debugging/android.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/glean/HEAD/docs/user/user/debugging/android.md -------------------------------------------------------------------------------- /docs/user/user/debugging/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/glean/HEAD/docs/user/user/debugging/index.md -------------------------------------------------------------------------------- /docs/user/user/debugging/ios.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/glean/HEAD/docs/user/user/debugging/ios.md -------------------------------------------------------------------------------- /docs/user/user/debugging/javascript.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/glean/HEAD/docs/user/user/debugging/javascript.md -------------------------------------------------------------------------------- /docs/user/user/debugging/python.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/glean/HEAD/docs/user/user/debugging/python.md -------------------------------------------------------------------------------- /docs/user/user/howto/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/glean/HEAD/docs/user/user/howto/index.md -------------------------------------------------------------------------------- /docs/user/user/howto/investigating-data-issues/investigating-data-issues.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/glean/HEAD/docs/user/user/howto/investigating-data-issues/investigating-data-issues.md -------------------------------------------------------------------------------- /docs/user/user/howto/real-time-events/real-time-events.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/glean/HEAD/docs/user/user/howto/real-time-events/real-time-events.md -------------------------------------------------------------------------------- /docs/user/user/howto/server-knobs-walkthrough/images/sk_walkthrough_image1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/glean/HEAD/docs/user/user/howto/server-knobs-walkthrough/images/sk_walkthrough_image1.png -------------------------------------------------------------------------------- /docs/user/user/howto/server-knobs-walkthrough/images/sk_walkthrough_image10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/glean/HEAD/docs/user/user/howto/server-knobs-walkthrough/images/sk_walkthrough_image10.png -------------------------------------------------------------------------------- /docs/user/user/howto/server-knobs-walkthrough/images/sk_walkthrough_image11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/glean/HEAD/docs/user/user/howto/server-knobs-walkthrough/images/sk_walkthrough_image11.png -------------------------------------------------------------------------------- /docs/user/user/howto/server-knobs-walkthrough/images/sk_walkthrough_image12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/glean/HEAD/docs/user/user/howto/server-knobs-walkthrough/images/sk_walkthrough_image12.png -------------------------------------------------------------------------------- /docs/user/user/howto/server-knobs-walkthrough/images/sk_walkthrough_image13.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/glean/HEAD/docs/user/user/howto/server-knobs-walkthrough/images/sk_walkthrough_image13.png -------------------------------------------------------------------------------- /docs/user/user/howto/server-knobs-walkthrough/images/sk_walkthrough_image14.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/glean/HEAD/docs/user/user/howto/server-knobs-walkthrough/images/sk_walkthrough_image14.png -------------------------------------------------------------------------------- /docs/user/user/howto/server-knobs-walkthrough/images/sk_walkthrough_image15.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/glean/HEAD/docs/user/user/howto/server-knobs-walkthrough/images/sk_walkthrough_image15.png -------------------------------------------------------------------------------- /docs/user/user/howto/server-knobs-walkthrough/images/sk_walkthrough_image16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/glean/HEAD/docs/user/user/howto/server-knobs-walkthrough/images/sk_walkthrough_image16.png -------------------------------------------------------------------------------- /docs/user/user/howto/server-knobs-walkthrough/images/sk_walkthrough_image17.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/glean/HEAD/docs/user/user/howto/server-knobs-walkthrough/images/sk_walkthrough_image17.png -------------------------------------------------------------------------------- /docs/user/user/howto/server-knobs-walkthrough/images/sk_walkthrough_image18.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/glean/HEAD/docs/user/user/howto/server-knobs-walkthrough/images/sk_walkthrough_image18.png -------------------------------------------------------------------------------- /docs/user/user/howto/server-knobs-walkthrough/images/sk_walkthrough_image19.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/glean/HEAD/docs/user/user/howto/server-knobs-walkthrough/images/sk_walkthrough_image19.png -------------------------------------------------------------------------------- /docs/user/user/howto/server-knobs-walkthrough/images/sk_walkthrough_image2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/glean/HEAD/docs/user/user/howto/server-knobs-walkthrough/images/sk_walkthrough_image2.png -------------------------------------------------------------------------------- /docs/user/user/howto/server-knobs-walkthrough/images/sk_walkthrough_image20.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/glean/HEAD/docs/user/user/howto/server-knobs-walkthrough/images/sk_walkthrough_image20.png -------------------------------------------------------------------------------- /docs/user/user/howto/server-knobs-walkthrough/images/sk_walkthrough_image21.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/glean/HEAD/docs/user/user/howto/server-knobs-walkthrough/images/sk_walkthrough_image21.png -------------------------------------------------------------------------------- /docs/user/user/howto/server-knobs-walkthrough/images/sk_walkthrough_image3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/glean/HEAD/docs/user/user/howto/server-knobs-walkthrough/images/sk_walkthrough_image3.png -------------------------------------------------------------------------------- /docs/user/user/howto/server-knobs-walkthrough/images/sk_walkthrough_image4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/glean/HEAD/docs/user/user/howto/server-knobs-walkthrough/images/sk_walkthrough_image4.png -------------------------------------------------------------------------------- /docs/user/user/howto/server-knobs-walkthrough/images/sk_walkthrough_image5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/glean/HEAD/docs/user/user/howto/server-knobs-walkthrough/images/sk_walkthrough_image5.png -------------------------------------------------------------------------------- /docs/user/user/howto/server-knobs-walkthrough/images/sk_walkthrough_image6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/glean/HEAD/docs/user/user/howto/server-knobs-walkthrough/images/sk_walkthrough_image6.png -------------------------------------------------------------------------------- /docs/user/user/howto/server-knobs-walkthrough/images/sk_walkthrough_image7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/glean/HEAD/docs/user/user/howto/server-knobs-walkthrough/images/sk_walkthrough_image7.png -------------------------------------------------------------------------------- /docs/user/user/howto/server-knobs-walkthrough/images/sk_walkthrough_image8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/glean/HEAD/docs/user/user/howto/server-knobs-walkthrough/images/sk_walkthrough_image8.png -------------------------------------------------------------------------------- /docs/user/user/howto/server-knobs-walkthrough/images/sk_walkthrough_image9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/glean/HEAD/docs/user/user/howto/server-knobs-walkthrough/images/sk_walkthrough_image9.png -------------------------------------------------------------------------------- /docs/user/user/howto/server-knobs-walkthrough/server-knobs-walkthrough.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/glean/HEAD/docs/user/user/howto/server-knobs-walkthrough/server-knobs-walkthrough.md -------------------------------------------------------------------------------- /docs/user/user/integrating-glean-for-product-managers.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/glean/HEAD/docs/user/user/integrating-glean-for-product-managers.md -------------------------------------------------------------------------------- /docs/user/user/metric-lifetime-timeline.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/glean/HEAD/docs/user/user/metric-lifetime-timeline.svg -------------------------------------------------------------------------------- /docs/user/user/metrics/adding-new-metrics.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/glean/HEAD/docs/user/user/metrics/adding-new-metrics.md -------------------------------------------------------------------------------- /docs/user/user/metrics/error-reporting.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/glean/HEAD/docs/user/user/metrics/error-reporting.md -------------------------------------------------------------------------------- /docs/user/user/metrics/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/glean/HEAD/docs/user/user/metrics/index.md -------------------------------------------------------------------------------- /docs/user/user/metrics/testing-metrics.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/glean/HEAD/docs/user/user/metrics/testing-metrics.md -------------------------------------------------------------------------------- /docs/user/user/metrics/validation-checklist.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/glean/HEAD/docs/user/user/metrics/validation-checklist.md -------------------------------------------------------------------------------- /docs/user/user/pings/baseline.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/glean/HEAD/docs/user/user/pings/baseline.md -------------------------------------------------------------------------------- /docs/user/user/pings/custom.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/glean/HEAD/docs/user/user/pings/custom.md -------------------------------------------------------------------------------- /docs/user/user/pings/deletion-request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/glean/HEAD/docs/user/user/pings/deletion-request.md -------------------------------------------------------------------------------- /docs/user/user/pings/events.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/glean/HEAD/docs/user/user/pings/events.md -------------------------------------------------------------------------------- /docs/user/user/pings/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/glean/HEAD/docs/user/user/pings/index.md -------------------------------------------------------------------------------- /docs/user/user/pings/metrics.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/glean/HEAD/docs/user/user/pings/metrics.md -------------------------------------------------------------------------------- /docs/user/user/pings/ping-schedules-and-timings.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/glean/HEAD/docs/user/user/pings/ping-schedules-and-timings.md -------------------------------------------------------------------------------- /docs/user/user/pings/ping_timing.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/glean/HEAD/docs/user/user/pings/ping_timing.svg -------------------------------------------------------------------------------- /docs/user/user/pings/sent-by-glean.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/glean/HEAD/docs/user/user/pings/sent-by-glean.md -------------------------------------------------------------------------------- /docs/user/user/pings/testing-custom-pings.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/glean/HEAD/docs/user/user/pings/testing-custom-pings.md -------------------------------------------------------------------------------- /docs/user/user/server-knobs/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/glean/HEAD/docs/user/user/server-knobs/index.md -------------------------------------------------------------------------------- /docs/user/user/server-knobs/metrics/advanced-topics.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/glean/HEAD/docs/user/user/server-knobs/metrics/advanced-topics.md -------------------------------------------------------------------------------- /docs/user/user/server-knobs/metrics/example-scenarios.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/glean/HEAD/docs/user/user/server-knobs/metrics/example-scenarios.md -------------------------------------------------------------------------------- /docs/user/user/server-knobs/metrics/experimenter-configuration.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/glean/HEAD/docs/user/user/server-knobs/metrics/experimenter-configuration.md -------------------------------------------------------------------------------- /docs/user/user/server-knobs/metrics/faq.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/glean/HEAD/docs/user/user/server-knobs/metrics/faq.md -------------------------------------------------------------------------------- /docs/user/user/server-knobs/metrics/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/glean/HEAD/docs/user/user/server-knobs/metrics/index.md -------------------------------------------------------------------------------- /docs/user/user/server-knobs/metrics/product-integration.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/glean/HEAD/docs/user/user/server-knobs/metrics/product-integration.md -------------------------------------------------------------------------------- /docs/user/user/server-knobs/other/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/glean/HEAD/docs/user/user/server-knobs/other/index.md -------------------------------------------------------------------------------- /docs/user/user/server-knobs/other/max-events.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/glean/HEAD/docs/user/user/server-knobs/other/max-events.md -------------------------------------------------------------------------------- /docs/user/user/server-knobs/pings/experimenter-configuration.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/glean/HEAD/docs/user/user/server-knobs/pings/experimenter-configuration.md -------------------------------------------------------------------------------- /docs/user/user/server-knobs/pings/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/glean/HEAD/docs/user/user/server-knobs/pings/index.md -------------------------------------------------------------------------------- /docs/user/user/server-knobs/pings/product-integration.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/glean/HEAD/docs/user/user/server-knobs/pings/product-integration.md -------------------------------------------------------------------------------- /glean-core/ARCHITECTURE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/glean/HEAD/glean-core/ARCHITECTURE.md -------------------------------------------------------------------------------- /glean-core/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/glean/HEAD/glean-core/Cargo.toml -------------------------------------------------------------------------------- /glean-core/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/glean/HEAD/glean-core/LICENSE -------------------------------------------------------------------------------- /glean-core/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/glean/HEAD/glean-core/README.md -------------------------------------------------------------------------------- /glean-core/android-native/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/glean/HEAD/glean-core/android-native/build.gradle -------------------------------------------------------------------------------- /glean-core/android-native/dependency-licenses.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/glean/HEAD/glean-core/android-native/dependency-licenses.xml -------------------------------------------------------------------------------- /glean-core/android-native/proguard-rules-consumer.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/glean/HEAD/glean-core/android-native/proguard-rules-consumer.pro -------------------------------------------------------------------------------- /glean-core/android-native/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/glean/HEAD/glean-core/android-native/proguard-rules.pro -------------------------------------------------------------------------------- /glean-core/android-native/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/glean/HEAD/glean-core/android-native/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /glean-core/android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/glean/HEAD/glean-core/android/build.gradle -------------------------------------------------------------------------------- /glean-core/android/dependency-licenses.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/glean/HEAD/glean-core/android/dependency-licenses.xml -------------------------------------------------------------------------------- /glean-core/android/metrics.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/glean/HEAD/glean-core/android/metrics.yaml -------------------------------------------------------------------------------- /glean-core/android/proguard-rules-consumer.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/glean/HEAD/glean-core/android/proguard-rules-consumer.pro -------------------------------------------------------------------------------- /glean-core/android/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/glean/HEAD/glean-core/android/proguard-rules.pro -------------------------------------------------------------------------------- /glean-core/android/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/glean/HEAD/glean-core/android/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /glean-core/android/src/main/java/mozilla/telemetry/glean/Dispatchers.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/glean/HEAD/glean-core/android/src/main/java/mozilla/telemetry/glean/Dispatchers.kt -------------------------------------------------------------------------------- /glean-core/android/src/main/java/mozilla/telemetry/glean/Glean.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/glean/HEAD/glean-core/android/src/main/java/mozilla/telemetry/glean/Glean.kt -------------------------------------------------------------------------------- /glean-core/android/src/main/java/mozilla/telemetry/glean/config/Configuration.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/glean/HEAD/glean-core/android/src/main/java/mozilla/telemetry/glean/config/Configuration.kt -------------------------------------------------------------------------------- /glean-core/android/src/main/java/mozilla/telemetry/glean/debug/GleanDebugActivity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/glean/HEAD/glean-core/android/src/main/java/mozilla/telemetry/glean/debug/GleanDebugActivity.kt -------------------------------------------------------------------------------- /glean-core/android/src/main/java/mozilla/telemetry/glean/net/BaseUploader.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/glean/HEAD/glean-core/android/src/main/java/mozilla/telemetry/glean/net/BaseUploader.kt -------------------------------------------------------------------------------- /glean-core/android/src/main/java/mozilla/telemetry/glean/net/HttpURLConnectionUploader.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/glean/HEAD/glean-core/android/src/main/java/mozilla/telemetry/glean/net/HttpURLConnectionUploader.kt -------------------------------------------------------------------------------- /glean-core/android/src/main/java/mozilla/telemetry/glean/net/PingUploader.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/glean/HEAD/glean-core/android/src/main/java/mozilla/telemetry/glean/net/PingUploader.kt -------------------------------------------------------------------------------- /glean-core/android/src/main/java/mozilla/telemetry/glean/net/Upload.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/glean/HEAD/glean-core/android/src/main/java/mozilla/telemetry/glean/net/Upload.kt -------------------------------------------------------------------------------- /glean-core/android/src/main/java/mozilla/telemetry/glean/private/Aliases.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/glean/HEAD/glean-core/android/src/main/java/mozilla/telemetry/glean/private/Aliases.kt -------------------------------------------------------------------------------- /glean-core/android/src/main/java/mozilla/telemetry/glean/private/BooleanMetricType.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/glean/HEAD/glean-core/android/src/main/java/mozilla/telemetry/glean/private/BooleanMetricType.kt -------------------------------------------------------------------------------- /glean-core/android/src/main/java/mozilla/telemetry/glean/private/CounterMetricType.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/glean/HEAD/glean-core/android/src/main/java/mozilla/telemetry/glean/private/CounterMetricType.kt -------------------------------------------------------------------------------- /glean-core/android/src/main/java/mozilla/telemetry/glean/private/CustomDistributionMetricType.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/glean/HEAD/glean-core/android/src/main/java/mozilla/telemetry/glean/private/CustomDistributionMetricType.kt -------------------------------------------------------------------------------- /glean-core/android/src/main/java/mozilla/telemetry/glean/private/DatetimeMetricType.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/glean/HEAD/glean-core/android/src/main/java/mozilla/telemetry/glean/private/DatetimeMetricType.kt -------------------------------------------------------------------------------- /glean-core/android/src/main/java/mozilla/telemetry/glean/private/DenominatorMetricType.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/glean/HEAD/glean-core/android/src/main/java/mozilla/telemetry/glean/private/DenominatorMetricType.kt -------------------------------------------------------------------------------- /glean-core/android/src/main/java/mozilla/telemetry/glean/private/EventMetricType.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/glean/HEAD/glean-core/android/src/main/java/mozilla/telemetry/glean/private/EventMetricType.kt -------------------------------------------------------------------------------- /glean-core/android/src/main/java/mozilla/telemetry/glean/private/HistogramBase.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/glean/HEAD/glean-core/android/src/main/java/mozilla/telemetry/glean/private/HistogramBase.kt -------------------------------------------------------------------------------- /glean-core/android/src/main/java/mozilla/telemetry/glean/private/LabeledMetricType.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/glean/HEAD/glean-core/android/src/main/java/mozilla/telemetry/glean/private/LabeledMetricType.kt -------------------------------------------------------------------------------- /glean-core/android/src/main/java/mozilla/telemetry/glean/private/MemoryDistributionMetricType.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/glean/HEAD/glean-core/android/src/main/java/mozilla/telemetry/glean/private/MemoryDistributionMetricType.kt -------------------------------------------------------------------------------- /glean-core/android/src/main/java/mozilla/telemetry/glean/private/NumeratorMetricType.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/glean/HEAD/glean-core/android/src/main/java/mozilla/telemetry/glean/private/NumeratorMetricType.kt -------------------------------------------------------------------------------- /glean-core/android/src/main/java/mozilla/telemetry/glean/private/ObjectMetricType.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/glean/HEAD/glean-core/android/src/main/java/mozilla/telemetry/glean/private/ObjectMetricType.kt -------------------------------------------------------------------------------- /glean-core/android/src/main/java/mozilla/telemetry/glean/private/PingType.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/glean/HEAD/glean-core/android/src/main/java/mozilla/telemetry/glean/private/PingType.kt -------------------------------------------------------------------------------- /glean-core/android/src/main/java/mozilla/telemetry/glean/private/QuantityMetricType.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/glean/HEAD/glean-core/android/src/main/java/mozilla/telemetry/glean/private/QuantityMetricType.kt -------------------------------------------------------------------------------- /glean-core/android/src/main/java/mozilla/telemetry/glean/private/RateMetricType.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/glean/HEAD/glean-core/android/src/main/java/mozilla/telemetry/glean/private/RateMetricType.kt -------------------------------------------------------------------------------- /glean-core/android/src/main/java/mozilla/telemetry/glean/private/StringListMetricType.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/glean/HEAD/glean-core/android/src/main/java/mozilla/telemetry/glean/private/StringListMetricType.kt -------------------------------------------------------------------------------- /glean-core/android/src/main/java/mozilla/telemetry/glean/private/StringMetricType.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/glean/HEAD/glean-core/android/src/main/java/mozilla/telemetry/glean/private/StringMetricType.kt -------------------------------------------------------------------------------- /glean-core/android/src/main/java/mozilla/telemetry/glean/private/TextMetricType.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/glean/HEAD/glean-core/android/src/main/java/mozilla/telemetry/glean/private/TextMetricType.kt -------------------------------------------------------------------------------- /glean-core/android/src/main/java/mozilla/telemetry/glean/private/TimespanMetricType.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/glean/HEAD/glean-core/android/src/main/java/mozilla/telemetry/glean/private/TimespanMetricType.kt -------------------------------------------------------------------------------- /glean-core/android/src/main/java/mozilla/telemetry/glean/private/TimingDistributionMetricType.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/glean/HEAD/glean-core/android/src/main/java/mozilla/telemetry/glean/private/TimingDistributionMetricType.kt -------------------------------------------------------------------------------- /glean-core/android/src/main/java/mozilla/telemetry/glean/private/UrlMetricType.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/glean/HEAD/glean-core/android/src/main/java/mozilla/telemetry/glean/private/UrlMetricType.kt -------------------------------------------------------------------------------- /glean-core/android/src/main/java/mozilla/telemetry/glean/private/UuidMetricType.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/glean/HEAD/glean-core/android/src/main/java/mozilla/telemetry/glean/private/UuidMetricType.kt -------------------------------------------------------------------------------- /glean-core/android/src/main/java/mozilla/telemetry/glean/scheduler/GleanLifecycleObserver.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/glean/HEAD/glean-core/android/src/main/java/mozilla/telemetry/glean/scheduler/GleanLifecycleObserver.kt -------------------------------------------------------------------------------- /glean-core/android/src/main/java/mozilla/telemetry/glean/scheduler/MetricsPingScheduler.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/glean/HEAD/glean-core/android/src/main/java/mozilla/telemetry/glean/scheduler/MetricsPingScheduler.kt -------------------------------------------------------------------------------- /glean-core/android/src/main/java/mozilla/telemetry/glean/scheduler/PingUploadWorker.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/glean/HEAD/glean-core/android/src/main/java/mozilla/telemetry/glean/scheduler/PingUploadWorker.kt -------------------------------------------------------------------------------- /glean-core/android/src/main/java/mozilla/telemetry/glean/testing/ErrorType.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/glean/HEAD/glean-core/android/src/main/java/mozilla/telemetry/glean/testing/ErrorType.kt -------------------------------------------------------------------------------- /glean-core/android/src/main/java/mozilla/telemetry/glean/testing/GleanTestLocalServer.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/glean/HEAD/glean-core/android/src/main/java/mozilla/telemetry/glean/testing/GleanTestLocalServer.kt -------------------------------------------------------------------------------- /glean-core/android/src/main/java/mozilla/telemetry/glean/testing/GleanTestRule.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/glean/HEAD/glean-core/android/src/main/java/mozilla/telemetry/glean/testing/GleanTestRule.kt -------------------------------------------------------------------------------- /glean-core/android/src/main/java/mozilla/telemetry/glean/utils/DataPathUtils.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/glean/HEAD/glean-core/android/src/main/java/mozilla/telemetry/glean/utils/DataPathUtils.kt -------------------------------------------------------------------------------- /glean-core/android/src/main/java/mozilla/telemetry/glean/utils/DateUtils.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/glean/HEAD/glean-core/android/src/main/java/mozilla/telemetry/glean/utils/DateUtils.kt -------------------------------------------------------------------------------- /glean-core/android/src/main/java/mozilla/telemetry/glean/utils/GzipUtils.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/glean/HEAD/glean-core/android/src/main/java/mozilla/telemetry/glean/utils/GzipUtils.kt -------------------------------------------------------------------------------- /glean-core/android/src/main/java/mozilla/telemetry/glean/utils/JsonUtils.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/glean/HEAD/glean-core/android/src/main/java/mozilla/telemetry/glean/utils/JsonUtils.kt -------------------------------------------------------------------------------- /glean-core/android/src/main/java/mozilla/telemetry/glean/utils/LocaleUtils.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/glean/HEAD/glean-core/android/src/main/java/mozilla/telemetry/glean/utils/LocaleUtils.kt -------------------------------------------------------------------------------- /glean-core/android/src/main/java/mozilla/telemetry/glean/utils/ThreadUtils.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/glean/HEAD/glean-core/android/src/main/java/mozilla/telemetry/glean/utils/ThreadUtils.kt -------------------------------------------------------------------------------- /glean-core/android/src/main/java/mozilla/telemetry/glean/utils/WorkManagerUtils.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/glean/HEAD/glean-core/android/src/main/java/mozilla/telemetry/glean/utils/WorkManagerUtils.kt -------------------------------------------------------------------------------- /glean-core/android/src/test/java/android/util/Log.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/glean/HEAD/glean-core/android/src/test/java/android/util/Log.java -------------------------------------------------------------------------------- /glean-core/android/src/test/java/mozilla/telemetry/glean/GleanFromJavaTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/glean/HEAD/glean-core/android/src/test/java/mozilla/telemetry/glean/GleanFromJavaTest.java -------------------------------------------------------------------------------- /glean-core/android/src/test/java/mozilla/telemetry/glean/GleanTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/glean/HEAD/glean-core/android/src/test/java/mozilla/telemetry/glean/GleanTest.kt -------------------------------------------------------------------------------- /glean-core/android/src/test/java/mozilla/telemetry/glean/TestUtil.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/glean/HEAD/glean-core/android/src/test/java/mozilla/telemetry/glean/TestUtil.kt -------------------------------------------------------------------------------- /glean-core/android/src/test/java/mozilla/telemetry/glean/debug/GleanDebugActivityTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/glean/HEAD/glean-core/android/src/test/java/mozilla/telemetry/glean/debug/GleanDebugActivityTest.kt -------------------------------------------------------------------------------- /glean-core/android/src/test/java/mozilla/telemetry/glean/net/BaseUploaderTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/glean/HEAD/glean-core/android/src/test/java/mozilla/telemetry/glean/net/BaseUploaderTest.kt -------------------------------------------------------------------------------- /glean-core/android/src/test/java/mozilla/telemetry/glean/net/HttpURLConnectionUploaderTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/glean/HEAD/glean-core/android/src/test/java/mozilla/telemetry/glean/net/HttpURLConnectionUploaderTest.kt -------------------------------------------------------------------------------- /glean-core/android/src/test/java/mozilla/telemetry/glean/pings/CustomPingTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/glean/HEAD/glean-core/android/src/test/java/mozilla/telemetry/glean/pings/CustomPingTest.kt -------------------------------------------------------------------------------- /glean-core/android/src/test/java/mozilla/telemetry/glean/pings/DeletionPingTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/glean/HEAD/glean-core/android/src/test/java/mozilla/telemetry/glean/pings/DeletionPingTest.kt -------------------------------------------------------------------------------- /glean-core/android/src/test/java/mozilla/telemetry/glean/pings/RidealongPingTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/glean/HEAD/glean-core/android/src/test/java/mozilla/telemetry/glean/pings/RidealongPingTest.kt -------------------------------------------------------------------------------- /glean-core/android/src/test/java/mozilla/telemetry/glean/private/AccumulationsBeforeGleanInitTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/glean/HEAD/glean-core/android/src/test/java/mozilla/telemetry/glean/private/AccumulationsBeforeGleanInitTest.kt -------------------------------------------------------------------------------- /glean-core/android/src/test/java/mozilla/telemetry/glean/private/BooleanMetricTypeTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/glean/HEAD/glean-core/android/src/test/java/mozilla/telemetry/glean/private/BooleanMetricTypeTest.kt -------------------------------------------------------------------------------- /glean-core/android/src/test/java/mozilla/telemetry/glean/private/CounterMetricTypeTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/glean/HEAD/glean-core/android/src/test/java/mozilla/telemetry/glean/private/CounterMetricTypeTest.kt -------------------------------------------------------------------------------- /glean-core/android/src/test/java/mozilla/telemetry/glean/private/CustomDistributionMetricTypeTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/glean/HEAD/glean-core/android/src/test/java/mozilla/telemetry/glean/private/CustomDistributionMetricTypeTest.kt -------------------------------------------------------------------------------- /glean-core/android/src/test/java/mozilla/telemetry/glean/private/DatetimeMetricTypeTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/glean/HEAD/glean-core/android/src/test/java/mozilla/telemetry/glean/private/DatetimeMetricTypeTest.kt -------------------------------------------------------------------------------- /glean-core/android/src/test/java/mozilla/telemetry/glean/private/EventMetricTypeTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/glean/HEAD/glean-core/android/src/test/java/mozilla/telemetry/glean/private/EventMetricTypeTest.kt -------------------------------------------------------------------------------- /glean-core/android/src/test/java/mozilla/telemetry/glean/private/LabeledMetricTypeTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/glean/HEAD/glean-core/android/src/test/java/mozilla/telemetry/glean/private/LabeledMetricTypeTest.kt -------------------------------------------------------------------------------- /glean-core/android/src/test/java/mozilla/telemetry/glean/private/MemoryDistributionMetricTypeTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/glean/HEAD/glean-core/android/src/test/java/mozilla/telemetry/glean/private/MemoryDistributionMetricTypeTest.kt -------------------------------------------------------------------------------- /glean-core/android/src/test/java/mozilla/telemetry/glean/private/ObjectMetricTypeTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/glean/HEAD/glean-core/android/src/test/java/mozilla/telemetry/glean/private/ObjectMetricTypeTest.kt -------------------------------------------------------------------------------- /glean-core/android/src/test/java/mozilla/telemetry/glean/private/PingTypeTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/glean/HEAD/glean-core/android/src/test/java/mozilla/telemetry/glean/private/PingTypeTest.kt -------------------------------------------------------------------------------- /glean-core/android/src/test/java/mozilla/telemetry/glean/private/QuantityMetricTypeTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/glean/HEAD/glean-core/android/src/test/java/mozilla/telemetry/glean/private/QuantityMetricTypeTest.kt -------------------------------------------------------------------------------- /glean-core/android/src/test/java/mozilla/telemetry/glean/private/RateMetricTypeTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/glean/HEAD/glean-core/android/src/test/java/mozilla/telemetry/glean/private/RateMetricTypeTest.kt -------------------------------------------------------------------------------- /glean-core/android/src/test/java/mozilla/telemetry/glean/private/StringListMetricTypeTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/glean/HEAD/glean-core/android/src/test/java/mozilla/telemetry/glean/private/StringListMetricTypeTest.kt -------------------------------------------------------------------------------- /glean-core/android/src/test/java/mozilla/telemetry/glean/private/StringMetricTypeTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/glean/HEAD/glean-core/android/src/test/java/mozilla/telemetry/glean/private/StringMetricTypeTest.kt -------------------------------------------------------------------------------- /glean-core/android/src/test/java/mozilla/telemetry/glean/private/TimespanMetricTypeTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/glean/HEAD/glean-core/android/src/test/java/mozilla/telemetry/glean/private/TimespanMetricTypeTest.kt -------------------------------------------------------------------------------- /glean-core/android/src/test/java/mozilla/telemetry/glean/private/TimingDistributionMetricTypeTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/glean/HEAD/glean-core/android/src/test/java/mozilla/telemetry/glean/private/TimingDistributionMetricTypeTest.kt -------------------------------------------------------------------------------- /glean-core/android/src/test/java/mozilla/telemetry/glean/private/UrlMetricTypeTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/glean/HEAD/glean-core/android/src/test/java/mozilla/telemetry/glean/private/UrlMetricTypeTest.kt -------------------------------------------------------------------------------- /glean-core/android/src/test/java/mozilla/telemetry/glean/private/UuidMetricTypeTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/glean/HEAD/glean-core/android/src/test/java/mozilla/telemetry/glean/private/UuidMetricTypeTest.kt -------------------------------------------------------------------------------- /glean-core/android/src/test/java/mozilla/telemetry/glean/scheduler/MetricsPingSchedulerTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/glean/HEAD/glean-core/android/src/test/java/mozilla/telemetry/glean/scheduler/MetricsPingSchedulerTest.kt -------------------------------------------------------------------------------- /glean-core/android/src/test/java/mozilla/telemetry/glean/scheduler/PingUploadWorkerTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/glean/HEAD/glean-core/android/src/test/java/mozilla/telemetry/glean/scheduler/PingUploadWorkerTest.kt -------------------------------------------------------------------------------- /glean-core/android/src/test/java/mozilla/telemetry/glean/shadows/ShadowLog.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/glean/HEAD/glean-core/android/src/test/java/mozilla/telemetry/glean/shadows/ShadowLog.java -------------------------------------------------------------------------------- /glean-core/android/src/test/java/mozilla/telemetry/glean/utils/DataPathUtilsTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/glean/HEAD/glean-core/android/src/test/java/mozilla/telemetry/glean/utils/DataPathUtilsTest.kt -------------------------------------------------------------------------------- /glean-core/android/src/test/java/mozilla/telemetry/glean/utils/DateUtilsTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/glean/HEAD/glean-core/android/src/test/java/mozilla/telemetry/glean/utils/DateUtilsTest.kt -------------------------------------------------------------------------------- /glean-core/android/src/test/java/mozilla/telemetry/glean/utils/GzipUtilsTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/glean/HEAD/glean-core/android/src/test/java/mozilla/telemetry/glean/utils/GzipUtilsTest.kt -------------------------------------------------------------------------------- /glean-core/android/src/test/java/mozilla/telemetry/glean/utils/JsonUtilsTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/glean/HEAD/glean-core/android/src/test/java/mozilla/telemetry/glean/utils/JsonUtilsTest.kt -------------------------------------------------------------------------------- /glean-core/android/src/test/java/mozilla/telemetry/glean/utils/KArgumentCaptor.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/glean/HEAD/glean-core/android/src/test/java/mozilla/telemetry/glean/utils/KArgumentCaptor.kt -------------------------------------------------------------------------------- /glean-core/android/src/test/resources/mockito-extensions/org.mockito.plugins.MockMaker: -------------------------------------------------------------------------------- 1 | mock-maker-inline 2 | -------------------------------------------------------------------------------- /glean-core/android/src/test/resources/robolectric.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/glean/HEAD/glean-core/android/src/test/resources/robolectric.properties -------------------------------------------------------------------------------- /glean-core/benches/dispatcher.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/glean/HEAD/glean-core/benches/dispatcher.rs -------------------------------------------------------------------------------- /glean-core/build.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/glean/HEAD/glean-core/build.rs -------------------------------------------------------------------------------- /glean-core/build/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/glean/HEAD/glean-core/build/Cargo.toml -------------------------------------------------------------------------------- /glean-core/build/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/glean/HEAD/glean-core/build/LICENSE -------------------------------------------------------------------------------- /glean-core/build/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/glean/HEAD/glean-core/build/README.md -------------------------------------------------------------------------------- /glean-core/build/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/glean/HEAD/glean-core/build/src/lib.rs -------------------------------------------------------------------------------- /glean-core/bundle-android/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/glean/HEAD/glean-core/bundle-android/Cargo.toml -------------------------------------------------------------------------------- /glean-core/bundle/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/glean/HEAD/glean-core/bundle/Cargo.toml -------------------------------------------------------------------------------- /glean-core/bundle/src/glean.udl: -------------------------------------------------------------------------------- 1 | ../../src/glean.udl -------------------------------------------------------------------------------- /glean-core/bundle/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/glean/HEAD/glean-core/bundle/src/lib.rs -------------------------------------------------------------------------------- /glean-core/bundle/uniffi.toml: -------------------------------------------------------------------------------- 1 | ../uniffi.toml -------------------------------------------------------------------------------- /glean-core/examples/rkv-open.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/glean/HEAD/glean-core/examples/rkv-open.rs -------------------------------------------------------------------------------- /glean-core/ios/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /glean-core/ios/Glean.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/glean/HEAD/glean-core/ios/Glean.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /glean-core/ios/Glean.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/glean/HEAD/glean-core/ios/Glean.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /glean-core/ios/Glean.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/glean/HEAD/glean-core/ios/Glean.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /glean-core/ios/Glean.xcodeproj/project.xcworkspace/xcshareddata/swiftpm/Package.resolved: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/glean/HEAD/glean-core/ios/Glean.xcodeproj/project.xcworkspace/xcshareddata/swiftpm/Package.resolved -------------------------------------------------------------------------------- /glean-core/ios/Glean.xcodeproj/xcshareddata/xcschemes/Glean.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/glean/HEAD/glean-core/ios/Glean.xcodeproj/xcshareddata/xcschemes/Glean.xcscheme -------------------------------------------------------------------------------- /glean-core/ios/Glean/Config/Configuration.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/glean/HEAD/glean-core/ios/Glean/Config/Configuration.swift -------------------------------------------------------------------------------- /glean-core/ios/Glean/Debug/GleanDebugTools.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/glean/HEAD/glean-core/ios/Glean/Debug/GleanDebugTools.swift -------------------------------------------------------------------------------- /glean-core/ios/Glean/Dispatchers.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/glean/HEAD/glean-core/ios/Glean/Dispatchers.swift -------------------------------------------------------------------------------- /glean-core/ios/Glean/Glean.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/glean/HEAD/glean-core/ios/Glean/Glean.h -------------------------------------------------------------------------------- /glean-core/ios/Glean/Glean.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/glean/HEAD/glean-core/ios/Glean/Glean.swift -------------------------------------------------------------------------------- /glean-core/ios/Glean/GleanMetrics.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/glean/HEAD/glean-core/ios/Glean/GleanMetrics.swift -------------------------------------------------------------------------------- /glean-core/ios/Glean/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/glean/HEAD/glean-core/ios/Glean/Info.plist -------------------------------------------------------------------------------- /glean-core/ios/Glean/Metrics/BooleanMetric.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/glean/HEAD/glean-core/ios/Glean/Metrics/BooleanMetric.swift -------------------------------------------------------------------------------- /glean-core/ios/Glean/Metrics/CounterMetric.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/glean/HEAD/glean-core/ios/Glean/Metrics/CounterMetric.swift -------------------------------------------------------------------------------- /glean-core/ios/Glean/Metrics/DatetimeMetric.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/glean/HEAD/glean-core/ios/Glean/Metrics/DatetimeMetric.swift -------------------------------------------------------------------------------- /glean-core/ios/Glean/Metrics/EventMetric.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/glean/HEAD/glean-core/ios/Glean/Metrics/EventMetric.swift -------------------------------------------------------------------------------- /glean-core/ios/Glean/Metrics/LabeledMetric.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/glean/HEAD/glean-core/ios/Glean/Metrics/LabeledMetric.swift -------------------------------------------------------------------------------- /glean-core/ios/Glean/Metrics/MemoryDistributionMetric.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/glean/HEAD/glean-core/ios/Glean/Metrics/MemoryDistributionMetric.swift -------------------------------------------------------------------------------- /glean-core/ios/Glean/Metrics/ObjectMetric.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/glean/HEAD/glean-core/ios/Glean/Metrics/ObjectMetric.swift -------------------------------------------------------------------------------- /glean-core/ios/Glean/Metrics/Ping.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/glean/HEAD/glean-core/ios/Glean/Metrics/Ping.swift -------------------------------------------------------------------------------- /glean-core/ios/Glean/Metrics/QuantityMetric.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/glean/HEAD/glean-core/ios/Glean/Metrics/QuantityMetric.swift -------------------------------------------------------------------------------- /glean-core/ios/Glean/Metrics/RateMetric.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/glean/HEAD/glean-core/ios/Glean/Metrics/RateMetric.swift -------------------------------------------------------------------------------- /glean-core/ios/Glean/Metrics/StringListMetric.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/glean/HEAD/glean-core/ios/Glean/Metrics/StringListMetric.swift -------------------------------------------------------------------------------- /glean-core/ios/Glean/Metrics/StringMetric.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/glean/HEAD/glean-core/ios/Glean/Metrics/StringMetric.swift -------------------------------------------------------------------------------- /glean-core/ios/Glean/Metrics/TextMetric.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/glean/HEAD/glean-core/ios/Glean/Metrics/TextMetric.swift -------------------------------------------------------------------------------- /glean-core/ios/Glean/Metrics/TimespanMetric.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/glean/HEAD/glean-core/ios/Glean/Metrics/TimespanMetric.swift -------------------------------------------------------------------------------- /glean-core/ios/Glean/Metrics/TimingDistributionMetric.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/glean/HEAD/glean-core/ios/Glean/Metrics/TimingDistributionMetric.swift -------------------------------------------------------------------------------- /glean-core/ios/Glean/Metrics/UrlMetric.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/glean/HEAD/glean-core/ios/Glean/Metrics/UrlMetric.swift -------------------------------------------------------------------------------- /glean-core/ios/Glean/Metrics/UuidMetric.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/glean/HEAD/glean-core/ios/Glean/Metrics/UuidMetric.swift -------------------------------------------------------------------------------- /glean-core/ios/Glean/Net/HttpPingUploader.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/glean/HEAD/glean-core/ios/Glean/Net/HttpPingUploader.swift -------------------------------------------------------------------------------- /glean-core/ios/Glean/Net/PingUploadScheduler.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/glean/HEAD/glean-core/ios/Glean/Net/PingUploadScheduler.swift -------------------------------------------------------------------------------- /glean-core/ios/Glean/Net/PingUploader.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/glean/HEAD/glean-core/ios/Glean/Net/PingUploader.swift -------------------------------------------------------------------------------- /glean-core/ios/Glean/Scheduler/GleanLifecycleObserver.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/glean/HEAD/glean-core/ios/Glean/Scheduler/GleanLifecycleObserver.swift -------------------------------------------------------------------------------- /glean-core/ios/Glean/Scheduler/MetricsPingScheduler.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/glean/HEAD/glean-core/ios/Glean/Scheduler/MetricsPingScheduler.swift -------------------------------------------------------------------------------- /glean-core/ios/Glean/Utils/Logger.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/glean/HEAD/glean-core/ios/Glean/Utils/Logger.swift -------------------------------------------------------------------------------- /glean-core/ios/Glean/Utils/Sysctl.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/glean/HEAD/glean-core/ios/Glean/Utils/Sysctl.swift -------------------------------------------------------------------------------- /glean-core/ios/Glean/Utils/Unreachable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/glean/HEAD/glean-core/ios/Glean/Utils/Unreachable.swift -------------------------------------------------------------------------------- /glean-core/ios/Glean/Utils/Utils.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/glean/HEAD/glean-core/ios/Glean/Utils/Utils.swift -------------------------------------------------------------------------------- /glean-core/ios/GleanTests/Config/ConfigurationTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/glean/HEAD/glean-core/ios/GleanTests/Config/ConfigurationTests.swift -------------------------------------------------------------------------------- /glean-core/ios/GleanTests/Debug/GleanDebugUtilityTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/glean/HEAD/glean-core/ios/GleanTests/Debug/GleanDebugUtilityTests.swift -------------------------------------------------------------------------------- /glean-core/ios/GleanTests/GleanTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/glean/HEAD/glean-core/ios/GleanTests/GleanTests.swift -------------------------------------------------------------------------------- /glean-core/ios/GleanTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/glean/HEAD/glean-core/ios/GleanTests/Info.plist -------------------------------------------------------------------------------- /glean-core/ios/GleanTests/Metrics/BooleanMetricTypeTest.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/glean/HEAD/glean-core/ios/GleanTests/Metrics/BooleanMetricTypeTest.swift -------------------------------------------------------------------------------- /glean-core/ios/GleanTests/Metrics/CounterMetricTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/glean/HEAD/glean-core/ios/GleanTests/Metrics/CounterMetricTests.swift -------------------------------------------------------------------------------- /glean-core/ios/GleanTests/Metrics/DatetimeMetricTypeTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/glean/HEAD/glean-core/ios/GleanTests/Metrics/DatetimeMetricTypeTests.swift -------------------------------------------------------------------------------- /glean-core/ios/GleanTests/Metrics/EventMetricTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/glean/HEAD/glean-core/ios/GleanTests/Metrics/EventMetricTests.swift -------------------------------------------------------------------------------- /glean-core/ios/GleanTests/Metrics/LabeledMetricTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/glean/HEAD/glean-core/ios/GleanTests/Metrics/LabeledMetricTests.swift -------------------------------------------------------------------------------- /glean-core/ios/GleanTests/Metrics/MemoryDistributionMetricTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/glean/HEAD/glean-core/ios/GleanTests/Metrics/MemoryDistributionMetricTests.swift -------------------------------------------------------------------------------- /glean-core/ios/GleanTests/Metrics/ObjectMetricTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/glean/HEAD/glean-core/ios/GleanTests/Metrics/ObjectMetricTests.swift -------------------------------------------------------------------------------- /glean-core/ios/GleanTests/Metrics/PingTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/glean/HEAD/glean-core/ios/GleanTests/Metrics/PingTests.swift -------------------------------------------------------------------------------- /glean-core/ios/GleanTests/Metrics/QuantityMetricTypeTest.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/glean/HEAD/glean-core/ios/GleanTests/Metrics/QuantityMetricTypeTest.swift -------------------------------------------------------------------------------- /glean-core/ios/GleanTests/Metrics/RateMetricTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/glean/HEAD/glean-core/ios/GleanTests/Metrics/RateMetricTests.swift -------------------------------------------------------------------------------- /glean-core/ios/GleanTests/Metrics/StringListMetricTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/glean/HEAD/glean-core/ios/GleanTests/Metrics/StringListMetricTests.swift -------------------------------------------------------------------------------- /glean-core/ios/GleanTests/Metrics/StringMetricTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/glean/HEAD/glean-core/ios/GleanTests/Metrics/StringMetricTests.swift -------------------------------------------------------------------------------- /glean-core/ios/GleanTests/Metrics/TimespanMetricTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/glean/HEAD/glean-core/ios/GleanTests/Metrics/TimespanMetricTests.swift -------------------------------------------------------------------------------- /glean-core/ios/GleanTests/Metrics/TimingDistributionMetricTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/glean/HEAD/glean-core/ios/GleanTests/Metrics/TimingDistributionMetricTests.swift -------------------------------------------------------------------------------- /glean-core/ios/GleanTests/Metrics/UrlMetricTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/glean/HEAD/glean-core/ios/GleanTests/Metrics/UrlMetricTests.swift -------------------------------------------------------------------------------- /glean-core/ios/GleanTests/Metrics/UuidMetricTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/glean/HEAD/glean-core/ios/GleanTests/Metrics/UuidMetricTests.swift -------------------------------------------------------------------------------- /glean-core/ios/GleanTests/Net/BaselinePingTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/glean/HEAD/glean-core/ios/GleanTests/Net/BaselinePingTests.swift -------------------------------------------------------------------------------- /glean-core/ios/GleanTests/Net/DeletionRequestPingTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/glean/HEAD/glean-core/ios/GleanTests/Net/DeletionRequestPingTests.swift -------------------------------------------------------------------------------- /glean-core/ios/GleanTests/Net/HttpPingUploaderTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/glean/HEAD/glean-core/ios/GleanTests/Net/HttpPingUploaderTests.swift -------------------------------------------------------------------------------- /glean-core/ios/GleanTests/PingUploaderTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/glean/HEAD/glean-core/ios/GleanTests/PingUploaderTests.swift -------------------------------------------------------------------------------- /glean-core/ios/GleanTests/RidealongPingTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/glean/HEAD/glean-core/ios/GleanTests/RidealongPingTests.swift -------------------------------------------------------------------------------- /glean-core/ios/GleanTests/Scheduler/MetricsPingSchedulerTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/glean/HEAD/glean-core/ios/GleanTests/Scheduler/MetricsPingSchedulerTests.swift -------------------------------------------------------------------------------- /glean-core/ios/GleanTests/TestUtils.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/glean/HEAD/glean-core/ios/GleanTests/TestUtils.swift -------------------------------------------------------------------------------- /glean-core/ios/GleanTests/Utils/DataPathUtilsTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/glean/HEAD/glean-core/ios/GleanTests/Utils/DataPathUtilsTests.swift -------------------------------------------------------------------------------- /glean-core/ios/GleanTests/makeCapablePingUploadRequestForTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/glean/HEAD/glean-core/ios/GleanTests/makeCapablePingUploadRequestForTests.swift -------------------------------------------------------------------------------- /glean-core/ios/base.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/glean/HEAD/glean-core/ios/base.xcconfig -------------------------------------------------------------------------------- /glean-core/ios/debug.xcconfig: -------------------------------------------------------------------------------- 1 | buildvariant = debug 2 | #include "base.xcconfig" 3 | -------------------------------------------------------------------------------- /glean-core/ios/release.xcconfig: -------------------------------------------------------------------------------- 1 | buildvariant = release 2 | #include "base.xcconfig" 3 | -------------------------------------------------------------------------------- /glean-core/ios/sdk_generator.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/glean/HEAD/glean-core/ios/sdk_generator.sh -------------------------------------------------------------------------------- /glean-core/megazord.uniffi.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/glean/HEAD/glean-core/megazord.uniffi.toml -------------------------------------------------------------------------------- /glean-core/metrics.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/glean/HEAD/glean-core/metrics.yaml -------------------------------------------------------------------------------- /glean-core/pings.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/glean/HEAD/glean-core/pings.yaml -------------------------------------------------------------------------------- /glean-core/python/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/glean/HEAD/glean-core/python/.gitignore -------------------------------------------------------------------------------- /glean-core/python/glean/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/glean/HEAD/glean-core/python/glean/__init__.py -------------------------------------------------------------------------------- /glean-core/python/glean/_builtins.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/glean/HEAD/glean-core/python/glean/_builtins.py -------------------------------------------------------------------------------- /glean-core/python/glean/_ffi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/glean/HEAD/glean-core/python/glean/_ffi.py -------------------------------------------------------------------------------- /glean-core/python/glean/_loader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/glean/HEAD/glean-core/python/glean/_loader.py -------------------------------------------------------------------------------- /glean-core/python/glean/_process_dispatcher.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/glean/HEAD/glean-core/python/glean/_process_dispatcher.py -------------------------------------------------------------------------------- /glean-core/python/glean/_subprocess/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/glean/HEAD/glean-core/python/glean/_subprocess/__init__.py -------------------------------------------------------------------------------- /glean-core/python/glean/_subprocess/_process_dispatcher_helper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/glean/HEAD/glean-core/python/glean/_subprocess/_process_dispatcher_helper.py -------------------------------------------------------------------------------- /glean-core/python/glean/_util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/glean/HEAD/glean-core/python/glean/_util.py -------------------------------------------------------------------------------- /glean-core/python/glean/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/glean/HEAD/glean-core/python/glean/config.py -------------------------------------------------------------------------------- /glean-core/python/glean/glean.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/glean/HEAD/glean-core/python/glean/glean.py -------------------------------------------------------------------------------- /glean-core/python/glean/metrics.yaml: -------------------------------------------------------------------------------- 1 | ../../metrics.yaml -------------------------------------------------------------------------------- /glean-core/python/glean/metrics/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/glean/HEAD/glean-core/python/glean/metrics/__init__.py -------------------------------------------------------------------------------- /glean-core/python/glean/metrics/datetime.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/glean/HEAD/glean-core/python/glean/metrics/datetime.py -------------------------------------------------------------------------------- /glean-core/python/glean/metrics/event.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/glean/HEAD/glean-core/python/glean/metrics/event.py -------------------------------------------------------------------------------- /glean-core/python/glean/metrics/labeled.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/glean/HEAD/glean-core/python/glean/metrics/labeled.py -------------------------------------------------------------------------------- /glean-core/python/glean/metrics/object.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/glean/HEAD/glean-core/python/glean/metrics/object.py -------------------------------------------------------------------------------- /glean-core/python/glean/metrics/ping.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/glean/HEAD/glean-core/python/glean/metrics/ping.py -------------------------------------------------------------------------------- /glean-core/python/glean/metrics/string.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/glean/HEAD/glean-core/python/glean/metrics/string.py -------------------------------------------------------------------------------- /glean-core/python/glean/metrics/timespan.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/glean/HEAD/glean-core/python/glean/metrics/timespan.py -------------------------------------------------------------------------------- /glean-core/python/glean/metrics/timing_distribution.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/glean/HEAD/glean-core/python/glean/metrics/timing_distribution.py -------------------------------------------------------------------------------- /glean-core/python/glean/metrics/url.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/glean/HEAD/glean-core/python/glean/metrics/url.py -------------------------------------------------------------------------------- /glean-core/python/glean/metrics/uuid.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/glean/HEAD/glean-core/python/glean/metrics/uuid.py -------------------------------------------------------------------------------- /glean-core/python/glean/net/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/glean/HEAD/glean-core/python/glean/net/__init__.py -------------------------------------------------------------------------------- /glean-core/python/glean/net/base_uploader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/glean/HEAD/glean-core/python/glean/net/base_uploader.py -------------------------------------------------------------------------------- /glean-core/python/glean/net/http_client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/glean/HEAD/glean-core/python/glean/net/http_client.py -------------------------------------------------------------------------------- /glean-core/python/glean/net/ping_upload_worker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/glean/HEAD/glean-core/python/glean/net/ping_upload_worker.py -------------------------------------------------------------------------------- /glean-core/python/glean/net/ping_uploader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/glean/HEAD/glean-core/python/glean/net/ping_uploader.py -------------------------------------------------------------------------------- /glean-core/python/glean/pings.yaml: -------------------------------------------------------------------------------- 1 | ../../pings.yaml -------------------------------------------------------------------------------- /glean-core/python/glean/testing/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/glean/HEAD/glean-core/python/glean/testing/__init__.py -------------------------------------------------------------------------------- /glean-core/python/requirements_dev.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/glean/HEAD/glean-core/python/requirements_dev.txt -------------------------------------------------------------------------------- /glean-core/python/tests/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/glean/HEAD/glean-core/python/tests/conftest.py -------------------------------------------------------------------------------- /glean-core/python/tests/data/core.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/glean/HEAD/glean-core/python/tests/data/core.yaml -------------------------------------------------------------------------------- /glean-core/python/tests/data/events_with_types.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/glean/HEAD/glean-core/python/tests/data/events_with_types.yaml -------------------------------------------------------------------------------- /glean-core/python/tests/data/glinter.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/glean/HEAD/glean-core/python/tests/data/glinter.yaml -------------------------------------------------------------------------------- /glean-core/python/tests/data/pings.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/glean/HEAD/glean-core/python/tests/data/pings.yaml -------------------------------------------------------------------------------- /glean-core/python/tests/metrics/test_boolean.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/glean/HEAD/glean-core/python/tests/metrics/test_boolean.py -------------------------------------------------------------------------------- /glean-core/python/tests/metrics/test_counter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/glean/HEAD/glean-core/python/tests/metrics/test_counter.py -------------------------------------------------------------------------------- /glean-core/python/tests/metrics/test_datetime.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/glean/HEAD/glean-core/python/tests/metrics/test_datetime.py -------------------------------------------------------------------------------- /glean-core/python/tests/metrics/test_event.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/glean/HEAD/glean-core/python/tests/metrics/test_event.py -------------------------------------------------------------------------------- /glean-core/python/tests/metrics/test_labeled.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/glean/HEAD/glean-core/python/tests/metrics/test_labeled.py -------------------------------------------------------------------------------- /glean-core/python/tests/metrics/test_memory_distribution.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/glean/HEAD/glean-core/python/tests/metrics/test_memory_distribution.py -------------------------------------------------------------------------------- /glean-core/python/tests/metrics/test_object.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/glean/HEAD/glean-core/python/tests/metrics/test_object.py -------------------------------------------------------------------------------- /glean-core/python/tests/metrics/test_quantity.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/glean/HEAD/glean-core/python/tests/metrics/test_quantity.py -------------------------------------------------------------------------------- /glean-core/python/tests/metrics/test_rate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/glean/HEAD/glean-core/python/tests/metrics/test_rate.py -------------------------------------------------------------------------------- /glean-core/python/tests/metrics/test_string.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/glean/HEAD/glean-core/python/tests/metrics/test_string.py -------------------------------------------------------------------------------- /glean-core/python/tests/metrics/test_string_list.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/glean/HEAD/glean-core/python/tests/metrics/test_string_list.py -------------------------------------------------------------------------------- /glean-core/python/tests/metrics/test_text.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/glean/HEAD/glean-core/python/tests/metrics/test_text.py -------------------------------------------------------------------------------- /glean-core/python/tests/metrics/test_timespan.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/glean/HEAD/glean-core/python/tests/metrics/test_timespan.py -------------------------------------------------------------------------------- /glean-core/python/tests/metrics/test_timing_distribution.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/glean/HEAD/glean-core/python/tests/metrics/test_timing_distribution.py -------------------------------------------------------------------------------- /glean-core/python/tests/metrics/test_url.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/glean/HEAD/glean-core/python/tests/metrics/test_url.py -------------------------------------------------------------------------------- /glean-core/python/tests/metrics/test_uuid.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/glean/HEAD/glean-core/python/tests/metrics/test_uuid.py -------------------------------------------------------------------------------- /glean-core/python/tests/test_collection_enabled.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/glean/HEAD/glean-core/python/tests/test_collection_enabled.py -------------------------------------------------------------------------------- /glean-core/python/tests/test_glean.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/glean/HEAD/glean-core/python/tests/test_glean.py -------------------------------------------------------------------------------- /glean-core/python/tests/test_loader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/glean/HEAD/glean-core/python/tests/test_loader.py -------------------------------------------------------------------------------- /glean-core/python/tests/test_network.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/glean/HEAD/glean-core/python/tests/test_network.py -------------------------------------------------------------------------------- /glean-core/python/tests/test_subprocess.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/glean/HEAD/glean-core/python/tests/test_subprocess.py -------------------------------------------------------------------------------- /glean-core/rlb/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/glean/HEAD/glean-core/rlb/Cargo.toml -------------------------------------------------------------------------------- /glean-core/rlb/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/glean/HEAD/glean-core/rlb/LICENSE -------------------------------------------------------------------------------- /glean-core/rlb/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/glean/HEAD/glean-core/rlb/README.md -------------------------------------------------------------------------------- /glean-core/rlb/examples/crashing-threads.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/glean/HEAD/glean-core/rlb/examples/crashing-threads.rs -------------------------------------------------------------------------------- /glean-core/rlb/examples/delayed-ping-data.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/glean/HEAD/glean-core/rlb/examples/delayed-ping-data.rs -------------------------------------------------------------------------------- /glean-core/rlb/examples/enabled-pings.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/glean/HEAD/glean-core/rlb/examples/enabled-pings.rs -------------------------------------------------------------------------------- /glean-core/rlb/examples/frequent-events.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/glean/HEAD/glean-core/rlb/examples/frequent-events.rs -------------------------------------------------------------------------------- /glean-core/rlb/examples/long-running.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/glean/HEAD/glean-core/rlb/examples/long-running.rs -------------------------------------------------------------------------------- /glean-core/rlb/examples/mps-delay.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/glean/HEAD/glean-core/rlb/examples/mps-delay.rs -------------------------------------------------------------------------------- /glean-core/rlb/examples/pending-gets-removed.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/glean/HEAD/glean-core/rlb/examples/pending-gets-removed.rs -------------------------------------------------------------------------------- /glean-core/rlb/examples/ping-lifetime-flush.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/glean/HEAD/glean-core/rlb/examples/ping-lifetime-flush.rs -------------------------------------------------------------------------------- /glean-core/rlb/examples/prototype.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/glean/HEAD/glean-core/rlb/examples/prototype.rs -------------------------------------------------------------------------------- /glean-core/rlb/src/common_test.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/glean/HEAD/glean-core/rlb/src/common_test.rs -------------------------------------------------------------------------------- /glean-core/rlb/src/configuration.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/glean/HEAD/glean-core/rlb/src/configuration.rs -------------------------------------------------------------------------------- /glean-core/rlb/src/core_metrics.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/glean/HEAD/glean-core/rlb/src/core_metrics.rs -------------------------------------------------------------------------------- /glean-core/rlb/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/glean/HEAD/glean-core/rlb/src/lib.rs -------------------------------------------------------------------------------- /glean-core/rlb/src/net/http_uploader.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/glean/HEAD/glean-core/rlb/src/net/http_uploader.rs -------------------------------------------------------------------------------- /glean-core/rlb/src/net/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/glean/HEAD/glean-core/rlb/src/net/mod.rs -------------------------------------------------------------------------------- /glean-core/rlb/src/private/event.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/glean/HEAD/glean-core/rlb/src/private/event.rs -------------------------------------------------------------------------------- /glean-core/rlb/src/private/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/glean/HEAD/glean-core/rlb/src/private/mod.rs -------------------------------------------------------------------------------- /glean-core/rlb/src/private/object.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/glean/HEAD/glean-core/rlb/src/private/object.rs -------------------------------------------------------------------------------- /glean-core/rlb/src/private/ping.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/glean/HEAD/glean-core/rlb/src/private/ping.rs -------------------------------------------------------------------------------- /glean-core/rlb/src/system.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/glean/HEAD/glean-core/rlb/src/system.rs -------------------------------------------------------------------------------- /glean-core/rlb/src/test.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/glean/HEAD/glean-core/rlb/src/test.rs -------------------------------------------------------------------------------- /glean-core/rlb/tests/collection_enabled.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/glean/HEAD/glean-core/rlb/tests/collection_enabled.rs -------------------------------------------------------------------------------- /glean-core/rlb/tests/collection_enabled_bin.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/glean/HEAD/glean-core/rlb/tests/collection_enabled_bin.rs -------------------------------------------------------------------------------- /glean-core/rlb/tests/common/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/glean/HEAD/glean-core/rlb/tests/common/mod.rs -------------------------------------------------------------------------------- /glean-core/rlb/tests/custom_distribution_buffered.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/glean/HEAD/glean-core/rlb/tests/custom_distribution_buffered.rs -------------------------------------------------------------------------------- /glean-core/rlb/tests/dual_labeled_counter_metric.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/glean/HEAD/glean-core/rlb/tests/dual_labeled_counter_metric.rs -------------------------------------------------------------------------------- /glean-core/rlb/tests/health_ping.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/glean/HEAD/glean-core/rlb/tests/health_ping.rs -------------------------------------------------------------------------------- /glean-core/rlb/tests/health_ping_file_overwrite.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/glean/HEAD/glean-core/rlb/tests/health_ping_file_overwrite.rs -------------------------------------------------------------------------------- /glean-core/rlb/tests/init_fails.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/glean/HEAD/glean-core/rlb/tests/init_fails.rs -------------------------------------------------------------------------------- /glean-core/rlb/tests/interruptible_shutdown.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/glean/HEAD/glean-core/rlb/tests/interruptible_shutdown.rs -------------------------------------------------------------------------------- /glean-core/rlb/tests/labeled_metrics.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/glean/HEAD/glean-core/rlb/tests/labeled_metrics.rs -------------------------------------------------------------------------------- /glean-core/rlb/tests/memory_distribution_buffered.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/glean/HEAD/glean-core/rlb/tests/memory_distribution_buffered.rs -------------------------------------------------------------------------------- /glean-core/rlb/tests/metric_metadata.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/glean/HEAD/glean-core/rlb/tests/metric_metadata.rs -------------------------------------------------------------------------------- /glean-core/rlb/tests/near-empty-c0ffee-db.safe.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/glean/HEAD/glean-core/rlb/tests/near-empty-c0ffee-db.safe.bin -------------------------------------------------------------------------------- /glean-core/rlb/tests/never_init.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/glean/HEAD/glean-core/rlb/tests/never_init.rs -------------------------------------------------------------------------------- /glean-core/rlb/tests/no_time_to_init.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/glean/HEAD/glean-core/rlb/tests/no_time_to_init.rs -------------------------------------------------------------------------------- /glean-core/rlb/tests/overflowing_preinit.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/glean/HEAD/glean-core/rlb/tests/overflowing_preinit.rs -------------------------------------------------------------------------------- /glean-core/rlb/tests/persist_ping_lifetime_nopanic.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/glean/HEAD/glean-core/rlb/tests/persist_ping_lifetime_nopanic.rs -------------------------------------------------------------------------------- /glean-core/rlb/tests/schema.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/glean/HEAD/glean-core/rlb/tests/schema.rs -------------------------------------------------------------------------------- /glean-core/rlb/tests/signaling_done.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/glean/HEAD/glean-core/rlb/tests/signaling_done.rs -------------------------------------------------------------------------------- /glean-core/rlb/tests/simple.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/glean/HEAD/glean-core/rlb/tests/simple.rs -------------------------------------------------------------------------------- /glean-core/rlb/tests/test-delayed-ping-data.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/glean/HEAD/glean-core/rlb/tests/test-delayed-ping-data.sh -------------------------------------------------------------------------------- /glean-core/rlb/tests/test-enabled-pings.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/glean/HEAD/glean-core/rlb/tests/test-enabled-pings.sh -------------------------------------------------------------------------------- /glean-core/rlb/tests/test-mps-delay.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/glean/HEAD/glean-core/rlb/tests/test-mps-delay.sh -------------------------------------------------------------------------------- /glean-core/rlb/tests/test-pending-gets-removed.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/glean/HEAD/glean-core/rlb/tests/test-pending-gets-removed.sh -------------------------------------------------------------------------------- /glean-core/rlb/tests/test-ping-lifetime-flush.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/glean/HEAD/glean-core/rlb/tests/test-ping-lifetime-flush.sh -------------------------------------------------------------------------------- /glean-core/rlb/tests/test-shutdown-blocking.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/glean/HEAD/glean-core/rlb/tests/test-shutdown-blocking.sh -------------------------------------------------------------------------------- /glean-core/rlb/tests/test-thread-crashing.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/glean/HEAD/glean-core/rlb/tests/test-thread-crashing.sh -------------------------------------------------------------------------------- /glean-core/rlb/tests/timing_distribution_buffered.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/glean/HEAD/glean-core/rlb/tests/timing_distribution_buffered.rs -------------------------------------------------------------------------------- /glean-core/rlb/tests/timing_distribution_single_sample.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/glean/HEAD/glean-core/rlb/tests/timing_distribution_single_sample.rs -------------------------------------------------------------------------------- /glean-core/rlb/tests/upload_timing.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/glean/HEAD/glean-core/rlb/tests/upload_timing.rs -------------------------------------------------------------------------------- /glean-core/rlb/tests/uploader_capabilities.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/glean/HEAD/glean-core/rlb/tests/uploader_capabilities.rs -------------------------------------------------------------------------------- /glean-core/src/common_metric_data.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/glean/HEAD/glean-core/src/common_metric_data.rs -------------------------------------------------------------------------------- /glean-core/src/core/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/glean/HEAD/glean-core/src/core/mod.rs -------------------------------------------------------------------------------- /glean-core/src/core_metrics.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/glean/HEAD/glean-core/src/core_metrics.rs -------------------------------------------------------------------------------- /glean-core/src/coverage.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/glean/HEAD/glean-core/src/coverage.rs -------------------------------------------------------------------------------- /glean-core/src/database/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/glean/HEAD/glean-core/src/database/mod.rs -------------------------------------------------------------------------------- /glean-core/src/debug.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/glean/HEAD/glean-core/src/debug.rs -------------------------------------------------------------------------------- /glean-core/src/dispatcher/global.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/glean/HEAD/glean-core/src/dispatcher/global.rs -------------------------------------------------------------------------------- /glean-core/src/dispatcher/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/glean/HEAD/glean-core/src/dispatcher/mod.rs -------------------------------------------------------------------------------- /glean-core/src/error.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/glean/HEAD/glean-core/src/error.rs -------------------------------------------------------------------------------- /glean-core/src/error_recording.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/glean/HEAD/glean-core/src/error_recording.rs -------------------------------------------------------------------------------- /glean-core/src/event_database/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/glean/HEAD/glean-core/src/event_database/mod.rs -------------------------------------------------------------------------------- /glean-core/src/fd_logger.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/glean/HEAD/glean-core/src/fd_logger.rs -------------------------------------------------------------------------------- /glean-core/src/glean.udl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/glean/HEAD/glean-core/src/glean.udl -------------------------------------------------------------------------------- /glean-core/src/glean_metrics.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/glean/HEAD/glean-core/src/glean_metrics.rs -------------------------------------------------------------------------------- /glean-core/src/histogram/exponential.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/glean/HEAD/glean-core/src/histogram/exponential.rs -------------------------------------------------------------------------------- /glean-core/src/histogram/functional.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/glean/HEAD/glean-core/src/histogram/functional.rs -------------------------------------------------------------------------------- /glean-core/src/histogram/linear.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/glean/HEAD/glean-core/src/histogram/linear.rs -------------------------------------------------------------------------------- /glean-core/src/histogram/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/glean/HEAD/glean-core/src/histogram/mod.rs -------------------------------------------------------------------------------- /glean-core/src/internal_metrics.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/glean/HEAD/glean-core/src/internal_metrics.rs -------------------------------------------------------------------------------- /glean-core/src/internal_pings.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/glean/HEAD/glean-core/src/internal_pings.rs -------------------------------------------------------------------------------- /glean-core/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/glean/HEAD/glean-core/src/lib.rs -------------------------------------------------------------------------------- /glean-core/src/lib_unit_tests.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/glean/HEAD/glean-core/src/lib_unit_tests.rs -------------------------------------------------------------------------------- /glean-core/src/metrics/boolean.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/glean/HEAD/glean-core/src/metrics/boolean.rs -------------------------------------------------------------------------------- /glean-core/src/metrics/counter.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/glean/HEAD/glean-core/src/metrics/counter.rs -------------------------------------------------------------------------------- /glean-core/src/metrics/custom_distribution.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/glean/HEAD/glean-core/src/metrics/custom_distribution.rs -------------------------------------------------------------------------------- /glean-core/src/metrics/datetime.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/glean/HEAD/glean-core/src/metrics/datetime.rs -------------------------------------------------------------------------------- /glean-core/src/metrics/denominator.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/glean/HEAD/glean-core/src/metrics/denominator.rs -------------------------------------------------------------------------------- /glean-core/src/metrics/dual_labeled_counter.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/glean/HEAD/glean-core/src/metrics/dual_labeled_counter.rs -------------------------------------------------------------------------------- /glean-core/src/metrics/event.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/glean/HEAD/glean-core/src/metrics/event.rs -------------------------------------------------------------------------------- /glean-core/src/metrics/experiment.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/glean/HEAD/glean-core/src/metrics/experiment.rs -------------------------------------------------------------------------------- /glean-core/src/metrics/labeled.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/glean/HEAD/glean-core/src/metrics/labeled.rs -------------------------------------------------------------------------------- /glean-core/src/metrics/memory_distribution.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/glean/HEAD/glean-core/src/metrics/memory_distribution.rs -------------------------------------------------------------------------------- /glean-core/src/metrics/memory_unit.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/glean/HEAD/glean-core/src/metrics/memory_unit.rs -------------------------------------------------------------------------------- /glean-core/src/metrics/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/glean/HEAD/glean-core/src/metrics/mod.rs -------------------------------------------------------------------------------- /glean-core/src/metrics/numerator.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/glean/HEAD/glean-core/src/metrics/numerator.rs -------------------------------------------------------------------------------- /glean-core/src/metrics/object.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/glean/HEAD/glean-core/src/metrics/object.rs -------------------------------------------------------------------------------- /glean-core/src/metrics/ping.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/glean/HEAD/glean-core/src/metrics/ping.rs -------------------------------------------------------------------------------- /glean-core/src/metrics/quantity.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/glean/HEAD/glean-core/src/metrics/quantity.rs -------------------------------------------------------------------------------- /glean-core/src/metrics/rate.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/glean/HEAD/glean-core/src/metrics/rate.rs -------------------------------------------------------------------------------- /glean-core/src/metrics/recorded_experiment.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/glean/HEAD/glean-core/src/metrics/recorded_experiment.rs -------------------------------------------------------------------------------- /glean-core/src/metrics/remote_settings_config.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/glean/HEAD/glean-core/src/metrics/remote_settings_config.rs -------------------------------------------------------------------------------- /glean-core/src/metrics/string.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/glean/HEAD/glean-core/src/metrics/string.rs -------------------------------------------------------------------------------- /glean-core/src/metrics/string_list.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/glean/HEAD/glean-core/src/metrics/string_list.rs -------------------------------------------------------------------------------- /glean-core/src/metrics/text.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/glean/HEAD/glean-core/src/metrics/text.rs -------------------------------------------------------------------------------- /glean-core/src/metrics/time_unit.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/glean/HEAD/glean-core/src/metrics/time_unit.rs -------------------------------------------------------------------------------- /glean-core/src/metrics/timespan.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/glean/HEAD/glean-core/src/metrics/timespan.rs -------------------------------------------------------------------------------- /glean-core/src/metrics/timing_distribution.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/glean/HEAD/glean-core/src/metrics/timing_distribution.rs -------------------------------------------------------------------------------- /glean-core/src/metrics/url.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/glean/HEAD/glean-core/src/metrics/url.rs -------------------------------------------------------------------------------- /glean-core/src/metrics/uuid.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/glean/HEAD/glean-core/src/metrics/uuid.rs -------------------------------------------------------------------------------- /glean-core/src/ping/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/glean/HEAD/glean-core/src/ping/mod.rs -------------------------------------------------------------------------------- /glean-core/src/scheduler.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/glean/HEAD/glean-core/src/scheduler.rs -------------------------------------------------------------------------------- /glean-core/src/storage/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/glean/HEAD/glean-core/src/storage/mod.rs -------------------------------------------------------------------------------- /glean-core/src/system.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/glean/HEAD/glean-core/src/system.rs -------------------------------------------------------------------------------- /glean-core/src/thread.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/glean/HEAD/glean-core/src/thread.rs -------------------------------------------------------------------------------- /glean-core/src/traits/boolean.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/glean/HEAD/glean-core/src/traits/boolean.rs -------------------------------------------------------------------------------- /glean-core/src/traits/counter.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/glean/HEAD/glean-core/src/traits/counter.rs -------------------------------------------------------------------------------- /glean-core/src/traits/custom_distribution.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/glean/HEAD/glean-core/src/traits/custom_distribution.rs -------------------------------------------------------------------------------- /glean-core/src/traits/datetime.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/glean/HEAD/glean-core/src/traits/datetime.rs -------------------------------------------------------------------------------- /glean-core/src/traits/dual_labeled_counter.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/glean/HEAD/glean-core/src/traits/dual_labeled_counter.rs -------------------------------------------------------------------------------- /glean-core/src/traits/event.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/glean/HEAD/glean-core/src/traits/event.rs -------------------------------------------------------------------------------- /glean-core/src/traits/labeled.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/glean/HEAD/glean-core/src/traits/labeled.rs -------------------------------------------------------------------------------- /glean-core/src/traits/memory_distribution.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/glean/HEAD/glean-core/src/traits/memory_distribution.rs -------------------------------------------------------------------------------- /glean-core/src/traits/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/glean/HEAD/glean-core/src/traits/mod.rs -------------------------------------------------------------------------------- /glean-core/src/traits/numerator.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/glean/HEAD/glean-core/src/traits/numerator.rs -------------------------------------------------------------------------------- /glean-core/src/traits/object.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/glean/HEAD/glean-core/src/traits/object.rs -------------------------------------------------------------------------------- /glean-core/src/traits/ping.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/glean/HEAD/glean-core/src/traits/ping.rs -------------------------------------------------------------------------------- /glean-core/src/traits/quantity.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/glean/HEAD/glean-core/src/traits/quantity.rs -------------------------------------------------------------------------------- /glean-core/src/traits/rate.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/glean/HEAD/glean-core/src/traits/rate.rs -------------------------------------------------------------------------------- /glean-core/src/traits/string.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/glean/HEAD/glean-core/src/traits/string.rs -------------------------------------------------------------------------------- /glean-core/src/traits/string_list.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/glean/HEAD/glean-core/src/traits/string_list.rs -------------------------------------------------------------------------------- /glean-core/src/traits/text.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/glean/HEAD/glean-core/src/traits/text.rs -------------------------------------------------------------------------------- /glean-core/src/traits/timespan.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/glean/HEAD/glean-core/src/traits/timespan.rs -------------------------------------------------------------------------------- /glean-core/src/traits/timing_distribution.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/glean/HEAD/glean-core/src/traits/timing_distribution.rs -------------------------------------------------------------------------------- /glean-core/src/traits/url.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/glean/HEAD/glean-core/src/traits/url.rs -------------------------------------------------------------------------------- /glean-core/src/traits/uuid.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/glean/HEAD/glean-core/src/traits/uuid.rs -------------------------------------------------------------------------------- /glean-core/src/upload/directory.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/glean/HEAD/glean-core/src/upload/directory.rs -------------------------------------------------------------------------------- /glean-core/src/upload/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/glean/HEAD/glean-core/src/upload/mod.rs -------------------------------------------------------------------------------- /glean-core/src/upload/policy.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/glean/HEAD/glean-core/src/upload/policy.rs -------------------------------------------------------------------------------- /glean-core/src/upload/request.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/glean/HEAD/glean-core/src/upload/request.rs -------------------------------------------------------------------------------- /glean-core/src/upload/result.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/glean/HEAD/glean-core/src/upload/result.rs -------------------------------------------------------------------------------- /glean-core/src/util.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/glean/HEAD/glean-core/src/util.rs -------------------------------------------------------------------------------- /glean-core/tests/boolean.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/glean/HEAD/glean-core/tests/boolean.rs -------------------------------------------------------------------------------- /glean-core/tests/clientid_textfile.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/glean/HEAD/glean-core/tests/clientid_textfile.rs -------------------------------------------------------------------------------- /glean-core/tests/collection_enabled.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/glean/HEAD/glean-core/tests/collection_enabled.rs -------------------------------------------------------------------------------- /glean-core/tests/common/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/glean/HEAD/glean-core/tests/common/mod.rs -------------------------------------------------------------------------------- /glean-core/tests/counter.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/glean/HEAD/glean-core/tests/counter.rs -------------------------------------------------------------------------------- /glean-core/tests/custom_distribution.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/glean/HEAD/glean-core/tests/custom_distribution.rs -------------------------------------------------------------------------------- /glean-core/tests/datetime.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/glean/HEAD/glean-core/tests/datetime.rs -------------------------------------------------------------------------------- /glean-core/tests/dual_labeled_counter.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/glean/HEAD/glean-core/tests/dual_labeled_counter.rs -------------------------------------------------------------------------------- /glean-core/tests/event.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/glean/HEAD/glean-core/tests/event.rs -------------------------------------------------------------------------------- /glean-core/tests/labeled.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/glean/HEAD/glean-core/tests/labeled.rs -------------------------------------------------------------------------------- /glean-core/tests/memory_distribution.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/glean/HEAD/glean-core/tests/memory_distribution.rs -------------------------------------------------------------------------------- /glean-core/tests/object.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/glean/HEAD/glean-core/tests/object.rs -------------------------------------------------------------------------------- /glean-core/tests/ping.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/glean/HEAD/glean-core/tests/ping.rs -------------------------------------------------------------------------------- /glean-core/tests/ping_maker.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/glean/HEAD/glean-core/tests/ping_maker.rs -------------------------------------------------------------------------------- /glean-core/tests/quantity.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/glean/HEAD/glean-core/tests/quantity.rs -------------------------------------------------------------------------------- /glean-core/tests/rate.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/glean/HEAD/glean-core/tests/rate.rs -------------------------------------------------------------------------------- /glean-core/tests/storage.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/glean/HEAD/glean-core/tests/storage.rs -------------------------------------------------------------------------------- /glean-core/tests/string.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/glean/HEAD/glean-core/tests/string.rs -------------------------------------------------------------------------------- /glean-core/tests/string_list.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/glean/HEAD/glean-core/tests/string_list.rs -------------------------------------------------------------------------------- /glean-core/tests/test-rkv-cases.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/glean/HEAD/glean-core/tests/test-rkv-cases.sh -------------------------------------------------------------------------------- /glean-core/tests/text.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/glean/HEAD/glean-core/tests/text.rs -------------------------------------------------------------------------------- /glean-core/tests/timespan.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/glean/HEAD/glean-core/tests/timespan.rs -------------------------------------------------------------------------------- /glean-core/tests/timing_distribution.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/glean/HEAD/glean-core/tests/timing_distribution.rs -------------------------------------------------------------------------------- /glean-core/tests/uuid.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/glean/HEAD/glean-core/tests/uuid.rs -------------------------------------------------------------------------------- /glean-core/uniffi.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/glean/HEAD/glean-core/uniffi.toml -------------------------------------------------------------------------------- /glean.1.schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/glean/HEAD/glean.1.schema.json -------------------------------------------------------------------------------- /gradle-plugin/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/glean/HEAD/gradle-plugin/README.md -------------------------------------------------------------------------------- /gradle-plugin/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/glean/HEAD/gradle-plugin/build.gradle -------------------------------------------------------------------------------- /gradle-plugin/src/main/groovy/mozilla/telemetry/glean-gradle-plugin/GleanGradlePlugin.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/glean/HEAD/gradle-plugin/src/main/groovy/mozilla/telemetry/glean-gradle-plugin/GleanGradlePlugin.groovy -------------------------------------------------------------------------------- /gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/glean/HEAD/gradle.properties -------------------------------------------------------------------------------- /gradle/libs.versions.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/glean/HEAD/gradle/libs.versions.toml -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/glean/HEAD/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/glean/HEAD/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/glean/HEAD/gradlew -------------------------------------------------------------------------------- /gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/glean/HEAD/gradlew.bat -------------------------------------------------------------------------------- /license.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/glean/HEAD/license.template -------------------------------------------------------------------------------- /lint-baseline.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/glean/HEAD/lint-baseline.xml -------------------------------------------------------------------------------- /publish.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/glean/HEAD/publish.gradle -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/glean/HEAD/pyproject.toml -------------------------------------------------------------------------------- /samples/android/app/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/glean/HEAD/samples/android/app/README.md -------------------------------------------------------------------------------- /samples/android/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/glean/HEAD/samples/android/app/build.gradle -------------------------------------------------------------------------------- /samples/android/app/metrics.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/glean/HEAD/samples/android/app/metrics.yaml -------------------------------------------------------------------------------- /samples/android/app/pings.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/glean/HEAD/samples/android/app/pings.yaml -------------------------------------------------------------------------------- /samples/android/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/glean/HEAD/samples/android/app/proguard-rules.pro -------------------------------------------------------------------------------- /samples/android/app/src/androidTest/java/org/mozilla/samples/gleancore/MainActivityTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/glean/HEAD/samples/android/app/src/androidTest/java/org/mozilla/samples/gleancore/MainActivityTest.kt -------------------------------------------------------------------------------- /samples/android/app/src/androidTest/java/org/mozilla/samples/gleancore/pings/BackgroundPingTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/glean/HEAD/samples/android/app/src/androidTest/java/org/mozilla/samples/gleancore/pings/BackgroundPingTest.kt -------------------------------------------------------------------------------- /samples/android/app/src/androidTest/java/org/mozilla/samples/gleancore/pings/BaselinePingTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/glean/HEAD/samples/android/app/src/androidTest/java/org/mozilla/samples/gleancore/pings/BaselinePingTest.kt -------------------------------------------------------------------------------- /samples/android/app/src/androidTest/java/org/mozilla/samples/gleancore/pings/DeletionRequestPingTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/glean/HEAD/samples/android/app/src/androidTest/java/org/mozilla/samples/gleancore/pings/DeletionRequestPingTest.kt -------------------------------------------------------------------------------- /samples/android/app/src/androidTest/java/org/mozilla/samples/gleancore/pings/SharedTestUtils.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/glean/HEAD/samples/android/app/src/androidTest/java/org/mozilla/samples/gleancore/pings/SharedTestUtils.kt -------------------------------------------------------------------------------- /samples/android/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/glean/HEAD/samples/android/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /samples/android/app/src/main/java/org/mozilla/samples/gleancore/GleanApplication.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/glean/HEAD/samples/android/app/src/main/java/org/mozilla/samples/gleancore/GleanApplication.kt -------------------------------------------------------------------------------- /samples/android/app/src/main/java/org/mozilla/samples/gleancore/MainActivity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/glean/HEAD/samples/android/app/src/main/java/org/mozilla/samples/gleancore/MainActivity.kt -------------------------------------------------------------------------------- /samples/android/app/src/main/java/org/mozilla/samples/gleancore/SampleBackgroundProcess.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/glean/HEAD/samples/android/app/src/main/java/org/mozilla/samples/gleancore/SampleBackgroundProcess.kt -------------------------------------------------------------------------------- /samples/android/app/src/main/res/layout/activity_main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/glean/HEAD/samples/android/app/src/main/res/layout/activity_main.xml -------------------------------------------------------------------------------- /samples/android/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/glean/HEAD/samples/android/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /samples/android/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/glean/HEAD/samples/android/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /samples/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/glean/HEAD/samples/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /samples/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/glean/HEAD/samples/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /samples/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/glean/HEAD/samples/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /samples/android/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/glean/HEAD/samples/android/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /samples/android/app/src/main/res/xml/backup_rules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/glean/HEAD/samples/android/app/src/main/res/xml/backup_rules.xml -------------------------------------------------------------------------------- /samples/android/app/tags.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/glean/HEAD/samples/android/app/tags.yaml -------------------------------------------------------------------------------- /samples/ios/app/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/glean/HEAD/samples/ios/app/.gitignore -------------------------------------------------------------------------------- /samples/ios/app/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/glean/HEAD/samples/ios/app/README.md -------------------------------------------------------------------------------- /samples/ios/app/base.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/glean/HEAD/samples/ios/app/base.xcconfig -------------------------------------------------------------------------------- /samples/ios/app/debug.xcconfig: -------------------------------------------------------------------------------- 1 | buildvariant = debug 2 | #include "base.xcconfig" 3 | -------------------------------------------------------------------------------- /samples/ios/app/glean-sample-app.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/glean/HEAD/samples/ios/app/glean-sample-app.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /samples/ios/app/glean-sample-app.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/glean/HEAD/samples/ios/app/glean-sample-app.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /samples/ios/app/glean-sample-app.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/glean/HEAD/samples/ios/app/glean-sample-app.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /samples/ios/app/glean-sample-app.xcodeproj/project.xcworkspace/xcshareddata/swiftpm/Package.resolved: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/glean/HEAD/samples/ios/app/glean-sample-app.xcodeproj/project.xcworkspace/xcshareddata/swiftpm/Package.resolved -------------------------------------------------------------------------------- /samples/ios/app/glean-sample-app.xcodeproj/xcshareddata/xcschemes/glean-sample-app.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/glean/HEAD/samples/ios/app/glean-sample-app.xcodeproj/xcshareddata/xcschemes/glean-sample-app.xcscheme -------------------------------------------------------------------------------- /samples/ios/app/glean-sample-app/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/glean/HEAD/samples/ios/app/glean-sample-app/AppDelegate.swift -------------------------------------------------------------------------------- /samples/ios/app/glean-sample-app/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/glean/HEAD/samples/ios/app/glean-sample-app/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /samples/ios/app/glean-sample-app/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/glean/HEAD/samples/ios/app/glean-sample-app/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /samples/ios/app/glean-sample-app/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/glean/HEAD/samples/ios/app/glean-sample-app/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /samples/ios/app/glean-sample-app/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/glean/HEAD/samples/ios/app/glean-sample-app/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /samples/ios/app/glean-sample-app/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/glean/HEAD/samples/ios/app/glean-sample-app/Info.plist -------------------------------------------------------------------------------- /samples/ios/app/glean-sample-app/ViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/glean/HEAD/samples/ios/app/glean-sample-app/ViewController.swift -------------------------------------------------------------------------------- /samples/ios/app/glean-sample-appTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/glean/HEAD/samples/ios/app/glean-sample-appTests/Info.plist -------------------------------------------------------------------------------- /samples/ios/app/glean-sample-appTests/glean_sample_appTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/glean/HEAD/samples/ios/app/glean-sample-appTests/glean_sample_appTests.swift -------------------------------------------------------------------------------- /samples/ios/app/glean-sample-appUITests/BaselinePingTest.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/glean/HEAD/samples/ios/app/glean-sample-appUITests/BaselinePingTest.swift -------------------------------------------------------------------------------- /samples/ios/app/glean-sample-appUITests/DeletionRequestPingTest.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/glean/HEAD/samples/ios/app/glean-sample-appUITests/DeletionRequestPingTest.swift -------------------------------------------------------------------------------- /samples/ios/app/glean-sample-appUITests/EventPingTest.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/glean/HEAD/samples/ios/app/glean-sample-appUITests/EventPingTest.swift -------------------------------------------------------------------------------- /samples/ios/app/glean-sample-appUITests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/glean/HEAD/samples/ios/app/glean-sample-appUITests/Info.plist -------------------------------------------------------------------------------- /samples/ios/app/glean-sample-appUITests/MockServer.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/glean/HEAD/samples/ios/app/glean-sample-appUITests/MockServer.swift -------------------------------------------------------------------------------- /samples/ios/app/glean-sample-appUITests/ViewControllerTest.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/glean/HEAD/samples/ios/app/glean-sample-appUITests/ViewControllerTest.swift -------------------------------------------------------------------------------- /samples/ios/app/metrics.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/glean/HEAD/samples/ios/app/metrics.yaml -------------------------------------------------------------------------------- /samples/ios/app/pings.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/glean/HEAD/samples/ios/app/pings.yaml -------------------------------------------------------------------------------- /samples/ios/app/release.xcconfig: -------------------------------------------------------------------------------- 1 | buildvariant = release 2 | #include "base.xcconfig" 3 | -------------------------------------------------------------------------------- /samples/ios/app/sdk_generator.sh: -------------------------------------------------------------------------------- 1 | ../../../glean-core/ios/sdk_generator.sh -------------------------------------------------------------------------------- /samples/python/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/glean/HEAD/samples/python/Makefile -------------------------------------------------------------------------------- /samples/python/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/glean/HEAD/samples/python/README.md -------------------------------------------------------------------------------- /samples/python/glean-sample/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/glean/HEAD/samples/python/glean-sample/__main__.py -------------------------------------------------------------------------------- /samples/python/metrics.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/glean/HEAD/samples/python/metrics.yaml -------------------------------------------------------------------------------- /samples/python/pings.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/glean/HEAD/samples/python/pings.yaml -------------------------------------------------------------------------------- /samples/python/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/glean/HEAD/samples/python/pyproject.toml -------------------------------------------------------------------------------- /samples/rust/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/glean/HEAD/samples/rust/Cargo.toml -------------------------------------------------------------------------------- /samples/rust/build.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/glean/HEAD/samples/rust/build.rs -------------------------------------------------------------------------------- /samples/rust/metrics.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/glean/HEAD/samples/rust/metrics.yaml -------------------------------------------------------------------------------- /samples/rust/pings.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/glean/HEAD/samples/rust/pings.yaml -------------------------------------------------------------------------------- /samples/rust/src/main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/glean/HEAD/samples/rust/src/main.rs -------------------------------------------------------------------------------- /settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/glean/HEAD/settings.gradle -------------------------------------------------------------------------------- /supply-chain/audits.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/glean/HEAD/supply-chain/audits.toml -------------------------------------------------------------------------------- /supply-chain/config.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/glean/HEAD/supply-chain/config.toml -------------------------------------------------------------------------------- /supply-chain/imports.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/glean/HEAD/supply-chain/imports.lock -------------------------------------------------------------------------------- /taskcluster/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/glean/HEAD/taskcluster/config.yml -------------------------------------------------------------------------------- /taskcluster/docker/linux/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/glean/HEAD/taskcluster/docker/linux/Dockerfile -------------------------------------------------------------------------------- /taskcluster/docker/linux/runbuild.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/glean/HEAD/taskcluster/docker/linux/runbuild.sh -------------------------------------------------------------------------------- /taskcluster/docker/linux/runlocally.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/glean/HEAD/taskcluster/docker/linux/runlocally.sh -------------------------------------------------------------------------------- /taskcluster/glean_taskgraph/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/glean/HEAD/taskcluster/glean_taskgraph/__init__.py -------------------------------------------------------------------------------- /taskcluster/glean_taskgraph/build_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/glean/HEAD/taskcluster/glean_taskgraph/build_config.py -------------------------------------------------------------------------------- /taskcluster/glean_taskgraph/job.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/glean/HEAD/taskcluster/glean_taskgraph/job.py -------------------------------------------------------------------------------- /taskcluster/glean_taskgraph/loader/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/glean/HEAD/taskcluster/glean_taskgraph/loader/__init__.py -------------------------------------------------------------------------------- /taskcluster/glean_taskgraph/loader/build_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/glean/HEAD/taskcluster/glean_taskgraph/loader/build_config.py -------------------------------------------------------------------------------- /taskcluster/glean_taskgraph/loader/multi_dep.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/glean/HEAD/taskcluster/glean_taskgraph/loader/multi_dep.py -------------------------------------------------------------------------------- /taskcluster/glean_taskgraph/target_tasks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/glean/HEAD/taskcluster/glean_taskgraph/target_tasks.py -------------------------------------------------------------------------------- /taskcluster/glean_taskgraph/transforms/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/glean/HEAD/taskcluster/glean_taskgraph/transforms/__init__.py -------------------------------------------------------------------------------- /taskcluster/glean_taskgraph/transforms/beetmover.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/glean/HEAD/taskcluster/glean_taskgraph/transforms/beetmover.py -------------------------------------------------------------------------------- /taskcluster/glean_taskgraph/transforms/module_build.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/glean/HEAD/taskcluster/glean_taskgraph/transforms/module_build.py -------------------------------------------------------------------------------- /taskcluster/glean_taskgraph/transforms/multi_dep.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/glean/HEAD/taskcluster/glean_taskgraph/transforms/multi_dep.py -------------------------------------------------------------------------------- /taskcluster/glean_taskgraph/transforms/signing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/glean/HEAD/taskcluster/glean_taskgraph/transforms/signing.py -------------------------------------------------------------------------------- /taskcluster/glean_taskgraph/worker_types.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/glean/HEAD/taskcluster/glean_taskgraph/worker_types.py -------------------------------------------------------------------------------- /taskcluster/kinds/android-build/kind.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/glean/HEAD/taskcluster/kinds/android-build/kind.yml -------------------------------------------------------------------------------- /taskcluster/kinds/beetmover/kind.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/glean/HEAD/taskcluster/kinds/beetmover/kind.yml -------------------------------------------------------------------------------- /taskcluster/kinds/docker-image/kind.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/glean/HEAD/taskcluster/kinds/docker-image/kind.yml -------------------------------------------------------------------------------- /taskcluster/kinds/module-build/kind.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/glean/HEAD/taskcluster/kinds/module-build/kind.yml -------------------------------------------------------------------------------- /taskcluster/kinds/rust/kind.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/glean/HEAD/taskcluster/kinds/rust/kind.yml -------------------------------------------------------------------------------- /taskcluster/kinds/signing/kind.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/glean/HEAD/taskcluster/kinds/signing/kind.yml -------------------------------------------------------------------------------- /taskcluster/scripts/cross-compile-setup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/glean/HEAD/taskcluster/scripts/cross-compile-setup.sh -------------------------------------------------------------------------------- /taskcluster/scripts/macos.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/glean/HEAD/taskcluster/scripts/macos.manifest -------------------------------------------------------------------------------- /taskcluster/scripts/rustup-setup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/glean/HEAD/taskcluster/scripts/rustup-setup.sh -------------------------------------------------------------------------------- /tools/analysis/ping-patterns/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/glean/HEAD/tools/analysis/ping-patterns/README.md -------------------------------------------------------------------------------- /tools/analysis/ping-patterns/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/glean/HEAD/tools/analysis/ping-patterns/config.py -------------------------------------------------------------------------------- /tools/analysis/ping-patterns/ping-patterns.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/glean/HEAD/tools/analysis/ping-patterns/ping-patterns.py -------------------------------------------------------------------------------- /tools/dbread.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/glean/HEAD/tools/dbread.rs -------------------------------------------------------------------------------- /tools/docker-winbuild/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/glean/HEAD/tools/docker-winbuild/Dockerfile -------------------------------------------------------------------------------- /tools/docker-winbuild/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/glean/HEAD/tools/docker-winbuild/README.md -------------------------------------------------------------------------------- /tools/docker-winbuild/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/glean/HEAD/tools/docker-winbuild/build.sh -------------------------------------------------------------------------------- /tools/docker-winbuild/init.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/glean/HEAD/tools/docker-winbuild/init.sh -------------------------------------------------------------------------------- /tools/embedded-uniffi-bindgen/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/glean/HEAD/tools/embedded-uniffi-bindgen/Cargo.toml -------------------------------------------------------------------------------- /tools/embedded-uniffi-bindgen/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/glean/HEAD/tools/embedded-uniffi-bindgen/README.md -------------------------------------------------------------------------------- /tools/embedded-uniffi-bindgen/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/glean/HEAD/tools/embedded-uniffi-bindgen/src/lib.rs -------------------------------------------------------------------------------- /tools/embedded-uniffi-bindgen/src/main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/glean/HEAD/tools/embedded-uniffi-bindgen/src/main.rs -------------------------------------------------------------------------------- /tools/patches/bcryptprimitives.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/glean/HEAD/tools/patches/bcryptprimitives.rs -------------------------------------------------------------------------------- /xcconfig/common.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/glean/HEAD/xcconfig/common.xcconfig --------------------------------------------------------------------------------