@grafana/plugin-types 0.0.55 → 0.0.57
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.
|
@@ -56,7 +56,7 @@ export type TempoMatcher = {
|
|
|
56
56
|
value: string;
|
|
57
57
|
operator: "=" | "!=" | ">" | "<" | "=~" | "!~";
|
|
58
58
|
};
|
|
59
|
-
export type ActionViewType = "traceList" | "breakdown" | "structure" | "comparison" | "exceptions";
|
|
59
|
+
export type ActionViewType = "traceList" | "breakdown" | "structure" | "comparison" | "exceptions" | "adaptiveTraces";
|
|
60
60
|
export interface OpenInExploreTracesButtonProps {
|
|
61
61
|
datasourceUid?: string;
|
|
62
62
|
matchers: TempoMatcher[];
|
|
@@ -293,9 +293,9 @@ export interface PluginSchema {
|
|
|
293
293
|
*/
|
|
294
294
|
routes?: {
|
|
295
295
|
/**
|
|
296
|
-
* For data source plugins. The route path that is replaced by the route URL field when proxying the call.
|
|
296
|
+
* For data source plugins. The route path that is replaced by the route URL field when proxying the call. **Warning**: Don't use an empty string ("").
|
|
297
297
|
*/
|
|
298
|
-
path
|
|
298
|
+
path: string;
|
|
299
299
|
/**
|
|
300
300
|
* For data source plugins. Route method matches the HTTP verb like `GET` or `POST`. Multiple methods can be provided as a comma-separated list.
|
|
301
301
|
*/
|