Commit Graph

54 Commits

Author SHA1 Message Date
Alessio Placitelli
f3eb8e2fb5 Bug 1134279 - Make TelemetryPing and TelemetrySession code use the "FHR enabled" & "Telemetry enabled" prefs properly. r=vladan 2015-03-25 16:42:14 +01:00
Georg Fritzsche
44e75f1151 Bug 1120362 - Part 1 - Enable snapshotting and clearing subsession histograms. r=vladan 2015-02-25 23:54:33 +01:00
Georg Fritzsche
2739bfd26f Bug 1127914 - Part 2 - Duplicate normal histograms for double submission. r=vladan 2015-02-25 23:54:32 +01:00
Georg Fritzsche
b2a6507056 Bug 1128405 - Fix missing UUID rev for nsITelemetry for bug 1120369. r=froydnj 2015-02-02 15:24:21 +01:00
Georg Fritzsche
18530f552d Bug 1120369 - Allow specifying the desired dataset in Histograms.json. r=vladan 2015-01-29 15:17:24 +01:00
Georg Fritzsche
1644d02b87 Bug 1069953 - Part 2: Make min/max/bucket_count optional for nsITelemetry registerAddonHistogram(). r=froydnj 2014-10-17 17:38:43 +02:00
Georg Fritzsche
0fd9b006e5 Bug 1069874 - Add keyed histogram types. r=froydnj 2014-10-30 20:51:01 +01:00
Georg Fritzsche
bc98f46da0 Bug 1069953 - Part 1: Make min/max/bucket_count optional for nsITelemetry newHistogram(). r=froydnj 2014-10-28 12:47:38 +01:00
Georg Fritzsche
e75bffb6b2 Bug 1069873 - Add counter histogram type. r=froydnj 2014-09-26 17:45:33 +02:00
Jim Chen
41a6b06c80 Bug 1034138 - b. Add thread hang native stack output to nsITelemetry; r=vladan 2014-07-29 10:33:11 -04:00
Carsten "Tomcat" Book
a2287edfb6 Backed out changeset e83ef20b70ff (bug 1034138) 2014-07-25 15:59:08 +02:00
Jim Chen
46fd0de57e Bug 1034138 - b. Add thread hang native stack output to nsITelemetry; r=vladan 2014-07-24 22:33:50 -04:00
Aaron Klotz
66884a5f0b Bug 976000: Add info to Telemetry.fileIOReports to differentiate between start/normal/shutdown I/O; r=froydnj 2014-03-18 16:07:35 -06:00
Benjamin Smedberg
0e73145762 Bug 981851 - Add a simple JS logging mechanism to telemetry for recording unusual event data, r=taras 2014-03-14 09:24:02 -04:00
Aaron Klotz
93d96d1313 Bug 902587 - Part 3: IO Interpose Reporter for Telemetry; r=froydnj 2013-12-09 21:30:06 -02:00
Roberto A. Vitillo
e6520ed502 Bug 742500 - Disable expired telemetry probes. r=vladan 2014-01-03 12:02:48 -05:00
Ryan VanderMeulen
2fbd8e3fa4 Backed out changeset 70fd824abff0 (bug 742500) for xpcshell orange. 2014-01-03 11:31:17 -05:00
Roberto A. Vitillo
0d81111f50 Bug 742500 - Disable expired telemetry probes. r=vladan 2014-01-03 09:28:07 -05:00
Nathan Froyd
9d53df597a Bug 932285 - part 2 - convert nsITelemetry.registeredHistograms to a function returning an array; r=vladan 2013-12-13 12:56:11 -05:00
Jim Chen
2e14db4bf0 Bug 932865 - Expose thread hang stats through nsITelemetry and telemetry ping; r=vladan 2013-11-22 14:17:31 -05:00
David Rajchenbach-Teller
2647560da9 Bug 724368 - Expose the maximum number of threads to JS. r=froydnj 2013-04-19 07:54:18 -04:00
Aaron Klotz
e1fe44a7f4 Bug 815418: Telemetry for failed profile lock attempts r=vladan 2013-01-31 15:11:38 -06:00
Scott Johnson
720727581a Backed out changeset 69e0bdbd4f36 for incorrect commit message. r=me 2013-01-31 15:09:09 -06:00
Aarom Klotz
2e09587311 Bug 815418: Telemetry for failed profile lock attempts r=vladan 2013-01-31 15:04:52 -06:00
Rafael Ávila de Espíndola
afbb4d6269 Bug 814765 - Include late writes in the Telemetry ping. r=vladan. 2013-01-08 09:04:37 -05:00
Rafael Ávila de Espíndola
505dfd500d Bug 822703 - s/ShutdownTime/TelemetryData/ where appropriate. r=vladan. 2012-12-19 10:29:08 -05:00
Rafael Ávila de Espíndola
c870714ef8 Bug 815709 - Shutdown time is read in the main thread. r=vladan. 2012-12-13 23:13:03 -05:00
Rafael Ávila de Espíndola
c3b8f61ff5 Bug 815709 - Shutdown time is read in the main thread. r=ehsan.
Move code to Telemetry.cpp and s/NULL/nullptr/.
2012-12-13 12:06:27 -05:00
Ehsan Akhgari
243c878d26 Bug 579517 - Part 1: Automated conversion of NSPR numeric types to stdint types in Gecko; r=bsmedberg
This patch was generated by a script.  Here's the source of the script for
future reference:

function convert() {
echo "Converting $1 to $2..."
find . ! -wholename "*nsprpub*" \
       ! -wholename "*security/nss*" \
       ! -wholename "*/.hg*" \
       ! -wholename "obj-ff-dbg*" \
       ! -name nsXPCOMCID.h \
       ! -name prtypes.h \
         -type f \
      \( -iname "*.cpp" \
         -o -iname "*.h" \
         -o -iname "*.c" \
         -o -iname "*.cc" \
         -o -iname "*.idl" \
         -o -iname "*.ipdl" \
         -o -iname "*.ipdlh" \
         -o -iname "*.mm" \) | \
    xargs -n 1 sed -i -e "s/\b$1\b/$2/g"
}

convert PRInt8 int8_t
convert PRUint8 uint8_t
convert PRInt16 int16_t
convert PRUint16 uint16_t
convert PRInt32 int32_t
convert PRUint32 uint32_t
convert PRInt64 int64_t
convert PRUint64 uint64_t

convert PRIntn int
convert PRUintn unsigned

convert PRSize size_t

convert PROffset32 int32_t
convert PROffset64 int64_t

convert PRPtrdiff ptrdiff_t

convert PRFloat64 double
2012-08-22 11:56:38 -04:00
Nathan Froyd
510276f998 Bug 763525 - delete C++ persistent telemetry implementation; r=taras 2012-06-11 14:35:35 -04:00
Phil Ringnalda
907102edda Back out d52a31584c8a (bug 763525) to investigate the effects on TestStartupCache bustage on a CLOSED TREE 2012-06-11 16:37:14 -07:00
Nathan Froyd
1319252016 Bug 763525 - delete C++ persistent telemetry implementation; r=taras 2012-06-11 14:35:35 -04:00
Gervase Markham
cb6a072c2a Bug 716478 - update licence to MPL 2. 2012-05-21 12:12:37 +01:00
Nathan Froyd
52f7a71947 Bug 748914 - Part 2: add a clear() method to JS histograms; r=taras 2012-05-08 15:39:24 -04:00
Vladan Djeric
2a5b658be4 Bug 722368 - Report slow SQL created from dynamic strings to Telemetry. r=taras 2012-03-21 13:26:48 -04:00
Nathan Froyd
169b3b3b0e Bug 735768 - Part 3 - add tests for persistent telemetry; r=taras 2012-03-15 13:58:51 -04:00
Vladan Djeric
851a0eeba4 Bug 712109 - Implement chrome hang reporting on profiling branch. r=ehsan 2012-03-12 07:07:05 -04:00
Nathan Froyd
f078fb8139 Bug 723846 - Part 2: add FlagHistograms to nsITelemetry. r=taras 2012-03-02 09:59:38 -05:00
Nathan Froyd
b5cfd2d28f Bug 707320 - Part 2: provide interface for loading and saving histograms; r=taras 2011-12-09 15:15:53 -05:00
Nathan Froyd
d14d046f76 Bug 715927 - addon telemetry, C++ side; r=taras 2012-01-20 13:56:48 -08:00
Nathan Froyd
7ce12a5087 Bug 722240 - Submit Telemetry only for official builds; r=taras 2012-02-01 23:42:20 -05:00
Nathan Froyd
283976617b Bug 701863 - clone STARTUP_* histograms properly; r=taras 2012-01-06 14:40:45 -05:00
Nathan Froyd
8ed8cc70ef Bug 701863 - Add a way to clone histograms; r=taras 2012-01-06 14:40:04 -05:00
Rafael Ávila de Espíndola
721891864e Bug 709406: Fix up slow SQL reporting. r=taras. a=ehsan. 2011-12-14 15:04:25 -05:00
Phil Ringnalda
845afd577a Back out 7341f4e8b3f3, d91429762579, d0a362467a96, 0aba56de1824 (bug 701863) for Windows timeouts in test_TelemetryPing.js 2011-12-06 23:18:30 -08:00
Nathan Froyd
34992ff289 Bug 701863 - clone STARTUP_* histograms properly; r=taras 2011-11-16 15:33:18 -05:00
Nathan Froyd
e3fcea896c Bug 701863 - Add a way to clone histograms; r=taras
Add nsITelemetry::histogramFrom.
2011-11-14 14:28:18 -05:00
Ed Morley
1a2c56dce4 Backout 75e72a52a0cb, 1120ae801dac, b2572a5cffa9, fa6a273a9b41 (bug 701863) for build failures 2011-12-03 09:13:14 +00:00
Nathan Froyd
aa7a7c6437 Bug 701863 - clone STARTUP_* histograms properly; r=taras 2011-11-16 15:33:18 -05:00
Nathan Froyd
c912b91dad Bug 701863 - Add a way to clone histograms; r=taras
Add nsITelemetry::histogramFrom.
2011-11-14 14:28:18 -05:00