├── .config ├── .cprc.json ├── .eslintrc ├── .prettierrc.js ├── Dockerfile ├── README.md ├── docker-compose-base.yaml ├── entrypoint.sh ├── jest-setup.js ├── jest.config.js ├── jest │ ├── mocks │ │ └── react-inlinesvg.tsx │ └── utils.js ├── mocks │ └── react-inlinesvg.tsx ├── supervisord │ └── supervisord.conf ├── tsconfig.json ├── types │ ├── bundler-rules.d.ts │ ├── custom.d.ts │ └── webpack-plugins.d.ts └── webpack │ ├── BuildModeWebpackPlugin.ts │ ├── constants.ts │ ├── tsconfig.webpack.json │ ├── utils.ts │ └── webpack.config.ts ├── .cprc.json ├── .eslintrc ├── .github ├── CODEOWNERS ├── renovate.json └── workflows │ ├── publish.yml │ ├── push.yml │ └── stale.yml ├── .gitignore ├── .nvmrc ├── .prettierrc.js ├── .theia └── settings.json ├── .vscode └── launch.json ├── .yarn └── releases │ └── yarn-4.9.2.cjs ├── .yarnrc.yml ├── CHANGELOG.md ├── LICENSE ├── README.md ├── cspell.config.json ├── docker-compose.yml ├── docs ├── Polystat-docs-clickthroughurl.md ├── Polystat-docs-composites.md ├── Polystat-docs-options.md ├── Polystat-docs-overrides.md ├── Polystat-docs-settings.md └── Polystat-docs-thresholds.md ├── jest-setup.js ├── jest.config.js ├── mise.toml ├── package.json ├── playwright.config.ts ├── provisioning ├── README.md ├── dashboards │ ├── Polystat-CSV-Content-Bug.json │ ├── Tooltip-Composite-Bug.json │ ├── dashboard.json │ └── default.yaml └── datasources │ └── datasources.yml ├── src ├── __mocks__ │ └── models │ │ ├── composites.ts │ │ └── models.ts ├── __snapshots__ │ └── migrations.test.ts.snap ├── components │ ├── Polystat.test.tsx │ ├── Polystat.tsx │ ├── PolystatPanel.tsx │ ├── alignment.test.ts │ ├── alignment.ts │ ├── auto_font_scaler.test.ts │ ├── auto_font_scaler.ts │ ├── composites │ │ ├── CompositeEditor.tsx │ │ ├── CompositeItem.tsx │ │ ├── CompositeMetricItem.test.tsx │ │ ├── CompositeMetricItem.tsx │ │ ├── __snapshots__ │ │ │ └── CompositeMetricItem.test.tsx.snap │ │ └── types.ts │ ├── defaults.ts │ ├── gradients │ │ ├── Gradients.test.tsx │ │ ├── Gradients.tsx │ │ ├── __snapshots__ │ │ │ └── Gradients.test.tsx.snap │ │ ├── color.test.ts │ │ └── color.ts │ ├── layout │ │ ├── layoutManager.test.ts │ │ ├── layoutManager.ts │ │ └── types.ts │ ├── metric_hints.test.ts │ ├── metric_hints.ts │ ├── overrides │ │ ├── OverrideEditor.tsx │ │ ├── OverrideItem.tsx │ │ └── types.ts │ ├── styles.ts │ ├── suggestions.ts │ ├── thresholds │ │ ├── GlobalThresholdEditor.tsx │ │ ├── ThresholdItem.tsx │ │ ├── ThresholdsEditor.tsx │ │ └── types.ts │ ├── tooltips │ │ ├── Tooltip.test.tsx │ │ ├── Tooltip.tsx │ │ └── __snapshots__ │ │ │ └── Tooltip.test.tsx.snap │ └── types.ts ├── data │ ├── clickThroughTransformer.test.ts │ ├── clickThroughTransformer.ts │ ├── composite_processor.test.ts │ ├── composite_processor.ts │ ├── deframer.test.ts │ ├── deframer.ts │ ├── override_processor.test.ts │ ├── override_processor.ts │ ├── processor.test.ts │ ├── processor.ts │ ├── snapshotdata.ts │ ├── stats.ts │ ├── threshold_processor.test.ts │ ├── threshold_processor.ts │ ├── time_formatter.ts │ ├── types.ts │ └── valueMappingsWrapper │ │ ├── index.ts │ │ ├── v7 │ │ └── valueMappings.ts │ │ ├── v8 │ │ ├── thresholds.ts │ │ ├── types │ │ │ ├── fieldColor.ts │ │ │ ├── thresholds.ts │ │ │ └── valueMappings.ts │ │ └── valueMappings.ts │ │ └── valueMappings.test.ts ├── img │ ├── logo-credit.html │ ├── polystat.svg │ └── screenshots │ │ ├── polystat-v2-agent-all-visible.png │ │ ├── polystat-v2-agent-scaled-down-tooltip.png │ │ ├── polystat-v2-agent-scaled-down.png │ │ ├── polystat-v2-composite-add-metric.png │ │ ├── polystat-v2-composite-animated.gif │ │ ├── polystat-v2-composite-bottom-menu.png │ │ ├── polystat-v2-composite-rendered.png │ │ ├── polystat-v2-composite-with-tooltip.png │ │ ├── polystat-v2-composites-all.png │ │ ├── polystat-v2-custom-clickthrough-target.png │ │ ├── polystat-v2-global-all.png │ │ ├── polystat-v2-global-shapes.png │ │ ├── polystat-v2-global-showtimestamp.png │ │ ├── polystat-v2-global-timestamp-above.png │ │ ├── polystat-v2-global-timestamp-below.png │ │ ├── polystat-v2-layout-manual.png │ │ ├── polystat-v2-layout-warning.png │ │ ├── polystat-v2-options-layout.png │ │ ├── polystat-v2-override-bottom-menu.png │ │ ├── polystat-v2-overrides-no-thresholds.png │ │ ├── polystat-v2-overrides-rendered-thresholds.png │ │ ├── polystat-v2-overrides-with-thresholds.png │ │ ├── polystat-v2-shape-circle.png │ │ ├── polystat-v2-shape-hexagon-pointed-top.png │ │ ├── polystat-v2-shape-square.png │ │ ├── polystat-v2-sizing-auto.png │ │ ├── polystat-v2-sizing-manual.png │ │ ├── polystat-v2-sorting-directions.png │ │ ├── polystat-v2-sorting-fields.png │ │ ├── polystat-v2-sorting.png │ │ ├── polystat-v2-text-auto-all.png │ │ ├── polystat-v2-text-font-color-picker.png │ │ ├── polystat-v2-text-manual-font-color.png │ │ ├── polystat-v2-text-manual-fontsize.png │ │ ├── polystat-v2-text-use-ellipses.png │ │ ├── polystat-v2-tooltips-all.png │ │ ├── polystat-v2-tooltips-display-modes.png │ │ ├── polystat-v2-tooltips-primary-sortby-field.png │ │ ├── polystat-v2-tooltips-sort-directions.png │ │ ├── regex-alias-after.png │ │ └── regex-alias-before.png ├── migrations.test.ts ├── migrations.ts ├── module.test.ts ├── module.ts ├── plugin.json ├── utils.test.ts ├── utils.ts └── uuid.d.ts ├── tests └── auth-bypassed │ ├── phase1-core │ └── grafana-version.spec.ts │ ├── phase2-installed │ └── check-installed.spec.ts │ └── phase3-panel │ ├── create-composite.spec.ts │ └── create-panel.spec.ts ├── tsconfig.json └── yarn.lock /.config/.cprc.json: -------------------------------------------------------------------------------- 1 | { 2 | "version": "5.25.0" 3 | } 4 | -------------------------------------------------------------------------------- /.config/.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/grafana-polystat-panel/HEAD/.config/.eslintrc -------------------------------------------------------------------------------- /.config/.prettierrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/grafana-polystat-panel/HEAD/.config/.prettierrc.js -------------------------------------------------------------------------------- /.config/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/grafana-polystat-panel/HEAD/.config/Dockerfile -------------------------------------------------------------------------------- /.config/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/grafana-polystat-panel/HEAD/.config/README.md -------------------------------------------------------------------------------- /.config/docker-compose-base.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/grafana-polystat-panel/HEAD/.config/docker-compose-base.yaml -------------------------------------------------------------------------------- /.config/entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/grafana-polystat-panel/HEAD/.config/entrypoint.sh -------------------------------------------------------------------------------- /.config/jest-setup.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/grafana-polystat-panel/HEAD/.config/jest-setup.js -------------------------------------------------------------------------------- /.config/jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/grafana-polystat-panel/HEAD/.config/jest.config.js -------------------------------------------------------------------------------- /.config/jest/mocks/react-inlinesvg.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/grafana-polystat-panel/HEAD/.config/jest/mocks/react-inlinesvg.tsx -------------------------------------------------------------------------------- /.config/jest/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/grafana-polystat-panel/HEAD/.config/jest/utils.js -------------------------------------------------------------------------------- /.config/mocks/react-inlinesvg.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/grafana-polystat-panel/HEAD/.config/mocks/react-inlinesvg.tsx -------------------------------------------------------------------------------- /.config/supervisord/supervisord.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/grafana-polystat-panel/HEAD/.config/supervisord/supervisord.conf -------------------------------------------------------------------------------- /.config/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/grafana-polystat-panel/HEAD/.config/tsconfig.json -------------------------------------------------------------------------------- /.config/types/bundler-rules.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/grafana-polystat-panel/HEAD/.config/types/bundler-rules.d.ts -------------------------------------------------------------------------------- /.config/types/custom.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/grafana-polystat-panel/HEAD/.config/types/custom.d.ts -------------------------------------------------------------------------------- /.config/types/webpack-plugins.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/grafana-polystat-panel/HEAD/.config/types/webpack-plugins.d.ts -------------------------------------------------------------------------------- /.config/webpack/BuildModeWebpackPlugin.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/grafana-polystat-panel/HEAD/.config/webpack/BuildModeWebpackPlugin.ts -------------------------------------------------------------------------------- /.config/webpack/constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/grafana-polystat-panel/HEAD/.config/webpack/constants.ts -------------------------------------------------------------------------------- /.config/webpack/tsconfig.webpack.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/grafana-polystat-panel/HEAD/.config/webpack/tsconfig.webpack.json -------------------------------------------------------------------------------- /.config/webpack/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/grafana-polystat-panel/HEAD/.config/webpack/utils.ts -------------------------------------------------------------------------------- /.config/webpack/webpack.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/grafana-polystat-panel/HEAD/.config/webpack/webpack.config.ts -------------------------------------------------------------------------------- /.cprc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/grafana-polystat-panel/HEAD/.cprc.json -------------------------------------------------------------------------------- /.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/grafana-polystat-panel/HEAD/.eslintrc -------------------------------------------------------------------------------- /.github/CODEOWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/grafana-polystat-panel/HEAD/.github/CODEOWNERS -------------------------------------------------------------------------------- /.github/renovate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/grafana-polystat-panel/HEAD/.github/renovate.json -------------------------------------------------------------------------------- /.github/workflows/publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/grafana-polystat-panel/HEAD/.github/workflows/publish.yml -------------------------------------------------------------------------------- /.github/workflows/push.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/grafana-polystat-panel/HEAD/.github/workflows/push.yml -------------------------------------------------------------------------------- /.github/workflows/stale.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/grafana-polystat-panel/HEAD/.github/workflows/stale.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/grafana-polystat-panel/HEAD/.gitignore -------------------------------------------------------------------------------- /.nvmrc: -------------------------------------------------------------------------------- 1 | 22 2 | -------------------------------------------------------------------------------- /.prettierrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/grafana-polystat-panel/HEAD/.prettierrc.js -------------------------------------------------------------------------------- /.theia/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/grafana-polystat-panel/HEAD/.theia/settings.json -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/grafana-polystat-panel/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /.yarn/releases/yarn-4.9.2.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/grafana-polystat-panel/HEAD/.yarn/releases/yarn-4.9.2.cjs -------------------------------------------------------------------------------- /.yarnrc.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/grafana-polystat-panel/HEAD/.yarnrc.yml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/grafana-polystat-panel/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/grafana-polystat-panel/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/grafana-polystat-panel/HEAD/README.md -------------------------------------------------------------------------------- /cspell.config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/grafana-polystat-panel/HEAD/cspell.config.json -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/grafana-polystat-panel/HEAD/docker-compose.yml -------------------------------------------------------------------------------- /docs/Polystat-docs-clickthroughurl.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/grafana-polystat-panel/HEAD/docs/Polystat-docs-clickthroughurl.md -------------------------------------------------------------------------------- /docs/Polystat-docs-composites.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/grafana-polystat-panel/HEAD/docs/Polystat-docs-composites.md -------------------------------------------------------------------------------- /docs/Polystat-docs-options.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/grafana-polystat-panel/HEAD/docs/Polystat-docs-options.md -------------------------------------------------------------------------------- /docs/Polystat-docs-overrides.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/grafana-polystat-panel/HEAD/docs/Polystat-docs-overrides.md -------------------------------------------------------------------------------- /docs/Polystat-docs-settings.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/grafana-polystat-panel/HEAD/docs/Polystat-docs-settings.md -------------------------------------------------------------------------------- /docs/Polystat-docs-thresholds.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/grafana-polystat-panel/HEAD/docs/Polystat-docs-thresholds.md -------------------------------------------------------------------------------- /jest-setup.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/grafana-polystat-panel/HEAD/jest-setup.js -------------------------------------------------------------------------------- /jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/grafana-polystat-panel/HEAD/jest.config.js -------------------------------------------------------------------------------- /mise.toml: -------------------------------------------------------------------------------- 1 | [tools] 2 | node = "22" 3 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/grafana-polystat-panel/HEAD/package.json -------------------------------------------------------------------------------- /playwright.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/grafana-polystat-panel/HEAD/playwright.config.ts -------------------------------------------------------------------------------- /provisioning/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/grafana-polystat-panel/HEAD/provisioning/README.md -------------------------------------------------------------------------------- /provisioning/dashboards/Polystat-CSV-Content-Bug.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/grafana-polystat-panel/HEAD/provisioning/dashboards/Polystat-CSV-Content-Bug.json -------------------------------------------------------------------------------- /provisioning/dashboards/Tooltip-Composite-Bug.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/grafana-polystat-panel/HEAD/provisioning/dashboards/Tooltip-Composite-Bug.json -------------------------------------------------------------------------------- /provisioning/dashboards/dashboard.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/grafana-polystat-panel/HEAD/provisioning/dashboards/dashboard.json -------------------------------------------------------------------------------- /provisioning/dashboards/default.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/grafana-polystat-panel/HEAD/provisioning/dashboards/default.yaml -------------------------------------------------------------------------------- /provisioning/datasources/datasources.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/grafana-polystat-panel/HEAD/provisioning/datasources/datasources.yml -------------------------------------------------------------------------------- /src/__mocks__/models/composites.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/grafana-polystat-panel/HEAD/src/__mocks__/models/composites.ts -------------------------------------------------------------------------------- /src/__mocks__/models/models.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/grafana-polystat-panel/HEAD/src/__mocks__/models/models.ts -------------------------------------------------------------------------------- /src/__snapshots__/migrations.test.ts.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/grafana-polystat-panel/HEAD/src/__snapshots__/migrations.test.ts.snap -------------------------------------------------------------------------------- /src/components/Polystat.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/grafana-polystat-panel/HEAD/src/components/Polystat.test.tsx -------------------------------------------------------------------------------- /src/components/Polystat.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/grafana-polystat-panel/HEAD/src/components/Polystat.tsx -------------------------------------------------------------------------------- /src/components/PolystatPanel.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/grafana-polystat-panel/HEAD/src/components/PolystatPanel.tsx -------------------------------------------------------------------------------- /src/components/alignment.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/grafana-polystat-panel/HEAD/src/components/alignment.test.ts -------------------------------------------------------------------------------- /src/components/alignment.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/grafana-polystat-panel/HEAD/src/components/alignment.ts -------------------------------------------------------------------------------- /src/components/auto_font_scaler.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/grafana-polystat-panel/HEAD/src/components/auto_font_scaler.test.ts -------------------------------------------------------------------------------- /src/components/auto_font_scaler.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/grafana-polystat-panel/HEAD/src/components/auto_font_scaler.ts -------------------------------------------------------------------------------- /src/components/composites/CompositeEditor.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/grafana-polystat-panel/HEAD/src/components/composites/CompositeEditor.tsx -------------------------------------------------------------------------------- /src/components/composites/CompositeItem.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/grafana-polystat-panel/HEAD/src/components/composites/CompositeItem.tsx -------------------------------------------------------------------------------- /src/components/composites/CompositeMetricItem.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/grafana-polystat-panel/HEAD/src/components/composites/CompositeMetricItem.test.tsx -------------------------------------------------------------------------------- /src/components/composites/CompositeMetricItem.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/grafana-polystat-panel/HEAD/src/components/composites/CompositeMetricItem.tsx -------------------------------------------------------------------------------- /src/components/composites/__snapshots__/CompositeMetricItem.test.tsx.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/grafana-polystat-panel/HEAD/src/components/composites/__snapshots__/CompositeMetricItem.test.tsx.snap -------------------------------------------------------------------------------- /src/components/composites/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/grafana-polystat-panel/HEAD/src/components/composites/types.ts -------------------------------------------------------------------------------- /src/components/defaults.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/grafana-polystat-panel/HEAD/src/components/defaults.ts -------------------------------------------------------------------------------- /src/components/gradients/Gradients.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/grafana-polystat-panel/HEAD/src/components/gradients/Gradients.test.tsx -------------------------------------------------------------------------------- /src/components/gradients/Gradients.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/grafana-polystat-panel/HEAD/src/components/gradients/Gradients.tsx -------------------------------------------------------------------------------- /src/components/gradients/__snapshots__/Gradients.test.tsx.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/grafana-polystat-panel/HEAD/src/components/gradients/__snapshots__/Gradients.test.tsx.snap -------------------------------------------------------------------------------- /src/components/gradients/color.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/grafana-polystat-panel/HEAD/src/components/gradients/color.test.ts -------------------------------------------------------------------------------- /src/components/gradients/color.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/grafana-polystat-panel/HEAD/src/components/gradients/color.ts -------------------------------------------------------------------------------- /src/components/layout/layoutManager.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/grafana-polystat-panel/HEAD/src/components/layout/layoutManager.test.ts -------------------------------------------------------------------------------- /src/components/layout/layoutManager.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/grafana-polystat-panel/HEAD/src/components/layout/layoutManager.ts -------------------------------------------------------------------------------- /src/components/layout/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/grafana-polystat-panel/HEAD/src/components/layout/types.ts -------------------------------------------------------------------------------- /src/components/metric_hints.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/grafana-polystat-panel/HEAD/src/components/metric_hints.test.ts -------------------------------------------------------------------------------- /src/components/metric_hints.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/grafana-polystat-panel/HEAD/src/components/metric_hints.ts -------------------------------------------------------------------------------- /src/components/overrides/OverrideEditor.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/grafana-polystat-panel/HEAD/src/components/overrides/OverrideEditor.tsx -------------------------------------------------------------------------------- /src/components/overrides/OverrideItem.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/grafana-polystat-panel/HEAD/src/components/overrides/OverrideItem.tsx -------------------------------------------------------------------------------- /src/components/overrides/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/grafana-polystat-panel/HEAD/src/components/overrides/types.ts -------------------------------------------------------------------------------- /src/components/styles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/grafana-polystat-panel/HEAD/src/components/styles.ts -------------------------------------------------------------------------------- /src/components/suggestions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/grafana-polystat-panel/HEAD/src/components/suggestions.ts -------------------------------------------------------------------------------- /src/components/thresholds/GlobalThresholdEditor.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/grafana-polystat-panel/HEAD/src/components/thresholds/GlobalThresholdEditor.tsx -------------------------------------------------------------------------------- /src/components/thresholds/ThresholdItem.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/grafana-polystat-panel/HEAD/src/components/thresholds/ThresholdItem.tsx -------------------------------------------------------------------------------- /src/components/thresholds/ThresholdsEditor.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/grafana-polystat-panel/HEAD/src/components/thresholds/ThresholdsEditor.tsx -------------------------------------------------------------------------------- /src/components/thresholds/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/grafana-polystat-panel/HEAD/src/components/thresholds/types.ts -------------------------------------------------------------------------------- /src/components/tooltips/Tooltip.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/grafana-polystat-panel/HEAD/src/components/tooltips/Tooltip.test.tsx -------------------------------------------------------------------------------- /src/components/tooltips/Tooltip.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/grafana-polystat-panel/HEAD/src/components/tooltips/Tooltip.tsx -------------------------------------------------------------------------------- /src/components/tooltips/__snapshots__/Tooltip.test.tsx.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/grafana-polystat-panel/HEAD/src/components/tooltips/__snapshots__/Tooltip.test.tsx.snap -------------------------------------------------------------------------------- /src/components/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/grafana-polystat-panel/HEAD/src/components/types.ts -------------------------------------------------------------------------------- /src/data/clickThroughTransformer.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/grafana-polystat-panel/HEAD/src/data/clickThroughTransformer.test.ts -------------------------------------------------------------------------------- /src/data/clickThroughTransformer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/grafana-polystat-panel/HEAD/src/data/clickThroughTransformer.ts -------------------------------------------------------------------------------- /src/data/composite_processor.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/grafana-polystat-panel/HEAD/src/data/composite_processor.test.ts -------------------------------------------------------------------------------- /src/data/composite_processor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/grafana-polystat-panel/HEAD/src/data/composite_processor.ts -------------------------------------------------------------------------------- /src/data/deframer.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/grafana-polystat-panel/HEAD/src/data/deframer.test.ts -------------------------------------------------------------------------------- /src/data/deframer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/grafana-polystat-panel/HEAD/src/data/deframer.ts -------------------------------------------------------------------------------- /src/data/override_processor.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/grafana-polystat-panel/HEAD/src/data/override_processor.test.ts -------------------------------------------------------------------------------- /src/data/override_processor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/grafana-polystat-panel/HEAD/src/data/override_processor.ts -------------------------------------------------------------------------------- /src/data/processor.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/grafana-polystat-panel/HEAD/src/data/processor.test.ts -------------------------------------------------------------------------------- /src/data/processor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/grafana-polystat-panel/HEAD/src/data/processor.ts -------------------------------------------------------------------------------- /src/data/snapshotdata.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/grafana-polystat-panel/HEAD/src/data/snapshotdata.ts -------------------------------------------------------------------------------- /src/data/stats.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/grafana-polystat-panel/HEAD/src/data/stats.ts -------------------------------------------------------------------------------- /src/data/threshold_processor.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/grafana-polystat-panel/HEAD/src/data/threshold_processor.test.ts -------------------------------------------------------------------------------- /src/data/threshold_processor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/grafana-polystat-panel/HEAD/src/data/threshold_processor.ts -------------------------------------------------------------------------------- /src/data/time_formatter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/grafana-polystat-panel/HEAD/src/data/time_formatter.ts -------------------------------------------------------------------------------- /src/data/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/grafana-polystat-panel/HEAD/src/data/types.ts -------------------------------------------------------------------------------- /src/data/valueMappingsWrapper/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/grafana-polystat-panel/HEAD/src/data/valueMappingsWrapper/index.ts -------------------------------------------------------------------------------- /src/data/valueMappingsWrapper/v7/valueMappings.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/grafana-polystat-panel/HEAD/src/data/valueMappingsWrapper/v7/valueMappings.ts -------------------------------------------------------------------------------- /src/data/valueMappingsWrapper/v8/thresholds.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/grafana-polystat-panel/HEAD/src/data/valueMappingsWrapper/v8/thresholds.ts -------------------------------------------------------------------------------- /src/data/valueMappingsWrapper/v8/types/fieldColor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/grafana-polystat-panel/HEAD/src/data/valueMappingsWrapper/v8/types/fieldColor.ts -------------------------------------------------------------------------------- /src/data/valueMappingsWrapper/v8/types/thresholds.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/grafana-polystat-panel/HEAD/src/data/valueMappingsWrapper/v8/types/thresholds.ts -------------------------------------------------------------------------------- /src/data/valueMappingsWrapper/v8/types/valueMappings.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/grafana-polystat-panel/HEAD/src/data/valueMappingsWrapper/v8/types/valueMappings.ts -------------------------------------------------------------------------------- /src/data/valueMappingsWrapper/v8/valueMappings.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/grafana-polystat-panel/HEAD/src/data/valueMappingsWrapper/v8/valueMappings.ts -------------------------------------------------------------------------------- /src/data/valueMappingsWrapper/valueMappings.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/grafana-polystat-panel/HEAD/src/data/valueMappingsWrapper/valueMappings.test.ts -------------------------------------------------------------------------------- /src/img/logo-credit.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/grafana-polystat-panel/HEAD/src/img/logo-credit.html -------------------------------------------------------------------------------- /src/img/polystat.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/grafana-polystat-panel/HEAD/src/img/polystat.svg -------------------------------------------------------------------------------- /src/img/screenshots/polystat-v2-agent-all-visible.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/grafana-polystat-panel/HEAD/src/img/screenshots/polystat-v2-agent-all-visible.png -------------------------------------------------------------------------------- /src/img/screenshots/polystat-v2-agent-scaled-down-tooltip.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/grafana-polystat-panel/HEAD/src/img/screenshots/polystat-v2-agent-scaled-down-tooltip.png -------------------------------------------------------------------------------- /src/img/screenshots/polystat-v2-agent-scaled-down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/grafana-polystat-panel/HEAD/src/img/screenshots/polystat-v2-agent-scaled-down.png -------------------------------------------------------------------------------- /src/img/screenshots/polystat-v2-composite-add-metric.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/grafana-polystat-panel/HEAD/src/img/screenshots/polystat-v2-composite-add-metric.png -------------------------------------------------------------------------------- /src/img/screenshots/polystat-v2-composite-animated.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/grafana-polystat-panel/HEAD/src/img/screenshots/polystat-v2-composite-animated.gif -------------------------------------------------------------------------------- /src/img/screenshots/polystat-v2-composite-bottom-menu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/grafana-polystat-panel/HEAD/src/img/screenshots/polystat-v2-composite-bottom-menu.png -------------------------------------------------------------------------------- /src/img/screenshots/polystat-v2-composite-rendered.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/grafana-polystat-panel/HEAD/src/img/screenshots/polystat-v2-composite-rendered.png -------------------------------------------------------------------------------- /src/img/screenshots/polystat-v2-composite-with-tooltip.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/grafana-polystat-panel/HEAD/src/img/screenshots/polystat-v2-composite-with-tooltip.png -------------------------------------------------------------------------------- /src/img/screenshots/polystat-v2-composites-all.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/grafana-polystat-panel/HEAD/src/img/screenshots/polystat-v2-composites-all.png -------------------------------------------------------------------------------- /src/img/screenshots/polystat-v2-custom-clickthrough-target.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/grafana-polystat-panel/HEAD/src/img/screenshots/polystat-v2-custom-clickthrough-target.png -------------------------------------------------------------------------------- /src/img/screenshots/polystat-v2-global-all.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/grafana-polystat-panel/HEAD/src/img/screenshots/polystat-v2-global-all.png -------------------------------------------------------------------------------- /src/img/screenshots/polystat-v2-global-shapes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/grafana-polystat-panel/HEAD/src/img/screenshots/polystat-v2-global-shapes.png -------------------------------------------------------------------------------- /src/img/screenshots/polystat-v2-global-showtimestamp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/grafana-polystat-panel/HEAD/src/img/screenshots/polystat-v2-global-showtimestamp.png -------------------------------------------------------------------------------- /src/img/screenshots/polystat-v2-global-timestamp-above.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/grafana-polystat-panel/HEAD/src/img/screenshots/polystat-v2-global-timestamp-above.png -------------------------------------------------------------------------------- /src/img/screenshots/polystat-v2-global-timestamp-below.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/grafana-polystat-panel/HEAD/src/img/screenshots/polystat-v2-global-timestamp-below.png -------------------------------------------------------------------------------- /src/img/screenshots/polystat-v2-layout-manual.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/grafana-polystat-panel/HEAD/src/img/screenshots/polystat-v2-layout-manual.png -------------------------------------------------------------------------------- /src/img/screenshots/polystat-v2-layout-warning.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/grafana-polystat-panel/HEAD/src/img/screenshots/polystat-v2-layout-warning.png -------------------------------------------------------------------------------- /src/img/screenshots/polystat-v2-options-layout.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/grafana-polystat-panel/HEAD/src/img/screenshots/polystat-v2-options-layout.png -------------------------------------------------------------------------------- /src/img/screenshots/polystat-v2-override-bottom-menu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/grafana-polystat-panel/HEAD/src/img/screenshots/polystat-v2-override-bottom-menu.png -------------------------------------------------------------------------------- /src/img/screenshots/polystat-v2-overrides-no-thresholds.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/grafana-polystat-panel/HEAD/src/img/screenshots/polystat-v2-overrides-no-thresholds.png -------------------------------------------------------------------------------- /src/img/screenshots/polystat-v2-overrides-rendered-thresholds.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/grafana-polystat-panel/HEAD/src/img/screenshots/polystat-v2-overrides-rendered-thresholds.png -------------------------------------------------------------------------------- /src/img/screenshots/polystat-v2-overrides-with-thresholds.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/grafana-polystat-panel/HEAD/src/img/screenshots/polystat-v2-overrides-with-thresholds.png -------------------------------------------------------------------------------- /src/img/screenshots/polystat-v2-shape-circle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/grafana-polystat-panel/HEAD/src/img/screenshots/polystat-v2-shape-circle.png -------------------------------------------------------------------------------- /src/img/screenshots/polystat-v2-shape-hexagon-pointed-top.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/grafana-polystat-panel/HEAD/src/img/screenshots/polystat-v2-shape-hexagon-pointed-top.png -------------------------------------------------------------------------------- /src/img/screenshots/polystat-v2-shape-square.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/grafana-polystat-panel/HEAD/src/img/screenshots/polystat-v2-shape-square.png -------------------------------------------------------------------------------- /src/img/screenshots/polystat-v2-sizing-auto.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/grafana-polystat-panel/HEAD/src/img/screenshots/polystat-v2-sizing-auto.png -------------------------------------------------------------------------------- /src/img/screenshots/polystat-v2-sizing-manual.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/grafana-polystat-panel/HEAD/src/img/screenshots/polystat-v2-sizing-manual.png -------------------------------------------------------------------------------- /src/img/screenshots/polystat-v2-sorting-directions.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/grafana-polystat-panel/HEAD/src/img/screenshots/polystat-v2-sorting-directions.png -------------------------------------------------------------------------------- /src/img/screenshots/polystat-v2-sorting-fields.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/grafana-polystat-panel/HEAD/src/img/screenshots/polystat-v2-sorting-fields.png -------------------------------------------------------------------------------- /src/img/screenshots/polystat-v2-sorting.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/grafana-polystat-panel/HEAD/src/img/screenshots/polystat-v2-sorting.png -------------------------------------------------------------------------------- /src/img/screenshots/polystat-v2-text-auto-all.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/grafana-polystat-panel/HEAD/src/img/screenshots/polystat-v2-text-auto-all.png -------------------------------------------------------------------------------- /src/img/screenshots/polystat-v2-text-font-color-picker.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/grafana-polystat-panel/HEAD/src/img/screenshots/polystat-v2-text-font-color-picker.png -------------------------------------------------------------------------------- /src/img/screenshots/polystat-v2-text-manual-font-color.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/grafana-polystat-panel/HEAD/src/img/screenshots/polystat-v2-text-manual-font-color.png -------------------------------------------------------------------------------- /src/img/screenshots/polystat-v2-text-manual-fontsize.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/grafana-polystat-panel/HEAD/src/img/screenshots/polystat-v2-text-manual-fontsize.png -------------------------------------------------------------------------------- /src/img/screenshots/polystat-v2-text-use-ellipses.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/grafana-polystat-panel/HEAD/src/img/screenshots/polystat-v2-text-use-ellipses.png -------------------------------------------------------------------------------- /src/img/screenshots/polystat-v2-tooltips-all.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/grafana-polystat-panel/HEAD/src/img/screenshots/polystat-v2-tooltips-all.png -------------------------------------------------------------------------------- /src/img/screenshots/polystat-v2-tooltips-display-modes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/grafana-polystat-panel/HEAD/src/img/screenshots/polystat-v2-tooltips-display-modes.png -------------------------------------------------------------------------------- /src/img/screenshots/polystat-v2-tooltips-primary-sortby-field.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/grafana-polystat-panel/HEAD/src/img/screenshots/polystat-v2-tooltips-primary-sortby-field.png -------------------------------------------------------------------------------- /src/img/screenshots/polystat-v2-tooltips-sort-directions.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/grafana-polystat-panel/HEAD/src/img/screenshots/polystat-v2-tooltips-sort-directions.png -------------------------------------------------------------------------------- /src/img/screenshots/regex-alias-after.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/grafana-polystat-panel/HEAD/src/img/screenshots/regex-alias-after.png -------------------------------------------------------------------------------- /src/img/screenshots/regex-alias-before.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/grafana-polystat-panel/HEAD/src/img/screenshots/regex-alias-before.png -------------------------------------------------------------------------------- /src/migrations.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/grafana-polystat-panel/HEAD/src/migrations.test.ts -------------------------------------------------------------------------------- /src/migrations.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/grafana-polystat-panel/HEAD/src/migrations.ts -------------------------------------------------------------------------------- /src/module.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/grafana-polystat-panel/HEAD/src/module.test.ts -------------------------------------------------------------------------------- /src/module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/grafana-polystat-panel/HEAD/src/module.ts -------------------------------------------------------------------------------- /src/plugin.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/grafana-polystat-panel/HEAD/src/plugin.json -------------------------------------------------------------------------------- /src/utils.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/grafana-polystat-panel/HEAD/src/utils.test.ts -------------------------------------------------------------------------------- /src/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/grafana-polystat-panel/HEAD/src/utils.ts -------------------------------------------------------------------------------- /src/uuid.d.ts: -------------------------------------------------------------------------------- 1 | declare module 'uuid'; 2 | -------------------------------------------------------------------------------- /tests/auth-bypassed/phase1-core/grafana-version.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/grafana-polystat-panel/HEAD/tests/auth-bypassed/phase1-core/grafana-version.spec.ts -------------------------------------------------------------------------------- /tests/auth-bypassed/phase2-installed/check-installed.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/grafana-polystat-panel/HEAD/tests/auth-bypassed/phase2-installed/check-installed.spec.ts -------------------------------------------------------------------------------- /tests/auth-bypassed/phase3-panel/create-composite.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/grafana-polystat-panel/HEAD/tests/auth-bypassed/phase3-panel/create-composite.spec.ts -------------------------------------------------------------------------------- /tests/auth-bypassed/phase3-panel/create-panel.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/grafana-polystat-panel/HEAD/tests/auth-bypassed/phase3-panel/create-panel.spec.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/grafana-polystat-panel/HEAD/tsconfig.json -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/grafana-polystat-panel/HEAD/yarn.lock --------------------------------------------------------------------------------