Skip to content
Snippets Groups Projects
  1. May 14, 2020
    • jkrvivian's avatar
      feat: Add payload layouts to dashboard (#425) · 0a6095d0
      jkrvivian authored
      * fix: Rename SPA to dashboard and disable portcheck of peer_replica
      
      * feat: Add data & unknown type of payload to dashboard
      
      * refactor: Implement paylaod interface that allows different json structs
      
      * feat: Implement Drng paylaod
      
      * refactor: Use Listgroup for layout consistency
      
      * doc: Add description
      
      * feat: Implement Value payload handler
      
      * feat: Add Value payload layout
      
      * refactor: Refactor payload layouts
      
      * refactor: Remove debug print out
      
      * fix: Remove redundant assignment
      
      * refactor: Fix :dog:
      
      * refactor: Fix :dog:
      Unverified
      0a6095d0
  2. May 13, 2020
  3. May 08, 2020
  4. May 07, 2020
    • Levente Pap's avatar
      Refactor Gracefulshutdown Plugin (#404) · 186bd495
      Levente Pap authored
      
      * Refactor gracefulshutdown plugin
      
       * Remove reporting hanging workers
       * Add ShutdownWithError() func to trigger graceful shutdown
         from outside of the package with error message
      
      * Simplify code
      
      * Increase forcekill timeout to 60 seconds
      
      * Add back reporting of hanging workers
      
      * Upgrade hive.go
      
      * go mod tidy
      
      Co-authored-by: default avatarWolfgang Welz <welzwo@gmail.com>
      Unverified
      186bd495
    • Levente Pap's avatar
      Terminate GoShimmer without config file (#395) · c8c2e7fd
      Levente Pap authored
      
      * Fix #355 Terminate GoShimmer without config file
      
       - `skip-config` flag to bypass check and supply values
         from cli
      
      * Remove empty line
      
      * Add some comments
      
      * change termination comment
      
      * lower case beginning of comments
      
      * Don't mount config file into docker container by default
      
      * Integration tests skip config file check
      
      * Add flags for logger config
      
      * Log at debug level for integration tests
      
      * Update hive.go to latest version
      
      * upgrade hive.go
      
      Signed-off-by: default avatarWolfgang Welz <welzwo@gmail.com>
      
      Co-authored-by: default avatarLuca Moser <moser.luca@gmail.com>
      Co-authored-by: default avatarjonastheis <mail@jonastheis.de>
      Co-authored-by: default avatarWolfgang Welz <welzwo@gmail.com>
      Unverified
      c8c2e7fd
    • Luca Moser's avatar
      Refactors analysis plugins (#403) · 6d3b2a2c
      Luca Moser authored
      * normalize bind addresses prints
      
      * refactors analysis plugins
      
      * adds tests for parsing/serializing heartbeat packets
      
      * adds additional test case
      
      * normalize usage of word 'ids'
      
      * updates packr files
      
      * normalizes handler routes for static assets for the analysis web interface
      
      * normalize config key names
      
      * adjusts configs for new analysis config keys
      
      * fixes review comments
      Unverified
      6d3b2a2c
  5. Apr 30, 2020
  6. Apr 29, 2020
    • Hans Moog's avatar
      Fix the golint-ci warning (#381) · 18dba17c
      Hans Moog authored
      * Fix: fixed some error must be last param
      
      * Refactor: continued refactoring according to golint
      
      * Refactor: addresses more golint warnings
      
      * Refactor: refactored error last
      
      * Fix: fixed hive.go
      
      * Refactor: refactored alot according to golang-ci-list
      
      * Refactor: intermediary commit
      
      * Refactor: refactored additional code according to golint-ci
      
      * Refactor: continued to refactor according to golint
      
      * Refactor: refactored according to golint
      
      * Fix: fixed last golinter reports
      Unverified
      18dba17c
    • Wolfgang Welz's avatar
      Remove graph plugin (#388) · f04c22b2
      Wolfgang Welz authored
      * remove submodules
      
      * remove graph plugin
      
      * remove graph plugin from configs and texts
      Unverified
      f04c22b2
  7. Apr 28, 2020
  8. Apr 26, 2020
  9. Apr 24, 2020
  10. Apr 23, 2020
  11. Apr 22, 2020
    • jkrvivian's avatar
      Refactor: Rename SPA to Dashboard (#336) · e212795a
      jkrvivian authored
      Unverified
      e212795a
    • Wolfgang Welz's avatar
      Fix: Gossip race condition (#347) · 02e044d0
      Wolfgang Welz authored
      
      * trigger event while locked
      
      * add dropNeighbor test
      
      * Fix name
      
      Co-Authored-By: default avatarLuca Moser <moser.luca@gmail.com>
      
      * Rename AllNeighbors
      
      * fix linter warnings
      
      Co-authored-by: default avatarLuca Moser <moser.luca@gmail.com>
      Unverified
      02e044d0
    • Luca Moser's avatar
      Refactor message layer packages (#331) · 08b51ce5
      Luca Moser authored
      * replace 'transaction' with 'message' in message layer pkg
      
      * remove more occurrences of 'transaction'
      
      * fixes ReferencedMessageId() returning approverMessageId
      
      * renames ApprovingMessageId to ApproverMessageId
      
      * use ApproverMessageId in deleteFureCone()
      
      * refactors message pkg
      
      * renames payloadId in Message to contentId
      
      * finalize comment on what a Message is
      
      * refactors additional message sub pkgs
      
      * renames 'transaction' to 'message' in gossip plugin
      
      * removes occurrences of 'transaction' in graph plugin
      
      * removes occurrences of 'transaction' in metrics plugin
      
      * refactors dashboard plugin for messages
      
      * removes further occurrences where tx is used instead of msg
      
      * fixes TestMessageRequest in manager_test.go
      
      * go fmt explorer_routes.go
      
      * fix review comments
      
      * fix Errorf order
      
      * throw around bones
      Unverified
      08b51ce5
    • Levente Pap's avatar
      Analysis Client/Server Refactor (#317) · eeafca86
      Levente Pap authored
      * Update analysis/client with Heartbeat message type
      
      * Refactor analysis/server for heartbeat messages
      
      * Bug fix in analysis server
      
      * Fix heartbeat packet marshaling
      
      * Fix `nodes` and `links` maps handling
      
      * Fix in cleanup in recordedevents
      
      * Fix typos
      
      * Fix event log and heartbeat handling
      
      * Refactor analysis server
      
       * Remove obsolete packet types
       * Run Analysis Server Record Manager in background
       * Refactor Analysis Client with ticker
      
      * Define max amount of neighbors to report
      
      * Small fixes
      
      * New visualization for analysis server
      
      * PR review fixes
      
      * Remove `nodeOnline` and `nodeOffline` events from analysis server
      
      * Refactor analysis frontend
      
      * Fix bug in websocket, remove obsolete triggers
      
      * Remove debug vars, re-enable websocket ping
      
      * Stop ws pings when closed
      
      * Color settings for visualizer
      
      * Update graph colors
      
      * Fix no neighbor bug
      
      * Dynamically change springLength based on nodes
      
      * Small color fix
      
      * Rename ShutdownPriorityAnalysis
      
      * Formatting, linter suggestions
      
      * Update packr file for visualizer
      
      * Websocket Write() instead of TryWrite()
      Unverified
      eeafca86
Loading