Flexmonster Software License Agreement (“Agreement”) has been revised and is effective as of January 8, 2025.
The following modifications were made:
The modified version of Agreement is available here.
Downloading, installing, and/or continuing to use Flexmonster Software after January 8, 2025, constitutes Licensee’s acceptance of the terms and conditions of the modified version of Agreement. If Licensee does not agree to any of these terms and conditions, they must cease using Flexmonster Software and must not download, install, use, access, or continue to access Flexmonster Software. By continuing to use Flexmonster Software or renewing the license or maintenance after the effective date of these modifications to Agreement, Licensee accepts and agrees to be bound by the terms and conditions of the modified Agreement.
Flexmonster Data Server’s configurations are stored in the flexmonster-config.json
file. In this guide, you will find a list of available configurations and instructions on how to set them.
To install the Data Server, refer to Installing Flexmonster Data Server as a Windows/Unix service.
{
DataSources: DataSourceConfigObject[],
Security: SecurityConfigObject,
DataStorageOptions: DataStorageOptionsObject,
Port: string,
LoggerMinLevel: string,
HTTPS: HTTPSConfigObject,
ReportSharingOptions: ReportSharingOptionsObject
}
Property/Type | Description |
---|---|
DataSources DataSourceConfigObject[] | Configures the data sources. |
Security SecurityConfigObject | optional Configures the data access security. |
DataStorageOptions DataStorageOptionsObject | optional Configures options for data storage. |
Port String | optional The port Flexmonster Data runs on. It can also be set from the command line. Default value: "9500" . |
LoggerMinLevel String | optional Defines a minimum log level for the Data Server: "Info" , "Warn" , "Error" , or "Fatal" . Setting LoggerMinLevel to "Warn" or a higher level can improve the Data Server’s performance. Learn more about these log levels in the Microsoft documentation.LoggerMinLevel will not affect info-level logs that appear when the Data Server is started or when the data is reloaded.Default value: "Info" . |
HTTPS HTTPSConfigObject | optional Configures the HTTPS protocol. |
ReportSharingOptions ReportSharingOptionsObject | optional Configures the report-sharing functionality. |
This object allows configuring a data source. It contains the following properties:
{
Type: string,
DatabaseType: string,
ConnectionString: string,
Indexes: object
}
Property/Type | Description |
---|---|
Type String | The type of the data source: "json" , "csv" , or "database" . |
DatabaseType String | optional The type of the database: "mysql" , "mariadb" , "mssql" , "postgresql" , or "oracle" . Only for the "database" data source type. |
ConnectionString String | optional A connection string for the database. Only for the "database" data source type.Setting passwords with special characters in the connection string. The Data Server parses passwords with special characters correctly unless the password contains ; or " . These symbols are treated as delimiters, so they should be escaped:
|
Indexes Object | Contains a list of datasets. Each dataset is represented by a "key": "value" pair, where "key" is a dataset name and "value" is an IndexObject. |
This object describes a dataset. It contains the following properties:
{
Path: string,
Mapping: ServerSideMappingObject,
Delimiter: string,
DecimalSeparator: string,
ThousandsSeparator: string,
Query: string,
Status: string,
RefreshSchedule: string,
RefreshTime: number
}
Property/Type | Description |
---|---|
Path String | optional The path to the file with data. Only for "json" and "csv" data source types. |
Mapping ServerSideMappingObject | optional Defines how the Data Server should process fields from the dataset. Only for "json" and "csv" data source types. |
Delimiter String | optional Specifies a character that separates fields in the CSV file. Default value: "," . |
DecimalSeparator String | optional Specifies a character that separates the decimal part of a number in the CSV file (e.g., for 3,14 , set the DecimalSeparator property to "," ).Default value: "." . |
ThousandsSeparator String | optional Specifies a character that separates groups of digits in a number in the CSV file (e.g., for 1.000 , set the ThousandsSeparator property to "." ).Default value: "," . |
Query String | optional The query to execute (e.g., "SELECT * FROM tablename" ). It can contain a stored procedure. Only for the "database" data source type. |
Status String | optional The index status. It can be either "enabled" or "disabled" . Disabled indexes are not available on the client side.Available starting from version 2.9 of the Data Server. Default value: "enabled" . |
RefreshSchedule String | optional Schedules a specific time when the data for the index must be reloaded. The scheduled time must be specified as a crontab expression. For example, to reload the data every Monday in December at 04:35, set this property to "35 4 * 12 Mon" . See more crontab expression examples.If the RefreshSchedule is specified, it overrides the DataStorageOptions.DataRefreshSchedule and DataStorageOptions.DataRefreshTime properties.Available starting from version 2.9.92 of the Data Server. |
RefreshTime Number | optional Defines how often the Data Server reloads the data for the index. The refresh time must be specified in minutes and is measured from the moment the Data Server starts up. When the RefreshTime is set to 0 , the Data Server will not reload the data.If the RefreshTime is specified, it overrides the DataStorageOptions.DataRefreshSchedule and DataStorageOptions.DataRefreshTime properties.Available starting from version 2.9 of the Data Server. |
This object defines how the Data Server should process fields from the dataset. It has the following properties:
Mapping: {
<uniqueName>: {
Type: string
}
}
This object allows managing the data access security. It contains the following properties:
Security: {
Authorization: {
Enabled: boolean
},
CORS: {
AllowOrigin: string
},
HSTS: {
MaxAge: number,
IncludeSubDomains: boolean,
Preload: boolean
},
Headers: object
}
Property/Type | Description |
---|---|
Authorization Object | optional Configures the Basic Authorization. |
Authorization.Enabled Boolean | Indicates whether the Basic Authorization for Flexmonster Data Server is enabled. When set to true , the authorization is enabled.Default value: false . |
CORS Object | optional Configures the cross-origin resource sharing for Flexmonster Data Server. |
CORS.AllowOrigin String | The origin from which the server accepts the requests. If AllowOrigin is set to "*" , requests from all origins are accepted.Several origins must be defined as follows: "AllowOrigin": "http://localhost,https://example.com"Note that if authorization is enabled ( "Enabled": true ), "*" cannot be set as the origin. In this case, specific origins must be defined. Default value: "*" . |
HSTS Object | optional Configures the Strict-Transport-Security (HSTS) response header. |
HSTS.MaxAge Number | Defines how long the browser remembers that the Data Server should be accessed only via HTTPS. The MaxAge property is set in seconds. |
HSTS.IncludeSubDomains Boolean | optional Defines whether the Strict-Transport-Security header applies to the Data Server’s subdomains (true ) or not (false ).Default value: false . |
HSTS.Preload Boolean | optional Defines whether the Data Server is in the HSTS preload list (true ) or not (false ). For details refer to the MDN documentation about HSTS.Default value: false . |
Headers Object | Adds response headers. This object consists of "key": "value" pairs, where "key" is a header name, and "value" is its value.We recommend adding response headers carefully and only if they are required for the project. Specifying an existing header with the wrong value can lead to runtime errors. Here is an example of how response headers can be specified: "Headers": { |
This object allows configuring options for data storage. It contains the following properties:
DataStorageOptions: {
DataRefreshSchedule: string,
DataRefreshTime: number,
CacheSizeLimit: number,
KeepDataOnRefresh: boolean,
RetryAttempts: number,
CommandTimeout: number
}
Property/Type | Description |
---|---|
DataRefreshSchedule String | optional Schedules a specific time when the data from the data source must be reloaded. The scheduled time must be specified as a crontab expression. For example, to reload the data every Monday in December at 04:35, set this property to "35 4 * 12 Mon" . See more crontab expression examples.To set the scheduled time for a specific index, use the Indexes.<indexName>.RefreshSchedule property. Available starting from version 2.9.92 of the Data Server. |
DataRefreshTime Number | optional Defines how often the Data Server reloads the data from the data source. The refresh time must be specified in minutes and is measured from the moment the Data Server starts up. To set the refresh time for a specific index, use the Indexes.<indexName>.RefreshTime property. Default value: 0 (the Data Server will not reload the data). |
CacheSizeLimit Number | optional The maximum number of cached server responses for every index defined in the DataSources property. When set to 0 , the Data Server does not cache the responses.Default value: 100 . |
KeepDataOnRefresh Boolean | optional Defines whether the Data Server keeps a copy of index data while the index is being refreshed. When set to true , the index is available to Flexmonster Pivot even during index reload. Note that this feature requires more RAM. As soon as the index is refreshed, the Data Server deletes its copy.If KeepDataOnRefresh is set to false , the index will be unavailable while refreshing.Default value: true . |
RetryAttempts Number | optional If some of the indexes are unavailable during the restart, the Data Server will try loading them later. The RetryAttempts property specifies how many attempts to load indexes the Data Server should make.Default value: 3 . |
CommandTimeout Number | optional Defines the wait time before canceling the attempt to execute the Query and generating an error. The wait time is set in seconds. When set to 0 , the wait time is unlimited.If CommandTimeout is not specified, the Data Server will use the timeout value from the SQL driver. Only for the "database" data source type. |
This object allows configuring the HTTPS protocol. It contains the following properties:
HTTPS: {
Enabled: boolean,
Certificate: PFXCertObject | PEMCertObject | SubjectStoreObject,
Protocols: string
}
Property/Type | Description |
---|---|
Enabled Boolean | optional Indicates whether the HTTPS protocol is enabled (true ) or not (false ).Default value: false . |
Certificate PFXCertObject | PEMCertObject | SubjectStoreObject | optional Adds a certificate. By default, if the certificate is not specified, the generated development certificate will be used. The certificate can be specified as a PFXCertObject, a PEMCertObject, or a SubjectStoreObject. |
Protocols String | optional Establishes the HTTP protocols enabled on a connection endpoint or for the server. It can be one of the following values: "Http1" , "Http2" , and "Http1AndHttp2" .Default value: "Http1AndHttp2" . |
This object allows adding a .pfx
certificate. It contains the following properties:
Certificate: {
Path: string,
Password: string
}
Property/Type | Description |
---|---|
Path String | The URL to the .pfx certificate. |
Password String | optional The password to access the certificate. If the certificate does not require a password, skip this property. |
This object allows adding a .pem
certificate. It contains the following properties:
Certificate: {
Path: string,
KeyPath: string
}
Property/Type | Description |
---|---|
Path String | The URL to the .pem certificate. |
KeyPath String | The URL to a .pem file that contains the private key for the certificate. |
This object allows adding a certificate by specifying its subject name and store. It contains the following properties:
Certificate: {
Subject: string,
Store: string,
Location: string,
AllowInvalid: boolean
}
This object allows configuring the report-sharing functionality. It contains the following properties:
ReportSharingOptions: {
EndpointEnabled: boolean,
PathToFolder: string,
ReportExpirationTime: number,
MaxSizeOfFolder: number,
AutoDeletingEnabled: boolean
}
Property/Type | Description |
---|---|
EndpointEnabled Boolean | optional Indicates whether the endpoint to share reports is enabled in the Data Server. If set to true , the report-sharing feature will be enabled.Default value: false . |
PathToFolder String | optional Defines the folder to which the Data Server saves reports. This property overrides the default folder where reports are stored. |
ReportExpirationTime Number | optional Defines how long the saved reports are stored. ReportExpirationTime is set in minutes.Default value: 0 (reports are stored permanently). |
MaxSizeOfFolder Number | optional The maximum memory size available for report saving (in MB). Default value: 0 (unlimited). |
AutoDeletingEnabled Boolean | optional Should be used with the MaxSizeOfFolder property. Defines whether to delete older reports when the folder is full. If set to true , older reports will be deleted automatically until there is enough memory for a new report.Default value: false (older reports are not deleted). |
To store the connection strings and other configurations more securely, you can set them dynamically as command-line arguments or environment variables:
Step 1. Assign the parameter to the needed configuration as follows:
"DataSources": [{
"Type": "database",
"DatabaseType": "postgresql",
"ConnectionString": "${param}",
"Indexes": {
"index_database": {
"Query": "SELECT * FROM ${param2}"
}
}
}],
param
and param2
are the names of your parameters.
Step 2. Using the parameter's name (e.g., param
), pass your value to the Data Server:
flexmonster-data-server.exe param=connectionString param2=tableName
./flexmonster-data-server param=connectionString param2=tableName
Create an environment variable, where the variable name is your parameter's name (e.g., param
), and the variable value is a needed value (e.g., connectionString
).
To define a port for the Data Server from the command line, use the -p
parameter when running the Data Server:
flexmonster-data-server.exe -p 7777
./flexmonster-data-server -p 7777
Note If the Port
property is specified in flexmonster-config.json
, the port set from the console will not be applied.
If flexmonster-config.json
and the Data Server are located in different folders, you can specify the path to flexmonster-config.json
when running the Data Server. It can be done using the -s
parameter:
flexmonster-data-server.exe -s <path_to_config>\flexmonster-config.json
./flexmonster-data-server -s <path_to_config>/flexmonster-config.json
Here is an example of configured flexmonster-config.json
:
{ "DataSources": [ { "Type": "json", "Indexes": { "index_json": { "Path": "./data/data.json" } } }, { "Type": "database", "DatabaseType": "mysql", "ConnectionString": "Server=localhost;Port=3333;Uid=root;Pwd=pwd;Database=TestDB", "Indexes": { "index_database": { "Query": "SELECT * FROM TestTable;" } } } ], "Security": { "Authorization": { "Enabled": false }, "CORS": { "AllowOrigin": "*" }, "HSTS": { "MaxAge": 31536000, "IncludeSubDomains": true }, "Headers": { "Content-Security-Policy": "default-src 'self'", "X-Content-Type-Options": "nosniff", "X-Frame-Options": "SAMEORIGIN", "X-XSS-Protection": "1; mode=block" } }, "DataStorageOptions": { "DataRefreshTime": 60, "CacheSizeLimit": 150, "KeepDataOnRefresh": true }, "Port": "9500", "HTTPS": { "Enabled": true, "Certificate": { "Subject": "localhost", "Store": "My" }, "Protocols": "Http2" }, "ReportSharingOptions": { "EndpointEnabled": true, "PathToFolder": "C:/Reports", "ReportExpirationTime": 120, "MaxSizeOfFolder": 100, "AutoDeletingEnabled": true } }