Andrii Shvaika
820fc4a9cd
Merge branch 'YevhenBondarenko-feature/firmware' into feature/firmware
5 years ago
Andrii Shvaika
ec78890308
Merge branch 'feature/firmware' of github.com:thingsboard/thingsboard into feature/firmware
5 years ago
Andrii Shvaika
b0a27954ea
Improvements to FirmwareInfo
5 years ago
Vladyslav_Prykhodko
1e3271ce71
UI: move firmware-autocomplete to shared module; Add service map: DeviceProfileService, FirmwareService
5 years ago
Andrii Shvaika
a9e83b484f
Merge branch 'feature/firmware' of https://github.com/YevhenBondarenko/thingsboard into YevhenBondarenko-feature/firmware
5 years ago
YevhenBondarenko
23063b1600
refactoring
5 years ago
YevhenBondarenko
b82525ae86
added consumerPropertiesPerTopic to transport yml
5 years ago
YevhenBondarenko
2658de715a
implemented consumerPropertiesPerTopic
5 years ago
YevhenBondarenko
c9439b3976
created created firmware queue
5 years ago
Andrii Shvaika
53bf6af23b
Merge branch 'master' of github.com:thingsboard/thingsboard into feature/firmware
5 years ago
Viacheslav Klimov
5465703d2d
Handle tenant and customer deletion for TbApiUsageStateService
5 years ago
Viacheslav Klimov
8c9213cff5
Provide querying by customer for API usage states
5 years ago
Viacheslav Klimov
6b008e52cb
Refactor
5 years ago
Viacheslav Klimov
030d80d05a
CustomerId to TbMsg and SessionInfo
5 years ago
Andrii Shvaika
0ff4e6ac0d
Improvements to the TbMsg to support CustomerId
5 years ago
Viacheslav Klimov
3db3385571
Enable/disable usage stats per customer from config
5 years ago
Viacheslav Klimov
9d045e231b
Refactor DefaultTbApiUsageClient
5 years ago
Viacheslav Klimov
62979e8006
Refactor
5 years ago
Viacheslav Klimov
ecf86b53ba
Provide usage stats for sysTenant; refactor
5 years ago
Viacheslav Klimov
f89b30777e
Initial implementation for per-customer api usage stats
5 years ago
YevhenBondarenko
609024a603
added redis configs to the transports yml
5 years ago
Andrii Shvaika
9b01f67d81
Update firmware only when it is really changed
5 years ago
Andrii Shvaika
279e221523
Merge with master
5 years ago
Andrew Shvayka
07aefe533a
Merge pull request #4380 from YevhenBondarenko/develop/3.3-firmware
[WIP] feature firmware
5 years ago
Vladyslav_Prykhodko
9900cc3d97
Updated ui rule node
5 years ago
YevhenBondarenko
75fe679bab
MqttTransportHandler improvements
5 years ago
YevhenBondarenko
6c5cf107df
added firmwares cache to the application-test.properties
5 years ago
YevhenBondarenko
f55f0ecb94
implemented firmware update for the http and mqtt transports
5 years ago
AndrewVolosytnykhThingsboard
c7269528fa
[PROD-881] Dynamic alarm severity in Create Alarm Rule Node ( #4393 )
* Dynamic alarm severity feature added
* Tests for dynamic alarm severity added
* Removed redundant imports
* Join front-end part
* Refactoring: create of method processAlarmSeverity, remove incorrect solution and process severity in correct places
* Correct updating of alarm parsed from msg data
* Removed redundant operations
* Correct exceptions throwing
5 years ago
ShvaykaD
321fb731a6
Support of server-side RPC requests via protobuf for CoAP and MQTT
* rpc response schema added
* rpc request proto
* fixed device profile validation
* fix error messages
5 years ago
nickAS21
51b0d50542
Lwm2m discovery ( #4438 )
* Lwm2m: fix bug delete zero updateAttribute
* Lwm2m: front add select binding
* Lwm2m: discovery only for test
* Lwm2m: remove type_cast_enabled from the main branch.
* Lwm2m: remove type_cast_enabled from the main branch.
* Lwm2m: remove type_cast_enabled from the main branch.
* Lwm2m: remove double code.
5 years ago
Sergey Matvienko
cb9450104e
device count performance for 100k+ devices per tenant. Added additional tests for the DeviceService
5 years ago
AndrewVolosytnykhThingsboard
91e0a77afd
Fixed incorrect adding of additional parameters to URL in getAlarms method
5 years ago
AndrewVolosytnykhThingsboard
e3caf24a9b
Removed redundant parameter for AlarmController, AlarmQuery and RestClient.getAlarms
5 years ago
AndrewVolosytnykhThingsboard
5d64775f67
Correct call of dependent methods
5 years ago
AndrewVolosytnykhThingsboard
fad1040f24
Refactoring: offset added to request URL
5 years ago
AndrewVolosytnykhThingsboard
a100d07daf
Fixed incorrect RestClient method getAlarms
5 years ago
Sergey Matvienko
e17ba0531d
rule chain: fixed conflict after cherry-pick. removed createRelation and deleteRelation. It moved to the AbstractEntityService before
5 years ago
Sergey Matvienko
8b653d7065
rule chain. implemented save/update/delete @Transactional . Added sync DAO methods to run in transaction. Moved loadRuleChainMetaData outside of saveRuleChainMetaData transaction
5 years ago
Sergey Matvienko
27788790df
dependency upgrade: grpc.version up to 1.36.0. explicitly added protobuf-java-util due to grpc not depends on it anymore
5 years ago
Andrii Shvaika
e7fd07652e
Removed code duplicates and fixed one minor issue
5 years ago
Valerii Sosliuk
b8291be084
Update Latest TS by timestamp
There is a bug when the historic data arrives and overrides the value
with morerecent timestamp in ts_kv_latest table. This PR adds
possibility to update the ts_kv_latest table only if the value that
arrives has the newer timestamp than the one that is already in
ts_kv_latest
5 years ago
Sergey Matvienko
3228312cdb
alarms count: performance fix based on pg_stat analysis. Counters queries refactored as two subqueries: inner join (count with relations) + left 'anti' join (count without relations). AlarmServiceSqlTest passed. CE
5 years ago
Sergey Matvienko
08d9ea302f
logback: logger template added for Top Rule Nodes by max execution time
5 years ago
Sergey Matvienko
562637ad34
ZKDiscoveryService: fix potential outdated server info on recalculatePartitions. info logs added on application event
5 years ago
Sergey Matvienko
e64b1074a7
queue consumer: added queue check on the very first poll in the lifecycle before any subscribe method calls
5 years ago
Sergey Matvienko
b35ce062a7
queue consumer: implemented nonblocking subscribe method to prevent locks on repartition event. moved message decoding out of the lock to reduce locking time. using monotonic time instead wall-clock. added debug messages
5 years ago
Igor Kulikov
3362ab37da
Fix show dashboard logo in fullscreen mode
5 years ago
Igor Kulikov
9d8c144e74
Merge pull request #4428 from vvlladd28/improvement/dashboard-logo/translate
UI: Refactoring dashboard logo translation
5 years ago
Vladyslav_Prykhodko
a4347776ad
UI: Refactoring dashboard logo translation
5 years ago