Skip to content

v2.5.2

Compare
Choose a tag to compare
@tijsverkoyen tijsverkoyen released this 15 May 13:08
· 66 commits to master since this release

What's Changed

Increased update interval for yearly total to once per hour

The getKpiStationYear has traffic limiting. We can only call 25 times / day. In the documentation the following is found:

Traffic limiting is performed based on the number of plants managed by
northbound API users. Number of northbound API calls per user per day =
Roundup (Number of plants/100) + 24

Only one concurrent request is supported per minute.

If the access frequency exceeds the limit, the interface returns error code 407. Example:

  • If a user manages 20 plants, the maximum number of API calls per day = Roundup (20/100) + 24 = 1 + 24 = 25.
  • If a user manages 120 plants, the maximum number of API calls per day = Roundup (120/100) + 24 = 2 + 24 = 26.

For now I have set it to 1 update per hour to be on the safe side.

Full Changelog: v2.5.1...v2.5.2