good morning!!!!

Skip to content
Snippets Groups Projects
  1. Aug 25, 2021
  2. Aug 24, 2021
  3. Aug 17, 2021
    • jwasinger's avatar
      cmd, metrics: add support for influxdb-v2 (cherry-picking from italoacasas'... · 69024857
      jwasinger authored
      cmd, metrics: add support for influxdb-v2 (cherry-picking from italoacasas' changes), leave existing support for v1 to maintain backwards-compatibility. (#23194)
      
      This PR adds flag to enable InfluxDB v2 (--metrics.influxdbv2), flags for v2-specific features (--metrics.influxdb.token, --metrics.influxdb.bucket), also carries over addition of support for specifying organization (--metrics.influxdb.organization), but still retains backwards compatibility with InfluxDB v1.
      69024857
  4. Jun 01, 2021
  5. Mar 26, 2021
  6. Feb 08, 2021
  7. Feb 02, 2021
    • Alex Prut's avatar
      all: remove unneeded parentheses (#21921) · ef84da84
      Alex Prut authored
      * remove uneeded convertion type
      
      * remove redundant type in composite literal
      
      * omit explicit type where implicit
      
      * remove unused redundant parenthesis
      
      * remove redundant import alias duktape
      ef84da84
  8. Jan 18, 2021
    • Marius van der Wijden's avatar
      cmd/geth: dump config for metrics (#22083) · 10555d46
      Marius van der Wijden authored
      * cmd/geth: dump config
      
      * cmd/geth: dump config
      
      * cmd/geth: properly read config again
      
      * cmd/geth: override metrics if flags are set
      
      * cmd/geth: write metrics regardless if enabled
      
      * cmd/geth: renamed to metricsfromcliargs
      
      * metrics: add default configuration
      10555d46
  9. Nov 18, 2020
  10. Aug 21, 2020
    • Marius van der Wijden's avatar
      metrics: zero temp variable in updateMeter (#21470) · 4e54b1a4
      Marius van der Wijden authored
      * metrics: zero temp variable in  updateMeter
      
      Previously the temp variable was not updated properly after summing it to count.
      This meant we had astronomically high metrics, now we zero out the temp whenever we
      sum it onto the snapshot count
      
      * metrics: move temp variable to be aligned, unit tests
      
      Moves the temp variable in MeterSnapshot to be 64-bit aligned because of the atomic bug.
      Adds a unit test, that catches the previous bug.
      4e54b1a4
  11. Aug 18, 2020
  12. Jul 03, 2020
  13. Jun 02, 2020
    • rene's avatar
      metrics: replace gosigar with gopsutil (#21041) · a35382de
      rene authored
      * replace gosigar with gopsutil
      
      * removed check for whether GOOS is openbsd
      
      * removed accidental import of runtime
      
      * potential fix for difference in units between gosig and gopsutil
      
      * fixed lint error
      
      * remove multiplication factor
      
      * uses cpu.ClocksPerSec as the multiplication factor
      
      * changed dependency from shirou to renaynay (#20)
      
      * updated dep
      
      * switching back from using renaynay fork to using upstream as PRs were merged on upstream
      
      * removed empty line
      
      * optimized imports
      
      * tidied go mod
      a35382de
  14. May 26, 2020
  15. Apr 02, 2020
  16. Mar 31, 2020
    • Martin Holst Swende's avatar
      metrics: improve TestTimerFunc (#20818) · 32d31c31
      Martin Holst Swende authored
      The test failed due to what appears to be fluctuations in time.Sleep, which is
      not the actual method under test. This change modifies it so we compare the
      metered Max to the actual time instead of the desired time.
      32d31c31
  17. Mar 26, 2020
  18. Nov 22, 2019
  19. Nov 14, 2019
    • Felix Lange's avatar
      dashboard: remove the dashboard (#20279) · afe0b654
      Felix Lange authored
      This removes the dashboard project. The dashboard was an experimental
      browser UI for geth which displayed metrics and chain information in
      real time. We are removing it because it has marginal utility and nobody
      on the team can maintain it.
      
      Removing the dashboard removes a lot of dependency code and shaves
      6 MB off the geth binary size.
      afe0b654
  20. Nov 08, 2019
    • Guillaume Ballet's avatar
      travis: enable test suite on ARM64 (#20219) · de2259d2
      Guillaume Ballet authored
      * travis: Enable ARM support
      
      * Include fixes from 20039
      
      * Add a trace to debug the invalid lookup issue
      
      * Try increasing the timeout to see if the arm test passes
      
      * Investigate the resolver issue
      
      * Increase arm64 timeout for clique test
      
      * increase timeout in tests for arm64
      
      * Only test the failing tests
      
      * Review feedback: don't export epsilon
      
      * Remove investigation tricks+include fjl's feeback
      
      * Revert the retry ahead of using the mock resolver
      
      * Fix rebase errors
      de2259d2
  21. Oct 20, 2019
  22. Sep 10, 2019
  23. Jun 17, 2019
  24. Jun 11, 2019
  25. Apr 11, 2019
  26. Mar 25, 2019
  27. Mar 20, 2019
  28. Feb 18, 2019
  29. Jan 24, 2019
  30. Dec 11, 2018
  31. Nov 09, 2018
  32. Oct 16, 2018
  33. Sep 17, 2018
  34. Jul 30, 2018
  35. Jul 09, 2018
    • Anton Evangelatov's avatar
      swarm: ctx propagation; bmt fixes; pss generic notification framework (#17150) · b3711af0
      Anton Evangelatov authored
      * cmd/swarm: minor cli flag text adjustments
      
      * swarm/api/http: sticky footer for swarm landing page using flex
      
      * swarm/api/http: sticky footer for error pages and fix for multiple choices
      
      * cmd/swarm, swarm/storage, swarm: fix  mingw on windows test issues
      
      * cmd/swarm: update description of swarm cmd
      
      * swarm: added network ID test
      
      * cmd/swarm: support for smoke tests on the production swarm cluster
      
      * cmd/swarm/swarm-smoke: simplify cluster logic as per suggestion
      
      * swarm: propagate ctx to internal apis (#754)
      
      * swarm/metrics: collect disk measurements
      
      * swarm/bmt: fix io.Writer interface
      
        * Write now tolerates arbitrary variable buffers
        * added variable buffer tests
        * Write loop and finalise optimisation
        * refactor / rename
        * add tests for empty input
      
      * swarm/pss: (UPDATE) Generic notifications package (#744)
      
      swarm/pss: Generic package for creating pss notification svcs
      
      * swarm: Adding context to more functions
      
      * swarm/api: change colour of landing page in templates
      
      * swarm/api: change landing page to react to enter keypress
      b3711af0
  36. Jul 02, 2018
  37. Jun 14, 2018
    • Elad's avatar
      all: library changes for swarm-network-rewrite (#16898) · 1836366a
      Elad authored
      This commit adds all changes needed for the merge of swarm-network-rewrite.
      The changes:
      
      - build: increase linter timeout
      - contracts/ens: export ensNode
      - log: add Output method and enable fractional seconds in format
      - metrics: relax test timeout
      - p2p: reduced some log levels, updates to simulation packages
      - rpc: increased maxClientSubscriptionBuffer to 20000
      1836366a
Loading