dosubot[bot] commented on issue #7280: URL: https://github.com/apache/superset/issues/7280#issuecomment-2963652047
<!-- Answer --> There isn't official documentation explaining the meanings of log actions like 'explore' and 'explore_json' in Superset. Based on the code: - The 'explore' action is tied to the main Explore UI, handling chart editing and rendering the HTML page for interactive exploration. - The 'explore_json' action is a backend endpoint that serves chart data (JSON, CSV, etc.) to the frontend, often used for AJAX/chart rendering and async queries. It's also used by legacy visualizations and for serving cached results. So, 'explore' is about loading the interactive UI, while 'explore_json' is about fetching the underlying chart data for that UI or for API consumers. Both are logged as user actions, but they serve different parts of the workflow. You can see these distinctions in the code for the core views and frontend chart client logic ([core.py](https://github.com/apache/superset/blob/a64b9ac84f48074340d14e5cf92505627451ec52/superset/views/core.py), [ChartClient.ts](https://github.com/apache/superset/blob/a64b9ac84f48074340d14e5cf92505627451ec52/superset-frontend/packages/superset-ui-core/src/chart/clients/ChartClient.ts)). Let me know if you want more details on other log actions! <!-- Dosu Comment Footer --> *To reply, just mention [@dosu](https://go.dosu.dev/dosubot).* --- <sup>How did I do? [Good](https://app.dosu.dev/response-feedback/cc63247e-6b1a-437f-9733-7f215a2adf13?feedback_type=great_response) | [Irrelevant](https://app.dosu.dev/response-feedback/cc63247e-6b1a-437f-9733-7f215a2adf13?feedback_type=irrelevant_answer) | [Incorrect](https://app.dosu.dev/response-feedback/cc63247e-6b1a-437f-9733-7f215a2adf13?feedback_type=incorrect_sources) | [Verbose](https://app.dosu.dev/response-feedback/cc63247e-6b1a-437f-9733-7f215a2adf13?feedback_type=too_verbose) | [Hallucination](https://app.dosu.dev/response-feedback/cc63247e-6b1a-437f-9733-7f215a2adf13?feedback_type=hallucination) | [Report 🐛](https://app.dosu.dev/response-feedback/cc63247e-6b1a-437f-9733-7f215a2adf13?feedback_type=bug_report) | [Other](https://app.dosu.dev/response-feedback/cc63247e-6b1a-437f-9733-7f215a2adf13?feedback_type=other)</sup> [](https://go.dosu.dev/discord-bot) [! [Share on X](https://img.shields.io/badge/X-share-black)](https://twitter.com/intent/tweet?text=%40dosu_ai%20helped%20me%20solve%20this%20issue!&url=https%3A//github.com/apache/superset/issues/7280) -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected] --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
