Important: This documentation is about an older version. It's relevant only to the release noted, many of the features and functions have been updated or replaced. Please view the current version.
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;