LicenseInfo interface

Describes the license information about the current running instance of Grafana.

Signature

  1. export interface LicenseInfo

Import

  1. import { LicenseInfo } from '@grafana/data';

Properties

PropertyTypeDescription
editionGrafanaEdition
enabledFeatures{
[key: string]: boolean;
}
expirynumber
licenseUrlstring
stateInfostring
trialExpirynumber

edition property

Signature

  1. edition: GrafanaEdition;

enabledFeatures property

Signature

  1. enabledFeatures: {
  2. [key: string]: boolean;
  3. };

expiry property

Signature

  1. expiry: number;

licenseUrl property

Signature

  1. licenseUrl: string;

stateInfo property

Signature

  1. stateInfo: string;

trialExpiry property

Signature

  1. trialExpiry?: number;