|
So I'm trying to get the Colored Timeline admin plugin working, but there is a disconnect of sorts. I did a bit of digging around the mip.log files and found this error. And its basically the same error that shows up in the UI - Log error: 2026-08-17 10:55:40.533-07:00 [ 12] ERROR - MIP: ColoredTimeline - RuleUC () - RefreshEventsTable failed: An error occurred while receiving the HTTP response to http://vms25.wifieye.local:22331/Central/AlarmServiceToken. This could be due to the service endpoint binding not using the HTTP protocol. This could also be due to an HTTP request context being aborted by the server (possibly due to the service shutting down). See server logs for more details. UI Error in Image.
This error was already there the first time the timeline UI was open before even creating a timeline rule. From the server itself I can successfully test the http connection PS C:\Windows\system32> curl.exe -v --max-time 10 "http://vms25.wifieye.local:22331/Central/AlarmServiceToken"
< HTTP/1.1 200 OK I couldn't find any other related logs to show here. It seems RefreshEventsTable() appears to fail when doing the Alarm/EventLog query - `var serverId = EnvironmentManager.Instance.MasterSite.ServerId; var rows = alarmClient.GetEventLines(0, int.MaxValue, filter);` Has colored timeline been tested specifically with XProtect 2026 R1? Is there anything I'm missing? Look forward to hearing back |
Replies: 1 comment 40 replies
|
@vinux84 when you open smart client on that machine, do you get alarms on standard "Alarm" Tab ? Test please: A lot of folks using it with 2026 R1 but, that does not mean something is not perfect. |


That did it. I put an int in it directly -
var rows = alarmClient.GetEventLines(0, 500, filter) ?? Array.Empty();