Searched refs:maxNumberOfAttributes (Results 1 – 3 of 3) sorted by relevance
304 final int maxNumberOfAttributes = 8; in droppingAttributes() local306 TraceParams.DEFAULT.toBuilder().setMaxNumberOfAttributes(maxNumberOfAttributes).build(); in droppingAttributes()318 for (int i = 0; i < 2 * maxNumberOfAttributes; i++) { in droppingAttributes()325 .isEqualTo(maxNumberOfAttributes); in droppingAttributes()326 assertThat(spanData.getAttributes().getAttributeMap().size()).isEqualTo(maxNumberOfAttributes); in droppingAttributes()327 for (int i = 0; i < maxNumberOfAttributes; i++) { in droppingAttributes()332 .get("MyStringAttributeKey" + (i + maxNumberOfAttributes))) in droppingAttributes()333 .isEqualTo(AttributeValue.longAttributeValue(i + maxNumberOfAttributes)); in droppingAttributes()338 .isEqualTo(maxNumberOfAttributes); in droppingAttributes()339 assertThat(spanData.getAttributes().getAttributeMap().size()).isEqualTo(maxNumberOfAttributes); in droppingAttributes()[all …]
166 int maxNumberOfAttributes = Integer.parseInt(maxNumberOfAttributesStr); in maybeApplyChanges() local167 traceParamsBuilder.setMaxNumberOfAttributes(maxNumberOfAttributes); in maybeApplyChanges()
151 public abstract Builder setMaxNumberOfAttributes(int maxNumberOfAttributes); in setMaxNumberOfAttributes() argument