mirror of
https://github.com/kubeshark/kubeshark.git
synced 2026-04-03 01:07:40 +00:00
* Bring back `getOldEntries` method using fetch API * Determine no more data on top based on `leftOff` value * Remove `entriesBuffer` state * Always open WebSocket with some `leftOff` value * Rename `leftOff` state to `leftOffBottom` * Don't set the `focusedEntryId` through WebSocket if the WebSocket is closed * Call `setQueriedCurrent` with addition * Close WebSocket upon reaching to top * Open WebSocket upon snapping to bottom * Close the WebSocket on snap broken event instead * Set queried current value to zero upon filter submit * Upgrade `react-scrollable-feed-virtualized` version and use `scrollToIndex` function * Change the footer text format * Improve no more data top logic * Fix `closeWebSocket()` call logic in `onSnapBrokenEvent` and handle `data.meta` being `null` in `getOldEntries` * Fix the issues around fetching old records * Clean up `EntriesList.module.sass` * Decrement initial `leftOffTop` value by `2` * Fix the order of `incomingEntries` in `getOldEntries` * Request `leftOffTop - 1` from `fetchEntries` * Limit the front-end total entries fetched through WebSocket count to `10000` * Lose the UI performance gain that's provided by #452 * Revert "Fix the selected entry behavior by propagating the `focusedEntryId` through WebSocket (before #452) TRA-3983 (#513)" This reverts commit873f252544. * Fix the issues caused by09371f141f* Upgrade Basenine version from `0.2.13` to `0.2.14` * Upgrade Basenine version from `0.2.14` to `0.2.15` * Fix the condition of "Fetch old records" button visibility * Upgrade Basenine version from `0.2.15` to `0.2.16` and fix the UI code related to fetching old records * Make `newEntries` constant
35 lines
1.2 KiB
Modula-2
35 lines
1.2 KiB
Modula-2
module mizuserver
|
|
|
|
go 1.16
|
|
|
|
require (
|
|
github.com/antelman107/net-wait-go v0.0.0-20210623112055-cf684aebda7b
|
|
github.com/djherbis/atime v1.0.0
|
|
github.com/getkin/kin-openapi v0.76.0
|
|
github.com/gin-contrib/static v0.0.1
|
|
github.com/gin-gonic/gin v1.7.2
|
|
github.com/go-playground/locales v0.13.0
|
|
github.com/go-playground/universal-translator v0.17.0
|
|
github.com/go-playground/validator/v10 v10.5.0
|
|
github.com/google/martian v2.1.0+incompatible
|
|
github.com/gorilla/websocket v1.4.2
|
|
github.com/op/go-logging v0.0.0-20160315200505-970db520ece7
|
|
github.com/orcaman/concurrent-map v0.0.0-20210106121528-16402b402231
|
|
github.com/patrickmn/go-cache v2.1.0+incompatible
|
|
github.com/up9inc/basenine/client/go v0.0.0-20211207165834-2ced7577f9e6
|
|
github.com/up9inc/mizu/shared v0.0.0
|
|
github.com/up9inc/mizu/tap v0.0.0
|
|
github.com/up9inc/mizu/tap/api v0.0.0
|
|
github.com/yalp/jsonpath v0.0.0-20180802001716-5cc68e5049a0
|
|
golang.org/x/text v0.3.5 // indirect
|
|
k8s.io/api v0.21.2
|
|
k8s.io/apimachinery v0.21.2
|
|
k8s.io/client-go v0.21.2
|
|
)
|
|
|
|
replace github.com/up9inc/mizu/shared v0.0.0 => ../shared
|
|
|
|
replace github.com/up9inc/mizu/tap v0.0.0 => ../tap
|
|
|
|
replace github.com/up9inc/mizu/tap/api v0.0.0 => ../tap/api
|