Skip to content

Commit 3cde59e

Browse files
authored
Merge pull request github#13651 from michaelnebel/telemetrytop100
Java/C#: Reduce the amount of telemetry being produced.
2 parents 238f390 + 23a119b commit 3cde59e

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

csharp/ql/src/Telemetry/ExternalApi.qll

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -136,7 +136,7 @@ private string nestedName(Declaration declaration) {
136136
/**
137137
* Gets the limit for the number of results produced by a telemetry query.
138138
*/
139-
int resultLimit() { result = 1000 }
139+
int resultLimit() { result = 100 }
140140

141141
/**
142142
* Holds if it is relevant to count usages of `api`.

java/ql/src/Telemetry/ExternalApi.qll

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -96,7 +96,7 @@ deprecated class ExternalAPI = ExternalApi;
9696
/**
9797
* Gets the limit for the number of results produced by a telemetry query.
9898
*/
99-
int resultLimit() { result = 1000 }
99+
int resultLimit() { result = 100 }
100100

101101
/**
102102
* Holds if it is relevant to count usages of `api`.

0 commit comments

Comments
 (0)