@interopio/otel 0.0.200 → 0.0.201

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/insights.d.ts +2 -2
  2. package/package.json +1 -1
package/insights.d.ts CHANGED
@@ -325,7 +325,7 @@ export namespace IOInsights {
325
325
  * Controls the publishing of the metric.
326
326
  */
327
327
  export interface MetricPublishingSettings {
328
- samplingProbability?: number;
328
+ sample?: number | boolean;
329
329
  /**
330
330
  * Controls the publishing of specific attributes.
331
331
  */
@@ -423,7 +423,7 @@ export namespace IOInsights {
423
423
  export interface MetricDefaultFilter {
424
424
  type?: MetricType;
425
425
  enabled: boolean;
426
- samplingProbability?: number;
426
+ sample?: number | boolean;
427
427
  overrideDefaultFilters?: boolean;
428
428
  attributes?: {
429
429
  /**
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@interopio/otel",
3
- "version": "0.0.200",
3
+ "version": "0.0.201",
4
4
  "description": "io.Insights observability library",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",