Adjust where the historian stores the history files, as well as some basic logging details and port settings.
Begin by opening Windows File Explorer and navigating to the installation directory for the historian. The default is C:\Program Files\Flow Software\Timebase\Historian
Within the Time Series Historian folder, open the file appsettings.json
.
Your file should look similar to the snippet below.
Modify as necessary based on your environment. To change the location of the Logs or the Data, uncomment the lines below and update the location.
Save the file and then restart the historian service.
{
//"Data": "C:\\ProgramData\\Flow Software\\Timebase\\Historian\\Data",
//"Logs": "C:\\ProgramData\\Flow Software\\Timebase\\Historian\\Logs",
"DetailedErrors": true,
"Serilog": {
"MinimumLevel": {
"Default": "Warning",
"Override": {
"Timebase.Dataset": "Information",
"Timebase.Historian": "Information"
}
}
},
"Kestrel": {
"Endpoints": {
"Http": {
"Url": "http://0.0.0.0:4511"
}
}
}
}
Section: DetailedErrors
This option is commonly used to control whether detailed error messages are shown when something goes wrong.
"DetailedErrors": true,
- Set to either
true
orfalse
. Setting this totrue
means that when an error occurs, the system will display more comprehensive error messages, which can help developers or users troubleshoot the issue more effectively.
Section: Logging
This section controls the logging behavior for different components of the application. To begin, it is recommended that you leave these settings at their default.
"Serilog": {
"MinimumLevel": {
"Default": "Warning",
"Override": {
"Timebase.Dataset": "Information",
"Timebase.Historian": "Information"
}
}
},
-
LogLevel: Specifies the level of detail for logs for various components.
"Default": "Warning"
: Sets the default logging level toWarning
. This means logs will capture warnings, and errors, but not detailedDebug
information."Timebase.Dataset": "Information"
: This is specifically configuring the logging level for theTimebase.Dataset
namespace. For additional support information, this setting can temporarily be set toDebug
."Timebase.Historian": "Information"
: This sets the logging level for theTimebase.Historian
namespace toInformation
. For additional support information, this setting can temporarily be set toDebug
.
Section: Kestrel
Kestrel is a web server used in ASP.NET Core applications.
"Kestrel": {
"Endpoints": {
"Http": {
"Url": "http://0.0.0.0:4511"
}
}
},
- Endpoints: Defines where the application will listen for HTTP requests.
"Http": { "Url": "http://0.0.0.0:4511" }
: This means that the web server will listen for HTTP requests on all network interfaces (0.0.0.0
) on port4511
. This makes the application accessible from any IP address.
- Endpoints: How to add an HTTPS endpoint.
Kestrel supports securing endpoints with HTTPS. Data sent over HTTPS is encrypted using Transport Layer Security (TLS) to increase the security of data transferred between the client and server.
HTTPS requires a TLS certificate. The TLS certificate is stored on the server, and Kestrel is configured to use it. In production, a TLS certificate must be explicitly configured. At a minimum, a default certificate must be provided.
"Kestrel": {
"Endpoints": {
"Https": {
"Url": "https://0.0.0.0:4512",
"Certificate": {
"Subject": "<subject; required>",
"Store": "<certificate store; required>",
"Location": "<location; defaults to CurrentUser>",
"AllowInvalid": "<true or false; defaults to false>"
}
}
},
- Endpoint names are case-insensitive. For example,
HTTPS
andHttps
are equivalent. - The
Url
parameter is required for each endpoint. - The
Certificate
section is optional. If theCertificate
section isn't specified, the defaults defined inCertificates:Default
are used. If no defaults are available, the development certificate is used. If there are no defaults and the development certificate isn't present, the server throws an exception and fails to start. - The
Certificate
section supports multiple certificate sources. Please see Kestrell Certificate Settings for examples on how to configure different certificate locations - Any number of endpoints may be defined in
Configuration
, as long as they don't cause port conflicts.
Section: Data and Logs
This specifies the paths on the server where the application's data and logs are stored.
"Data": "C:\\ProgramData\\Flow Software\\Timebase\\Historian\\Data",
"Logs": "C:\\ProgramData\\Flow Software\\Timebase\\Historian\\Logs",
⚠️ Important: When specifying a path on Windows, you must use double backslashes (\\
) between folder names, as a single backslash is an escape character in JSON.