3408e2893a
moved all ui stuff to the ui package.
...
The structure of converge server is now much more clear in the package
// structure below pkg/server.
2024-09-08 11:16:49 +02:00
c66be7775f
renamed templates package to ui
2024-09-08 11:16:49 +02:00
49912e02d0
moved prometheus to its own package.
2024-09-08 11:16:49 +02:00
3e0828f1fe
removed unused field LocalShells of UsageInputs.
2024-09-08 11:16:49 +02:00
4fbe5c7907
introduced DownloadCommand and Shell types to improve type safety
2024-09-08 11:16:49 +02:00
6c6d396393
more generalization of how time is handled in the tests.
...
Asynchronous variant that is easier to use and multi-thread safe.
2024-09-08 11:16:49 +02:00
1bf559bb65
moved the throttler to its own package.
2024-09-08 11:16:49 +02:00
3cd2ccf25c
throttling implemented for events.
2024-09-08 11:16:49 +02:00
3574b64842
Server side sorting for the websessions page. No longer using LinkedMap as a result.
2024-09-08 11:16:49 +02:00
96c62ab925
concurrency for the expiry time
2024-09-08 11:16:49 +02:00
fc7977f7bb
now using maps of Guid to Agent/Client in the state, working towards the definitive solution.
...
Using LinkedMap that preserves insertion order for the implementation and also added unit tests for that.
2024-09-08 11:16:49 +02:00
556315906d
introdcution of typesafe ids.
2024-09-08 11:16:49 +02:00
c86ea894d1
Now using a more efficient data structure in the prometheus code for saving the last state to improve efficiency and minimize copying even more.
2024-09-08 11:16:49 +02:00
ae59905329
Eliminating copying of objects in the prometheus integration.
2024-09-08 11:16:49 +02:00
2916184661
Now optionally enabling thye pprof endpoint with the --pprof flag.
2024-09-08 11:16:49 +02:00
eb145b2374
a bit more safety by copying the state when passing it to
...
the websessions and prometheus.
2024-09-08 11:16:49 +02:00
6bb75728e7
eliminated unused fields in State
...
Now preserving the lastState in prometheus.go in a State object instead
of in multiple values.
2024-09-08 11:16:49 +02:00
77c27b395b
removed obsolete comments.
2024-09-08 11:16:49 +02:00
2d426f8db3
using unbuffered channels everywhere now. Only change required was to initialize prometeus and the websessions before the matchmaker. This is because at startup the matchmaker wants to write a notification when it starts up but then prometheus and the websessions would not be there to read them.
...
Alternative solution would be to run all initialization code in go routines to make it independent of initialization order but having a defined initialization order is much cleaner.
2024-09-08 11:16:49 +02:00
30a49217e4
Much imporoved websocket connection closure will now detect closing of
...
websockets immediately.
2024-09-08 11:16:49 +02:00
1bf992d92a
removed the init method in prometheuis.go
2024-09-08 11:16:49 +02:00
a06d8b0ca6
renamed converge package to matchmaker.
2024-09-08 11:16:49 +02:00
4f06fd71e0
renamed modukle name so that pkgsite will work.
2024-09-08 11:16:49 +02:00
f823d4b67b
fixed issues with the prometheus code with subtle errors due to the use
...
of pointers. Now using simple value objects.
2024-09-08 11:16:49 +02:00
061fabfd07
Addes agent address and client address to the client and agent info.
2024-09-08 11:16:49 +02:00
ad72c41347
ClientConnection no longer has public fields.
2024-09-08 11:16:49 +02:00
db1d908d06
a lot of work to get prometheus monitoring better.
...
Now the duration is updated every second to get more accurate readings. Also, the time series are now cleaned up when they no longer exists. Previously, all time series were deleted and then everything was setup from scratch.
2024-09-08 11:16:49 +02:00
1c92fcb03e
much more clean handling of concurrency in the converge server by separating the administration from the matchmaking by putting admin in a separate package.
2024-09-08 11:16:49 +02:00
f82b21b845
activity detection implemented for sftp.
2024-09-08 11:16:49 +02:00
b8715bcbe8
eliminated the stop times. Not a good idea to have this metric because it starts becoming relevant after an agent has stopped and so it has basically unlimited lifetime which is not good.
2024-09-08 11:16:49 +02:00
1be96d8742
Added agent_start_time, agent_stop_time, client_start_time, and client_stop_time metrics.
2024-09-08 11:16:49 +02:00
c2ec1ce117
Added agent uid to the client info so that client and agent can be correlated in prometheus/grafana.
2024-09-08 11:16:49 +02:00
c4bc07b0e0
nov showing a message that the rendez-vous id is generated.
2024-09-08 11:16:49 +02:00
5b7d51f210
Code is more robust and should now never try to send a notification to a web client that can block, using a context with cancellation.
2024-09-08 11:16:49 +02:00
4a3448dcc3
wsproxy now giving a more friendly error message when there is a protocol mismatch describing what the user should do.
2024-09-08 11:16:49 +02:00
128be0ebb5
Added client environment info to the prometheus metrics as labels.
2024-09-08 11:16:49 +02:00
f3d0074f17
added environment info from the client.
2024-09-08 11:16:49 +02:00
Erik Brakkee
b4b962d859
remove some console logs in the javascript
...
prometheus now listening on separate port
fixed powershell command for setting up authorized keys.
2024-09-08 11:16:49 +02:00
f62b81cbfb
cumulative counters implemented.
2024-09-08 11:16:49 +02:00
97d34424ca
prometheus monitoring now more complete. Including a guid to uniquely identify agents and clients.
2024-09-08 11:16:49 +02:00
Erik Brakkee
135fd081d8
prometheus support step 1
...
updates to documentation.
2024-09-08 11:16:49 +02:00
2366b78e95
ClientId is now a string instead of an int.
2024-09-08 11:16:49 +02:00
ae60b77eec
public id is now shown on the sessions page since authorized keys are
...
used which is safer.
2024-09-08 11:16:49 +02:00
cd953c5edf
eliminated the username.
2024-09-08 11:16:49 +02:00
d134f1e944
better messages when the user modifies the .authorized_keys file from
...
within the session.
2024-09-08 11:16:49 +02:00
Erik Brakkee
d109c72f66
removed password based access
...
authorized keys can now be modified within the session.
keep last set of keys when no valid keys were found and keys are changed during the session .
2024-09-08 11:16:49 +02:00
1b1f8f2167
A lot of work in getting cut and paste from the UI to
...
work properly.
Wrote two web components. One for cut and paste in general, and another for code samples.
2024-09-08 11:16:49 +02:00
51be117200
Simple validation of the id and the authorized keys.
2024-09-08 11:16:49 +02:00
2cf73feef5
More clean handling of the contextpath.
...
Now using long option names for the options of converge to be consistent with the other components.
2024-09-08 11:16:49 +02:00
75e1bd77ba
Alternative contextpath is now supported.
...
This will simplify hosting in cases where you have no control over DNS but only over one domain.
2024-09-08 11:16:49 +02:00