/* This Source Code Form is subject to the terms of the Mozilla Public *License,v.2.0.IfacopyoftheMPLwasnotdistributedwiththis
* file, You can obtain one at <http://mozilla.org/MPL/2.0/>. */
/** *Usage: * *import{recordEvent}from"src/utils/telemetry"; * *// Event without extra properties *recordEvent("add_breakpoint"); * *// Event with extra properties *recordEvent("pause",{ *"reason":"debugger-statement", *"collapsed_callstacks":1 *}); * *// If the properties are in multiple code paths and you can't send them all *// in one go you will need to use the full telemetry API. * *constTelemetry=require("devtools/client/shared/telemetry"); * *consttelemetry=newTelemetry(); * *// Prepare the event and define which properties to expect. *// *// NOTE: You CAN send properties before preparing the event. *// *telemetry.preparePendingEvent(this,"pause","debugger",null,[ *"reason","collapsed_callstacks" *]); * *// Elsewhere in another codepath send the reason property *telemetry.addEventProperty( *this,"pause","debugger",null,"reason","debugger-statement" *); * *// Elsewhere in another codepath send the collapsed_callstacks property *telemetry.addEventProperty( *this,"pause","debugger",null,"collapsed_callstacks",1 *);
*/
import { isNode } from "./environment";
let telemetry;
if (isNode()) { const Telemetry = require("resource://devtools/client/shared/telemetry.js");
telemetry = new Telemetry();
}
export function setToolboxTelemetry(toolboxTelemetry) {
telemetry = toolboxTelemetry;
}
Die Informationen auf dieser Webseite wurden
nach bestem Wissen sorgfältig zusammengestellt. Es wird jedoch weder Vollständigkeit, noch Richtigkeit,
noch Qualität der bereit gestellten Informationen zugesichert.
Bemerkung:
Die farbliche Syntaxdarstellung und die Messung sind noch experimentell.