Skip to content

Commit

Permalink
[skip ci] Updates
Browse files Browse the repository at this point in the history
  • Loading branch information
badboy committed Jan 7, 2025
1 parent b0d38ae commit a77abad
Show file tree
Hide file tree
Showing 334 changed files with 352 additions and 344 deletions.
18 changes: 11 additions & 7 deletions book/print.html
Original file line number Diff line number Diff line change
Expand Up @@ -8129,19 +8129,20 @@ <h3 id="accumulatesamples"><a class="header" href="#accumulatesamples"><code>acc
<p><strong>C++</strong></p>
<pre><code class="language-c++">#include &quot;mozilla/glean/GleanMetrics.h&quot;

mozilla::glean::pages::page_load.AccumulateRawSamples(sample);
mozilla::glean::pages::page_load.AccumulateRawSamples(samples);
</code></pre>
<p><strong>JavaScript</strong></p>
<p>This operation is not currently supported in JavaScript.</p>
<pre><code class="language-js">Glean.pages.pageLoad.accumulateSamples(samples);
</code></pre>
</div>
</div>
</div>
<h3 id="accumulatesinglesample"><a class="header" href="#accumulatesinglesample"><code>accumulateSingleSample</code></a></h3>
<p>Accumulates a single signed sample and appends it to the metric. Prefer this
for the common use case of having a single value to avoid having to pass
a collection over a foreign language interface.</p>
<p>A signed value is required so that the platform-specific code can provide
us with a 64 bit signed integer if no <code>u64</code> comparable type is available.
<p>A signed value is required so that the platform-specific code can provide
us with a 64 bit signed integer if no <code>u64</code> comparable type is available.
This will take care of filtering and reporting errors for a negative
sample.</p>
<p>Please note that this assumes that the provided sample is already in
Expand Down Expand Up @@ -8200,7 +8201,8 @@ <h3 id="accumulatesinglesample"><a class="header" href="#accumulatesinglesample"
mozilla::glean::pages::page_load.AccumulateRawDuration(aDuration);
</code></pre>
<p><strong>JavaScript</strong></p>
<p>This operation is not currently supported in JavaScript.</p>
<pre><code class="language-js">Glean.pages.pageLoad.accumulateSingleSample(sample);
</code></pre>
</div>
</div>
</div>
Expand Down Expand Up @@ -8791,7 +8793,8 @@ <h3 id="accumulatesamples-1"><a class="header" href="#accumulatesamples-1"><code
.AccumulateRawSamples(samples);
</code></pre>
<p><strong>JavaScript</strong></p>
<p>This operation is not currently supported in JavaScript.</p>
<pre><code class="language-js">Glean.devtools.coldToolboxOpenDelay[toolboxId].accumulateSamples(samples);
</code></pre>
</div>
</div>
</div>
Expand Down Expand Up @@ -8844,7 +8847,8 @@ <h3 id="accumulatesinglesample-1"><a class="header" href="#accumulatesinglesampl
.AccumulateRawDuration(aDuration);
</code></pre>
<p><strong>JavaScript</strong></p>
<p>This operation is not currently supported in JavaScript.</p>
<pre><code class="language-js">Glean.devtools.coldToolboxOpenDelay[toolboxId].accumulateSamples(sample);
</code></pre>
</div>
</div>
</div>
Expand Down
6 changes: 4 additions & 2 deletions book/reference/metrics/labeled_timing_distributions.html
Original file line number Diff line number Diff line change
Expand Up @@ -354,7 +354,8 @@ <h3 id="accumulatesamples"><a class="header" href="#accumulatesamples"><code>acc
.AccumulateRawSamples(samples);
</code></pre>
<p><strong>JavaScript</strong></p>
<p>This operation is not currently supported in JavaScript.</p>
<pre><code class="language-js">Glean.devtools.coldToolboxOpenDelay[toolboxId].accumulateSamples(samples);
</code></pre>
</div>
</div>
</div>
Expand Down Expand Up @@ -407,7 +408,8 @@ <h3 id="accumulatesinglesample"><a class="header" href="#accumulatesinglesample"
.AccumulateRawDuration(aDuration);
</code></pre>
<p><strong>JavaScript</strong></p>
<p>This operation is not currently supported in JavaScript.</p>
<pre><code class="language-js">Glean.devtools.coldToolboxOpenDelay[toolboxId].accumulateSamples(sample);
</code></pre>
</div>
</div>
</div>
Expand Down
12 changes: 7 additions & 5 deletions book/reference/metrics/timing_distribution.html
Original file line number Diff line number Diff line change
Expand Up @@ -418,19 +418,20 @@ <h3 id="accumulatesamples"><a class="header" href="#accumulatesamples"><code>acc
<p><strong>C++</strong></p>
<pre><code class="language-c++">#include &quot;mozilla/glean/GleanMetrics.h&quot;

mozilla::glean::pages::page_load.AccumulateRawSamples(sample);
mozilla::glean::pages::page_load.AccumulateRawSamples(samples);
</code></pre>
<p><strong>JavaScript</strong></p>
<p>This operation is not currently supported in JavaScript.</p>
<pre><code class="language-js">Glean.pages.pageLoad.accumulateSamples(samples);
</code></pre>
</div>
</div>
</div>
<h3 id="accumulatesinglesample"><a class="header" href="#accumulatesinglesample"><code>accumulateSingleSample</code></a></h3>
<p>Accumulates a single signed sample and appends it to the metric. Prefer this
for the common use case of having a single value to avoid having to pass
a collection over a foreign language interface.</p>
<p>A signed value is required so that the platform-specific code can provide
us with a 64 bit signed integer if no <code>u64</code> comparable type is available.
<p>A signed value is required so that the platform-specific code can provide
us with a 64 bit signed integer if no <code>u64</code> comparable type is available.
This will take care of filtering and reporting errors for a negative
sample.</p>
<p>Please note that this assumes that the provided sample is already in
Expand Down Expand Up @@ -489,7 +490,8 @@ <h3 id="accumulatesinglesample"><a class="header" href="#accumulatesinglesample"
mozilla::glean::pages::page_load.AccumulateRawDuration(aDuration);
</code></pre>
<p><strong>JavaScript</strong></p>
<p>This operation is not currently supported in JavaScript.</p>
<pre><code class="language-js">Glean.pages.pageLoad.accumulateSingleSample(sample);
</code></pre>
</div>
</div>
</div>
Expand Down
2 changes: 1 addition & 1 deletion book/searchindex.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion book/searchindex.json

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion swift/Classes.html
Original file line number Diff line number Diff line change
Expand Up @@ -1931,7 +1931,7 @@ <h4>Declaration</h4>
</section>
</section>
<section id="footer">
<p>&copy; 2025 <a class="link" href="https://mozilla.github.com/glean" target="_blank" rel="external noopener"></a>. All rights reserved. (Last updated: 2025-01-06)</p>
<p>&copy; 2025 <a class="link" href="https://mozilla.github.com/glean" target="_blank" rel="external noopener"></a>. All rights reserved. (Last updated: 2025-01-07)</p>
<p>Generated by <a class="link" href="https://github.com/realm/jazzy" target="_blank" rel="external noopener">jazzy ♪♫ v0.15.3</a>, a <a class="link" href="https://realm.io" target="_blank" rel="external noopener">Realm</a> project.</p>
</section>
</article>
Expand Down
2 changes: 1 addition & 1 deletion swift/Classes/BooleanMetric.html
Original file line number Diff line number Diff line change
Expand Up @@ -1215,7 +1215,7 @@ <h4>Declaration</h4>
</section>
</section>
<section id="footer">
<p>&copy; 2025 <a class="link" href="https://mozilla.github.com/glean" target="_blank" rel="external noopener"></a>. All rights reserved. (Last updated: 2025-01-06)</p>
<p>&copy; 2025 <a class="link" href="https://mozilla.github.com/glean" target="_blank" rel="external noopener"></a>. All rights reserved. (Last updated: 2025-01-07)</p>
<p>Generated by <a class="link" href="https://github.com/realm/jazzy" target="_blank" rel="external noopener">jazzy ♪♫ v0.15.3</a>, a <a class="link" href="https://realm.io" target="_blank" rel="external noopener">Realm</a> project.</p>
</section>
</article>
Expand Down
2 changes: 1 addition & 1 deletion swift/Classes/BooleanMetric/NoPointer.html
Original file line number Diff line number Diff line change
Expand Up @@ -1002,7 +1002,7 @@ <h4>Declaration</h4>
</section>
</section>
<section id="footer">
<p>&copy; 2025 <a class="link" href="https://mozilla.github.com/glean" target="_blank" rel="external noopener"></a>. All rights reserved. (Last updated: 2025-01-06)</p>
<p>&copy; 2025 <a class="link" href="https://mozilla.github.com/glean" target="_blank" rel="external noopener"></a>. All rights reserved. (Last updated: 2025-01-07)</p>
<p>Generated by <a class="link" href="https://github.com/realm/jazzy" target="_blank" rel="external noopener">jazzy ♪♫ v0.15.3</a>, a <a class="link" href="https://realm.io" target="_blank" rel="external noopener">Realm</a> project.</p>
</section>
</article>
Expand Down
2 changes: 1 addition & 1 deletion swift/Classes/CounterMetric.html
Original file line number Diff line number Diff line change
Expand Up @@ -1215,7 +1215,7 @@ <h4>Declaration</h4>
</section>
</section>
<section id="footer">
<p>&copy; 2025 <a class="link" href="https://mozilla.github.com/glean" target="_blank" rel="external noopener"></a>. All rights reserved. (Last updated: 2025-01-06)</p>
<p>&copy; 2025 <a class="link" href="https://mozilla.github.com/glean" target="_blank" rel="external noopener"></a>. All rights reserved. (Last updated: 2025-01-07)</p>
<p>Generated by <a class="link" href="https://github.com/realm/jazzy" target="_blank" rel="external noopener">jazzy ♪♫ v0.15.3</a>, a <a class="link" href="https://realm.io" target="_blank" rel="external noopener">Realm</a> project.</p>
</section>
</article>
Expand Down
2 changes: 1 addition & 1 deletion swift/Classes/CounterMetric/NoPointer.html
Original file line number Diff line number Diff line change
Expand Up @@ -1002,7 +1002,7 @@ <h4>Declaration</h4>
</section>
</section>
<section id="footer">
<p>&copy; 2025 <a class="link" href="https://mozilla.github.com/glean" target="_blank" rel="external noopener"></a>. All rights reserved. (Last updated: 2025-01-06)</p>
<p>&copy; 2025 <a class="link" href="https://mozilla.github.com/glean" target="_blank" rel="external noopener"></a>. All rights reserved. (Last updated: 2025-01-07)</p>
<p>Generated by <a class="link" href="https://github.com/realm/jazzy" target="_blank" rel="external noopener">jazzy ♪♫ v0.15.3</a>, a <a class="link" href="https://realm.io" target="_blank" rel="external noopener">Realm</a> project.</p>
</section>
</article>
Expand Down
2 changes: 1 addition & 1 deletion swift/Classes/CustomDistributionMetric.html
Original file line number Diff line number Diff line change
Expand Up @@ -1242,7 +1242,7 @@ <h4>Declaration</h4>
</section>
</section>
<section id="footer">
<p>&copy; 2025 <a class="link" href="https://mozilla.github.com/glean" target="_blank" rel="external noopener"></a>. All rights reserved. (Last updated: 2025-01-06)</p>
<p>&copy; 2025 <a class="link" href="https://mozilla.github.com/glean" target="_blank" rel="external noopener"></a>. All rights reserved. (Last updated: 2025-01-07)</p>
<p>Generated by <a class="link" href="https://github.com/realm/jazzy" target="_blank" rel="external noopener">jazzy ♪♫ v0.15.3</a>, a <a class="link" href="https://realm.io" target="_blank" rel="external noopener">Realm</a> project.</p>
</section>
</article>
Expand Down
2 changes: 1 addition & 1 deletion swift/Classes/CustomDistributionMetric/NoPointer.html
Original file line number Diff line number Diff line change
Expand Up @@ -1002,7 +1002,7 @@ <h4>Declaration</h4>
</section>
</section>
<section id="footer">
<p>&copy; 2025 <a class="link" href="https://mozilla.github.com/glean" target="_blank" rel="external noopener"></a>. All rights reserved. (Last updated: 2025-01-06)</p>
<p>&copy; 2025 <a class="link" href="https://mozilla.github.com/glean" target="_blank" rel="external noopener"></a>. All rights reserved. (Last updated: 2025-01-07)</p>
<p>Generated by <a class="link" href="https://github.com/realm/jazzy" target="_blank" rel="external noopener">jazzy ♪♫ v0.15.3</a>, a <a class="link" href="https://realm.io" target="_blank" rel="external noopener">Realm</a> project.</p>
</section>
</article>
Expand Down
2 changes: 1 addition & 1 deletion swift/Classes/DatetimeMetric.html
Original file line number Diff line number Diff line change
Expand Up @@ -1242,7 +1242,7 @@ <h4>Declaration</h4>
</section>
</section>
<section id="footer">
<p>&copy; 2025 <a class="link" href="https://mozilla.github.com/glean" target="_blank" rel="external noopener"></a>. All rights reserved. (Last updated: 2025-01-06)</p>
<p>&copy; 2025 <a class="link" href="https://mozilla.github.com/glean" target="_blank" rel="external noopener"></a>. All rights reserved. (Last updated: 2025-01-07)</p>
<p>Generated by <a class="link" href="https://github.com/realm/jazzy" target="_blank" rel="external noopener">jazzy ♪♫ v0.15.3</a>, a <a class="link" href="https://realm.io" target="_blank" rel="external noopener">Realm</a> project.</p>
</section>
</article>
Expand Down
2 changes: 1 addition & 1 deletion swift/Classes/DatetimeMetric/NoPointer.html
Original file line number Diff line number Diff line change
Expand Up @@ -1002,7 +1002,7 @@ <h4>Declaration</h4>
</section>
</section>
<section id="footer">
<p>&copy; 2025 <a class="link" href="https://mozilla.github.com/glean" target="_blank" rel="external noopener"></a>. All rights reserved. (Last updated: 2025-01-06)</p>
<p>&copy; 2025 <a class="link" href="https://mozilla.github.com/glean" target="_blank" rel="external noopener"></a>. All rights reserved. (Last updated: 2025-01-07)</p>
<p>Generated by <a class="link" href="https://github.com/realm/jazzy" target="_blank" rel="external noopener">jazzy ♪♫ v0.15.3</a>, a <a class="link" href="https://realm.io" target="_blank" rel="external noopener">Realm</a> project.</p>
</section>
</article>
Expand Down
2 changes: 1 addition & 1 deletion swift/Classes/DatetimeMetricType.html
Original file line number Diff line number Diff line change
Expand Up @@ -1207,7 +1207,7 @@ <h4>Return Value</h4>
</section>
</section>
<section id="footer">
<p>&copy; 2025 <a class="link" href="https://mozilla.github.com/glean" target="_blank" rel="external noopener"></a>. All rights reserved. (Last updated: 2025-01-06)</p>
<p>&copy; 2025 <a class="link" href="https://mozilla.github.com/glean" target="_blank" rel="external noopener"></a>. All rights reserved. (Last updated: 2025-01-07)</p>
<p>Generated by <a class="link" href="https://github.com/realm/jazzy" target="_blank" rel="external noopener">jazzy ♪♫ v0.15.3</a>, a <a class="link" href="https://realm.io" target="_blank" rel="external noopener">Realm</a> project.</p>
</section>
</article>
Expand Down
2 changes: 1 addition & 1 deletion swift/Classes/DenominatorMetric.html
Original file line number Diff line number Diff line change
Expand Up @@ -1215,7 +1215,7 @@ <h4>Declaration</h4>
</section>
</section>
<section id="footer">
<p>&copy; 2025 <a class="link" href="https://mozilla.github.com/glean" target="_blank" rel="external noopener"></a>. All rights reserved. (Last updated: 2025-01-06)</p>
<p>&copy; 2025 <a class="link" href="https://mozilla.github.com/glean" target="_blank" rel="external noopener"></a>. All rights reserved. (Last updated: 2025-01-07)</p>
<p>Generated by <a class="link" href="https://github.com/realm/jazzy" target="_blank" rel="external noopener">jazzy ♪♫ v0.15.3</a>, a <a class="link" href="https://realm.io" target="_blank" rel="external noopener">Realm</a> project.</p>
</section>
</article>
Expand Down
2 changes: 1 addition & 1 deletion swift/Classes/DenominatorMetric/NoPointer.html
Original file line number Diff line number Diff line change
Expand Up @@ -1002,7 +1002,7 @@ <h4>Declaration</h4>
</section>
</section>
<section id="footer">
<p>&copy; 2025 <a class="link" href="https://mozilla.github.com/glean" target="_blank" rel="external noopener"></a>. All rights reserved. (Last updated: 2025-01-06)</p>
<p>&copy; 2025 <a class="link" href="https://mozilla.github.com/glean" target="_blank" rel="external noopener"></a>. All rights reserved. (Last updated: 2025-01-07)</p>
<p>Generated by <a class="link" href="https://github.com/realm/jazzy" target="_blank" rel="external noopener">jazzy ♪♫ v0.15.3</a>, a <a class="link" href="https://realm.io" target="_blank" rel="external noopener">Realm</a> project.</p>
</section>
</article>
Expand Down
2 changes: 1 addition & 1 deletion swift/Classes/EventMetric.html
Original file line number Diff line number Diff line change
Expand Up @@ -1215,7 +1215,7 @@ <h4>Declaration</h4>
</section>
</section>
<section id="footer">
<p>&copy; 2025 <a class="link" href="https://mozilla.github.com/glean" target="_blank" rel="external noopener"></a>. All rights reserved. (Last updated: 2025-01-06)</p>
<p>&copy; 2025 <a class="link" href="https://mozilla.github.com/glean" target="_blank" rel="external noopener"></a>. All rights reserved. (Last updated: 2025-01-07)</p>
<p>Generated by <a class="link" href="https://github.com/realm/jazzy" target="_blank" rel="external noopener">jazzy ♪♫ v0.15.3</a>, a <a class="link" href="https://realm.io" target="_blank" rel="external noopener">Realm</a> project.</p>
</section>
</article>
Expand Down
2 changes: 1 addition & 1 deletion swift/Classes/EventMetric/NoPointer.html
Original file line number Diff line number Diff line change
Expand Up @@ -1002,7 +1002,7 @@ <h4>Declaration</h4>
</section>
</section>
<section id="footer">
<p>&copy; 2025 <a class="link" href="https://mozilla.github.com/glean" target="_blank" rel="external noopener"></a>. All rights reserved. (Last updated: 2025-01-06)</p>
<p>&copy; 2025 <a class="link" href="https://mozilla.github.com/glean" target="_blank" rel="external noopener"></a>. All rights reserved. (Last updated: 2025-01-07)</p>
<p>Generated by <a class="link" href="https://github.com/realm/jazzy" target="_blank" rel="external noopener">jazzy ♪♫ v0.15.3</a>, a <a class="link" href="https://realm.io" target="_blank" rel="external noopener">Realm</a> project.</p>
</section>
</article>
Expand Down
2 changes: 1 addition & 1 deletion swift/Classes/EventMetricType.html
Original file line number Diff line number Diff line change
Expand Up @@ -1135,7 +1135,7 @@ <h4>Return Value</h4>
</section>
</section>
<section id="footer">
<p>&copy; 2025 <a class="link" href="https://mozilla.github.com/glean" target="_blank" rel="external noopener"></a>. All rights reserved. (Last updated: 2025-01-06)</p>
<p>&copy; 2025 <a class="link" href="https://mozilla.github.com/glean" target="_blank" rel="external noopener"></a>. All rights reserved. (Last updated: 2025-01-07)</p>
<p>Generated by <a class="link" href="https://github.com/realm/jazzy" target="_blank" rel="external noopener">jazzy ♪♫ v0.15.3</a>, a <a class="link" href="https://realm.io" target="_blank" rel="external noopener">Realm</a> project.</p>
</section>
</article>
Expand Down
2 changes: 1 addition & 1 deletion swift/Classes/Glean.html
Original file line number Diff line number Diff line change
Expand Up @@ -2052,7 +2052,7 @@ <h4>Parameters</h4>
</section>
</section>
<section id="footer">
<p>&copy; 2025 <a class="link" href="https://mozilla.github.com/glean" target="_blank" rel="external noopener"></a>. All rights reserved. (Last updated: 2025-01-06)</p>
<p>&copy; 2025 <a class="link" href="https://mozilla.github.com/glean" target="_blank" rel="external noopener"></a>. All rights reserved. (Last updated: 2025-01-07)</p>
<p>Generated by <a class="link" href="https://github.com/realm/jazzy" target="_blank" rel="external noopener">jazzy ♪♫ v0.15.3</a>, a <a class="link" href="https://realm.io" target="_blank" rel="external noopener">Realm</a> project.</p>
</section>
</article>
Expand Down
2 changes: 1 addition & 1 deletion swift/Classes/HttpPingUploader.html
Original file line number Diff line number Diff line change
Expand Up @@ -1034,7 +1034,7 @@ <h4>Parameters</h4>
</section>
</section>
<section id="footer">
<p>&copy; 2025 <a class="link" href="https://mozilla.github.com/glean" target="_blank" rel="external noopener"></a>. All rights reserved. (Last updated: 2025-01-06)</p>
<p>&copy; 2025 <a class="link" href="https://mozilla.github.com/glean" target="_blank" rel="external noopener"></a>. All rights reserved. (Last updated: 2025-01-07)</p>
<p>Generated by <a class="link" href="https://github.com/realm/jazzy" target="_blank" rel="external noopener">jazzy ♪♫ v0.15.3</a>, a <a class="link" href="https://realm.io" target="_blank" rel="external noopener">Realm</a> project.</p>
</section>
</article>
Expand Down
2 changes: 1 addition & 1 deletion swift/Classes/LabeledBoolean.html
Original file line number Diff line number Diff line change
Expand Up @@ -1188,7 +1188,7 @@ <h4>Declaration</h4>
</section>
</section>
<section id="footer">
<p>&copy; 2025 <a class="link" href="https://mozilla.github.com/glean" target="_blank" rel="external noopener"></a>. All rights reserved. (Last updated: 2025-01-06)</p>
<p>&copy; 2025 <a class="link" href="https://mozilla.github.com/glean" target="_blank" rel="external noopener"></a>. All rights reserved. (Last updated: 2025-01-07)</p>
<p>Generated by <a class="link" href="https://github.com/realm/jazzy" target="_blank" rel="external noopener">jazzy ♪♫ v0.15.3</a>, a <a class="link" href="https://realm.io" target="_blank" rel="external noopener">Realm</a> project.</p>
</section>
</article>
Expand Down
2 changes: 1 addition & 1 deletion swift/Classes/LabeledBoolean/NoPointer.html
Original file line number Diff line number Diff line change
Expand Up @@ -1002,7 +1002,7 @@ <h4>Declaration</h4>
</section>
</section>
<section id="footer">
<p>&copy; 2025 <a class="link" href="https://mozilla.github.com/glean" target="_blank" rel="external noopener"></a>. All rights reserved. (Last updated: 2025-01-06)</p>
<p>&copy; 2025 <a class="link" href="https://mozilla.github.com/glean" target="_blank" rel="external noopener"></a>. All rights reserved. (Last updated: 2025-01-07)</p>
<p>Generated by <a class="link" href="https://github.com/realm/jazzy" target="_blank" rel="external noopener">jazzy ♪♫ v0.15.3</a>, a <a class="link" href="https://realm.io" target="_blank" rel="external noopener">Realm</a> project.</p>
</section>
</article>
Expand Down
Loading

0 comments on commit a77abad

Please sign in to comment.