Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Loading assets with the API #3

Closed
rogeherlor opened this issue Jun 8, 2022 · 11 comments
Closed

Loading assets with the API #3

rogeherlor opened this issue Jun 8, 2022 · 11 comments
Labels
Bug Something isn't working Download incomplete

Comments

@rogeherlor
Copy link

Hello again. I am testing with the python API and I have some questions.

I downloaded the google drive maps, vehicles, puglins, hdmaps and previews. Why the identifiers numbers are not the same as the ones of the same maps, etc in the preview? Just curious

Also when loading some vehicles, errors like this appear
image
Like some sensor plugins couldn't be found. Could it be that the sensor plugins they are linked to, also have different identifiers? Do you know why could this be? For example, with Spectator Ego vehicle this error doesn't appear beacuse it doesn't have any sensor plugins.

@YuqiHuai
Copy link
Owner

YuqiHuai commented Jun 8, 2022

Hi!
For each asset, it has its own unique id (used for profile) as well as an assetGuid (used for Unity). This is how the SVL team designed it and I have not changed this in any way. The identifiers in the Google Drive are assetGuids.

I tested the local SVL cloud with the existing quick start examples provided in LGSVL Python API repository and did not see errors like this. Can you share your complete script so I can take a closer look?

When I was collecting data from WISE, I noticed some plugins seemed to have existed before but cannot be downloaded anymore. I remember seeing a plugin used for some competition but could not download it anywhere.

@rogeherlor
Copy link
Author

rogeherlor commented Jun 9, 2022

Turns out that only assets that I had on cache were working (some of them I forgot to delete while testing). I deleted them and tried the quickstart scripts and it looks that it fails on the download.
I printed the remote.py data and it looks like this :

Python API Quickstart #3: Using raycasts in the Simulator
{"command": "simulator/current_scene", "arguments": {}}
{"command": "simulator/load_scene", "arguments": {"scene": "aae03d2a-b7ca-4a88-9e41-9035287a12cc", "seed": null}}

{'error': 'Download incomplete, received 0 of 0'}

So I might done something wrong because I can't access the database looks like
Containers are running
image
And this is my assets folder with all the google drive examples
image

Edit:
I can see the previews and communicate with the API but I noticed I have this error in the browser:
Firefox can’t establish a connection to the server at ws://localhost:3000/ws. WebSocketClient.js:16

@YuqiHuai
Copy link
Owner

YuqiHuai commented Jun 9, 2022

Hi,
I used the "Clear Cache" + "Delete All" button to delete all the cached files and started 03-raycast.py and got the following output

Python API Quickstart #3: Using raycasts in the Simulator
{'Default': 0, 'TransparentFX': 1, 'Ignore Raycast': 2, 'Water': 4, 'UI': 5, 'PostProcessing': 8, 'Agent': 9, 'NPC': 10, 'Pedestrian': 11, 'Obstacle': 12, 'Sensor': 13, 'GroundTruthRange': 14, 'GroundTruth': 15, 'Lane': 16, 'Destination': 17, 'SkyEffects': 31}
Distance right: 15.0892915725708
Distance left: 19.7292499542236
Distance down: 1.08376431465149

which I believe is the expected output, therefore I am not sure what happened on your end.

I do think this is a setup issue and please do the following to debug this.

  1. Check if the frontend (http://localhost) is showing you all the assets.
  2. Go to "http://localhost/api/v1/assets/download/bundle/4552b7ac-4fba-4420-88b8-ae14289bf5ac" to see if you can download the map asset for borregas avenue. The downloaded file should be 162,427 KB.
  3. Run the containers without the -d flag (docker-compose up) so you can see if there are any errors.

Regarding the WebSocket issue, it is caused by client container running React project in dev mode. I have pushed some updates to compile React project before serving it, you should no longer be seeing this error. This error also does not affect anything.

@rogeherlor
Copy link
Author

Sorry for the delay. I tried it in another PC just in case and the error is the same.
During docker-compose I have npm warnings, but in the end all of the containers appear done in green colour.

Also i can't access to the step 2 link. A white screen with 'Not found' appears.

@YuqiHuai
Copy link
Owner

YuqiHuai commented Jun 13, 2022

Thanks for the response! You need to be able to access the link for 2, because the downloading process requests resource from that url. I am very sure this issue is same as the later one. I need some help from you:

  1. Can you run docker-compose up (without the -d flag), then go to that URL to see if the router + server is picking up the request?
  2. Did you download the asset and put them in the server directory? If you did, what does your file structure look like.

@rogeherlor
Copy link
Author

Is this what you need from 1. ?

/SORA-SVL$ sudo docker-compose up --build -d
Building nginx
Step 1/3 : FROM nginx:alpine
 ---> b1c3acb28882
Step 2/3 : RUN rm /etc/nginx/conf.d/default.conf
 ---> Using cache
 ---> fe554f594580
Step 3/3 : COPY ./nginx.conf /etc/nginx/conf.d/default.conf
 ---> Using cache
 ---> 6a2b501c307d
Successfully built 6a2b501c307d
Successfully tagged sorasvl_nginx:latest
Building mongo
Step 1/2 : FROM mongo
 ---> 1d3f6d5230f6
Step 2/2 : COPY ./* /docker-entrypoint-initdb.d/
 ---> Using cache
 ---> 678f5ddc86a2
Successfully built 678f5ddc86a2
Successfully tagged sorasvl_mongo:latest
Building server
Step 1/9 : FROM node
 ---> e3cb0fb99b7c
Step 2/9 : RUN mkdir /workdir
 ---> Using cache
 ---> 2b1050faadb5
Step 3/9 : ADD package.json /workdir
 ---> Using cache
 ---> 197291477b8c
Step 4/9 : WORKDIR /workdir
 ---> Using cache
 ---> c0b13692ab36
Step 5/9 : RUN npm install
 ---> Using cache
 ---> 9a91abe70774
Step 6/9 : ADD ./ /workdir
 ---> Using cache
 ---> 5a9f303a9c2a
Step 7/9 : EXPOSE 3000
 ---> Using cache
 ---> 23304cb981eb
Step 8/9 : RUN ["npm", "run", "build"]
 ---> Using cache
 ---> ebbe2583e027
Step 9/9 : CMD [ "npm", "run", "start" ]
 ---> Using cache
 ---> 8f50b887b557
Successfully built 8f50b887b557
Successfully tagged sorasvl_server:latest
Building client
Step 1/10 : FROM node
 ---> e3cb0fb99b7c
Step 2/10 : WORKDIR /app
 ---> Using cache
 ---> d5671aa7dc82
Step 3/10 : ADD package.json /app
 ---> Using cache
 ---> b9f49a9a371e
Step 4/10 : ADD package-lock.json /app
 ---> Using cache
 ---> b7c958c7393d
Step 5/10 : RUN npm install
 ---> Using cache
 ---> cd1eab410c35
Step 6/10 : COPY ./ /app
 ---> Using cache
 ---> 5f407a76a68d
Step 7/10 : RUN npm run build --production
 ---> Using cache
 ---> 59771a5503c9
Step 8/10 : RUN npm install -g serve
 ---> Using cache
 ---> 85a11fedbe1e
Step 9/10 : CMD serve -s build
 ---> Using cache
 ---> c53bd7b2e316
Step 10/10 : EXPOSE 3000
 ---> Using cache
 ---> 19add411e555
Successfully built 19add411e555
Successfully tagged sorasvl_client:latest
sorasvl-router is up-to-date
sorasvl-mongo is up-to-date
sorasvl-server is up-to-date
sorasvl-client is up-to-date

image
image

  1. I downloaded all the files. Is the file structure like this?
    image
    image

Thank you!

@YuqiHuai
Copy link
Owner

YuqiHuai commented Jun 14, 2022

Hi! Thanks for the response! The screenshots are helpful!

This file structure looks correct, but why do all files under maps have ".zip" ending?

Maybe Google Drive added that when you are downloading. Can you remove all ".zip" from assets/maps filenames and see if it helps?

@rogeherlor
Copy link
Author

In my last comment I misread your answer and I ran it with the -d flag.

Is this what you need from 1. ?

/SORA-SVL$ sudo docker-compose up --build -d
Building nginx

So now I unzipped the maps and still don't work for me.

Then I followed the steps in #4 (with and without maps because he did it without the maps folder) and I am stucked in the step docker-compose up --build again.
I can't see if i am getting errors, but I ran it for hours and it doesn't finish

Building nginx
Step 1/3 : FROM nginx:alpine
 ---> b1c3acb28882
Step 2/3 : RUN rm /etc/nginx/conf.d/default.conf
 ---> Using cache
 ---> 4426706f5d7c
Step 3/3 : COPY ./nginx.conf /etc/nginx/conf.d/default.conf
 ---> Using cache
 ---> df0b5feece61
Successfully built df0b5feece61
Successfully tagged sorasvl_nginx:latest
Building mongo
Step 1/2 : FROM mongo
 ---> c8b57c4bf7e3
Step 2/2 : COPY ./* /docker-entrypoint-initdb.d/
 ---> Using cache
 ---> fccab210b33e
Successfully built fccab210b33e
Successfully tagged sorasvl_mongo:latest
Building server
Step 1/9 : FROM node
 ---> e3cb0fb99b7c
Step 2/9 : RUN mkdir /workdir
 ---> Using cache
 ---> 7d9dc5e376d3
Step 3/9 : ADD package.json /workdir
 ---> Using cache
 ---> 2a68b7a15bde
Step 4/9 : WORKDIR /workdir
 ---> Using cache
 ---> de4d8088ef21
Step 5/9 : RUN npm install
 ---> Using cache
 ---> 0918e7723f5e
Step 6/9 : ADD ./ /workdir
 ---> Using cache
 ---> ab3163914a6d
Step 7/9 : EXPOSE 3000
 ---> Using cache
 ---> 53b475fd5ed1
Step 8/9 : RUN ["npm", "run", "build"]
 ---> Using cache
 ---> 46d1383bea13
Step 9/9 : CMD [ "npm", "run", "start" ]
 ---> Using cache
 ---> f397f482f189
Successfully built f397f482f189
Successfully tagged sorasvl_server:latest
Building client
Step 1/10 : FROM node
 ---> e3cb0fb99b7c
Step 2/10 : WORKDIR /app
 ---> Using cache
 ---> 2815748dc998
Step 3/10 : ADD package.json /app
 ---> Using cache
 ---> 5b6e573ee0a8
Step 4/10 : ADD package-lock.json /app
 ---> Using cache
 ---> c5e7348897a7
Step 5/10 : RUN npm install
 ---> Using cache
 ---> f1b3f04550d2
Step 6/10 : COPY ./ /app
 ---> Using cache
 ---> 44d30594c396
Step 7/10 : RUN npm run build --production
 ---> Using cache
 ---> 342bee8c07bb
Step 8/10 : RUN npm install -g serve
 ---> Using cache
 ---> 175a70ab2801
Step 9/10 : CMD serve -s build
 ---> Using cache
 ---> a3953ad743fc
Step 10/10 : EXPOSE 3000
 ---> Using cache
 ---> 06c0836c83a5
Successfully built 06c0836c83a5
Successfully tagged sorasvl_client:latest
sorasvl-router is up-to-date
sorasvl-mongo is up-to-date
sorasvl-server is up-to-date
sorasvl-client is up-to-date
Attaching to sorasvl-router, sorasvl-mongo, sorasvl-server, sorasvl-client
sorasvl-server | 
sorasvl-server | > server@1.0.0 start
sorasvl-mongo | about to fork child process, waiting until server is ready for connections.
sorasvl-router | /docker-entrypoint.sh: /docker-entrypoint.d/ is not empty, will attempt to perform configuration
sorasvl-mongo | forked process: 29
sorasvl-client | INFO: Accepting connections at http://localhost:3000
sorasvl-server | > node dist/index.js
sorasvl-router | /docker-entrypoint.sh: Looking for shell scripts in /docker-entrypoint.d/
sorasvl-mongo | 
sorasvl-server | 
sorasvl-router | /docker-entrypoint.sh: Launching /docker-entrypoint.d/10-listen-on-ipv6-by-default.sh
sorasvl-mongo | {"t":{"$date":"2022-06-15T11:34:05.992+00:00"},"s":"I",  "c":"CONTROL",  "id":20698,   "ctx":"-","msg":"***** SERVER RESTARTED *****"}
sorasvl-server | Server began listening on port 3000
sorasvl-router | 10-listen-on-ipv6-by-default.sh: info: Getting the checksum of /etc/nginx/conf.d/default.conf
sorasvl-mongo | {"t":{"$date":"2022-06-15T11:34:05.993+00:00"},"s":"I",  "c":"CONTROL",  "id":23285,   "ctx":"-","msg":"Automatically disabling TLS 1.0, to force-enable TLS 1.0 specify --sslDisabledProtocols 'none'"}
sorasvl-router | 10-listen-on-ipv6-by-default.sh: info: /etc/nginx/conf.d/default.conf differs from the packaged version
sorasvl-mongo | {"t":{"$date":"2022-06-15T11:34:05.994+00:00"},"s":"I",  "c":"NETWORK",  "id":4915701, "ctx":"main","msg":"Initialized wire specification","attr":{"spec":{"incomingExternalClient":{"minWireVersion":0,"maxWireVersion":13},"incomingInternalClient":{"minWireVersion":0,"maxWireVersion":13},"outgoing":{"minWireVersion":0,"maxWireVersion":13},"isInternalClient":true}}}
sorasvl-router | /docker-entrypoint.sh: Launching /docker-entrypoint.d/20-envsubst-on-templates.sh
sorasvl-mongo | {"t":{"$date":"2022-06-15T11:34:05.996+00:00"},"s":"W",  "c":"ASIO",     "id":22601,   "ctx":"main","msg":"No TransportLayer configured during NetworkInterface startup"}
sorasvl-router | /docker-entrypoint.sh: Launching /docker-entrypoint.d/30-tune-worker-processes.sh
sorasvl-mongo | {"t":{"$date":"2022-06-15T11:34:05.996+00:00"},"s":"I",  "c":"NETWORK",  "id":4648601, "ctx":"main","msg":"Implicit TCP FastOpen unavailable. If TCP FastOpen is required, set tcpFastOpenServer, tcpFastOpenClient, and tcpFastOpenQueueSize."}
sorasvl-router | /docker-entrypoint.sh: Configuration complete; ready for start up
sorasvl-mongo | {"t":{"$date":"2022-06-15T11:34:05.998+00:00"},"s":"W",  "c":"ASIO",     "id":22601,   "ctx":"main","msg":"No TransportLayer configured during NetworkInterface startup"}
sorasvl-router | 2022/06/15 11:34:05 [notice] 1#1: using the "epoll" event method
sorasvl-mongo | {"t":{"$date":"2022-06-15T11:34:05.998+00:00"},"s":"I",  "c":"REPL",     "id":5123008, "ctx":"main","msg":"Successfully registered PrimaryOnlyService","attr":{"service":"TenantMigrationDonorService","ns":"config.tenantMigrationDonors"}}
sorasvl-router | 2022/06/15 11:34:05 [notice] 1#1: nginx/1.21.6
sorasvl-mongo | {"t":{"$date":"2022-06-15T11:34:05.998+00:00"},"s":"I",  "c":"REPL",     "id":5123008, "ctx":"main","msg":"Successfully registered PrimaryOnlyService","attr":{"service":"TenantMigrationRecipientService","ns":"config.tenantMigrationRecipients"}}
sorasvl-router | 2022/06/15 11:34:05 [notice] 1#1: built by gcc 10.3.1 20211027 (Alpine 10.3.1_git20211027) 
sorasvl-mongo | {"t":{"$date":"2022-06-15T11:34:05.998+00:00"},"s":"I",  "c":"CONTROL",  "id":5945603, "ctx":"main","msg":"Multi threading initialized"}
sorasvl-router | 2022/06/15 11:34:05 [notice] 1#1: OS: Linux 5.4.0-117-generic
sorasvl-mongo | {"t":{"$date":"2022-06-15T11:34:05.999+00:00"},"s":"I",  "c":"CONTROL",  "id":4615611, "ctx":"initandlisten","msg":"MongoDB starting","attr":{"pid":29,"port":27017,"dbPath":"/data/db","architecture":"64-bit","host":"18ecd1a73c86"}}
sorasvl-router | 2022/06/15 11:34:05 [notice] 1#1: getrlimit(RLIMIT_NOFILE): 1048576:1048576
sorasvl-mongo | {"t":{"$date":"2022-06-15T11:34:05.999+00:00"},"s":"I",  "c":"CONTROL",  "id":23403,   "ctx":"initandlisten","msg":"Build Info","attr":{"buildInfo":{"version":"5.0.9","gitVersion":"6f7dae919422dcd7f4892c10ff20cdc721ad00e6","openSSLVersion":"OpenSSL 1.1.1f  31 Mar 2020","modules":[],"allocator":"tcmalloc","environment":{"distmod":"ubuntu2004","distarch":"x86_64","target_arch":"x86_64"}}}}
sorasvl-router | 2022/06/15 11:34:05 [notice] 1#1: start worker processes
sorasvl-mongo | {"t":{"$date":"2022-06-15T11:34:05.999+00:00"},"s":"I",  "c":"CONTROL",  "id":51765,   "ctx":"initandlisten","msg":"Operating System","attr":{"os":{"name":"Ubuntu","version":"20.04"}}}
sorasvl-router | 2022/06/15 11:34:05 [notice] 1#1: start worker process 31
sorasvl-mongo | {"t":{"$date":"2022-06-15T11:34:05.999+00:00"},"s":"I",  "c":"CONTROL",  "id":21951,   "ctx":"initandlisten","msg":"Options set by command line","attr":{"options":{"net":{"bindIp":"127.0.0.1","port":27017,"tls":{"mode":"disabled"}},"processManagement":{"fork":true,"pidFilePath":"/tmp/docker-entrypoint-temp-mongod.pid"},"systemLog":{"destination":"file","logAppend":true,"path":"/proc/1/fd/1"}}}}
sorasvl-router | 2022/06/15 11:34:05 [notice] 1#1: start worker process 32
sorasvl-mongo | {"t":{"$date":"2022-06-15T11:34:06.000+00:00"},"s":"I",  "c":"STORAGE",  "id":22297,   "ctx":"initandlisten","msg":"Using the XFS filesystem is strongly recommended with the WiredTiger storage engine. See http://dochub.mongodb.org/core/prodnotes-filesystem","tags":["startupWarnings"]}
sorasvl-router | 2022/06/15 11:34:05 [notice] 1#1: start worker process 33
sorasvl-mongo | {"t":{"$date":"2022-06-15T11:34:06.000+00:00"},"s":"I",  "c":"STORAGE",  "id":22315,   "ctx":"initandlisten","msg":"Opening WiredTiger","attr":{"config":"create,cache_size=7471M,session_max=33000,eviction=(threads_min=4,threads_max=4),config_base=false,statistics=(fast),log=(enabled=true,archive=true,path=journal,compressor=snappy),builtin_extension_config=(zstd=(compression_level=6)),file_manager=(close_idle_time=600,close_scan_interval=10,close_handle_minimum=250),statistics_log=(wait=0),verbose=[recovery_progress,checkpoint_progress,compact_progress],"}}
sorasvl-router | 2022/06/15 11:34:05 [notice] 1#1: start worker process 34
sorasvl-router | 172.18.0.1 - - [15/Jun/2022:11:34:19 +0000] "GET / HTTP/1.1" 304 0 "-" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/102.0.0.0 Safari/537.36" "-"
sorasvl-router | 172.18.0.1 - - [15/Jun/2022:11:34:19 +0000] "GET /static/css/main.a2df3149.css HTTP/1.1" 304 0 "http://localhost/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/102.0.0.0 Safari/537.36" "-"
sorasvl-router | 172.18.0.1 - - [15/Jun/2022:11:34:19 +0000] "GET /static/js/main.1a04c7d1.js HTTP/1.1" 304 0 "http://localhost/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/102.0.0.0 Safari/537.36" "-"
sorasvl-mongo | {"t":{"$date":"2022-06-15T11:34:06.568+00:00"},"s":"I",  "c":"STORAGE",  "id":22430,   "ctx":"initandlisten","msg":"WiredTiger message","attr":{"message":"[1655292846:568308][29:0x7f0953e14c80], txn-recover: [WT_VERB_RECOVERY_ALL] Set global recovery timestamp: (0, 0)"}}
sorasvl-router | 172.18.0.1 - - [15/Jun/2022:11:34:19 +0000] "GET /favicon.ico HTTP/1.1" 304 0 "http://localhost/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/102.0.0.0 Safari/537.36" "-"
sorasvl-mongo | {"t":{"$date":"2022-06-15T11:34:06.568+00:00"},"s":"I",  "c":"STORAGE",  "id":22430,   "ctx":"initandlisten","msg":"WiredTiger message","attr":{"message":"[1655292846:568343][29:0x7f0953e14c80], txn-recover: [WT_VERB_RECOVERY_ALL] Set global oldest timestamp: (0, 0)"}}
sorasvl-router | 172.18.0.1 - - [15/Jun/2022:11:34:19 +0000] "GET /manifest.json HTTP/1.1" 304 0 "http://localhost/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/102.0.0.0 Safari/537.36" "-"
sorasvl-mongo | {"t":{"$date":"2022-06-15T11:34:06.575+00:00"},"s":"I",  "c":"STORAGE",  "id":4795906, "ctx":"initandlisten","msg":"WiredTiger opened","attr":{"durationMillis":575}}
sorasvl-router | 172.18.0.1 - - [15/Jun/2022:11:34:19 +0000] "GET /logo192.png HTTP/1.1" 304 0 "http://localhost/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/102.0.0.0 Safari/537.36" "-"
sorasvl-mongo | {"t":{"$date":"2022-06-15T11:34:06.575+00:00"},"s":"I",  "c":"RECOVERY", "id":23987,   "ctx":"initandlisten","msg":"WiredTiger recoveryTimestamp","attr":{"recoveryTimestamp":{"$timestamp":{"t":0,"i":0}}}}
sorasvl-router | 172.18.0.1 - - [15/Jun/2022:11:34:19 +0000] "GET /api/v1/maps HTTP/1.1" 304 0 "http://localhost/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/102.0.0.0 Safari/537.36" "-"
sorasvl-mongo | {"t":{"$date":"2022-06-15T11:34:06.592+00:00"},"s":"I",  "c":"STORAGE",  "id":4366408, "ctx":"initandlisten","msg":"No table logging settings modifications are required for existing WiredTiger tables","attr":{"loggingEnabled":true}}
sorasvl-router | 172.18.0.1 - - [15/Jun/2022:11:34:20 +0000] "GET /api/v1/assets/download/preview/b819be12-5d1e-416b-8d19-609f54f50323?type=small HTTP/1.1" 200 23328 "http://localhost/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/102.0.0.0 Safari/537.36" "-"
sorasvl-mongo | {"t":{"$date":"2022-06-15T11:34:06.592+00:00"},"s":"I",  "c":"STORAGE",  "id":22262,   "ctx":"initandlisten","msg":"Timestamp monitor starting"}
sorasvl-router | 172.18.0.1 - - [15/Jun/2022:11:34:20 +0000] "GET /api/v1/assets/download/preview/d58a61b3-7156-4dbf-ac2a-ae8f2b9116c1?type=small HTTP/1.1" 200 35326 "http://localhost/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/102.0.0.0 Safari/537.36" "-"
sorasvl-mongo | {"t":{"$date":"2022-06-15T11:34:06.601+00:00"},"s":"W",  "c":"CONTROL",  "id":22120,   "ctx":"initandlisten","msg":"Access control is not enabled for the database. Read and write access to data and configuration is unrestricted","tags":["startupWarnings"]}
sorasvl-router | 172.18.0.1 - - [15/Jun/2022:11:34:20 +0000] "GET /api/v1/assets/download/preview/1ff90ade-4e55-4541-a19b-48f2659f48da?type=small HTTP/1.1" 200 36512 "http://localhost/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/102.0.0.0 Safari/537.36" "-"
sorasvl-mongo | {"t":{"$date":"2022-06-15T11:34:06.601+00:00"},"s":"I",  "c":"STORAGE",  "id":20320,   "ctx":"initandlisten","msg":"createCollection","attr":{"namespace":"admin.system.version","uuidDisposition":"provided","uuid":{"uuid":{"$uuid":"c57981c6-f3ce-470b-8a34-1407f62752de"}},"options":{"uuid":{"$uuid":"c57981c6-f3ce-470b-8a34-1407f62752de"}}}}
sorasvl-router | 172.18.0.1 - - [15/Jun/2022:11:34:20 +0000] "GET /api/v1/assets/download/preview/03621315-a971-48e2-952e-8ae16367d156?type=small HTTP/1.1" 200 35986 "http://localhost/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/102.0.0.0 Safari/537.36" "-"
sorasvl-mongo | {"t":{"$date":"2022-06-15T11:34:06.610+00:00"},"s":"I",  "c":"INDEX",    "id":20345,   "ctx":"initandlisten","msg":"Index build: done building","attr":{"buildUUID":null,"namespace":"admin.system.version","index":"_id_","commitTimestamp":null}}
sorasvl-router | 172.18.0.1 - - [15/Jun/2022:11:34:20 +0000] "GET /api/v1/assets/download/preview/755177d3-4c26-4a8f-8c0d-55ed855847e4?type=small HTTP/1.1" 200 22332 "http://localhost/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/102.0.0.0 Safari/537.36" "-"
sorasvl-mongo | {"t":{"$date":"2022-06-15T11:34:06.610+00:00"},"s":"I",  "c":"REPL",     "id":20459,   "ctx":"initandlisten","msg":"Setting featureCompatibilityVersion","attr":{"newVersion":"5.0"}}
sorasvl-router | 172.18.0.1 - - [15/Jun/2022:11:34:20 +0000] "GET /api/v1/assets/download/preview/b606ca6e-8fc4-460c-820b-c28ea77ca2d5?type=small HTTP/1.1" 200 35502 "http://localhost/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/102.0.0.0 Safari/537.36" "-"
sorasvl-mongo | {"t":{"$date":"2022-06-15T11:34:06.610+00:00"},"s":"I",  "c":"NETWORK",  "id":4915702, "ctx":"initandlisten","msg":"Updated wire specification","attr":{"oldSpec":{"incomingExternalClient":{"minWireVersion":0,"maxWireVersion":13},"incomingInternalClient":{"minWireVersion":0,"maxWireVersion":13},"outgoing":{"minWireVersion":0,"maxWireVersion":13},"isInternalClient":true},"newSpec":{"incomingExternalClient":{"minWireVersion":0,"maxWireVersion":13},"incomingInternalClient":{"minWireVersion":13,"maxWireVersion":13},"outgoing":{"minWireVersion":13,"maxWireVersion":13},"isInternalClient":true}}}
sorasvl-router | 172.18.0.1 - - [15/Jun/2022:11:34:20 +0000] "GET /api/v1/assets/download/preview/7f47c666-d2f7-44d8-99e1-41594cecc545?type=small HTTP/1.1" 200 38322 "http://localhost/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/102.0.0.0 Safari/537.36" "-"
sorasvl-mongo | {"t":{"$date":"2022-06-15T11:34:06.610+00:00"},"s":"I",  "c":"NETWORK",  "id":4915702, "ctx":"initandlisten","msg":"Updated wire specification","attr":{"oldSpec":{"incomingExternalClient":{"minWireVersion":0,"maxWireVersion":13},"incomingInternalClient":{"minWireVersion":13,"maxWireVersion":13},"outgoing":{"minWireVersion":13,"maxWireVersion":13},"isInternalClient":true},"newSpec":{"incomingExternalClient":{"minWireVersion":0,"maxWireVersion":13},"incomingInternalClient":{"minWireVersion":13,"maxWireVersion":13},"outgoing":{"minWireVersion":13,"maxWireVersion":13},"isInternalClient":true}}}
sorasvl-router | 172.18.0.1 - - [15/Jun/2022:11:34:20 +0000] "GET /api/v1/assets/download/preview/b554f105-64fb-47db-a280-67fc32af7b63?type=small HTTP/1.1" 200 35222 "http://localhost/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/102.0.0.0 Safari/537.36" "-"
sorasvl-mongo | {"t":{"$date":"2022-06-15T11:34:06.610+00:00"},"s":"I",  "c":"STORAGE",  "id":5071100, "ctx":"initandlisten","msg":"Clearing temp directory"}
sorasvl-router | 172.18.0.1 - - [15/Jun/2022:11:34:20 +0000] "GET /api/v1/assets/download/preview/7f4d4eb4-bef4-4af1-806f-7e3b40784164?type=small HTTP/1.1" 200 32478 "http://localhost/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/102.0.0.0 Safari/537.36" "-"
sorasvl-router | 172.18.0.1 - - [15/Jun/2022:11:34:20 +0000] "GET /api/v1/assets/download/preview/ec9130a2-9e63-403b-b732-fc50e2e98187?type=small HTTP/1.1" 200 40784 "http://localhost/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/102.0.0.0 Safari/537.36" "-"
sorasvl-router | 172.18.0.1 - - [15/Jun/2022:11:34:20 +0000] "GET /api/v1/assets/download/preview/6a582ec5-e589-4c06-8fcd-575913c97956?type=small HTTP/1.1" 200 36769 "http://localhost/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/102.0.0.0 Safari/537.36" "-"
sorasvl-router | 172.18.0.1 - - [15/Jun/2022:11:34:20 +0000] "GET /api/v1/assets/download/preview/decf3c08-1578-42c9-9b81-14f66eaaecae?type=small HTTP/1.1" 200 42354 "http://localhost/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/102.0.0.0 Safari/537.36" "-"
sorasvl-mongo | {"t":{"$date":"2022-06-15T11:34:06.610+00:00"},"s":"I",  "c":"CONTROL",  "id":20536,   "ctx":"initandlisten","msg":"Flow Control is enabled on this deployment"}
sorasvl-router | 172.18.0.1 - - [15/Jun/2022:11:34:20 +0000] "GET /api/v1/assets/download/preview/8cc07d43-9a62-476e-9d7e-312502b47500?type=small HTTP/1.1" 200 38326 "http://localhost/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/102.0.0.0 Safari/537.36" "-"
sorasvl-router | 172.18.0.1 - - [15/Jun/2022:11:34:20 +0000] "GET /api/v1/assets/download/preview/ac65c414-7209-467c-a557-dedf75886d46?type=small HTTP/1.1" 200 38294 "http://localhost/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/102.0.0.0 Safari/537.36" "-"
sorasvl-mongo | {"t":{"$date":"2022-06-15T11:34:06.611+00:00"},"s":"I",  "c":"FTDC",     "id":20625,   "ctx":"initandlisten","msg":"Initializing full-time diagnostic data capture","attr":{"dataDirectory":"/data/db/diagnostic.data"}}
sorasvl-router | 172.18.0.1 - - [15/Jun/2022:11:34:20 +0000] "GET /api/v1/assets/download/preview/f1d0d3ab-3c7f-4158-92ba-f03e16901e11?type=small HTTP/1.1" 200 38470 "http://localhost/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/102.0.0.0 Safari/537.36" "-"
sorasvl-mongo | {"t":{"$date":"2022-06-15T11:34:06.611+00:00"},"s":"I",  "c":"STORAGE",  "id":20320,   "ctx":"initandlisten","msg":"createCollection","attr":{"namespace":"local.startup_log","uuidDisposition":"generated","uuid":{"uuid":{"$uuid":"dab2db00-378e-47b0-8c9a-f5663d9d4a1a"}},"options":{"capped":true,"size":10485760}}}
sorasvl-router | 172.18.0.1 - - [15/Jun/2022:11:34:20 +0000] "GET /api/v1/assets/download/preview/8ea672ea-f567-480a-8f51-673c04d07ab9?type=small HTTP/1.1" 200 36648 "http://localhost/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/102.0.0.0 Safari/537.36" "-"
sorasvl-mongo | {"t":{"$date":"2022-06-15T11:34:06.622+00:00"},"s":"I",  "c":"INDEX",    "id":20345,   "ctx":"initandlisten","msg":"Index build: done building","attr":{"buildUUID":null,"namespace":"local.startup_log","index":"_id_","commitTimestamp":null}}
sorasvl-mongo | {"t":{"$date":"2022-06-15T11:34:06.623+00:00"},"s":"I",  "c":"REPL",     "id":6015317, "ctx":"initandlisten","msg":"Setting new configuration state","attr":{"newState":"ConfigReplicationDisabled","oldState":"ConfigPreStart"}}
sorasvl-mongo | {"t":{"$date":"2022-06-15T11:34:06.624+00:00"},"s":"I",  "c":"STORAGE",  "id":20320,   "ctx":"LogicalSessionCacheRefresh","msg":"createCollection","attr":{"namespace":"config.system.sessions","uuidDisposition":"generated","uuid":{"uuid":{"$uuid":"b9bb7969-fc03-4bb1-be56-cb01b7e831f8"}},"options":{}}}
sorasvl-router | 172.18.0.1 - - [15/Jun/2022:11:34:20 +0000] "GET /api/v1/assets/download/preview/6603ea68-284a-44da-96ea-14d2624727cc?type=small HTTP/1.1" 200 22228 "http://localhost/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/102.0.0.0 Safari/537.36" "-"
sorasvl-mongo | {"t":{"$date":"2022-06-15T11:34:06.624+00:00"},"s":"I",  "c":"CONTROL",  "id":20712,   "ctx":"LogicalSessionCacheReap","msg":"Sessions collection is not set up; waiting until next sessions reap interval","attr":{"error":"NamespaceNotFound: config.system.sessions does not exist"}}
sorasvl-mongo | {"t":{"$date":"2022-06-15T11:34:06.624+00:00"},"s":"I",  "c":"NETWORK",  "id":23015,   "ctx":"listener","msg":"Listening on","attr":{"address":"/tmp/mongodb-27017.sock"}}
sorasvl-mongo | {"t":{"$date":"2022-06-15T11:34:06.624+00:00"},"s":"I",  "c":"NETWORK",  "id":23015,   "ctx":"listener","msg":"Listening on","attr":{"address":"127.0.0.1"}}
sorasvl-mongo | {"t":{"$date":"2022-06-15T11:34:06.624+00:00"},"s":"I",  "c":"NETWORK",  "id":23016,   "ctx":"listener","msg":"Waiting for connections","attr":{"port":27017,"ssl":"off"}}
sorasvl-mongo | child process started successfully, parent exiting
sorasvl-router | 172.18.0.1 - - [15/Jun/2022:11:34:20 +0000] "GET /api/v1/assets/download/preview/457ba5f5-277e-4d50-9e92-8cf53ea2b926?type=small HTTP/1.1" 200 38612 "http://localhost/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/102.0.0.0 Safari/537.36" "-"
sorasvl-mongo | {"t":{"$date":"2022-06-15T11:34:06.641+00:00"},"s":"I",  "c":"INDEX",    "id":20345,   "ctx":"LogicalSessionCacheRefresh","msg":"Index build: done building","attr":{"buildUUID":null,"namespace":"config.system.sessions","index":"_id_","commitTimestamp":null}}
sorasvl-mongo | {"t":{"$date":"2022-06-15T11:34:06.641+00:00"},"s":"I",  "c":"INDEX",    "id":20345,   "ctx":"LogicalSessionCacheRefresh","msg":"Index build: done building","attr":{"buildUUID":null,"namespace":"config.system.sessions","index":"lsidTTLIndex","commitTimestamp":null}}
sorasvl-router | 172.18.0.1 - - [15/Jun/2022:11:34:20 +0000] "GET /api/v1/assets/download/preview/b7149b5c-6559-4827-9009-0b938c448c78?type=small HTTP/1.1" 200 64974 "http://localhost/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/102.0.0.0 Safari/537.36" "-"
sorasvl-mongo | {"t":{"$date":"2022-06-15T11:34:06.688+00:00"},"s":"I",  "c":"NETWORK",  "id":22943,   "ctx":"listener","msg":"Connection accepted","attr":{"remote":"127.0.0.1:50154","uuid":"dda664df-e517-48b6-a5ff-58b905c37194","connectionId":1,"connectionCount":1}}
sorasvl-router | 172.18.0.1 - - [15/Jun/2022:11:34:20 +0000] "GET /api/v1/assets/download/preview/34bfe354-34c6-4958-b681-b6d9f6949dd0?type=small HTTP/1.1" 200 56926 "http://localhost/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/102.0.0.0 Safari/537.36" "-"
sorasvl-mongo | {"t":{"$date":"2022-06-15T11:34:06.688+00:00"},"s":"I",  "c":"NETWORK",  "id":51800,   "ctx":"conn1","msg":"client metadata","attr":{"remote":"127.0.0.1:50154","client":"conn1","doc":{"application":{"name":"MongoDB Shell"},"driver":{"name":"MongoDB Internal Client","version":"5.0.9"},"os":{"type":"Linux","name":"Ubuntu","architecture":"x86_64","version":"20.04"}}}}
sorasvl-router | 172.18.0.1 - - [15/Jun/2022:11:34:20 +0000] "GET /api/v1/assets/download/preview/fce86ba3-a4d3-4a56-9b18-97975168cbc8?type=small HTTP/1.1" 200 38806 "http://localhost/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/102.0.0.0 Safari/537.36" "-"
sorasvl-mongo | 
sorasvl-mongo | {"t":{"$date":"2022-06-15T11:34:06.693+00:00"},"s":"I",  "c":"NETWORK",  "id":22944,   "ctx":"conn1","msg":"Connection ended","attr":{"remote":"127.0.0.1:50154","uuid":"dda664df-e517-48b6-a5ff-58b905c37194","connectionId":1,"connectionCount":0}}
sorasvl-mongo | /usr/local/bin/docker-entrypoint.sh: ignoring /docker-entrypoint-initdb.d/Dockerfile
sorasvl-router | 172.18.0.1 - - [15/Jun/2022:11:34:20 +0000] "GET /api/v1/assets/download/preview/16036271-70d3-4f67-8e6f-cc2325c78bc3?type=small HTTP/1.1" 200 45059 "http://localhost/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/102.0.0.0 Safari/537.36" "-"
sorasvl-mongo | 
sorasvl-router | 172.18.0.1 - - [15/Jun/2022:11:34:20 +0000] "GET /api/v1/assets/download/preview/68b3eec6-a010-4731-948a-fcb2b4597117?type=small HTTP/1.1" 200 42964 "http://localhost/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/102.0.0.0 Safari/537.36" "-"
sorasvl-mongo | /usr/local/bin/docker-entrypoint.sh: ignoring /docker-entrypoint-initdb.d/global.json
sorasvl-router | 172.18.0.1 - - [15/Jun/2022:11:34:20 +0000] "GET /api/v1/assets/download/preview/bdbb89e8-41ea-4920-b5e3-5ee699084a07?type=small HTTP/1.1" 200 29306 "http://localhost/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/102.0.0.0 Safari/537.36" "-"
sorasvl-mongo | 
sorasvl-router | 172.18.0.1 - - [15/Jun/2022:11:34:20 +0000] "GET /api/v1/assets/download/preview/2831f329-1184-4117-9ae8-4c61902a4f33?type=small HTTP/1.1" 200 21492 "http://localhost/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/102.0.0.0 Safari/537.36" "-"
sorasvl-mongo | /usr/local/bin/docker-entrypoint.sh: ignoring /docker-entrypoint-initdb.d/hd_maps.json
sorasvl-router | 172.18.0.1 - - [15/Jun/2022:11:34:20 +0000] "GET /api/v1/assets/download/preview/79435363-2334-4580-b578-3fc9927c9cf8?type=small HTTP/1.1" 200 36831 "http://localhost/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/102.0.0.0 Safari/537.36" "-"
sorasvl-router | 172.18.0.1 - - [15/Jun/2022:11:34:20 +0000] "GET /api/v1/assets/download/preview/c391ab33-6ee2-4a9e-80c1-c83f499bbdb9?type=small HTTP/1.1" 200 31360 "http://localhost/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/102.0.0.0 Safari/537.36" "-"
sorasvl-mongo | 
sorasvl-router | 172.18.0.1 - - [15/Jun/2022:11:34:20 +0000] "GET /api/v1/assets/download/preview/37fbd78e-5966-4582-8233-4ea02c287ae1?type=small HTTP/1.1" 200 29470 "http://localhost/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/102.0.0.0 Safari/537.36" "-"
sorasvl-mongo | /usr/local/bin/docker-entrypoint.sh: running /docker-entrypoint-initdb.d/import.sh
sorasvl-router | 172.18.0.1 - - [15/Jun/2022:11:34:20 +0000] "GET /api/v1/assets/download/preview/8eeafc9b-f435-4dbe-8b40-ebffcb4a3c26?type=small HTTP/1.1" 200 39062 "http://localhost/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/102.0.0.0 Safari/537.36" "-"
sorasvl-mongo | {"t":{"$date":"2022-06-15T11:34:06.699+00:00"},"s":"I",  "c":"NETWORK",  "id":22943,   "ctx":"listener","msg":"Connection accepted","attr":{"remote":"127.0.0.1:50156","uuid":"4c8ef706-b631-4626-b3ba-ef1680d5aa4c","connectionId":2,"connectionCount":1}}
sorasvl-router | 172.18.0.1 - - [15/Jun/2022:11:34:20 +0000] "GET /api/v1/assets/download/preview/7f9c3bd7-c223-4d1b-9b2d-67b8c6730854?type=small HTTP/1.1" 200 38020 "http://localhost/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/102.0.0.0 Safari/537.36" "-"
sorasvl-mongo | {"t":{"$date":"2022-06-15T11:34:06.699+00:00"},"s":"I",  "c":"NETWORK",  "id":22943,   "ctx":"listener","msg":"Connection accepted","attr":{"remote":"127.0.0.1:50158","uuid":"3bd1c24f-7358-4fa9-ba73-3ee3bfaa7509","connectionId":3,"connectionCount":2}}
sorasvl-router | 172.18.0.1 - - [15/Jun/2022:11:34:20 +0000] "GET /api/v1/assets/download/preview/0595d9d3-c53f-4072-ac7d-1a55fe9ccf33?type=small HTTP/1.1" 200 29558 "http://localhost/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/102.0.0.0 Safari/537.36" "-"
sorasvl-mongo | {"t":{"$date":"2022-06-15T11:34:06.699+00:00"},"s":"I",  "c":"NETWORK",  "id":51800,   "ctx":"conn2","msg":"client metadata","attr":{"remote":"127.0.0.1:50156","client":"conn2","doc":{"driver":{"name":"mongo-go-driver","version":"v1.9.1"},"os":{"type":"linux","architecture":"amd64"},"platform":"go1.17.10","application":{"name":"mongoimport"}}}}
sorasvl-router | 172.18.0.1 - - [15/Jun/2022:11:34:20 +0000] "GET /api/v1/assets/download/preview/62156e42-b396-4daa-8ff9-91ebcc0b22e0?type=small HTTP/1.1" 200 45184 "http://localhost/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/102.0.0.0 Safari/537.36" "-"
sorasvl-mongo | {"t":{"$date":"2022-06-15T11:34:06.699+00:00"},"s":"I",  "c":"NETWORK",  "id":51800,   "ctx":"conn3","msg":"client metadata","attr":{"remote":"127.0.0.1:50158","client":"conn3","doc":{"driver":{"name":"mongo-go-driver","version":"v1.9.1"},"os":{"type":"linux","architecture":"amd64"},"platform":"go1.17.10","application":{"name":"mongoimport"}}}}
sorasvl-router | 172.18.0.1 - - [15/Jun/2022:11:34:20 +0000] "GET /api/v1/assets/download/preview/d818e54e-63ac-47e9-ba13-fa5b5c6406e4?type=small HTTP/1.1" 200 34498 "http://localhost/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/102.0.0.0 Safari/537.36" "-"
sorasvl-mongo | {"t":{"$date":"2022-06-15T11:34:06.700+00:00"},"s":"I",  "c":"NETWORK",  "id":22943,   "ctx":"listener","msg":"Connection accepted","attr":{"remote":"127.0.0.1:50160","uuid":"521543de-34a6-4380-8e37-de17c8b7e62e","connectionId":4,"connectionCount":3}}
sorasvl-router | 172.18.0.1 - - [15/Jun/2022:11:34:20 +0000] "GET /api/v1/assets/download/preview/de1f0722-751e-4285-befc-d2c892a06ce6?type=small HTTP/1.1" 200 25910 "http://localhost/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/102.0.0.0 Safari/537.36" "-"
sorasvl-mongo | {"t":{"$date":"2022-06-15T11:34:06.700+00:00"},"s":"I",  "c":"NETWORK",  "id":51800,   "ctx":"conn4","msg":"client metadata","attr":{"remote":"127.0.0.1:50160","client":"conn4","doc":{"driver":{"name":"mongo-go-driver","version":"v1.9.1"},"os":{"type":"linux","architecture":"amd64"},"platform":"go1.17.10","application":{"name":"mongoimport"}}}}
sorasvl-router | 172.18.0.1 - - [15/Jun/2022:11:34:20 +0000] "GET /api/v1/assets/download/preview/0c86501c-d7f9-417b-a007-1627c24ae6a9?type=small HTTP/1.1" 200 52456 "http://localhost/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/102.0.0.0 Safari/537.36" "-"
sorasvl-mongo | 2022-06-15T11:34:06.700+0000	connected to: mongodb://localhost/
sorasvl-router | 172.18.0.1 - - [15/Jun/2022:11:34:20 +0000] "GET /api/v1/assets/download/preview/dee927e6-ff3d-4928-b7e2-b073354b881d?type=small HTTP/1.1" 200 27878 "http://localhost/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/102.0.0.0 Safari/537.36" "-"
sorasvl-mongo | {"t":{"$date":"2022-06-15T11:34:06.710+00:00"},"s":"I",  "c":"STORAGE",  "id":20320,   "ctx":"conn4","msg":"createCollection","attr":{"namespace":"WISE.global","uuidDisposition":"generated","uuid":{"uuid":{"$uuid":"1a952614-213a-483b-b942-721d114e9157"}},"options":{}}}
sorasvl-router | 172.18.0.1 - - [15/Jun/2022:11:34:20 +0000] "GET /api/v1/assets/download/preview/8c299cbe-bbc0-4805-9477-2154d5c5eaab?type=small HTTP/1.1" 200 50268 "http://localhost/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/102.0.0.0 Safari/537.36" "-"
sorasvl-mongo | {"t":{"$date":"2022-06-15T11:34:06.722+00:00"},"s":"I",  "c":"INDEX",    "id":20345,   "ctx":"conn4","msg":"Index build: done building","attr":{"buildUUID":null,"namespace":"WISE.global","index":"_id_","commitTimestamp":null}}
sorasvl-router | 172.18.0.1 - - [15/Jun/2022:11:34:20 +0000] "GET /api/v1/assets/download/preview/c7b0154b-305f-476d-aadd-2bb4eb48017b?type=small HTTP/1.1" 200 20622 "http://localhost/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/102.0.0.0 Safari/537.36" "-"
sorasvl-mongo | 2022-06-15T11:34:06.724+0000	3 document(s) imported successfully. 0 document(s) failed to import.
sorasvl-router | 172.18.0.1 - - [15/Jun/2022:11:34:20 +0000] "GET /api/v1/assets/download/preview/e4c3e4dd-fd7d-42fb-8480-5593813a2243?type=small HTTP/1.1" 200 64626 "http://localhost/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/102.0.0.0 Safari/537.36" "-"
sorasvl-mongo | {"t":{"$date":"2022-06-15T11:34:06.724+00:00"},"s":"I",  "c":"-",        "id":20883,   "ctx":"conn3","msg":"Interrupted operation as its client disconnected","attr":{"opId":17}}
sorasvl-router | 172.18.0.1 - - [15/Jun/2022:11:34:20 +0000] "GET /api/v1/assets/download/preview/ce7d07ec-82bc-4dde-8d8e-7a86fb148646?type=small HTTP/1.1" 200 46262 "http://localhost/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/102.0.0.0 Safari/537.36" "-"
sorasvl-mongo | {"t":{"$date":"2022-06-15T11:34:06.724+00:00"},"s":"I",  "c":"NETWORK",  "id":22944,   "ctx":"conn2","msg":"Connection ended","attr":{"remote":"127.0.0.1:50156","uuid":"4c8ef706-b631-4626-b3ba-ef1680d5aa4c","connectionId":2,"connectionCount":2}}
sorasvl-router | 172.18.0.1 - - [15/Jun/2022:11:34:20 +0000] "GET /api/v1/assets/download/preview/4c6cac03-9b20-499c-a466-80132598878a?type=small HTTP/1.1" 200 69797 "http://localhost/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/102.0.0.0 Safari/537.36" "-"
sorasvl-mongo | {"t":{"$date":"2022-06-15T11:34:06.725+00:00"},"s":"I",  "c":"NETWORK",  "id":22944,   "ctx":"conn3","msg":"Connection ended","attr":{"remote":"127.0.0.1:50158","uuid":"3bd1c24f-7358-4fa9-ba73-3ee3bfaa7509","connectionId":3,"connectionCount":1}}
sorasvl-router | 172.18.0.1 - - [15/Jun/2022:11:34:20 +0000] "GET /api/v1/assets/download/preview/4552b7ac-4fba-4420-88b8-ae14289bf5ac?type=small HTTP/1.1" 200 51224 "http://localhost/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/102.0.0.0 Safari/537.36" "-"
sorasvl-mongo | {"t":{"$date":"2022-06-15T11:34:06.725+00:00"},"s":"I",  "c":"NETWORK",  "id":22944,   "ctx":"conn4","msg":"Connection ended","attr":{"remote":"127.0.0.1:50160","uuid":"521543de-34a6-4380-8e37-de17c8b7e62e","connectionId":4,"connectionCount":0}}
sorasvl-mongo | {"t":{"$date":"2022-06-15T11:34:06.737+00:00"},"s":"I",  "c":"NETWORK",  "id":22943,   "ctx":"listener","msg":"Connection accepted","attr":{"remote":"127.0.0.1:50162","uuid":"2866ad0d-1433-4a60-a6dc-eaedc1f51c06","connectionId":5,"connectionCount":1}}
sorasvl-router | 172.18.0.1 - - [15/Jun/2022:11:34:20 +0000] "GET /api/v1/assets/download/preview/164e1542-a296-4aa4-8332-312b7d530ba8?type=small HTTP/1.1" 200 29598 "http://localhost/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/102.0.0.0 Safari/537.36" "-"
sorasvl-router | 172.18.0.1 - - [15/Jun/2022:11:34:20 +0000] "GET /api/v1/assets/download/preview/524f0389-4d17-470f-8cbf-1ca672bd6798?type=small HTTP/1.1" 200 25412 "http://localhost/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/102.0.0.0 Safari/537.36" "-"
sorasvl-router | 172.18.0.1 - - [15/Jun/2022:11:34:20 +0000] "GET /api/v1/assets/download/preview/cca8a560-0c11-491e-8604-c69b3eb45d91?type=small HTTP/1.1" 200 35202 "http://localhost/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/102.0.0.0 Safari/537.36" "-"
sorasvl-mongo | {"t":{"$date":"2022-06-15T11:34:06.738+00:00"},"s":"I",  "c":"NETWORK",  "id":22943,   "ctx":"listener","msg":"Connection accepted","attr":{"remote":"127.0.0.1:50164","uuid":"f090fb37-8ff5-421c-8aae-1f247139953e","connectionId":6,"connectionCount":2}}
sorasvl-router | 172.18.0.1 - - [15/Jun/2022:11:34:20 +0000] "GET /api/v1/assets/download/preview/0a4026cb-39eb-42ce-8065-26da778d2f74?type=small HTTP/1.1" 200 35998 "http://localhost/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/102.0.0.0 Safari/537.36" "-"
sorasvl-mongo | {"t":{"$date":"2022-06-15T11:34:06.738+00:00"},"s":"I",  "c":"NETWORK",  "id":51800,   "ctx":"conn6","msg":"client metadata","attr":{"remote":"127.0.0.1:50164","client":"conn6","doc":{"driver":{"name":"mongo-go-driver","version":"v1.9.1"},"os":{"type":"linux","architecture":"amd64"},"platform":"go1.17.10","application":{"name":"mongoimport"}}}}
sorasvl-router | 172.18.0.1 - - [15/Jun/2022:11:34:20 +0000] "GET /api/v1/assets/download/preview/bca42fdd-cd4c-42c9-8d4a-8558b2e8b5c8?type=small HTTP/1.1" 200 31194 "http://localhost/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/102.0.0.0 Safari/537.36" "-"
sorasvl-mongo | {"t":{"$date":"2022-06-15T11:34:06.739+00:00"},"s":"I",  "c":"NETWORK",  "id":22943,   "ctx":"listener","msg":"Connection accepted","attr":{"remote":"127.0.0.1:50166","uuid":"38654e66-731a-46de-8352-097763361b68","connectionId":7,"connectionCount":3}}
sorasvl-mongo | {"t":{"$date":"2022-06-15T11:34:06.739+00:00"},"s":"I",  "c":"NETWORK",  "id":51800,   "ctx":"conn7","msg":"client metadata","attr":{"remote":"127.0.0.1:50166","client":"conn7","doc":{"driver":{"name":"mongo-go-driver","version":"v1.9.1"},"os":{"type":"linux","architecture":"amd64"},"platform":"go1.17.10","application":{"name":"mongoimport"}}}}
sorasvl-router | 172.18.0.1 - - [15/Jun/2022:11:34:20 +0000] "GET /api/v1/assets/download/preview/da7c8a8b-e4c5-4002-b8ce-22c66cb4f2ac?type=small HTTP/1.1" 200 30742 "http://localhost/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/102.0.0.0 Safari/537.36" "-"
sorasvl-router | 172.18.0.1 - - [15/Jun/2022:11:34:20 +0000] "GET /api/v1/assets/download/preview/0eefb0f6-69e5-4953-95c5-09f92d3e9830?type=small HTTP/1.1" 200 35488 "http://localhost/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/102.0.0.0 Safari/537.36" "-"
sorasvl-mongo | 2022-06-15T11:34:06.739+0000	connected to: mongodb://localhost/
sorasvl-router | 172.18.0.1 - - [15/Jun/2022:11:34:20 +0000] "GET /api/v1/assets/download/preview/927f9b19-1113-4c8a-9fc7-0a01c1af76b8?type=small HTTP/1.1" 200 45246 "http://localhost/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/102.0.0.0 Safari/537.36" "-"
sorasvl-mongo | {"t":{"$date":"2022-06-15T11:34:06.742+00:00"},"s":"I",  "c":"NETWORK",  "id":51800,   "ctx":"conn5","msg":"client metadata","attr":{"remote":"127.0.0.1:50162","client":"conn5","doc":{"driver":{"name":"mongo-go-driver","version":"v1.9.1"},"os":{"type":"linux","architecture":"amd64"},"platform":"go1.17.10","application":{"name":"mongoimport"}}}}
sorasvl-router | 172.18.0.1 - - [15/Jun/2022:11:34:20 +0000] "GET /api/v1/assets/download/preview/362c4de7-f83e-4ee4-9d39-28eb4b068692?type=small HTTP/1.1" 200 38940 "http://localhost/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/102.0.0.0 Safari/537.36" "-"
sorasvl-mongo | {"t":{"$date":"2022-06-15T11:34:06.755+00:00"},"s":"I",  "c":"STORAGE",  "id":20320,   "ctx":"conn7","msg":"createCollection","attr":{"namespace":"WISE.maps","uuidDisposition":"generated","uuid":{"uuid":{"$uuid":"faf501b0-7cd4-4b2b-9827-60fbec9b10e9"}},"options":{}}}
sorasvl-router | 172.18.0.1 - - [15/Jun/2022:11:34:20 +0000] "GET /api/v1/assets/download/preview/dc9861cb-c53d-4782-9dcb-fe310f98b618?type=small HTTP/1.1" 200 35818 "http://localhost/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/102.0.0.0 Safari/537.36" "-"
sorasvl-mongo | {"t":{"$date":"2022-06-15T11:34:06.764+00:00"},"s":"I",  "c":"INDEX",    "id":20345,   "ctx":"conn7","msg":"Index build: done building","attr":{"buildUUID":null,"namespace":"WISE.maps","index":"_id_","commitTimestamp":null}}
sorasvl-mongo | 2022-06-15T11:34:06.766+0000	94 document(s) imported successfully. 0 document(s) failed to import.
sorasvl-mongo | {"t":{"$date":"2022-06-15T11:34:06.766+00:00"},"s":"I",  "c":"NETWORK",  "id":22944,   "ctx":"conn5","msg":"Connection ended","attr":{"remote":"127.0.0.1:50162","uuid":"2866ad0d-1433-4a60-a6dc-eaedc1f51c06","connectionId":5,"connectionCount":2}}
sorasvl-mongo | {"t":{"$date":"2022-06-15T11:34:06.766+00:00"},"s":"I",  "c":"NETWORK",  "id":22944,   "ctx":"conn7","msg":"Connection ended","attr":{"remote":"127.0.0.1:50166","uuid":"38654e66-731a-46de-8352-097763361b68","connectionId":7,"connectionCount":1}}
sorasvl-router | 172.18.0.1 - - [15/Jun/2022:11:34:20 +0000] "GET /api/v1/assets/download/preview/add53c5e-b406-41f8-98bf-ed9743453f3e?type=small HTTP/1.1" 200 38942 "http://localhost/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/102.0.0.0 Safari/537.36" "-"
sorasvl-mongo | {"t":{"$date":"2022-06-15T11:34:06.769+00:00"},"s":"I",  "c":"-",        "id":20883,   "ctx":"conn6","msg":"Interrupted operation as its client disconnected","attr":{"opId":26}}
sorasvl-router | 172.18.0.1 - - [15/Jun/2022:11:34:20 +0000] "GET /api/v1/assets/download/preview/c28d5f6a-5fa2-4bb2-8cde-2e471de0a2bd?type=small HTTP/1.1" 200 37886 "http://localhost/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/102.0.0.0 Safari/537.36" "-"
sorasvl-mongo | {"t":{"$date":"2022-06-15T11:34:06.770+00:00"},"s":"I",  "c":"NETWORK",  "id":22944,   "ctx":"conn6","msg":"Connection ended","attr":{"remote":"127.0.0.1:50164","uuid":"f090fb37-8ff5-421c-8aae-1f247139953e","connectionId":6,"connectionCount":0}}
sorasvl-mongo | {"t":{"$date":"2022-06-15T11:34:06.777+00:00"},"s":"I",  "c":"NETWORK",  "id":22943,   "ctx":"listener","msg":"Connection accepted","attr":{"remote":"127.0.0.1:50168","uuid":"fe90d919-ee2a-4b5d-8d73-1bf165371290","connectionId":8,"connectionCount":1}}
sorasvl-router | 172.18.0.1 - - [15/Jun/2022:11:34:20 +0000] "GET /api/v1/assets/download/preview/d7747848-14b0-4c4e-b95a-1bf4a33e6f59?type=small HTTP/1.1" 200 51980 "http://localhost/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/102.0.0.0 Safari/537.36" "-"
sorasvl-mongo | {"t":{"$date":"2022-06-15T11:34:06.777+00:00"},"s":"I",  "c":"NETWORK",  "id":22943,   "ctx":"listener","msg":"Connection accepted","attr":{"remote":"127.0.0.1:50170","uuid":"fd5bddfd-1e1d-447b-ae5a-30d6ed870fd3","connectionId":9,"connectionCount":2}}
sorasvl-mongo | {"t":{"$date":"2022-06-15T11:34:06.777+00:00"},"s":"I",  "c":"NETWORK",  "id":51800,   "ctx":"conn8","msg":"client metadata","attr":{"remote":"127.0.0.1:50168","client":"conn8","doc":{"driver":{"name":"mongo-go-driver","version":"v1.9.1"},"os":{"type":"linux","architecture":"amd64"},"platform":"go1.17.10","application":{"name":"mongoimport"}}}}
sorasvl-mongo | {"t":{"$date":"2022-06-15T11:34:06.778+00:00"},"s":"I",  "c":"NETWORK",  "id":22943,   "ctx":"listener","msg":"Connection accepted","attr":{"remote":"127.0.0.1:50172","uuid":"221a6212-ae21-4720-badb-33030c1c6d01","connectionId":10,"connectionCount":3}}
sorasvl-mongo | {"t":{"$date":"2022-06-15T11:34:06.778+00:00"},"s":"I",  "c":"NETWORK",  "id":51800,   "ctx":"conn9","msg":"client metadata","attr":{"remote":"127.0.0.1:50170","client":"conn9","doc":{"driver":{"name":"mongo-go-driver","version":"v1.9.1"},"os":{"type":"linux","architecture":"amd64"},"platform":"go1.17.10","application":{"name":"mongoimport"}}}}
sorasvl-router | 172.18.0.1 - - [15/Jun/2022:11:34:20 +0000] "GET /api/v1/assets/download/preview/d959797b-7ccf-4432-a78a-cd5d8c470f29?type=small HTTP/1.1" 200 36568 "http://localhost/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/102.0.0.0 Safari/537.36" "-"
sorasvl-mongo | {"t":{"$date":"2022-06-15T11:34:06.779+00:00"},"s":"I",  "c":"NETWORK",  "id":51800,   "ctx":"conn10","msg":"client metadata","attr":{"remote":"127.0.0.1:50172","client":"conn10","doc":{"driver":{"name":"mongo-go-driver","version":"v1.9.1"},"os":{"type":"linux","architecture":"amd64"},"platform":"go1.17.10","application":{"name":"mongoimport"}}}}
sorasvl-router | 172.18.0.1 - - [15/Jun/2022:11:34:20 +0000] "GET /api/v1/assets/download/preview/8ca2fc23-f4d5-4655-8f28-52bb9e2a77c0?type=small HTTP/1.1" 200 53 "http://localhost/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/102.0.0.0 Safari/537.36" "-"
sorasvl-mongo | 2022-06-15T11:34:06.782+0000	connected to: mongodb://localhost/
sorasvl-router | 172.18.0.1 - - [15/Jun/2022:11:34:20 +0000] "GET /api/v1/assets/download/preview/1e251ace-a45d-40f2-beb5-837896d4aa60?type=small HTTP/1.1" 200 29812 "http://localhost/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/102.0.0.0 Safari/537.36" "-"
sorasvl-mongo | {"t":{"$date":"2022-06-15T11:34:06.791+00:00"},"s":"I",  "c":"STORAGE",  "id":20320,   "ctx":"conn10","msg":"createCollection","attr":{"namespace":"WISE.plugins","uuidDisposition":"generated","uuid":{"uuid":{"$uuid":"53f82460-611c-4184-ac5c-0092d4782c4b"}},"options":{}}}
sorasvl-router | 172.18.0.1 - - [15/Jun/2022:11:34:20 +0000] "GET /api/v1/assets/download/preview/912f1f66-620a-42e4-88e0-7866d791f733?type=small HTTP/1.1" 200 77706 "http://localhost/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/102.0.0.0 Safari/537.36" "-"
sorasvl-mongo | {"t":{"$date":"2022-06-15T11:34:06.800+00:00"},"s":"I",  "c":"INDEX",    "id":20345,   "ctx":"conn10","msg":"Index build: done building","attr":{"buildUUID":null,"namespace":"WISE.plugins","index":"_id_","commitTimestamp":null}}
sorasvl-router | 172.18.0.1 - - [15/Jun/2022:11:34:20 +0000] "GET /api/v1/assets/download/preview/3680d398-4f15-430b-9d2c-4e2a4ee6650f?type=small HTTP/1.1" 200 32038 "http://localhost/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/102.0.0.0 Safari/537.36" "-"
sorasvl-mongo | 2022-06-15T11:34:06.801+0000	56 document(s) imported successfully. 0 document(s) failed to import.
sorasvl-router | 172.18.0.1 - - [15/Jun/2022:11:34:20 +0000] "GET /api/v1/assets/download/preview/80e5f06d-d3f5-467f-9d13-eef6a6f4eadf?type=small HTTP/1.1" 200 10196 "http://localhost/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/102.0.0.0 Safari/537.36" "-"
sorasvl-mongo | {"t":{"$date":"2022-06-15T11:34:06.802+00:00"},"s":"I",  "c":"-",        "id":20883,   "ctx":"conn8","msg":"Interrupted operation as its client disconnected","attr":{"opId":35}}
sorasvl-router | 172.18.0.1 - - [15/Jun/2022:11:34:20 +0000] "GET /api/v1/assets/download/preview/dd8232c4-694d-44c7-991b-fe152d7779ce?type=small HTTP/1.1" 200 8356 "http://localhost/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/102.0.0.0 Safari/537.36" "-"
sorasvl-mongo | {"t":{"$date":"2022-06-15T11:34:06.802+00:00"},"s":"I",  "c":"NETWORK",  "id":22944,   "ctx":"conn9","msg":"Connection ended","attr":{"remote":"127.0.0.1:50170","uuid":"fd5bddfd-1e1d-447b-ae5a-30d6ed870fd3","connectionId":9,"connectionCount":2}}
sorasvl-router | 172.18.0.1 - - [15/Jun/2022:11:34:20 +0000] "GET /api/v1/assets/download/preview/df2ffe18-dd1a-4dfc-b1f2-a44a969d5f9a?type=small HTTP/1.1" 200 44666 "http://localhost/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/102.0.0.0 Safari/537.36" "-"
sorasvl-mongo | {"t":{"$date":"2022-06-15T11:34:06.802+00:00"},"s":"I",  "c":"NETWORK",  "id":22944,   "ctx":"conn10","msg":"Connection ended","attr":{"remote":"127.0.0.1:50172","uuid":"221a6212-ae21-4720-badb-33030c1c6d01","connectionId":10,"connectionCount":1}}
sorasvl-router | 172.18.0.1 - - [15/Jun/2022:11:34:20 +0000] "GET /api/v1/assets/download/preview/f1dbb6d2-afb6-42d3-89a2-266b3747d26b?type=small HTTP/1.1" 200 58638 "http://localhost/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/102.0.0.0 Safari/537.36" "-"
sorasvl-mongo | {"t":{"$date":"2022-06-15T11:34:06.802+00:00"},"s":"I",  "c":"NETWORK",  "id":22944,   "ctx":"conn8","msg":"Connection ended","attr":{"remote":"127.0.0.1:50168","uuid":"fe90d919-ee2a-4b5d-8d73-1bf165371290","connectionId":8,"connectionCount":0}}
sorasvl-router | 172.18.0.1 - - [15/Jun/2022:11:34:20 +0000] "GET /api/v1/assets/download/preview/d0be5c1d-f3b0-4975-953f-6d309ceac2d4?type=small HTTP/1.1" 200 58638 "http://localhost/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/102.0.0.0 Safari/537.36" "-"
sorasvl-mongo | {"t":{"$date":"2022-06-15T11:34:06.809+00:00"},"s":"I",  "c":"NETWORK",  "id":22943,   "ctx":"listener","msg":"Connection accepted","attr":{"remote":"127.0.0.1:50174","uuid":"05ac1489-303d-47bb-90df-ca5c63804efa","connectionId":11,"connectionCount":1}}
sorasvl-router | 172.18.0.1 - - [15/Jun/2022:11:34:20 +0000] "GET /api/v1/assets/download/preview/29376801-f0f1-41af-b95e-ed149106de7d?type=small HTTP/1.1" 200 49422 "http://localhost/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/102.0.0.0 Safari/537.36" "-"
sorasvl-mongo | {"t":{"$date":"2022-06-15T11:34:06.810+00:00"},"s":"I",  "c":"NETWORK",  "id":22943,   "ctx":"listener","msg":"Connection accepted","attr":{"remote":"127.0.0.1:50176","uuid":"3ec42152-5592-4af1-b105-bc6fc4f2f7e5","connectionId":12,"connectionCount":2}}
sorasvl-router | 172.18.0.1 - - [15/Jun/2022:11:34:20 +0000] "GET /api/v1/assets/download/preview/cc0eba47-b814-4d65-a7a9-649980944061?type=small HTTP/1.1" 200 8416 "http://localhost/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/102.0.0.0 Safari/537.36" "-"
sorasvl-mongo | {"t":{"$date":"2022-06-15T11:34:06.810+00:00"},"s":"I",  "c":"NETWORK",  "id":51800,   "ctx":"conn12","msg":"client metadata","attr":{"remote":"127.0.0.1:50176","client":"conn12","doc":{"driver":{"name":"mongo-go-driver","version":"v1.9.1"},"os":{"type":"linux","architecture":"amd64"},"platform":"go1.17.10","application":{"name":"mongoimport"}}}}
sorasvl-router | 172.18.0.1 - - [15/Jun/2022:11:34:20 +0000] "GET /api/v1/assets/download/preview/67119da8-87f6-4c7c-9e37-e8ab5b5312ff?type=small HTTP/1.1" 200 30082 "http://localhost/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/102.0.0.0 Safari/537.36" "-"
sorasvl-mongo | {"t":{"$date":"2022-06-15T11:34:06.810+00:00"},"s":"I",  "c":"NETWORK",  "id":22943,   "ctx":"listener","msg":"Connection accepted","attr":{"remote":"127.0.0.1:50178","uuid":"a60d7518-6d97-4e11-a8f9-96f81143898f","connectionId":13,"connectionCount":3}}
sorasvl-router | 172.18.0.1 - - [15/Jun/2022:11:34:20 +0000] "GET /api/v1/assets/download/preview/d07a3bfe-85d1-4595-ad85-b53b08ef5e9d?type=small HTTP/1.1" 200 31158 "http://localhost/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/102.0.0.0 Safari/537.36" "-"
sorasvl-mongo | {"t":{"$date":"2022-06-15T11:34:06.810+00:00"},"s":"I",  "c":"NETWORK",  "id":51800,   "ctx":"conn11","msg":"client metadata","attr":{"remote":"127.0.0.1:50174","client":"conn11","doc":{"driver":{"name":"mongo-go-driver","version":"v1.9.1"},"os":{"type":"linux","architecture":"amd64"},"platform":"go1.17.10","application":{"name":"mongoimport"}}}}
sorasvl-router | 172.18.0.1 - - [15/Jun/2022:11:34:20 +0000] "GET /api/v1/assets/download/preview/7835bb9f-1a86-44c8-915c-81ad5889f9fb?type=small HTTP/1.1" 200 19252 "http://localhost/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/102.0.0.0 Safari/537.36" "-"
sorasvl-mongo | {"t":{"$date":"2022-06-15T11:34:06.812+00:00"},"s":"I",  "c":"NETWORK",  "id":51800,   "ctx":"conn13","msg":"client metadata","attr":{"remote":"127.0.0.1:50178","client":"conn13","doc":{"driver":{"name":"mongo-go-driver","version":"v1.9.1"},"os":{"type":"linux","architecture":"amd64"},"platform":"go1.17.10","application":{"name":"mongoimport"}}}}
sorasvl-router | 172.18.0.1 - - [15/Jun/2022:11:34:20 +0000] "GET /api/v1/assets/download/preview/98619789-79c8-40a2-aa22-3a3320791268?type=small HTTP/1.1" 200 31142 "http://localhost/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/102.0.0.0 Safari/537.36" "-"
sorasvl-router | 172.18.0.1 - - [15/Jun/2022:11:34:20 +0000] "GET /api/v1/assets/download/preview/9faeba05-13cf-409a-ae6e-8769d3912889?type=small HTTP/1.1" 200 38440 "http://localhost/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/102.0.0.0 Safari/537.36" "-"
sorasvl-router | 172.18.0.1 - - [15/Jun/2022:11:34:20 +0000] "GET /api/v1/assets/download/preview/2612c2e7-2549-44ae-8d54-d22e82633bd8?type=small HTTP/1.1" 200 8245 "http://localhost/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/102.0.0.0 Safari/537.36" "-"
sorasvl-router | 172.18.0.1 - - [15/Jun/2022:11:34:20 +0000] "GET /api/v1/assets/download/preview/da80912c-e063-4914-a2d2-5a4fc3e4692c?type=small HTTP/1.1" 200 49504 "http://localhost/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/102.0.0.0 Safari/537.36" "-"
sorasvl-mongo | 2022-06-15T11:34:06.818+0000	connected to: mongodb://localhost/
sorasvl-router | 172.18.0.1 - - [15/Jun/2022:11:34:20 +0000] "GET /api/v1/assets/download/preview/9f75d1da-fedb-4699-a2ee-f2829dbdb5d8?type=small HTTP/1.1" 200 26140 "http://localhost/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/102.0.0.0 Safari/537.36" "-"
sorasvl-mongo | {"t":{"$date":"2022-06-15T11:34:07.135+00:00"},"s":"I",  "c":"STORAGE",  "id":20320,   "ctx":"conn13","msg":"createCollection","attr":{"namespace":"WISE.vehicles","uuidDisposition":"generated","uuid":{"uuid":{"$uuid":"e1e8adb8-f49e-4c70-ad25-d8b042266bda"}},"options":{}}}
sorasvl-mongo | {"t":{"$date":"2022-06-15T11:34:07.145+00:00"},"s":"I",  "c":"INDEX",    "id":20345,   "ctx":"conn13","msg":"Index build: done building","attr":{"buildUUID":null,"namespace":"WISE.vehicles","index":"_id_","commitTimestamp":null}}
sorasvl-mongo | 2022-06-15T11:34:07.171+0000	255 document(s) imported successfully. 0 document(s) failed to import.
sorasvl-mongo | {"t":{"$date":"2022-06-15T11:34:07.171+00:00"},"s":"I",  "c":"-",        "id":20883,   "ctx":"conn12","msg":"Interrupted operation as its client disconnected","attr":{"opId":44}}
sorasvl-router | 172.18.0.1 - - [15/Jun/2022:11:34:20 +0000] "GET /api/v1/assets/download/preview/e7837fcf-8abd-4b75-a6e3-2138fea8e78d?type=small HTTP/1.1" 200 20377 "http://localhost/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/102.0.0.0 Safari/537.36" "-"
sorasvl-mongo | {"t":{"$date":"2022-06-15T11:34:07.171+00:00"},"s":"I",  "c":"NETWORK",  "id":22944,   "ctx":"conn11","msg":"Connection ended","attr":{"remote":"127.0.0.1:50174","uuid":"05ac1489-303d-47bb-90df-ca5c63804efa","connectionId":11,"connectionCount":2}}
sorasvl-router | 172.18.0.1 - - [15/Jun/2022:11:34:20 +0000] "GET /api/v1/assets/download/preview/d0b84cc6-f4d9-4323-9d4b-9cce8239d9a8?type=small HTTP/1.1" 200 30546 "http://localhost/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/102.0.0.0 Safari/537.36" "-"
sorasvl-router | 172.18.0.1 - - [15/Jun/2022:11:34:20 +0000] "GET /api/v1/assets/download/preview/20d202d9-f3a2-4cd9-8bac-b3cec90a2314?type=small HTTP/1.1" 200 71565 "http://localhost/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/102.0.0.0 Safari/537.36" "-"
sorasvl-router | 172.18.0.1 - - [15/Jun/2022:11:34:20 +0000] "GET /api/v1/assets/download/preview/128c62e2-17e0-49d1-b275-01b230704d66?type=small HTTP/1.1" 200 30546 "http://localhost/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/102.0.0.0 Safari/537.36" "-"
sorasvl-mongo | {"t":{"$date":"2022-06-15T11:34:07.171+00:00"},"s":"I",  "c":"NETWORK",  "id":22944,   "ctx":"conn13","msg":"Connection ended","attr":{"remote":"127.0.0.1:50178","uuid":"a60d7518-6d97-4e11-a8f9-96f81143898f","connectionId":13,"connectionCount":1}}
sorasvl-router | 172.18.0.1 - - [15/Jun/2022:11:34:20 +0000] "GET /api/v1/assets/download/preview/84913f83-5ba5-40fb-bf0b-d8aa24b59de8?type=small HTTP/1.1" 200 30546 "http://localhost/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/102.0.0.0 Safari/537.36" "-"
sorasvl-mongo | {"t":{"$date":"2022-06-15T11:34:07.172+00:00"},"s":"I",  "c":"NETWORK",  "id":22944,   "ctx":"conn12","msg":"Connection ended","attr":{"remote":"127.0.0.1:50176","uuid":"3ec42152-5592-4af1-b105-bc6fc4f2f7e5","connectionId":12,"connectionCount":0}}
sorasvl-router | 172.18.0.1 - - [15/Jun/2022:11:34:20 +0000] "GET /api/v1/assets/download/preview/dc39550a-a64f-4947-9ee5-99cbb7098c06?type=small HTTP/1.1" 200 64938 "http://localhost/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/102.0.0.0 Safari/537.36" "-"
sorasvl-mongo | {"t":{"$date":"2022-06-15T11:34:07.179+00:00"},"s":"I",  "c":"NETWORK",  "id":22943,   "ctx":"listener","msg":"Connection accepted","attr":{"remote":"127.0.0.1:50184","uuid":"9a5bb833-a159-42c6-ad58-3d6a107f9610","connectionId":14,"connectionCount":1}}
sorasvl-router | 172.18.0.1 - - [15/Jun/2022:11:34:20 +0000] "GET /api/v1/assets/download/preview/fbe4d7f5-e02d-46f7-8e26-2e16b9d2dd94?type=small HTTP/1.1" 200 26798 "http://localhost/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/102.0.0.0 Safari/537.36" "-"
sorasvl-mongo | {"t":{"$date":"2022-06-15T11:34:07.179+00:00"},"s":"I",  "c":"NETWORK",  "id":22943,   "ctx":"listener","msg":"Connection accepted","attr":{"remote":"127.0.0.1:50186","uuid":"934edc02-c308-4ce4-991d-38c208c9c22d","connectionId":15,"connectionCount":2}}
sorasvl-mongo | {"t":{"$date":"2022-06-15T11:34:07.179+00:00"},"s":"I",  "c":"NETWORK",  "id":51800,   "ctx":"conn15","msg":"client metadata","attr":{"remote":"127.0.0.1:50186","client":"conn15","doc":{"driver":{"name":"mongo-go-driver","version":"v1.9.1"},"os":{"type":"linux","architecture":"amd64"},"platform":"go1.17.10","application":{"name":"mongoimport"}}}}
sorasvl-mongo | {"t":{"$date":"2022-06-15T11:34:07.179+00:00"},"s":"I",  "c":"NETWORK",  "id":51800,   "ctx":"conn14","msg":"client metadata","attr":{"remote":"127.0.0.1:50184","client":"conn14","doc":{"driver":{"name":"mongo-go-driver","version":"v1.9.1"},"os":{"type":"linux","architecture":"amd64"},"platform":"go1.17.10","application":{"name":"mongoimport"}}}}
sorasvl-mongo | {"t":{"$date":"2022-06-15T11:34:07.180+00:00"},"s":"I",  "c":"NETWORK",  "id":22943,   "ctx":"listener","msg":"Connection accepted","attr":{"remote":"127.0.0.1:50188","uuid":"043ce726-0041-4a65-8286-8aba51ed2d1b","connectionId":16,"connectionCount":3}}
sorasvl-router | 172.18.0.1 - - [15/Jun/2022:11:34:20 +0000] "GET /api/v1/assets/download/preview/60e08c09-e475-416f-be63-2257dd648652?type=small HTTP/1.1" 200 40762 "http://localhost/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/102.0.0.0 Safari/537.36" "-"
sorasvl-mongo | {"t":{"$date":"2022-06-15T11:34:07.180+00:00"},"s":"I",  "c":"NETWORK",  "id":51800,   "ctx":"conn16","msg":"client metadata","attr":{"remote":"127.0.0.1:50188","client":"conn16","doc":{"driver":{"name":"mongo-go-driver","version":"v1.9.1"},"os":{"type":"linux","architecture":"amd64"},"platform":"go1.17.10","application":{"name":"mongoimport"}}}}
sorasvl-mongo | 2022-06-15T11:34:07.180+0000	connected to: mongodb://localhost/
sorasvl-mongo | {"t":{"$date":"2022-06-15T11:34:07.181+00:00"},"s":"I",  "c":"STORAGE",  "id":20320,   "ctx":"conn16","msg":"createCollection","attr":{"namespace":"WISE.hd_maps","uuidDisposition":"generated","uuid":{"uuid":{"$uuid":"27890492-1f0d-4b20-a477-63380f4037d5"}},"options":{}}}
sorasvl-mongo | {"t":{"$date":"2022-06-15T11:34:07.219+00:00"},"s":"I",  "c":"INDEX",    "id":20345,   "ctx":"conn16","msg":"Index build: done building","attr":{"buildUUID":null,"namespace":"WISE.hd_maps","index":"_id_","commitTimestamp":null}}
sorasvl-router | 172.18.0.1 - - [15/Jun/2022:11:34:20 +0000] "GET /api/v1/assets/download/preview/18462b01-a53c-45c3-84ab-953eac3e85ce?type=small HTTP/1.1" 200 31249 "http://localhost/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/102.0.0.0 Safari/537.36" "-"
sorasvl-mongo | 2022-06-15T11:34:07.221+0000	88 document(s) imported successfully. 0 document(s) failed to import.
sorasvl-mongo | {"t":{"$date":"2022-06-15T11:34:07.221+00:00"},"s":"I",  "c":"-",        "id":20883,   "ctx":"conn15","msg":"Interrupted operation as its client disconnected","attr":{"opId":59}}
sorasvl-mongo | {"t":{"$date":"2022-06-15T11:34:07.221+00:00"},"s":"I",  "c":"NETWORK",  "id":22944,   "ctx":"conn16","msg":"Connection ended","attr":{"remote":"127.0.0.1:50188","uuid":"043ce726-0041-4a65-8286-8aba51ed2d1b","connectionId":16,"connectionCount":2}}
sorasvl-mongo | {"t":{"$date":"2022-06-15T11:34:07.221+00:00"},"s":"I",  "c":"NETWORK",  "id":22944,   "ctx":"conn14","msg":"Connection ended","attr":{"remote":"127.0.0.1:50184","uuid":"9a5bb833-a159-42c6-ad58-3d6a107f9610","connectionId":14,"connectionCount":1}}
sorasvl-router | 172.18.0.1 - - [15/Jun/2022:11:34:20 +0000] "GET /api/v1/assets/download/preview/33086dd4-d08e-461e-a36b-2051daf2a677?type=small HTTP/1.1" 200 22244 "http://localhost/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/102.0.0.0 Safari/537.36" "-"
sorasvl-router | 172.18.0.1 - - [15/Jun/2022:11:34:20 +0000] "GET /api/v1/assets/download/preview/37248373-0d31-4ed2-8157-bf278114985b?type=small HTTP/1.1" 200 23926 "http://localhost/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/102.0.0.0 Safari/537.36" "-"
sorasvl-mongo | {"t":{"$date":"2022-06-15T11:34:07.221+00:00"},"s":"I",  "c":"NETWORK",  "id":22944,   "ctx":"conn15","msg":"Connection ended","attr":{"remote":"127.0.0.1:50186","uuid":"934edc02-c308-4ce4-991d-38c208c9c22d","connectionId":15,"connectionCount":0}}
sorasvl-router | 172.18.0.1 - - [15/Jun/2022:11:34:20 +0000] "GET /api/v1/assets/download/preview/735159e4-5d8f-40eb-bec3-18e92a13aad2?type=small HTTP/1.1" 200 27070 "http://localhost/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/102.0.0.0 Safari/537.36" "-"
sorasvl-mongo | 
sorasvl-router | 172.18.0.1 - - [15/Jun/2022:11:34:20 +0000] "GET /api/v1/assets/download/preview/3588a4fb-5ec8-4934-9e85-c160fa2c1b8c?type=small HTTP/1.1" 200 27168 "http://localhost/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/102.0.0.0 Safari/537.36" "-"
sorasvl-mongo | /usr/local/bin/docker-entrypoint.sh: ignoring /docker-entrypoint-initdb.d/maps.json
sorasvl-router | 172.18.0.1 - - [15/Jun/2022:11:34:20 +0000] "GET /api/v1/assets/download/preview/1cb42bee-c67d-4ca6-86ea-e3913a8dd4cf?type=small HTTP/1.1" 200 25254 "http://localhost/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/102.0.0.0 Safari/537.36" "-"
sorasvl-router | 172.18.0.1 - - [15/Jun/2022:11:34:20 +0000] "GET /api/v1/assets/download/preview/49714179-ca29-49f4-a994-e6fc3dc9913a?type=small HTTP/1.1" 200 65060 "http://localhost/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/102.0.0.0 Safari/537.36" "-"
sorasvl-mongo | 
sorasvl-router | 172.18.0.1 - - [15/Jun/2022:11:34:20 +0000] "GET /api/v1/assets/download/preview/ebe4611c-4c41-406d-956b-755855352bac?type=small HTTP/1.1" 200 29468 "http://localhost/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/102.0.0.0 Safari/537.36" "-"
sorasvl-mongo | /usr/local/bin/docker-entrypoint.sh: ignoring /docker-entrypoint-initdb.d/plugins.json
sorasvl-mongo | 
sorasvl-mongo | /usr/local/bin/docker-entrypoint.sh: ignoring /docker-entrypoint-initdb.d/vehicles.json
sorasvl-mongo | 
sorasvl-router | 172.18.0.1 - - [15/Jun/2022:11:34:20 +0000] "GET /api/v1/assets/download/preview/37d02526-ae12-4acf-9073-ea9715cd745e?type=small HTTP/1.1" 200 65030 "http://localhost/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/102.0.0.0 Safari/537.36" "-"
sorasvl-mongo | 
sorasvl-router | 172.18.0.1 - - [15/Jun/2022:11:34:20 +0000] "GET /api/v1/assets/download/preview/a67a300f-66e4-485b-b921-b0a238419c8e?type=small HTTP/1.1" 200 23900 "http://localhost/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/102.0.0.0 Safari/537.36" "-"
sorasvl-mongo | {"t":{"$date":"2022-06-15T11:34:07.242+00:00"},"s":"I",  "c":"CONTROL",  "id":20698,   "ctx":"-","msg":"***** SERVER RESTARTED *****"}
sorasvl-router | 172.18.0.1 - - [15/Jun/2022:11:34:20 +0000] "GET /api/v1/assets/download/preview/9540609b-7269-46ad-8177-47b8427237d1?type=small HTTP/1.1" 200 34916 "http://localhost/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/102.0.0.0 Safari/537.36" "-"
sorasvl-mongo | {"t":{"$date":"2022-06-15T11:34:07.244+00:00"},"s":"I",  "c":"NETWORK",  "id":4915701, "ctx":"-","msg":"Initialized wire specification","attr":{"spec":{"incomingExternalClient":{"minWireVersion":0,"maxWireVersion":13},"incomingInternalClient":{"minWireVersion":0,"maxWireVersion":13},"outgoing":{"minWireVersion":0,"maxWireVersion":13},"isInternalClient":true}}}
sorasvl-router | 172.18.0.1 - - [15/Jun/2022:11:34:22 +0000] "GET /api/v1/assets/download/bundle/4552b7ac-4fba-4420-88b8-ae14289bf5ac HTTP/1.1" 404 9 "-" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/102.0.0.0 Safari/537.36" "-"
sorasvl-router | 172.18.0.1 - - [15/Jun/2022:11:34:22 +0000] "GET /favicon.ico HTTP/1.1" 304 0 "http://localhost/api/v1/assets/download/bundle/4552b7ac-4fba-4420-88b8-ae14289bf5ac" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/102.0.0.0 Safari/537.36" "-"
sorasvl-mongo | {"t":{"$date":"2022-06-15T11:34:07.244+00:00"},"s":"I",  "c":"CONTROL",  "id":23285,   "ctx":"main","msg":"Automatically disabling TLS 1.0, to force-enable TLS 1.0 specify --sslDisabledProtocols 'none'"}
sorasvl-mongo | {"t":{"$date":"2022-06-15T11:34:07.247+00:00"},"s":"W",  "c":"ASIO",     "id":22601,   "ctx":"main","msg":"No TransportLayer configured during NetworkInterface startup"}
sorasvl-mongo | {"t":{"$date":"2022-06-15T11:34:07.247+00:00"},"s":"I",  "c":"NETWORK",  "id":4648601, "ctx":"main","msg":"Implicit TCP FastOpen unavailable. If TCP FastOpen is required, set tcpFastOpenServer, tcpFastOpenClient, and tcpFastOpenQueueSize."}
sorasvl-mongo | {"t":{"$date":"2022-06-15T11:34:07.249+00:00"},"s":"W",  "c":"ASIO",     "id":22601,   "ctx":"main","msg":"No TransportLayer configured during NetworkInterface startup"}
sorasvl-mongo | {"t":{"$date":"2022-06-15T11:34:07.249+00:00"},"s":"I",  "c":"REPL",     "id":5123008, "ctx":"main","msg":"Successfully registered PrimaryOnlyService","attr":{"service":"TenantMigrationDonorService","ns":"config.tenantMigrationDonors"}}
sorasvl-mongo | {"t":{"$date":"2022-06-15T11:34:07.249+00:00"},"s":"I",  "c":"REPL",     "id":5123008, "ctx":"main","msg":"Successfully registered PrimaryOnlyService","attr":{"service":"TenantMigrationRecipientService","ns":"config.tenantMigrationRecipients"}}
sorasvl-mongo | killing process with pid: 29
sorasvl-mongo | {"t":{"$date":"2022-06-15T11:34:07.249+00:00"},"s":"I",  "c":"CONTROL",  "id":23377,   "ctx":"SignalHandler","msg":"Received signal","attr":{"signal":15,"error":"Terminated"}}
sorasvl-mongo | {"t":{"$date":"2022-06-15T11:34:07.249+00:00"},"s":"I",  "c":"CONTROL",  "id":23378,   "ctx":"SignalHandler","msg":"Signal was sent by kill(2)","attr":{"pid":136,"uid":999}}
sorasvl-mongo | {"t":{"$date":"2022-06-15T11:34:07.249+00:00"},"s":"I",  "c":"CONTROL",  "id":23381,   "ctx":"SignalHandler","msg":"will terminate after current cmd ends"}
sorasvl-mongo | {"t":{"$date":"2022-06-15T11:34:07.249+00:00"},"s":"I",  "c":"REPL",     "id":4784900, "ctx":"SignalHandler","msg":"Stepping down the ReplicationCoordinator for shutdown","attr":{"waitTimeMillis":15000}}
sorasvl-mongo | {"t":{"$date":"2022-06-15T11:34:07.249+00:00"},"s":"I",  "c":"REPL",     "id":4794602, "ctx":"SignalHandler","msg":"Attempting to enter quiesce mode"}
sorasvl-mongo | {"t":{"$date":"2022-06-15T11:34:07.249+00:00"},"s":"I",  "c":"COMMAND",  "id":4784901, "ctx":"SignalHandler","msg":"Shutting down the MirrorMaestro"}
sorasvl-mongo | {"t":{"$date":"2022-06-15T11:34:07.249+00:00"},"s":"I",  "c":"SHARDING", "id":4784902, "ctx":"SignalHandler","msg":"Shutting down the WaitForMajorityService"}
sorasvl-mongo | {"t":{"$date":"2022-06-15T11:34:07.249+00:00"},"s":"I",  "c":"CONTROL",  "id":4784903, "ctx":"SignalHandler","msg":"Shutting down the LogicalSessionCache"}
sorasvl-mongo | {"t":{"$date":"2022-06-15T11:34:07.250+00:00"},"s":"I",  "c":"NETWORK",  "id":20562,   "ctx":"SignalHandler","msg":"Shutdown: going to close listening sockets"}
sorasvl-mongo | {"t":{"$date":"2022-06-15T11:34:07.250+00:00"},"s":"I",  "c":"NETWORK",  "id":23017,   "ctx":"listener","msg":"removing socket file","attr":{"path":"/tmp/mongodb-27017.sock"}}
sorasvl-mongo | {"t":{"$date":"2022-06-15T11:34:07.250+00:00"},"s":"I",  "c":"NETWORK",  "id":4784905, "ctx":"SignalHandler","msg":"Shutting down the global connection pool"}
sorasvl-mongo | {"t":{"$date":"2022-06-15T11:34:07.250+00:00"},"s":"I",  "c":"CONTROL",  "id":4784906, "ctx":"SignalHandler","msg":"Shutting down the FlowControlTicketholder"}
sorasvl-mongo | {"t":{"$date":"2022-06-15T11:34:07.250+00:00"},"s":"I",  "c":"-",        "id":20520,   "ctx":"SignalHandler","msg":"Stopping further Flow Control ticket acquisitions."}
sorasvl-mongo | {"t":{"$date":"2022-06-15T11:34:07.250+00:00"},"s":"I",  "c":"CONTROL",  "id":4784908, "ctx":"SignalHandler","msg":"Shutting down the PeriodicThreadToAbortExpiredTransactions"}
sorasvl-mongo | {"t":{"$date":"2022-06-15T11:34:07.250+00:00"},"s":"I",  "c":"REPL",     "id":4784909, "ctx":"SignalHandler","msg":"Shutting down the ReplicationCoordinator"}
sorasvl-mongo | {"t":{"$date":"2022-06-15T11:34:07.250+00:00"},"s":"I",  "c":"SHARDING", "id":4784910, "ctx":"SignalHandler","msg":"Shutting down the ShardingInitializationMongoD"}
sorasvl-mongo | {"t":{"$date":"2022-06-15T11:34:07.250+00:00"},"s":"I",  "c":"REPL",     "id":4784911, "ctx":"SignalHandler","msg":"Enqueuing the ReplicationStateTransitionLock for shutdown"}
sorasvl-mongo | {"t":{"$date":"2022-06-15T11:34:07.250+00:00"},"s":"I",  "c":"-",        "id":4784912, "ctx":"SignalHandler","msg":"Killing all operations for shutdown"}
sorasvl-mongo | {"t":{"$date":"2022-06-15T11:34:07.250+00:00"},"s":"I",  "c":"-",        "id":4695300, "ctx":"SignalHandler","msg":"Interrupted all currently running operations","attr":{"opsKilled":3}}
sorasvl-mongo | {"t":{"$date":"2022-06-15T11:34:07.250+00:00"},"s":"I",  "c":"TENANT_M", "id":5093807, "ctx":"SignalHandler","msg":"Shutting down all TenantMigrationAccessBlockers on global shutdown"}
sorasvl-mongo | {"t":{"$date":"2022-06-15T11:34:07.250+00:00"},"s":"I",  "c":"COMMAND",  "id":4784913, "ctx":"SignalHandler","msg":"Shutting down all open transactions"}
sorasvl-mongo | {"t":{"$date":"2022-06-15T11:34:07.250+00:00"},"s":"I",  "c":"REPL",     "id":4784914, "ctx":"SignalHandler","msg":"Acquiring the ReplicationStateTransitionLock for shutdown"}
sorasvl-mongo | {"t":{"$date":"2022-06-15T11:34:07.250+00:00"},"s":"I",  "c":"INDEX",    "id":4784915, "ctx":"SignalHandler","msg":"Shutting down the IndexBuildsCoordinator"}
sorasvl-mongo | {"t":{"$date":"2022-06-15T11:34:07.250+00:00"},"s":"I",  "c":"REPL",     "id":4784916, "ctx":"SignalHandler","msg":"Reacquiring the ReplicationStateTransitionLock for shutdown"}
sorasvl-mongo | {"t":{"$date":"2022-06-15T11:34:07.250+00:00"},"s":"I",  "c":"REPL",     "id":4784917, "ctx":"SignalHandler","msg":"Attempting to mark clean shutdown"}
sorasvl-mongo | {"t":{"$date":"2022-06-15T11:34:07.250+00:00"},"s":"I",  "c":"NETWORK",  "id":4784918, "ctx":"SignalHandler","msg":"Shutting down the ReplicaSetMonitor"}
sorasvl-mongo | {"t":{"$date":"2022-06-15T11:34:07.250+00:00"},"s":"I",  "c":"SHARDING", "id":4784921, "ctx":"SignalHandler","msg":"Shutting down the MigrationUtilExecutor"}
sorasvl-mongo | {"t":{"$date":"2022-06-15T11:34:07.250+00:00"},"s":"I",  "c":"ASIO",     "id":22582,   "ctx":"MigrationUtil-TaskExecutor","msg":"Killing all outstanding egress activity."}
sorasvl-mongo | {"t":{"$date":"2022-06-15T11:34:07.250+00:00"},"s":"I",  "c":"COMMAND",  "id":4784923, "ctx":"SignalHandler","msg":"Shutting down the ServiceEntryPoint"}
sorasvl-mongo | {"t":{"$date":"2022-06-15T11:34:07.250+00:00"},"s":"I",  "c":"CONTROL",  "id":4784925, "ctx":"SignalHandler","msg":"Shutting down free monitoring"}
sorasvl-mongo | {"t":{"$date":"2022-06-15T11:34:07.250+00:00"},"s":"I",  "c":"CONTROL",  "id":20609,   "ctx":"SignalHandler","msg":"Shutting down free monitoring"}
sorasvl-mongo | {"t":{"$date":"2022-06-15T11:34:07.251+00:00"},"s":"I",  "c":"CONTROL",  "id":4784927, "ctx":"SignalHandler","msg":"Shutting down the HealthLog"}
sorasvl-mongo | {"t":{"$date":"2022-06-15T11:34:07.251+00:00"},"s":"I",  "c":"CONTROL",  "id":4784928, "ctx":"SignalHandler","msg":"Shutting down the TTL monitor"}
sorasvl-mongo | {"t":{"$date":"2022-06-15T11:34:07.251+00:00"},"s":"I",  "c":"INDEX",    "id":3684100, "ctx":"SignalHandler","msg":"Shutting down TTL collection monitor thread"}
sorasvl-mongo | {"t":{"$date":"2022-06-15T11:34:07.251+00:00"},"s":"I",  "c":"INDEX",    "id":3684101, "ctx":"SignalHandler","msg":"Finished shutting down TTL collection monitor thread"}
sorasvl-mongo | {"t":{"$date":"2022-06-15T11:34:07.251+00:00"},"s":"I",  "c":"CONTROL",  "id":4784929, "ctx":"SignalHandler","msg":"Acquiring the global lock for shutdown"}
sorasvl-mongo | {"t":{"$date":"2022-06-15T11:34:07.251+00:00"},"s":"I",  "c":"CONTROL",  "id":4784930, "ctx":"SignalHandler","msg":"Shutting down the storage engine"}
sorasvl-mongo | {"t":{"$date":"2022-06-15T11:34:07.251+00:00"},"s":"I",  "c":"STORAGE",  "id":22320,   "ctx":"SignalHandler","msg":"Shutting down journal flusher thread"}
sorasvl-mongo | {"t":{"$date":"2022-06-15T11:34:07.251+00:00"},"s":"I",  "c":"STORAGE",  "id":22321,   "ctx":"SignalHandler","msg":"Finished shutting down journal flusher thread"}
sorasvl-mongo | {"t":{"$date":"2022-06-15T11:34:07.251+00:00"},"s":"I",  "c":"STORAGE",  "id":22322,   "ctx":"SignalHandler","msg":"Shutting down checkpoint thread"}
sorasvl-mongo | {"t":{"$date":"2022-06-15T11:34:07.251+00:00"},"s":"I",  "c":"STORAGE",  "id":22323,   "ctx":"SignalHandler","msg":"Finished shutting down checkpoint thread"}
sorasvl-mongo | {"t":{"$date":"2022-06-15T11:34:07.251+00:00"},"s":"I",  "c":"STORAGE",  "id":20282,   "ctx":"SignalHandler","msg":"Deregistering all the collections"}
sorasvl-mongo | {"t":{"$date":"2022-06-15T11:34:07.251+00:00"},"s":"I",  "c":"STORAGE",  "id":22261,   "ctx":"SignalHandler","msg":"Timestamp monitor shutting down"}
sorasvl-mongo | {"t":{"$date":"2022-06-15T11:34:07.251+00:00"},"s":"I",  "c":"STORAGE",  "id":22317,   "ctx":"SignalHandler","msg":"WiredTigerKVEngine shutting down"}
sorasvl-mongo | {"t":{"$date":"2022-06-15T11:34:07.251+00:00"},"s":"I",  "c":"STORAGE",  "id":22318,   "ctx":"SignalHandler","msg":"Shutting down session sweeper thread"}
sorasvl-mongo | {"t":{"$date":"2022-06-15T11:34:07.251+00:00"},"s":"I",  "c":"STORAGE",  "id":22319,   "ctx":"SignalHandler","msg":"Finished shutting down session sweeper thread"}
sorasvl-mongo | {"t":{"$date":"2022-06-15T11:34:07.252+00:00"},"s":"I",  "c":"STORAGE",  "id":4795902, "ctx":"SignalHandler","msg":"Closing WiredTiger","attr":{"closeConfig":"leak_memory=true,"}}
sorasvl-mongo | {"t":{"$date":"2022-06-15T11:34:07.288+00:00"},"s":"I",  "c":"STORAGE",  "id":22430,   "ctx":"SignalHandler","msg":"WiredTiger message","attr":{"message":"[1655292847:288541][29:0x7f0953e13700], close_ckpt: [WT_VERB_CHECKPOINT_PROGRESS] saving checkpoint snapshot min: 101, snapshot max: 101 snapshot count: 0, oldest timestamp: (0, 0) , meta checkpoint timestamp: (0, 0) base write gen: 1"}}
sorasvl-mongo | {"t":{"$date":"2022-06-15T11:34:07.332+00:00"},"s":"I",  "c":"STORAGE",  "id":4795901, "ctx":"SignalHandler","msg":"WiredTiger closed","attr":{"durationMillis":80}}
sorasvl-mongo | {"t":{"$date":"2022-06-15T11:34:07.333+00:00"},"s":"I",  "c":"STORAGE",  "id":22279,   "ctx":"SignalHandler","msg":"shutdown: removing fs lock..."}
sorasvl-mongo | {"t":{"$date":"2022-06-15T11:34:07.333+00:00"},"s":"I",  "c":"-",        "id":4784931, "ctx":"SignalHandler","msg":"Dropping the scope cache for shutdown"}
sorasvl-mongo | {"t":{"$date":"2022-06-15T11:34:07.333+00:00"},"s":"I",  "c":"FTDC",     "id":4784926, "ctx":"SignalHandler","msg":"Shutting down full-time data capture"}
sorasvl-mongo | {"t":{"$date":"2022-06-15T11:34:07.333+00:00"},"s":"I",  "c":"FTDC",     "id":20626,   "ctx":"SignalHandler","msg":"Shutting down full-time diagnostic data capture"}
sorasvl-mongo | {"t":{"$date":"2022-06-15T11:34:07.341+00:00"},"s":"I",  "c":"CONTROL",  "id":20565,   "ctx":"SignalHandler","msg":"Now exiting"}
sorasvl-mongo | {"t":{"$date":"2022-06-15T11:34:07.342+00:00"},"s":"I",  "c":"CONTROL",  "id":23138,   "ctx":"SignalHandler","msg":"Shutting down","attr":{"exitCode":0}}
sorasvl-mongo | 
sorasvl-mongo | MongoDB init process complete; ready for start up.
sorasvl-mongo | 
sorasvl-mongo | {"t":{"$date":"2022-06-15T11:34:08.321+00:00"},"s":"I",  "c":"CONTROL",  "id":23285,   "ctx":"-","msg":"Automatically disabling TLS 1.0, to force-enable TLS 1.0 specify --sslDisabledProtocols 'none'"}
sorasvl-mongo | {"t":{"$date":"2022-06-15T11:34:08.321+00:00"},"s":"I",  "c":"NETWORK",  "id":4915701, "ctx":"main","msg":"Initialized wire specification","attr":{"spec":{"incomingExternalClient":{"minWireVersion":0,"maxWireVersion":13},"incomingInternalClient":{"minWireVersion":0,"maxWireVersion":13},"outgoing":{"minWireVersion":0,"maxWireVersion":13},"isInternalClient":true}}}
sorasvl-mongo | {"t":{"$date":"2022-06-15T11:34:08.321+00:00"},"s":"W",  "c":"ASIO",     "id":22601,   "ctx":"main","msg":"No TransportLayer configured during NetworkInterface startup"}
sorasvl-mongo | {"t":{"$date":"2022-06-15T11:34:08.321+00:00"},"s":"I",  "c":"NETWORK",  "id":4648601, "ctx":"main","msg":"Implicit TCP FastOpen unavailable. If TCP FastOpen is required, set tcpFastOpenServer, tcpFastOpenClient, and tcpFastOpenQueueSize."}
sorasvl-mongo | {"t":{"$date":"2022-06-15T11:34:08.323+00:00"},"s":"W",  "c":"ASIO",     "id":22601,   "ctx":"main","msg":"No TransportLayer configured during NetworkInterface startup"}
sorasvl-mongo | {"t":{"$date":"2022-06-15T11:34:08.323+00:00"},"s":"I",  "c":"REPL",     "id":5123008, "ctx":"main","msg":"Successfully registered PrimaryOnlyService","attr":{"service":"TenantMigrationDonorService","ns":"config.tenantMigrationDonors"}}
sorasvl-mongo | {"t":{"$date":"2022-06-15T11:34:08.323+00:00"},"s":"I",  "c":"REPL",     "id":5123008, "ctx":"main","msg":"Successfully registered PrimaryOnlyService","attr":{"service":"TenantMigrationRecipientService","ns":"config.tenantMigrationRecipients"}}
sorasvl-mongo | {"t":{"$date":"2022-06-15T11:34:08.323+00:00"},"s":"I",  "c":"CONTROL",  "id":5945603, "ctx":"main","msg":"Multi threading initialized"}
sorasvl-mongo | {"t":{"$date":"2022-06-15T11:34:08.323+00:00"},"s":"I",  "c":"CONTROL",  "id":4615611, "ctx":"initandlisten","msg":"MongoDB starting","attr":{"pid":1,"port":27017,"dbPath":"/data/db","architecture":"64-bit","host":"18ecd1a73c86"}}
sorasvl-mongo | {"t":{"$date":"2022-06-15T11:34:08.323+00:00"},"s":"I",  "c":"CONTROL",  "id":23403,   "ctx":"initandlisten","msg":"Build Info","attr":{"buildInfo":{"version":"5.0.9","gitVersion":"6f7dae919422dcd7f4892c10ff20cdc721ad00e6","openSSLVersion":"OpenSSL 1.1.1f  31 Mar 2020","modules":[],"allocator":"tcmalloc","environment":{"distmod":"ubuntu2004","distarch":"x86_64","target_arch":"x86_64"}}}}
sorasvl-mongo | {"t":{"$date":"2022-06-15T11:34:08.323+00:00"},"s":"I",  "c":"CONTROL",  "id":51765,   "ctx":"initandlisten","msg":"Operating System","attr":{"os":{"name":"Ubuntu","version":"20.04"}}}
sorasvl-mongo | {"t":{"$date":"2022-06-15T11:34:08.323+00:00"},"s":"I",  "c":"CONTROL",  "id":21951,   "ctx":"initandlisten","msg":"Options set by command line","attr":{"options":{"net":{"bindIp":"*"}}}}
sorasvl-mongo | {"t":{"$date":"2022-06-15T11:34:08.324+00:00"},"s":"I",  "c":"STORAGE",  "id":22270,   "ctx":"initandlisten","msg":"Storage engine to use detected by data files","attr":{"dbpath":"/data/db","storageEngine":"wiredTiger"}}
sorasvl-mongo | {"t":{"$date":"2022-06-15T11:34:08.324+00:00"},"s":"I",  "c":"STORAGE",  "id":22297,   "ctx":"initandlisten","msg":"Using the XFS filesystem is strongly recommended with the WiredTiger storage engine. See http://dochub.mongodb.org/core/prodnotes-filesystem","tags":["startupWarnings"]}
sorasvl-mongo | {"t":{"$date":"2022-06-15T11:34:08.324+00:00"},"s":"I",  "c":"STORAGE",  "id":22315,   "ctx":"initandlisten","msg":"Opening WiredTiger","attr":{"config":"create,cache_size=7471M,session_max=33000,eviction=(threads_min=4,threads_max=4),config_base=false,statistics=(fast),log=(enabled=true,archive=true,path=journal,compressor=snappy),builtin_extension_config=(zstd=(compression_level=6)),file_manager=(close_idle_time=600,close_scan_interval=10,close_handle_minimum=250),statistics_log=(wait=0),verbose=[recovery_progress,checkpoint_progress,compact_progress],"}}
sorasvl-mongo | {"t":{"$date":"2022-06-15T11:34:08.786+00:00"},"s":"I",  "c":"STORAGE",  "id":22430,   "ctx":"initandlisten","msg":"WiredTiger message","attr":{"message":"[1655292848:786521][1:0x7f4597834c80], txn-recover: [WT_VERB_RECOVERY_PROGRESS] Recovering log 1 through 2"}}
sorasvl-mongo | {"t":{"$date":"2022-06-15T11:34:08.828+00:00"},"s":"I",  "c":"STORAGE",  "id":22430,   "ctx":"initandlisten","msg":"WiredTiger message","attr":{"message":"[1655292848:828427][1:0x7f4597834c80], txn-recover: [WT_VERB_RECOVERY_PROGRESS] Recovering log 2 through 2"}}
sorasvl-mongo | {"t":{"$date":"2022-06-15T11:34:08.871+00:00"},"s":"I",  "c":"STORAGE",  "id":22430,   "ctx":"initandlisten","msg":"WiredTiger message","attr":{"message":"[1655292848:871026][1:0x7f4597834c80], txn-recover: [WT_VERB_RECOVERY_ALL] Main recovery loop: starting at 1/1836416 to 2/256"}}
sorasvl-mongo | {"t":{"$date":"2022-06-15T11:34:08.919+00:00"},"s":"I",  "c":"STORAGE",  "id":22430,   "ctx":"initandlisten","msg":"WiredTiger message","attr":{"message":"[1655292848:919830][1:0x7f4597834c80], txn-recover: [WT_VERB_RECOVERY_PROGRESS] Recovering log 1 through 2"}}
sorasvl-mongo | {"t":{"$date":"2022-06-15T11:34:08.953+00:00"},"s":"I",  "c":"STORAGE",  "id":22430,   "ctx":"initandlisten","msg":"WiredTiger message","attr":{"message":"[1655292848:953027][1:0x7f4597834c80], txn-recover: [WT_VERB_RECOVERY_PROGRESS] Recovering log 2 through 2"}}
sorasvl-mongo | {"t":{"$date":"2022-06-15T11:34:08.977+00:00"},"s":"I",  "c":"STORAGE",  "id":22430,   "ctx":"initandlisten","msg":"WiredTiger message","attr":{"message":"[1655292848:977417][1:0x7f4597834c80], txn-recover: [WT_VERB_RECOVERY_ALL] Set global recovery timestamp: (0, 0)"}}
sorasvl-mongo | {"t":{"$date":"2022-06-15T11:34:08.977+00:00"},"s":"I",  "c":"STORAGE",  "id":22430,   "ctx":"initandlisten","msg":"WiredTiger message","attr":{"message":"[1655292848:977446][1:0x7f4597834c80], txn-recover: [WT_VERB_RECOVERY_ALL] Set global oldest timestamp: (0, 0)"}}
sorasvl-mongo | {"t":{"$date":"2022-06-15T11:34:08.979+00:00"},"s":"I",  "c":"STORAGE",  "id":22430,   "ctx":"initandlisten","msg":"WiredTiger message","attr":{"message":"[1655292848:979639][1:0x7f4597834c80], WT_SESSION.checkpoint: [WT_VERB_CHECKPOINT_PROGRESS] saving checkpoint snapshot min: 1, snapshot max: 1 snapshot count: 0, oldest timestamp: (0, 0) , meta checkpoint timestamp: (0, 0) base write gen: 77"}}
sorasvl-mongo | {"t":{"$date":"2022-06-15T11:34:08.985+00:00"},"s":"I",  "c":"STORAGE",  "id":4795906, "ctx":"initandlisten","msg":"WiredTiger opened","attr":{"durationMillis":661}}
sorasvl-mongo | {"t":{"$date":"2022-06-15T11:34:08.985+00:00"},"s":"I",  "c":"RECOVERY", "id":23987,   "ctx":"initandlisten","msg":"WiredTiger recoveryTimestamp","attr":{"recoveryTimestamp":{"$timestamp":{"t":0,"i":0}}}}
sorasvl-mongo | {"t":{"$date":"2022-06-15T11:34:08.986+00:00"},"s":"I",  "c":"STORAGE",  "id":4366408, "ctx":"initandlisten","msg":"No table logging settings modifications are required for existing WiredTiger tables","attr":{"loggingEnabled":true}}
sorasvl-mongo | {"t":{"$date":"2022-06-15T11:34:08.987+00:00"},"s":"I",  "c":"STORAGE",  "id":22262,   "ctx":"initandlisten","msg":"Timestamp monitor starting"}
sorasvl-mongo | {"t":{"$date":"2022-06-15T11:34:08.991+00:00"},"s":"W",  "c":"CONTROL",  "id":22120,   "ctx":"initandlisten","msg":"Access control is not enabled for the database. Read and write access to data and configuration is unrestricted","tags":["startupWarnings"]}
sorasvl-mongo | {"t":{"$date":"2022-06-15T11:34:08.992+00:00"},"s":"I",  "c":"NETWORK",  "id":4915702, "ctx":"initandlisten","msg":"Updated wire specification","attr":{"oldSpec":{"incomingExternalClient":{"minWireVersion":0,"maxWireVersion":13},"incomingInternalClient":{"minWireVersion":0,"maxWireVersion":13},"outgoing":{"minWireVersion":0,"maxWireVersion":13},"isInternalClient":true},"newSpec":{"incomingExternalClient":{"minWireVersion":0,"maxWireVersion":13},"incomingInternalClient":{"minWireVersion":13,"maxWireVersion":13},"outgoing":{"minWireVersion":13,"maxWireVersion":13},"isInternalClient":true}}}
sorasvl-mongo | {"t":{"$date":"2022-06-15T11:34:08.993+00:00"},"s":"I",  "c":"STORAGE",  "id":5071100, "ctx":"initandlisten","msg":"Clearing temp directory"}
sorasvl-mongo | {"t":{"$date":"2022-06-15T11:34:08.993+00:00"},"s":"I",  "c":"CONTROL",  "id":20536,   "ctx":"initandlisten","msg":"Flow Control is enabled on this deployment"}
sorasvl-mongo | {"t":{"$date":"2022-06-15T11:34:08.994+00:00"},"s":"I",  "c":"FTDC",     "id":20625,   "ctx":"initandlisten","msg":"Initializing full-time diagnostic data capture","attr":{"dataDirectory":"/data/db/diagnostic.data"}}
sorasvl-mongo | {"t":{"$date":"2022-06-15T11:34:08.996+00:00"},"s":"I",  "c":"REPL",     "id":6015317, "ctx":"initandlisten","msg":"Setting new configuration state","attr":{"newState":"ConfigReplicationDisabled","oldState":"ConfigPreStart"}}
sorasvl-mongo | {"t":{"$date":"2022-06-15T11:34:08.996+00:00"},"s":"I",  "c":"NETWORK",  "id":23015,   "ctx":"listener","msg":"Listening on","attr":{"address":"/tmp/mongodb-27017.sock"}}
sorasvl-mongo | {"t":{"$date":"2022-06-15T11:34:08.997+00:00"},"s":"I",  "c":"NETWORK",  "id":23015,   "ctx":"listener","msg":"Listening on","attr":{"address":"0.0.0.0"}}
sorasvl-mongo | {"t":{"$date":"2022-06-15T11:34:08.997+00:00"},"s":"I",  "c":"NETWORK",  "id":23016,   "ctx":"listener","msg":"Waiting for connections","attr":{"port":27017,"ssl":"off"}}
sorasvl-mongo | {"t":{"$date":"2022-06-15T11:34:09.443+00:00"},"s":"I",  "c":"NETWORK",  "id":22943,   "ctx":"listener","msg":"Connection accepted","attr":{"remote":"172.18.0.4:56708","uuid":"cc4b816e-8663-4614-84de-6d0235229f9e","connectionId":1,"connectionCount":1}}
sorasvl-mongo | {"t":{"$date":"2022-06-15T11:34:09.463+00:00"},"s":"I",  "c":"NETWORK",  "id":51800,   "ctx":"conn1","msg":"client metadata","attr":{"remote":"172.18.0.4:56708","client":"conn1","doc":{"driver":{"name":"nodejs","version":"4.7.0"},"os":{"type":"Linux","name":"linux","architecture":"x64","version":"5.4.0-117-generic"},"platform":"Node.js v18.3.0, LE (unified)|Node.js v18.3.0, LE (unified)"}}}
sorasvl-mongo | {"t":{"$date":"2022-06-15T11:34:19.978+00:00"},"s":"I",  "c":"NETWORK",  "id":22943,   "ctx":"listener","msg":"Connection accepted","attr":{"remote":"172.18.0.4:56738","uuid":"c73b833d-715f-4b1e-8cb4-845b861e9918","connectionId":2,"connectionCount":2}}
sorasvl-mongo | {"t":{"$date":"2022-06-15T11:34:19.978+00:00"},"s":"I",  "c":"NETWORK",  "id":51800,   "ctx":"conn2","msg":"client metadata","attr":{"remote":"172.18.0.4:56738","client":"conn2","doc":{"driver":{"name":"nodejs","version":"4.7.0"},"os":{"type":"Linux","name":"linux","architecture":"x64","version":"5.4.0-117-generic"},"platform":"Node.js v18.3.0, LE (unified)|Node.js v18.3.0, LE (unified)"}}}
sorasvl-mongo | {"t":{"$date":"2022-06-15T11:34:19.997+00:00"},"s":"I",  "c":"NETWORK",  "id":22943,   "ctx":"listener","msg":"Connection accepted","attr":{"remote":"172.18.0.4:56742","uuid":"23bd0ba7-47b7-4e33-8e61-0f2cb53649e7","connectionId":3,"connectionCount":3}}
sorasvl-mongo | {"t":{"$date":"2022-06-15T11:34:19.998+00:00"},"s":"I",  "c":"NETWORK",  "id":51800,   "ctx":"conn3","msg":"client metadata","attr":{"remote":"172.18.0.4:56742","client":"conn3","doc":{"driver":{"name":"nodejs","version":"4.7.0"},"os":{"type":"Linux","name":"linux","architecture":"x64","version":"5.4.0-117-generic"},"platform":"Node.js v18.3.0, LE (unified)|Node.js v18.3.0, LE (unified)"}}}
sorasvl-mongo | {"t":{"$date":"2022-06-15T11:34:20.021+00:00"},"s":"I",  "c":"NETWORK",  "id":22943,   "ctx":"listener","msg":"Connection accepted","attr":{"remote":"172.18.0.4:56772","uuid":"80adfebd-e4a5-438f-8e25-e22e4d166edb","connectionId":4,"connectionCount":4}}
sorasvl-mongo | {"t":{"$date":"2022-06-15T11:34:20.021+00:00"},"s":"I",  "c":"NETWORK",  "id":22943,   "ctx":"listener","msg":"Connection accepted","attr":{"remote":"172.18.0.4:56774","uuid":"665fc782-e931-4f88-8740-db79bcc4205e","connectionId":5,"connectionCount":5}}
sorasvl-mongo | {"t":{"$date":"2022-06-15T11:34:20.024+00:00"},"s":"I",  "c":"NETWORK",  "id":51800,   "ctx":"conn4","msg":"client metadata","attr":{"remote":"172.18.0.4:56772","client":"conn4","doc":{"driver":{"name":"nodejs","version":"4.7.0"},"os":{"type":"Linux","name":"linux","architecture":"x64","version":"5.4.0-117-generic"},"platform":"Node.js v18.3.0, LE (unified)|Node.js v18.3.0, LE (unified)"}}}
sorasvl-mongo | {"t":{"$date":"2022-06-15T11:34:20.024+00:00"},"s":"I",  "c":"NETWORK",  "id":51800,   "ctx":"conn5","msg":"client metadata","attr":{"remote":"172.18.0.4:56774","client":"conn5","doc":{"driver":{"name":"nodejs","version":"4.7.0"},"os":{"type":"Linux","name":"linux","architecture":"x64","version":"5.4.0-117-generic"},"platform":"Node.js v18.3.0, LE (unified)|Node.js v18.3.0, LE (unified)"}}}
sorasvl-mongo | {"t":{"$date":"2022-06-15T11:34:20.047+00:00"},"s":"I",  "c":"NETWORK",  "id":22943,   "ctx":"listener","msg":"Connection accepted","attr":{"remote":"172.18.0.4:56788","uuid":"e4815fab-66f7-4160-8d23-489de73cd09b","connectionId":6,"connectionCount":6}}
sorasvl-mongo | {"t":{"$date":"2022-06-15T11:34:20.048+00:00"},"s":"I",  "c":"NETWORK",  "id":22943,   "ctx":"listener","msg":"Connection accepted","attr":{"remote":"172.18.0.4:56790","uuid":"c03ba063-fc58-46e5-ac63-fbffa1bebba5","connectionId":7,"connectionCount":7}}
sorasvl-mongo | {"t":{"$date":"2022-06-15T11:34:20.050+00:00"},"s":"I",  "c":"NETWORK",  "id":51800,   "ctx":"conn6","msg":"client metadata","attr":{"remote":"172.18.0.4:56788","client":"conn6","doc":{"driver":{"name":"nodejs","version":"4.7.0"},"os":{"type":"Linux","name":"linux","architecture":"x64","version":"5.4.0-117-generic"},"platform":"Node.js v18.3.0, LE (unified)|Node.js v18.3.0, LE (unified)"}}}
sorasvl-mongo | {"t":{"$date":"2022-06-15T11:34:20.050+00:00"},"s":"I",  "c":"NETWORK",  "id":51800,   "ctx":"conn7","msg":"client metadata","attr":{"remote":"172.18.0.4:56790","client":"conn7","doc":{"driver":{"name":"nodejs","version":"4.7.0"},"os":{"type":"Linux","name":"linux","architecture":"x64","version":"5.4.0-117-generic"},"platform":"Node.js v18.3.0, LE (unified)|Node.js v18.3.0, LE (unified)"}}}
sorasvl-mongo | {"t":{"$date":"2022-06-15T11:34:20.067+00:00"},"s":"I",  "c":"NETWORK",  "id":22943,   "ctx":"listener","msg":"Connection accepted","attr":{"remote":"172.18.0.4:56804","uuid":"157735f5-6163-4026-bf21-14237b8acab6","connectionId":8,"connectionCount":8}}
sorasvl-mongo | {"t":{"$date":"2022-06-15T11:34:20.069+00:00"},"s":"I",  "c":"NETWORK",  "id":51800,   "ctx":"conn8","msg":"client metadata","attr":{"remote":"172.18.0.4:56804","client":"conn8","doc":{"driver":{"name":"nodejs","version":"4.7.0"},"os":{"type":"Linux","name":"linux","architecture":"x64","version":"5.4.0-117-generic"},"platform":"Node.js v18.3.0, LE (unified)|Node.js v18.3.0, LE (unified)"}}}
sorasvl-mongo | {"t":{"$date":"2022-06-15T11:35:08.994+00:00"},"s":"I",  "c":"STORAGE",  "id":22430,   "ctx":"Checkpointer","msg":"WiredTiger message","attr":{"message":"[1655292908:994435][1:0x7f458f022700], WT_SESSION.checkpoint: [WT_VERB_CHECKPOINT_PROGRESS] saving checkpoint snapshot min: 3, snapshot max: 3 snapshot count: 0, oldest timestamp: (0, 0) , meta checkpoint timestamp: (0, 0) base write gen: 77"}}
sorasvl-mongo | {"t":{"$date":"2022-06-15T11:35:32.779+00:00"},"s":"I",  "c":"NETWORK",  "id":22943,   "ctx":"listener","msg":"Connection accepted","attr":{"remote":"172.18.0.4:56984","uuid":"9ced0fb0-699d-4582-b716-f96d5186383d","connectionId":9,"connectionCount":9}}
sorasvl-mongo | {"t":{"$date":"2022-06-15T11:35:32.784+00:00"},"s":"I",  "c":"NETWORK",  "id":51800,   "ctx":"conn9","msg":"client metadata","attr":{"remote":"172.18.0.4:56984","client":"conn9","doc":{"driver":{"name":"nodejs","version":"4.7.0"},"os":{"type":"Linux","name":"linux","architecture":"x64","version":"5.4.0-117-generic"},"platform":"Node.js v18.3.0, LE (unified)|Node.js v18.3.0, LE (unified)"}}}
sorasvl-mongo | {"t":{"$date":"2022-06-15T11:35:32.797+00:00"},"s":"I",  "c":"NETWORK",  "id":22944,   "ctx":"conn9","msg":"Connection ended","attr":{"remote":"172.18.0.4:56984","uuid":"9ced0fb0-699d-4582-b716-f96d5186383d","connectionId":9,"connectionCount":8}}
sorasvl-mongo | {"t":{"$date":"2022-06-15T11:36:09.005+00:00"},"s":"I",  "c":"STORAGE",  "id":22430,   "ctx":"Checkpointer","msg":"WiredTiger message","attr":{"message":"[1655292969:5312][1:0x7f458f022700], WT_SESSION.checkpoint: [WT_VERB_CHECKPOINT_PROGRESS] saving checkpoint snapshot min: 6, snapshot max: 6 snapshot count: 0, oldest timestamp: (0, 0) , meta checkpoint timestamp: (0, 0) base write gen: 77"}}
sorasvl-mongo | {"t":{"$date":"2022-06-15T11:37:09.014+00:00"},"s":"I",  "c":"STORAGE",  "id":22430,   "ctx":"Checkpointer","msg":"WiredTiger message","attr":{"message":"[1655293029:14739][1:0x7f458f022700], WT_SESSION.checkpoint: [WT_VERB_CHECKPOINT_PROGRESS] saving checkpoint snapshot min: 8, snapshot max: 8 snapshot count: 0, oldest timestamp: (0, 0) , meta checkpoint timestamp: (0, 0) base write gen: 77"}}
sorasvl-router | 172.18.0.1 - - [15/Jun/2022:11:37:35 +0000] "GET /api/v1/assets/download/bundle/4552b7ac-4fba-4420-88b8-ae14289bf5ac HTTP/1.1" 404 9 "-" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/102.0.0.0 Safari/537.36" "-"
sorasvl-router | 172.18.0.1 - - [15/Jun/2022:11:37:35 +0000] "GET /favicon.ico HTTP/1.1" 304 0 "http://localhost/api/v1/assets/download/bundle/4552b7ac-4fba-4420-88b8-ae14289bf5ac" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/102.0.0.0 Safari/537.36" "-"
sorasvl-mongo | {"t":{"$date":"2022-06-15T11:38:09.021+00:00"},"s":"I",  "c":"STORAGE",  "id":22430,   "ctx":"Checkpointer","msg":"WiredTiger message","attr":{"message":"[1655293089:21151][1:0x7f458f022700], WT_SESSION.checkpoint: [WT_VERB_CHECKPOINT_PROGRESS] saving checkpoint snapshot min: 10, snapshot max: 10 snapshot count: 0, oldest timestamp: (0, 0) , meta checkpoint timestamp: (0, 0) base write gen: 77"}}
sorasvl-router | 172.18.0.1 - - [15/Jun/2022:11:38:10 +0000] "GET /api/v1/vehicles HTTP/1.1" 304 0 "http://localhost/vehicles" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/102.0.0.0 Safari/537.36" "-"
sorasvl-router | 172.18.0.1 - - [15/Jun/2022:11:38:10 +0000] "GET /api/v1/assets/download/preview/36715078-e872-450c-8c16-64baa36fed20?type=small HTTP/1.1" 200 60274 "http://localhost/vehicles" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/102.0.0.0 Safari/537.36" "-"
sorasvl-router | 172.18.0.1 - - [15/Jun/2022:11:38:10 +0000] "GET /api/v1/assets/download/preview/af9a96a5-3a55-4acf-bff1-7ee90a25a1a0?type=small HTTP/1.1" 200 60568 "http://localhost/vehicles" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/102.0.0.0 Safari/537.36" "-"
sorasvl-router | 172.18.0.1 - - [15/Jun/2022:11:38:10 +0000] "GET /api/v1/assets/download/preview/d9e4d508-8aaa-467e-89dd-732455ee39da?type=small HTTP/1.1" 200 59610 "http://localhost/vehicles" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/102.0.0.0 Safari/537.36" "-"
sorasvl-router | 172.18.0.1 - - [15/Jun/2022:11:38:10 +0000] "GET /api/v1/assets/download/preview/665e4ee0-6bd6-4edb-a4e6-67efb318c36c?type=small HTTP/1.1" 200 60552 "http://localhost/vehicles" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/102.0.0.0 Safari/537.36" "-"
sorasvl-router | 172.18.0.1 - - [15/Jun/2022:11:38:10 +0000] "GET /api/v1/assets/download/preview/a7a860aa-f386-454c-a45e-ca3e8577fcc4?type=small HTTP/1.1" 200 59928 "http://localhost/vehicles" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/102.0.0.0 Safari/537.36" "-"
sorasvl-router | 172.18.0.1 - - [15/Jun/2022:11:38:10 +0000] "GET /api/v1/assets/download/preview/3b79d7bf-bd61-4664-b27b-5f3305796014?type=small HTTP/1.1" 200 57401 "http://localhost/vehicles" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/102.0.0.0 Safari/537.36" "-"
sorasvl-router | 172.18.0.1 - - [15/Jun/2022:11:38:10 +0000] "GET /api/v1/assets/download/preview/d3688d7d-6ed9-4775-8ac3-ab33fab9e687?type=small HTTP/1.1" 200 60118 "http://localhost/vehicles" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/102.0.0.0 Safari/537.36" "-"
sorasvl-router | 172.18.0.1 - - [15/Jun/2022:11:38:10 +0000] "GET /api/v1/assets/download/preview/56a2f356-c784-4680-9de6-d53ab5bb8e56?type=small HTTP/1.1" 200 56140 "http://localhost/vehicles" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/102.0.0.0 Safari/537.36" "-"
sorasvl-router | 172.18.0.1 - - [15/Jun/2022:11:38:10 +0000] "GET /api/v1/assets/download/preview/118f6760-2890-4359-98d9-505f3b320203?type=small HTTP/1.1" 200 56254 "http://localhost/vehicles" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/102.0.0.0 Safari/537.36" "-"
sorasvl-router | 172.18.0.1 - - [15/Jun/2022:11:38:10 +0000] "GET /api/v1/assets/download/preview/bed89141-503b-46fe-a472-f05bb4762b62?type=small HTTP/1.1" 200 55346 "http://localhost/vehicles" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/102.0.0.0 Safari/537.36" "-"
sorasvl-router | 172.18.0.1 - - [15/Jun/2022:11:38:10 +0000] "GET /api/v1/assets/download/preview/506ab839-a411-4021-a185-2924da75373c?type=small HTTP/1.1" 200 60676 "http://localhost/vehicles" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/102.0.0.0 Safari/537.36" "-"
sorasvl-router | 172.18.0.1 - - [15/Jun/2022:11:38:10 +0000] "GET /api/v1/assets/download/preview/85fa169a-e82a-4bdd-9168-3fd7c1593f20?type=small HTTP/1.1" 200 56100 "http://localhost/vehicles" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/102.0.0.0 Safari/537.36" "-"
sorasvl-router | 172.18.0.1 - - [15/Jun/2022:11:38:10 +0000] "GET /api/v1/assets/download/preview/bfedea1f-51f3-4474-a81a-4f160bf8261e?type=small HTTP/1.1" 200 51818 "http://localhost/vehicles" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/102.0.0.0 Safari/537.36" "-"
sorasvl-router | 172.18.0.1 - - [15/Jun/2022:11:38:10 +0000] "GET /api/v1/assets/download/preview/d0144400-8570-4af4-98b6-f4e45647a8ed?type=small HTTP/1.1" 200 60666 "http://localhost/vehicles" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/102.0.0.0 Safari/537.36" "-"
sorasvl-router | 172.18.0.1 - - [15/Jun/2022:11:38:10 +0000] "GET /api/v1/assets/download/preview/072b7dc4-11c5-47d4-9c3d-dc0d68814549?type=small HTTP/1.1" 200 51818 "http://localhost/vehicles" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/102.0.0.0 Safari/537.36" "-"
sorasvl-router | 172.18.0.1 - - [15/Jun/2022:11:38:10 +0000] "GET /api/v1/assets/download/preview/4119f973-69e2-4e2f-9d92-3a4a556a57dc?type=small HTTP/1.1" 200 51818 "http://localhost/vehicles" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/102.0.0.0 Safari/537.36" "-"
sorasvl-router | 172.18.0.1 - - [15/Jun/2022:11:38:10 +0000] "GET /api/v1/assets/download/preview/2d57c96d-7dd1-48d1-a75a-f09ac5e4277d?type=small HTTP/1.1" 200 51818 "http://localhost/vehicles" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/102.0.0.0 Safari/537.36" "-"
sorasvl-router | 172.18.0.1 - - [15/Jun/2022:11:38:10 +0000] "GET /api/v1/assets/download/preview/3cce4e04-c82c-4677-a7be-5745b7c6cbc7?type=small HTTP/1.1" 200 55496 "http://localhost/vehicles" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/102.0.0.0 Safari/537.36" "-"
sorasvl-router | 172.18.0.1 - - [15/Jun/2022:11:38:10 +0000] "GET /api/v1/assets/download/preview/c4a7863a-840b-4f86-a0f0-c55438cc7626?type=small HTTP/1.1" 200 58634 "http://localhost/vehicles" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/102.0.0.0 Safari/537.36" "-"
sorasvl-router | 172.18.0.1 - - [15/Jun/2022:11:38:10 +0000] "GET /api/v1/assets/download/preview/177046a3-7440-4183-b5b5-550449c0da35?type=small HTTP/1.1" 200 54792 "http://localhost/vehicles" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/102.0.0.0 Safari/537.36" "-"
sorasvl-router | 172.18.0.1 - - [15/Jun/2022:11:38:10 +0000] "GET /api/v1/assets/download/preview/74e497d2-aa6a-447b-a24a-373e43116771?type=small HTTP/1.1" 200 54818 "http://localhost/vehicles" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/102.0.0.0 Safari/537.36" "-"
sorasvl-router | 172.18.0.1 - - [15/Jun/2022:11:38:10 +0000] "GET /api/v1/assets/download/preview/86ec8266-b459-4f5d-9d5c-6813a82ca494?type=small HTTP/1.1" 200 55740 "http://localhost/vehicles" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/102.0.0.0 Safari/537.36" "-"
sorasvl-router | 172.18.0.1 - - [15/Jun/2022:11:38:10 +0000] "GET /api/v1/assets/download/preview/4a8181ce-c65d-48e4-b24d-4e07a269d8dc?type=small HTTP/1.1" 200 60840 "http://localhost/vehicles" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/102.0.0.0 Safari/537.36" "-"
sorasvl-router | 172.18.0.1 - - [15/Jun/2022:11:38:10 +0000] "GET /api/v1/assets/download/preview/8552a73c-485a-4104-8e3f-f3f9c084df59?type=small HTTP/1.1" 200 55000 "http://localhost/vehicles" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/102.0.0.0 Safari/537.36" "-"
sorasvl-router | 172.18.0.1 - - [15/Jun/2022:11:38:10 +0000] "GET /api/v1/assets/download/preview/8fdcb726-cd95-446a-87ca-a430f0085bc2?type=small HTTP/1.1" 200 57704 "http://localhost/vehicles" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/102.0.0.0 Safari/537.36" "-"
sorasvl-router | 172.18.0.1 - - [15/Jun/2022:11:38:10 +0000] "GET /api/v1/assets/download/preview/d4603cbd-5e4c-4aab-84f6-469aca07b5c0?type=small HTTP/1.1" 200 57866 "http://localhost/vehicles" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/102.0.0.0 Safari/537.36" "-"
sorasvl-router | 172.18.0.1 - - [15/Jun/2022:11:38:10 +0000] "GET /api/v1/assets/download/preview/a85dc959-b859-45f3-b683-8269e6ce3a5b?type=small HTTP/1.1" 200 59182 "http://localhost/vehicles" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/102.0.0.0 Safari/537.36" "-"
sorasvl-router | 172.18.0.1 - - [15/Jun/2022:11:38:10 +0000] "GET /api/v1/assets/download/preview/5a0eec0b-db74-4c0c-9c38-2d640330ffec?type=small HTTP/1.1" 200 59028 "http://localhost/vehicles" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/102.0.0.0 Safari/537.36" "-"
sorasvl-router | 172.18.0.1 - - [15/Jun/2022:11:38:10 +0000] "GET /api/v1/assets/download/preview/6761a228-a147-4cb0-83d5-8271ecbfc7ac?type=small HTTP/1.1" 200 60620 "http://localhost/vehicles" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/102.0.0.0 Safari/537.36" "-"
sorasvl-router | 172.18.0.1 - - [15/Jun/2022:11:38:10 +0000] "GET /api/v1/assets/download/preview/874d6c48-0824-4f38-86fd-de44e990f115?type=small HTTP/1.1" 200 47228 "http://localhost/vehicles" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/102.0.0.0 Safari/537.36" "-"
sorasvl-router | 172.18.0.1 - - [15/Jun/2022:11:38:10 +0000] "GET /api/v1/assets/download/preview/8b6d8c1b-7528-4d5e-895e-3edb2ce83be3?type=small HTTP/1.1" 200 53750 "http://localhost/vehicles" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/102.0.0.0 Safari/537.36" "-"
sorasvl-router | 172.18.0.1 - - [15/Jun/2022:11:38:12 +0000] "GET /api/v1/maps HTTP/1.1" 304 0 "http://localhost/maps" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/102.0.0.0 Safari/537.36" "-"
sorasvl-mongo | {"t":{"$date":"2022-06-15T11:39:09.029+00:00"},"s":"I",  "c":"STORAGE",  "id":22430,   "ctx":"Checkpointer","msg":"WiredTiger message","attr":{"message":"[1655293149:29492][1:0x7f458f022700], WT_SESSION.checkpoint: [WT_VERB_CHECKPOINT_PROGRESS] saving checkpoint snapshot min: 18, snapshot max: 18 snapshot count: 0, oldest timestamp: (0, 0) , meta checkpoint timestamp: (0, 0) base write gen: 77"}}
sorasvl-mongo | {"t":{"$date":"2022-06-15T11:40:09.040+00:00"},"s":"I",  "c":"STORAGE",  "id":22430,   "ctx":"Checkpointer","msg":"WiredTiger message","attr":{"message":"[1655293209:40785][1:0x7f458f022700], WT_SESSION.checkpoint: [WT_VERB_CHECKPOINT_PROGRESS] saving checkpoint snapshot min: 21, snapshot max: 21 snapshot count: 0, oldest timestamp: (0, 0) , meta checkpoint timestamp: (0, 0) base write gen: 77"}}
sorasvl-mongo | {"t":{"$date":"2022-06-15T11:41:09.048+00:00"},"s":"I",  "c":"STORAGE",  "id":22430,   "ctx":"Checkpointer","msg":"WiredTiger message","attr":{"message":"[1655293269:48489][1:0x7f458f022700], WT_SESSION.checkpoint: [WT_VERB_CHECKPOINT_PROGRESS] saving checkpoint snapshot min: 23, snapshot max: 23 snapshot count: 0, oldest timestamp: (0, 0) , meta checkpoint timestamp: (0, 0) base write gen: 77"}}
sorasvl-mongo | {"t":{"$date":"2022-06-15T11:42:09.058+00:00"},"s":"I",  "c":"STORAGE",  "id":22430,   "ctx":"Checkpointer","msg":"WiredTiger message","attr":{"message":"[1655293329:58036][1:0x7f458f022700], WT_SESSION.checkpoint: [WT_VERB_CHECKPOINT_PROGRESS] saving checkpoint snapshot min: 25, snapshot max: 25 snapshot count: 0, oldest timestamp: (0, 0) , meta checkpoint timestamp: (0, 0) base write gen: 77"}}
sorasvl-mongo | {"t":{"$date":"2022-06-15T11:43:09.064+00:00"},"s":"I",  "c":"STORAGE",  "id":22430,   "ctx":"Checkpointer","msg":"WiredTiger message","attr":{"message":"[1655293389:64536][1:0x7f458f022700], WT_SESSION.checkpoint: [WT_VERB_CHECKPOINT_PROGRESS] saving checkpoint snapshot min: 27, snapshot max: 27 snapshot count: 0, oldest timestamp: (0, 0) , meta checkpoint timestamp: (0, 0) base write gen: 77"}}
sorasvl-mongo | {"t":{"$date":"2022-06-15T11:44:09.072+00:00"},"s":"I",  "c":"STORAGE",  "id":22430,   "ctx":"Checkpointer","msg":"WiredTiger message","attr":{"message":"[1655293449:72298][1:0x7f458f022700], WT_SESSION.checkpoint: [WT_VERB_CHECKPOINT_PROGRESS] saving checkpoint snapshot min: 29, snapshot max: 29 snapshot count: 0, oldest timestamp: (0, 0) , meta checkpoint timestamp: (0, 0) base write gen: 77"}}
sorasvl-mongo | {"t":{"$date":"2022-06-15T11:45:09.079+00:00"},"s":"I",  "c":"STORAGE",  "id":22430,   "ctx":"Checkpointer","msg":"WiredTiger message","attr":{"message":"[1655293509:79374][1:0x7f458f022700], WT_SESSION.checkpoint: [WT_VERB_CHECKPOINT_PROGRESS] saving checkpoint snapshot min: 31, snapshot max: 31 snapshot count: 0, oldest timestamp: (0, 0) , meta checkpoint timestamp: (0, 0) base write gen: 77"}}
sorasvl-mongo | {"t":{"$date":"2022-06-15T11:46:09.086+00:00"},"s":"I",  "c":"STORAGE",  "id":22430,   "ctx":"Checkpointer","msg":"WiredTiger message","attr":{"message":"[1655293569:86552][1:0x7f458f022700], WT_SESSION.checkpoint: [WT_VERB_CHECKPOINT_PROGRESS] saving checkpoint snapshot min: 33, snapshot max: 33 snapshot count: 0, oldest timestamp: (0, 0) , meta checkpoint timestamp: (0, 0) base write gen: 77"}}
sorasvl-mongo | {"t":{"$date":"2022-06-15T11:47:09.095+00:00"},"s":"I",  "c":"STORAGE",  "id":22430,   "ctx":"Checkpointer","msg":"WiredTiger message","attr":{"message":"[1655293629:95227][1:0x7f458f022700], WT_SESSION.checkpoint: [WT_VERB_CHECKPOINT_PROGRESS] saving checkpoint snapshot min: 35, snapshot max: 35 snapshot count: 0, oldest timestamp: (0, 0) , meta checkpoint timestamp: (0, 0) base write gen: 77"}}
sorasvl-mongo | {"t":{"$date":"2022-06-15T11:48:09.102+00:00"},"s":"I",  "c":"STORAGE",  "id":22430,   "ctx":"Checkpointer","msg":"WiredTiger message","attr":{"message":"[1655293689:102608][1:0x7f458f022700], WT_SESSION.checkpoint: [WT_VERB_CHECKPOINT_PROGRESS] saving checkpoint snapshot min: 37, snapshot max: 37 snapshot count: 0, oldest timestamp: (0, 0) , meta checkpoint timestamp: (0, 0) base write gen: 77"}}
sorasvl-mongo | {"t":{"$date":"2022-06-15T11:49:09.111+00:00"},"s":"I",  "c":"STORAGE",  "id":22430,   "ctx":"Checkpointer","msg":"WiredTiger message","attr":{"message":"[1655293749:111010][1:0x7f458f022700], WT_SESSION.checkpoint: [WT_VERB_CHECKPOINT_PROGRESS] saving checkpoint snapshot min: 39, snapshot max: 39 snapshot count: 0, oldest timestamp: (0, 0) , meta checkpoint timestamp: (0, 0) base write gen: 77"}}
sorasvl-mongo | {"t":{"$date":"2022-06-15T11:50:09.118+00:00"},"s":"I",  "c":"STORAGE",  "id":22430,   "ctx":"Checkpointer","msg":"WiredTiger message","attr":{"message":"[1655293809:118896][1:0x7f458f022700], WT_SESSION.checkpoint: [WT_VERB_CHECKPOINT_PROGRESS] saving checkpoint snapshot min: 41, snapshot max: 41 snapshot count: 0, oldest timestamp: (0, 0) , meta checkpoint timestamp: (0, 0) base write gen: 77"}}
sorasvl-mongo | {"t":{"$date":"2022-06-15T11:51:09.125+00:00"},"s":"I",  "c":"STORAGE",  "id":22430,   "ctx":"Checkpointer","msg":"WiredTiger message","attr":{"message":"[1655293869:125286][1:0x7f458f022700], WT_SESSION.checkpoint: [WT_VERB_CHECKPOINT_PROGRESS] saving checkpoint snapshot min: 43, snapshot max: 43 snapshot count: 0, oldest timestamp: (0, 0) , meta checkpoint timestamp: (0, 0) base write gen: 77"}}
sorasvl-mongo | {"t":{"$date":"2022-06-15T11:52:09.130+00:00"},"s":"I",  "c":"STORAGE",  "id":22430,   "ctx":"Checkpointer","msg":"WiredTiger message","attr":{"message":"[1655293929:130517][1:0x7f458f022700], WT_SESSION.checkpoint: [WT_VERB_CHECKPOINT_PROGRESS] saving checkpoint snapshot min: 45, snapshot max: 45 snapshot count: 0, oldest timestamp: (0, 0) , meta checkpoint timestamp: (0, 0) base write gen: 77"}}
sorasvl-mongo | {"t":{"$date":"2022-06-15T11:53:09.137+00:00"},"s":"I",  "c":"STORAGE",  "id":22430,   "ctx":"Checkpointer","msg":"WiredTiger message","attr":{"message":"[1655293989:137071][1:0x7f458f022700], WT_SESSION.checkpoint: [WT_VERB_CHECKPOINT_PROGRESS] saving checkpoint snapshot min: 47, snapshot max: 47 snapshot count: 0, oldest timestamp: (0, 0) , meta checkpoint timestamp: (0, 0) base write gen: 77"}}
sorasvl-mongo | {"t":{"$date":"2022-06-15T11:54:09.144+00:00"},"s":"I",  "c":"STORAGE",  "id":22430,   "ctx":"Checkpointer","msg":"WiredTiger message","attr":{"message":"[1655294049:144554][1:0x7f458f022700], WT_SESSION.checkpoint: [WT_VERB_CHECKPOINT_PROGRESS] saving checkpoint snapshot min: 49, snapshot max: 49 snapshot count: 0, oldest timestamp: (0, 0) , meta checkpoint timestamp: (0, 0) base write gen: 77"}}
sorasvl-mongo | {"t":{"$date":"2022-06-15T11:55:09.150+00:00"},"s":"I",  "c":"STORAGE",  "id":22430,   "ctx":"Checkpointer","msg":"WiredTiger message","attr":{"message":"[1655294109:150938][1:0x7f458f022700], WT_SESSION.checkpoint: [WT_VERB_CHECKPOINT_PROGRESS] saving checkpoint snapshot min: 51, snapshot max: 51 snapshot count: 0, oldest timestamp: (0, 0) , meta checkpoint timestamp: (0, 0) base write gen: 77"}}
sorasvl-mongo | {"t":{"$date":"2022-06-15T11:56:09.158+00:00"},"s":"I",  "c":"STORAGE",  "id":22430,   "ctx":"Checkpointer","msg":"WiredTiger message","attr":{"message":"[1655294169:158169][1:0x7f458f022700], WT_SESSION.checkpoint: [WT_VERB_CHECKPOINT_PROGRESS] saving checkpoint snapshot min: 53, snapshot max: 53 snapshot count: 0, oldest timestamp: (0, 0) , meta checkpoint timestamp: (0, 0) base write gen: 77"}}
sorasvl-mongo | {"t":{"$date":"2022-06-15T11:57:09.164+00:00"},"s":"I",  "c":"STORAGE",  "id":22430,   "ctx":"Checkpointer","msg":"WiredTiger message","attr":{"message":"[1655294229:164582][1:0x7f458f022700], WT_SESSION.checkpoint: [WT_VERB_CHECKPOINT_PROGRESS] saving checkpoint snapshot min: 55, snapshot max: 55 snapshot count: 0, oldest timestamp: (0, 0) , meta checkpoint timestamp: (0, 0) base write gen: 77"}}
sorasvl-mongo | {"t":{"$date":"2022-06-15T11:58:09.172+00:00"},"s":"I",  "c":"STORAGE",  "id":22430,   "ctx":"Checkpointer","msg":"WiredTiger message","attr":{"message":"[1655294289:172274][1:0x7f458f022700], WT_SESSION.checkpoint: [WT_VERB_CHECKPOINT_PROGRESS] saving checkpoint snapshot min: 57, snapshot max: 57 snapshot count: 0, oldest timestamp: (0, 0) , meta checkpoint timestamp: (0, 0) base write gen: 77"}}
sorasvl-mongo | {"t":{"$date":"2022-06-15T11:59:09.178+00:00"},"s":"I",  "c":"STORAGE",  "id":22430,   "ctx":"Checkpointer","msg":"WiredTiger message","attr":{"message":"[1655294349:178798][1:0x7f458f022700], WT_SESSION.checkpoint: [WT_VERB_CHECKPOINT_PROGRESS] saving checkpoint snapshot min: 59, snapshot max: 59 snapshot count: 0, oldest timestamp: (0, 0) , meta checkpoint timestamp: (0, 0) base write gen: 77"}}
sorasvl-mongo | {"t":{"$date":"2022-06-15T12:00:09.187+00:00"},"s":"I",  "c":"STORAGE",  "id":22430,   "ctx":"Checkpointer","msg":"WiredTiger message","attr":{"message":"[1655294409:187323][1:0x7f458f022700], WT_SESSION.checkpoint: [WT_VERB_CHECKPOINT_PROGRESS] saving checkpoint snapshot min: 61, snapshot max: 61 snapshot count: 0, oldest timestamp: (0, 0) , meta checkpoint timestamp: (0, 0) base write gen: 77"}}
sorasvl-mongo | {"t":{"$date":"2022-06-15T12:01:09.194+00:00"},"s":"I",  "c":"STORAGE",  "id":22430,   "ctx":"Checkpointer","msg":"WiredTiger message","attr":{"message":"[1655294469:194047][1:0x7f458f022700], WT_SESSION.checkpoint: [WT_VERB_CHECKPOINT_PROGRESS] saving checkpoint snapshot min: 63, snapshot max: 63 snapshot count: 0, oldest timestamp: (0, 0) , meta checkpoint timestamp: (0, 0) base write gen: 77"}}
sorasvl-mongo | {"t":{"$date":"2022-06-15T12:02:09.201+00:00"},"s":"I",  "c":"STORAGE",  "id":22430,   "ctx":"Checkpointer","msg":"WiredTiger message","attr":{"message":"[1655294529:201718][1:0x7f458f022700], WT_SESSION.checkpoint: [WT_VERB_CHECKPOINT_PROGRESS] saving checkpoint snapshot min: 65, snapshot max: 65 snapshot count: 0, oldest timestamp: (0, 0) , meta checkpoint timestamp: (0, 0) base write gen: 77"}}
sorasvl-mongo | {"t":{"$date":"2022-06-15T12:03:09.207+00:00"},"s":"I",  "c":"STORAGE",  "id":22430,   "ctx":"Checkpointer","msg":"WiredTiger message","attr":{"message":"[1655294589:207874][1:0x7f458f022700], WT_SESSION.checkpoint: [WT_VERB_CHECKPOINT_PROGRESS] saving checkpoint snapshot min: 67, snapshot max: 67 snapshot count: 0, oldest timestamp: (0, 0) , meta checkpoint timestamp: (0, 0) base write gen: 77"}}
sorasvl-mongo | {"t":{"$date":"2022-06-15T12:04:09.215+00:00"},"s":"I",  "c":"STORAGE",  "id":22430,   "ctx":"Checkpointer","msg":"WiredTiger message","attr":{"message":"[1655294649:215706][1:0x7f458f022700], WT_SESSION.checkpoint: [WT_VERB_CHECKPOINT_PROGRESS] saving checkpoint snapshot min: 69, snapshot max: 69 snapshot count: 0, oldest timestamp: (0, 0) , meta checkpoint timestamp: (0, 0) base write gen: 77"}}
sorasvl-mongo | {"t":{"$date":"2022-06-15T12:05:09.222+00:00"},"s":"I",  "c":"STORAGE",  "id":22430,   "ctx":"Checkpointer","msg":"WiredTiger message","attr":{"message":"[1655294709:222439][1:0x7f458f022700], WT_SESSION.checkpoint: [WT_VERB_CHECKPOINT_PROGRESS] saving checkpoint snapshot min: 71, snapshot max: 71 snapshot count: 0, oldest timestamp: (0, 0) , meta checkpoint timestamp: (0, 0) base write gen: 77"}}
sorasvl-mongo | {"t":{"$date":"2022-06-15T12:06:09.230+00:00"},"s":"I",  "c":"STORAGE",  "id":22430,   "ctx":"Checkpointer","msg":"WiredTiger message","attr":{"message":"[1655294769:230010][1:0x7f458f022700], WT_SESSION.checkpoint: [WT_VERB_CHECKPOINT_PROGRESS] saving checkpoint snapshot min: 73, snapshot max: 73 snapshot count: 0, oldest timestamp: (0, 0) , meta checkpoint timestamp: (0, 0) base write gen: 77"}}
sorasvl-mongo | {"t":{"$date":"2022-06-15T12:07:09.236+00:00"},"s":"I",  "c":"STORAGE",  "id":22430,   "ctx":"Checkpointer","msg":"WiredTiger message","attr":{"message":"[1655294829:236452][1:0x7f458f022700], WT_SESSION.checkpoint: [WT_VERB_CHECKPOINT_PROGRESS] saving checkpoint snapshot min: 75, snapshot max: 75 snapshot count: 0, oldest timestamp: (0, 0) , meta checkpoint timestamp: (0, 0) base write gen: 77"}}
sorasvl-mongo | {"t":{"$date":"2022-06-15T12:08:09.243+00:00"},"s":"I",  "c":"STORAGE",  "id":22430,   "ctx":"Checkpointer","msg":"WiredTiger message","attr":{"message":"[1655294889:243576][1:0x7f458f022700], WT_SESSION.checkpoint: [WT_VERB_CHECKPOINT_PROGRESS] saving checkpoint snapshot min: 77, snapshot max: 77 snapshot count: 0, oldest timestamp: (0, 0) , meta checkpoint timestamp: (0, 0) base write gen: 77"}}
sorasvl-mongo | {"t":{"$date":"2022-06-15T12:09:09.250+00:00"},"s":"I",  "c":"STORAGE",  "id":22430,   "ctx":"Checkpointer","msg":"WiredTiger message","attr":{"message":"[1655294949:250781][1:0x7f458f022700], WT_SESSION.checkpoint: [WT_VERB_CHECKPOINT_PROGRESS] saving checkpoint snapshot min: 85, snapshot max: 85 snapshot count: 0, oldest timestamp: (0, 0) , meta checkpoint timestamp: (0, 0) base write gen: 77"}}
sorasvl-mongo | {"t":{"$date":"2022-06-15T12:10:09.264+00:00"},"s":"I",  "c":"STORAGE",  "id":22430,   "ctx":"Checkpointer","msg":"WiredTiger message","attr":{"message":"[1655295009:264344][1:0x7f458f022700], WT_SESSION.checkpoint: [WT_VERB_CHECKPOINT_PROGRESS] saving checkpoint snapshot min: 88, snapshot max: 88 snapshot count: 0, oldest timestamp: (0, 0) , meta checkpoint timestamp: (0, 0) base write gen: 77"}}
sorasvl-mongo | {"t":{"$date":"2022-06-15T12:11:09.274+00:00"},"s":"I",  "c":"STORAGE",  "id":22430,   "ctx":"Checkpointer","msg":"WiredTiger message","attr":{"message":"[1655295069:274575][1:0x7f458f022700], WT_SESSION.checkpoint: [WT_VERB_CHECKPOINT_PROGRESS] saving checkpoint snapshot min: 90, snapshot max: 90 snapshot count: 0, oldest timestamp: (0, 0) , meta checkpoint timestamp: (0, 0) base write gen: 77"}}
sorasvl-mongo | {"t":{"$date":"2022-06-15T12:12:09.288+00:00"},"s":"I",  "c":"STORAGE",  "id":22430,   "ctx":"Checkpointer","msg":"WiredTiger message","attr":{"message":"[1655295129:288021][1:0x7f458f022700], WT_SESSION.checkpoint: [WT_VERB_CHECKPOINT_PROGRESS] saving checkpoint snapshot min: 92, snapshot max: 92 snapshot count: 0, oldest timestamp: (0, 0) , meta checkpoint timestamp: (0, 0) base write gen: 77"}}
sorasvl-mongo | {"t":{"$date":"2022-06-15T12:13:09.295+00:00"},"s":"I",  "c":"STORAGE",  "id":22430,   "ctx":"Checkpointer","msg":"WiredTiger message","attr":{"message":"[1655295189:295222][1:0x7f458f022700], WT_SESSION.checkpoint: [WT_VERB_CHECKPOINT_PROGRESS] saving checkpoint snapshot min: 94, snapshot max: 94 snapshot count: 0, oldest timestamp: (0, 0) , meta checkpoint timestamp: (0, 0) base write gen: 77"}}
sorasvl-mongo | {"t":{"$date":"2022-06-15T12:14:09.304+00:00"},"s":"I",  "c":"STORAGE",  "id":22430,   "ctx":"Checkpointer","msg":"WiredTiger message","attr":{"message":"[1655295249:304084][1:0x7f458f022700], WT_SESSION.checkpoint: [WT_VERB_CHECKPOINT_PROGRESS] saving checkpoint snapshot min: 96, snapshot max: 96 snapshot count: 0, oldest timestamp: (0, 0) , meta checkpoint timestamp: (0, 0) base write gen: 77"}}
sorasvl-mongo | {"t":{"$date":"2022-06-15T12:15:09.312+00:00"},"s":"I",  "c":"STORAGE",  "id":22430,   "ctx":"Checkpointer","msg":"WiredTiger message","attr":{"message":"[1655295309:312472][1:0x7f458f022700], WT_SESSION.checkpoint: [WT_VERB_CHECKPOINT_PROGRESS] saving checkpoint snapshot min: 98, snapshot max: 98 snapshot count: 0, oldest timestamp: (0, 0) , meta checkpoint timestamp: (0, 0) base write gen: 77"}}
sorasvl-mongo | {"t":{"$date":"2022-06-15T12:16:09.321+00:00"},"s":"I",  "c":"STORAGE",  "id":22430,   "ctx":"Checkpointer","msg":"WiredTiger message","attr":{"message":"[1655295369:321578][1:0x7f458f022700], WT_SESSION.checkpoint: [WT_VERB_CHECKPOINT_PROGRESS] saving checkpoint snapshot min: 100, snapshot max: 100 snapshot count: 0, oldest timestamp: (0, 0) , meta checkpoint timestamp: (0, 0) base write gen: 77"}}
sorasvl-mongo | {"t":{"$date":"2022-06-15T12:17:09.330+00:00"},"s":"I",  "c":"STORAGE",  "id":22430,   "ctx":"Checkpointer","msg":"WiredTiger message","attr":{"message":"[1655295429:329988][1:0x7f458f022700], WT_SESSION.checkpoint: [WT_VERB_CHECKPOINT_PROGRESS] saving checkpoint snapshot min: 102, snapshot max: 102 snapshot count: 0, oldest timestamp: (0, 0) , meta checkpoint timestamp: (0, 0) base write gen: 77"}}
sorasvl-mongo | {"t":{"$date":"2022-06-15T12:18:09.339+00:00"},"s":"I",  "c":"STORAGE",  "id":22430,   "ctx":"Checkpointer","msg":"WiredTiger message","attr":{"message":"[1655295489:339021][1:0x7f458f022700], WT_SESSION.checkpoint: [WT_VERB_CHECKPOINT_PROGRESS] saving checkpoint snapshot min: 104, snapshot max: 104 snapshot count: 0, oldest timestamp: (0, 0) , meta checkpoint timestamp: (0, 0) base write gen: 77"}}
sorasvl-mongo | {"t":{"$date":"2022-06-15T12:19:09.346+00:00"},"s":"I",  "c":"STORAGE",  "id":22430,   "ctx":"Checkpointer","msg":"WiredTiger message","attr":{"message":"[1655295549:346364][1:0x7f458f022700], WT_SESSION.checkpoint: [WT_VERB_CHECKPOINT_PROGRESS] saving checkpoint snapshot min: 106, snapshot max: 106 snapshot count: 0, oldest timestamp: (0, 0) , meta checkpoint timestamp: (0, 0) base write gen: 77"}}
sorasvl-mongo | {"t":{"$date":"2022-06-15T12:20:09.356+00:00"},"s":"I",  "c":"STORAGE",  "id":22430,   "ctx":"Checkpointer","msg":"WiredTiger message","attr":{"message":"[1655295609:356253][1:0x7f458f022700], WT_SESSION.checkpoint: [WT_VERB_CHECKPOINT_PROGRESS] saving checkpoint snapshot min: 108, snapshot max: 108 snapshot count: 0, oldest timestamp: (0, 0) , meta checkpoint timestamp: (0, 0) base write gen: 77"}}
sorasvl-mongo | {"t":{"$date":"2022-06-15T12:21:09.364+00:00"},"s":"I",  "c":"STORAGE",  "id":22430,   "ctx":"Checkpointer","msg":"WiredTiger message","attr":{"message":"[1655295669:364022][1:0x7f458f022700], WT_SESSION.checkpoint: [WT_VERB_CHECKPOINT_PROGRESS] saving checkpoint snapshot min: 110, snapshot max: 110 snapshot count: 0, oldest timestamp: (0, 0) , meta checkpoint timestamp: (0, 0) base write gen: 77"}}
sorasvl-mongo | {"t":{"$date":"2022-06-15T12:22:09.373+00:00"},"s":"I",  "c":"STORAGE",  "id":22430,   "ctx":"Checkpointer","msg":"WiredTiger message","attr":{"message":"[1655295729:373781][1:0x7f458f022700], WT_SESSION.checkpoint: [WT_VERB_CHECKPOINT_PROGRESS] saving checkpoint snapshot min: 112, snapshot max: 112 snapshot count: 0, oldest timestamp: (0, 0) , meta checkpoint timestamp: (0, 0) base write gen: 77"}}
sorasvl-mongo | {"t":{"$date":"2022-06-15T12:23:09.381+00:00"},"s":"I",  "c":"STORAGE",  "id":22430,   "ctx":"Checkpointer","msg":"WiredTiger message","attr":{"message":"[1655295789:381149][1:0x7f458f022700], WT_SESSION.checkpoint: [WT_VERB_CHECKPOINT_PROGRESS] saving checkpoint snapshot min: 114, snapshot max: 114 snapshot count: 0, oldest timestamp: (0, 0) , meta checkpoint timestamp: (0, 0) base write gen: 77"}}
sorasvl-mongo | {"t":{"$date":"2022-06-15T12:24:09.390+00:00"},"s":"I",  "c":"STORAGE",  "id":22430,   "ctx":"Checkpointer","msg":"WiredTiger message","attr":{"message":"[1655295849:390480][1:0x7f458f022700], WT_SESSION.checkpoint: [WT_VERB_CHECKPOINT_PROGRESS] saving checkpoint snapshot min: 116, snapshot max: 116 snapshot count: 0, oldest timestamp: (0, 0) , meta checkpoint timestamp: (0, 0) base write gen: 77"}}
sorasvl-mongo | {"t":{"$date":"2022-06-15T12:25:09.401+00:00"},"s":"I",  "c":"STORAGE",  "id":22430,   "ctx":"Checkpointer","msg":"WiredTiger message","attr":{"message":"[1655295909:401341][1:0x7f458f022700], WT_SESSION.checkpoint: [WT_VERB_CHECKPOINT_PROGRESS] saving checkpoint snapshot min: 118, snapshot max: 118 snapshot count: 0, oldest timestamp: (0, 0) , meta checkpoint timestamp: (0, 0) base write gen: 77"}}
sorasvl-mongo | {"t":{"$date":"2022-06-15T12:26:09.410+00:00"},"s":"I",  "c":"STORAGE",  "id":22430,   "ctx":"Checkpointer","msg":"WiredTiger message","attr":{"message":"[1655295969:410320][1:0x7f458f022700], WT_SESSION.checkpoint: [WT_VERB_CHECKPOINT_PROGRESS] saving checkpoint snapshot min: 120, snapshot max: 120 snapshot count: 0, oldest timestamp: (0, 0) , meta checkpoint timestamp: (0, 0) base write gen: 77"}}
sorasvl-mongo | {"t":{"$date":"2022-06-15T12:27:09.418+00:00"},"s":"I",  "c":"STORAGE",  "id":22430,   "ctx":"Checkpointer","msg":"WiredTiger message","attr":{"message":"[1655296029:418206][1:0x7f458f022700], WT_SESSION.checkpoint: [WT_VERB_CHECKPOINT_PROGRESS] saving checkpoint snapshot min: 122, snapshot max: 122 snapshot count: 0, oldest timestamp: (0, 0) , meta checkpoint timestamp: (0, 0) base write gen: 77"}}
sorasvl-mongo | {"t":{"$date":"2022-06-15T12:28:09.425+00:00"},"s":"I",  "c":"STORAGE",  "id":22430,   "ctx":"Checkpointer","msg":"WiredTiger message","attr":{"message":"[1655296089:425519][1:0x7f458f022700], WT_SESSION.checkpoint: [WT_VERB_CHECKPOINT_PROGRESS] saving checkpoint snapshot min: 124, snapshot max: 124 snapshot count: 0, oldest timestamp: (0, 0) , meta checkpoint timestamp: (0, 0) base write gen: 77"}}
sorasvl-mongo | {"t":{"$date":"2022-06-15T12:29:09.433+00:00"},"s":"I",  "c":"STORAGE",  "id":22430,   "ctx":"Checkpointer","msg":"WiredTiger message","attr":{"message":"[1655296149:432973][1:0x7f458f022700], WT_SESSION.checkpoint: [WT_VERB_CHECKPOINT_PROGRESS] saving checkpoint snapshot min: 126, snapshot max: 126 snapshot count: 0, oldest timestamp: (0, 0) , meta checkpoint timestamp: (0, 0) base write gen: 77"}}
sorasvl-mongo | {"t":{"$date":"2022-06-15T12:30:09.442+00:00"},"s":"I",  "c":"STORAGE",  "id":22430,   "ctx":"Checkpointer","msg":"WiredTiger message","attr":{"message":"[1655296209:442977][1:0x7f458f022700], WT_SESSION.checkpoint: [WT_VERB_CHECKPOINT_PROGRESS] saving checkpoint snapshot min: 128, snapshot max: 128 snapshot count: 0, oldest timestamp: (0, 0) , meta checkpoint timestamp: (0, 0) base write gen: 77"}}
sorasvl-mongo | {"t":{"$date":"2022-06-15T12:31:09.449+00:00"},"s":"I",  "c":"STORAGE",  "id":22430,   "ctx":"Checkpointer","msg":"WiredTiger message","attr":{"message":"[1655296269:449675][1:0x7f458f022700], WT_SESSION.checkpoint: [WT_VERB_CHECKPOINT_PROGRESS] saving checkpoint snapshot min: 130, snapshot max: 130 snapshot count: 0, oldest timestamp: (0, 0) , meta checkpoint timestamp: (0, 0) base write gen: 77"}}
sorasvl-mongo | {"t":{"$date":"2022-06-15T12:32:09.459+00:00"},"s":"I",  "c":"STORAGE",  "id":22430,   "ctx":"Checkpointer","msg":"WiredTiger message","attr":{"message":"[1655296329:458992][1:0x7f458f022700], WT_SESSION.checkpoint: [WT_VERB_CHECKPOINT_PROGRESS] saving checkpoint snapshot min: 132, snapshot max: 132 snapshot count: 0, oldest timestamp: (0, 0) , meta checkpoint timestamp: (0, 0) base write gen: 77"}}
sorasvl-mongo | {"t":{"$date":"2022-06-15T12:33:09.468+00:00"},"s":"I",  "c":"STORAGE",  "id":22430,   "ctx":"Checkpointer","msg":"WiredTiger message","attr":{"message":"[1655296389:468040][1:0x7f458f022700], WT_SESSION.checkpoint: [WT_VERB_CHECKPOINT_PROGRESS] saving checkpoint snapshot min: 134, snapshot max: 134 snapshot count: 0, oldest timestamp: (0, 0) , meta checkpoint timestamp: (0, 0) base write gen: 77"}}
sorasvl-mongo | {"t":{"$date":"2022-06-15T12:34:09.478+00:00"},"s":"I",  "c":"STORAGE",  "id":22430,   "ctx":"Checkpointer","msg":"WiredTiger message","attr":{"message":"[1655296449:478347][1:0x7f458f022700], WT_SESSION.checkpoint: [WT_VERB_CHECKPOINT_PROGRESS] saving checkpoint snapshot min: 136, snapshot max: 136 snapshot count: 0, oldest timestamp: (0, 0) , meta checkpoint timestamp: (0, 0) base write gen: 77"}}
sorasvl-mongo | {"t":{"$date":"2022-06-15T12:35:09.484+00:00"},"s":"I",  "c":"STORAGE",  "id":22430,   "ctx":"Checkpointer","msg":"WiredTiger message","attr":{"message":"[1655296509:484950][1:0x7f458f022700], WT_SESSION.checkpoint: [WT_VERB_CHECKPOINT_PROGRESS] saving checkpoint snapshot min: 138, snapshot max: 138 snapshot count: 0, oldest timestamp: (0, 0) , meta checkpoint timestamp: (0, 0) base write gen: 77"}}
sorasvl-mongo | {"t":{"$date":"2022-06-15T12:36:09.494+00:00"},"s":"I",  "c":"STORAGE",  "id":22430,   "ctx":"Checkpointer","msg":"WiredTiger message","attr":{"message":"[1655296569:494050][1:0x7f458f022700], WT_SESSION.checkpoint: [WT_VERB_CHECKPOINT_PROGRESS] saving checkpoint snapshot min: 140, snapshot max: 140 snapshot count: 0, oldest timestamp: (0, 0) , meta checkpoint timestamp: (0, 0) base write gen: 77"}}
.
.
.

And goes on... I can't see the error but it seems in #4 after that he could download the map from http://localhost/api/v1/assets/download/bundle/0a4026cb-39eb-42ce-8065-26da778d2f74

When I use the -d flag i got the same in npm run start
But the other logs are different

root@02c1ebf8fa28:/workdir# cat /root/.npm/_logs/2022-06-15T18_16_10_991Z-debug-0.log 
0 verbose cli /usr/local/bin/node /usr/local/bin/npm
1 info using npm@8.11.0
2 info using node@v18.3.0
3 timing npm:load:whichnode Completed in 0ms
4 timing config:load:defaults Completed in 1ms
5 timing config:load:file:/usr/local/lib/node_modules/npm/npmrc Completed in 1ms
6 timing config:load:builtin Completed in 1ms
7 timing config:load:cli Completed in 1ms
8 timing config:load:env Completed in 0ms
9 timing config:load:file:/workdir/.npmrc Completed in 0ms
10 timing config:load:project Completed in 7ms
11 timing config:load:file:/root/.npmrc Completed in 0ms
12 timing config:load:user Completed in 1ms
13 timing config:load:file:/usr/local/etc/npmrc Completed in 0ms
14 timing config:load:global Completed in 0ms
15 timing config:load:validate Completed in 0ms
16 timing config:load:credentials Completed in 1ms
17 timing config:load:setEnvs Completed in 0ms
18 timing config:load Completed in 12ms
19 timing npm:load:configload Completed in 12ms
20 timing npm:load:mkdirpcache Completed in 1ms
21 timing npm:load:mkdirplogs Completed in 1ms
22 verbose title npm run start
23 verbose argv "run" "start"
24 timing npm:load:setTitle Completed in 0ms
25 timing config:load:flatten Completed in 2ms
26 timing npm:load:display Completed in 4ms
27 verbose logfile logs-max:10 dir:/root/.npm/_logs
28 verbose logfile /root/.npm/_logs/2022-06-15T18_16_10_991Z-debug-0.log
29 timing npm:load:logFile Completed in 4ms
30 timing npm:load:timers Completed in 0ms
31 timing npm:load:configScope Completed in 0ms
32 timing npm:load Completed in 23ms
33 silly logfile done cleaning log files
34 timing command:run Completed in 208ms
35 verbose exit 1
36 timing npm Completed in 236ms
37 verbose code 1

I followed his steps so I don't know why it is different
Thanks, and I'm glad we saw it working in the other issue :)

@YuqiHuai
Copy link
Owner

YuqiHuai commented Jun 15, 2022

Hi,
For the other issue, the problem he had was that he is missing the maps directory. So you actually had it correct the first time.

You don't need to use "-d" flag now that I (think I) know where the problem is. "-d" makes you see the output from each of the containers and normally just the last few outputs tell if any of the containers go wrong.

You were not supposed to unzip the files, you just need to remove the ".zip" ending from the filename. Google for some reason added ".zip" to the end, and I never uploaded zip files.

The server code will look for file /assets/maps/{id} when requesting a download, but now you have /assets/maps/{id}.zip, which is why the server cannot find the file for you.

@rogeherlor
Copy link
Author

It works!
It was just the .zip extension in the maps folder

Thanks a lot and congratulations for your work!

@YuqiHuai
Copy link
Owner

YuqiHuai commented Jun 17, 2022

Thank you for pointing out the issue as well! I added this note to the readme to hopefully help future users as well.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Bug Something isn't working Download incomplete
Projects
None yet
Development

No branches or pull requests

2 participants