1. Timebase Knowledge Base
  2. Timebase Services Starter

Timebase Services Starter for Windows

Provides an overview of the Timebase Services Starter for Windows and includes instructions for adding additional services like Collectors

Upon completion, the installer will automatically launch the Timebase Services Starter in the browser of your choosing. This can be found manually by navigating to localhost:4510 in a web browser.

Editing the Configuration

Select the Config tab.

Below is the default config for a new installation. Editing this file will update the appsettings.json file, which by default can be found in C:\Program Files\Flow Software\Timebase\Service Starter\.

{
  "Stacks": {
    "Timebase": {
      "Historians": {
        "Historian": {
          "Active": false,
          "Kestrel": {
            "Endpoints": {
              "Http": {
                "Url": "http://0.0.0.0:4511"
              }
            }
          }
        }
      },
      "Collectors": {
        "Simulator": {
          "Active": false,
          "Kestrel": {
            "Endpoints": {
              "Http": {
                "Url": "http://0.0.0.0:4521"
              }
            }
          }
        }
      },
      "Explorers": {
        "Explorer - BETA": {
          "Active": false,
          "Kestrel": {
            "Endpoints": {
              "Http": {
                "Url": "http://0.0.0.0:4531"
              }
            }
          }
        }
      }
    }
  }
}

 

Modify the Historian

It is unlikely you will need to change anything other than possibly adjusting the port.

The default is http://0.0.0.0:4511 for accepting connections on all network interfaces.

These settings take priority over the appsettings.json file that can be found in C:\Program Files\Flow Software\Timebase\Historian\. Modifying the location of where either the Historian Data or the Historian Logs are stored should be done using the following article.

Add a Collector

You can add additional Collectors, but will need to give them unique names and unique port numbers. You may copy and paste the configuration below, just be sure to remove the comments // at the beginning of each line and give a new name and port number to the Collector.

Save your changes when you are finished.

Click on the Control tab and verify your new Collector has been added to your list of services.

{
  "Stacks": {
    "Timebase": {
      "Historians": {
        "Historian": {
          "Active": true,
          "Kestrel": {
            "Endpoints": {
              "Http": {
                "Url": "http://0.0.0.0:4511"
              }
            }
          }
        }
      },
      "Collectors": {
        "Simulator": {
          "Active": true,
          "Kestrel": {
            "Endpoints": {
              "Http": {
                "Url": "http://0.0.0.0:4521"
              }
            }
         }  //For additional Collectors, uncomment the beginning of each of the following lines and then change the name and port number of the new Collector Instance. Save changes.
//      },
//        "CollectorNameToBeChanged": {     //Provide a unique name for this Collector instance
//          "Active": true,
//          "Kestrel": {
//            "Endpoints": {
//              "Http": {
//                "Url": "http://0.0.0.0:XXXX"  //Provide a unique port number for this Collector instance
//              }
//            }
//          }
        }
      },
      "Explorers": {
        "Explorer - BETA": {
          "Active": true,
          "Kestrel": {
            "Endpoints": {
              "Http": {
                "Url": "http://0.0.0.0:4531"
              }
            }
          }
        }
      }
    }
  }
}