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

chore: dashboard detail - panel data fetched - telemetry #5871

Merged
merged 3 commits into from
Sep 6, 2024

Conversation

SagarRajput-7
Copy link
Contributor

@SagarRajput-7 SagarRajput-7 commented Sep 5, 2024

Summary

This event will be fired if we have even a single panel with some data in Dashboard detail page

LogEvent -

logEvent('Dashboard Detail: Panel data fetched', {
     isDataAvailableInAnyWidget,
});

Below are the cases on how to find the data is fetched on different cases

PANEL_TYPES

- Bar - results = [{something}]
- Pie - results = [{something}]
- Table - result = [
    {
        "table": {
            "columns": [
                {
                    "name": "service_name",
                    "queryName": "",
                    "isValueColumn": false
                },
            ],
            "rows": [
                {
                    "data": {
                        "A": 22.43,
                        "B": "n/a",
                        "C": "n/a",
                        "D": "n/a",
                        "E": "n/a",
                        "direction": "n/a",
                        "host_name": "n/a",
                        "operation": "n/a",
                        "service_name": "frontend"
                    }
                },
            ]
        }
    }
]

- Histogram - results = [{something}]
- graph / TIME_SERIES - results = [{something}]
- list - newResults = {
    "status": "success",
    "data": {
        "resultType": "",
        "result": [
            {
                "queryName": "A",
                "list": [
                    {
                        something
                    },
                ]
            }
        ]
    }
}
- value - result = [{something}]

Related Issues / PR's

Screenshots

NA

Affected Areas and Manually Tested Areas

Copy link

github-actions bot commented Sep 5, 2024

Build Error! No Linked Issue found. Please link an issue or mention it in the body using #<issue_id>

@github-actions github-actions bot added the chore label Sep 5, 2024
Copy link

github-actions bot commented Sep 5, 2024

Build Error! No Linked Issue found. Please link an issue or mention it in the body using #<issue_id>

@SagarRajput-7 SagarRajput-7 force-pushed the dashboard-detail-telemetry branch from 0fb7378 to bd8d83b Compare September 5, 2024 12:31
@SagarRajput-7 SagarRajput-7 merged commit 292b3f4 into develop Sep 6, 2024
12 checks passed
@SagarRajput-7 SagarRajput-7 deleted the dashboard-detail-telemetry branch September 6, 2024 06:23
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Projects
None yet
Development

Successfully merging this pull request may close these issues.

5 participants