LicenseInfo interface
Describes the license information about the current running instance of Grafana.
Signature
export interface LicenseInfo
Import
import { LicenseInfo } from '@grafana/data';
Properties
Property | Type | Description |
---|---|---|
edition | GrafanaEdition | |
enabledFeatures | { [key: string]: boolean; } | |
expiry | number | |
licenseUrl | string | |
stateInfo | string | |
trialExpiry | number |
edition property
Signature
edition: GrafanaEdition;
enabledFeatures property
Signature
enabledFeatures: {
[key: string]: boolean;
};
expiry property
Signature
expiry: number;
licenseUrl property
Signature
licenseUrl: string;
stateInfo property
Signature
stateInfo: string;
trialExpiry property
Signature
trialExpiry?: number;