Ah, gotcha, I missed that. I turned it up to TRACE and reviewed the logs. I logged out and back in, and I saw this line in the log attempting to pull a search from ES:
2023.09.20 12:16:48 TRACE web[redacted][tracer] curl -iX POST 'http://127.0.0.1:9001/projectmeasures/auth/_search?typed_keys=true&max_concurrent_shard_requests=5&search_type=query_then_fetch&batched_reduce_size=512' -d '{"from":0,"size":50,"query":{"bool":{"must":[{"term":{"indexType":{"value":"projectmeasure","boost":1.0}}},{"has_parent":{"query":{"bool":{"filter":
(I truncated the rest of the query)
And I do see a response from ES:
{
"took": 10,
"timed_out": false,
"_shards": {
"total": 5,
"successful": 5,
"skipped": 0,
"failed": 0
},
"hits": {
"total": {
"value": 48,
"relation": "eq"
},
"max_score": null,
"hits": [
{
"_index": "projectmeasures",
"_type": "auth",
"_id": "AYaaUWTtc9PGqnhhuepM",
"_score": null,
"_routing": "auth_AYaaUWTtc9PGqnhhuepM",
"sort": [
"redacted_project_1",
"e5a9e4a9-8742-4bf8-9bd8-54c8efb503cb"
]
},
{
"_index": "projectmeasures",
"_type": "auth",
"_id": "AYhxx7iFFyMnk6JQxTzP",
"_score": null,
"_routing": "auth_AYhxx7iFFyMnk6JQxTzP",
"sort": [
"redacted_project_2",
"c74d2e66-45a9-453f-b313-6d3efdec9700"
]
},
{
"_index": "projectmeasures",
"_type": "auth",
"_id": "AYjowDnCFyMnk6JQxT5q",
"_score": null,
"_routing": "auth_AYjowDnCFyMnk6JQxT5q",
"sort": [
"redacted_project_3",
"07bf1490-1fb2-48e0-8e01-00bf068353a7"
]
},
{
(I truncated the rest of the output)
Now I’m assuming that these data are the ones that are displayed on screen; I could be off-base here, but it seems likely.
I also saw some SQL queries that were returning for core ID, LOC, session tokens, roles, favourite projects, and those all returned data best that I can tell.
I confirmed with another user that they are also not seeing projects on the screen. I’m stumped, and it would be great if someone from SonarSource could jump in.